munificent / craftinginterpreters

Repository for the book "Crafting Interpreters"

Home Page:http://www.craftinginterpreters.com/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

is there a little bug in function varDeclaration when defined a local variable

zhhqcoder opened this issue · comments

thank you very much, i learned a lot from your book.
is there a little bug in function varDeclaration when defined a local variables? when we defined a local variable with var statement, we also compile a expression or push a nil val to the value stack, but we never pop it.