Skip to content

Commit

Permalink
fix local symbol resolution bug (#316)
Browse files Browse the repository at this point in the history
* fix local symbol resolution bug

* 1
  • Loading branch information
d5 authored Sep 14, 2020
1 parent 7834251 commit 15494e1
Show file tree
Hide file tree
Showing 6 changed files with 50 additions and 22 deletions.
4 changes: 2 additions & 2 deletions compiler.go
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,7 @@ func (c *Compiler) Compile(node parser.Node) error {
return err
}
case *parser.Ident:
symbol, _, ok := c.symbolTable.Resolve(node.Name)
symbol, _, ok := c.symbolTable.Resolve(node.Name, false)
if !ok {
return c.errorf(node, "unresolved reference '%s'", node.Name)
}
Expand Down Expand Up @@ -659,7 +659,7 @@ func (c *Compiler) compileAssign(
return c.errorf(node, "operator ':=' not allowed with selector")
}

symbol, depth, exists := c.symbolTable.Resolve(ident)
symbol, depth, exists := c.symbolTable.Resolve(ident, false)
if op == token.Define {
if depth == 0 && exists {
return c.errorf(node, "'%s' redeclared in this block", ident)
Expand Down
7 changes: 7 additions & 0 deletions compiler_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1005,6 +1005,13 @@ r["x"] = {
`, "Parse Error: illegal character U+0040 '@'\n\tat test:3:5 (and 10 more errors)")

expectCompileError(t, `import("")`, "empty module name")

// https://github.com/d5/tengo/issues/314
expectCompileError(t, `
(func() {
fn := fn()
})()
`, "unresolved reference 'fn")
}

func TestCompilerErrorReport(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion script.go
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ func (s *Script) Compile() (*Compiled, error) {
// global symbol names to indexes
globalIndexes := make(map[string]int, len(globals))
for _, name := range symbolTable.Names() {
symbol, _, _ := symbolTable.Resolve(name)
symbol, _, _ := symbolTable.Resolve(name, false)
if symbol.Scope == ScopeGlobal {
globalIndexes[name] = symbol.Index
}
Expand Down
45 changes: 28 additions & 17 deletions symbol_table.go
Original file line number Diff line number Diff line change
Expand Up @@ -71,25 +71,36 @@ func (t *SymbolTable) DefineBuiltin(index int, name string) *Symbol {
// Resolve resolves a symbol with a given name.
func (t *SymbolTable) Resolve(
name string,
) (symbol *Symbol, depth int, ok bool) {
symbol, ok = t.store[name]
if !ok && t.parent != nil {
symbol, depth, ok = t.parent.Resolve(name)
if !ok {
return
recur bool,
) (*Symbol, int, bool) {
symbol, ok := t.store[name]
if ok {
// symbol can be used if
if symbol.Scope != ScopeLocal || // it's not of local scope, OR,
symbol.LocalAssigned || // it's assigned at least once, OR,
recur { // it's defined in higher level
return symbol, 0, true
}
depth++

// if symbol is defined in parent table and if it's not global/builtin
// then it's free variable.
if !t.block && depth > 0 &&
symbol.Scope != ScopeGlobal &&
symbol.Scope != ScopeBuiltin {
return t.defineFree(symbol), depth, true
}
return
}
return

if t.parent == nil {
return nil, 0, false
}

symbol, depth, ok := t.parent.Resolve(name, true)
if !ok {
return nil, 0, false
}
depth++

// if symbol is defined in parent table and if it's not global/builtin
// then it's free variable.
if !t.block && depth > 0 &&
symbol.Scope != ScopeGlobal &&
symbol.Scope != ScopeBuiltin {
return t.defineFree(symbol), depth, true
}
return symbol, depth, true
}

// Fork creates a new symbol table for a new scope.
Expand Down
2 changes: 1 addition & 1 deletion symbol_table_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ func resolveExpect(
expectedSymbol *tengo.Symbol,
expectedDepth int,
) {
actualSymbol, actualDepth, ok := symbolTable.Resolve(name)
actualSymbol, actualDepth, ok := symbolTable.Resolve(name, true)
require.True(t, ok)
require.Equal(t, expectedSymbol, actualSymbol)
require.Equal(t, expectedDepth, actualDepth)
Expand Down
12 changes: 11 additions & 1 deletion vm_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1792,6 +1792,16 @@ func() {
nil, true)
expectRun(t, `out = func(v) { for ;;v++ { if v == 3 { break } } }(1)`,
nil, tengo.UndefinedValue)

// 'f' in RHS at line 4 must reference global variable 'f'
// See https://github.com/d5/tengo/issues/314
expectRun(t, `
f := func() { return 2 }
out = (func() {
f := f()
return f
})()
`, nil, 2)
}

func TestIf(t *testing.T) {
Expand Down Expand Up @@ -3753,7 +3763,7 @@ func traceCompileRun(
{
res = make(map[string]tengo.Object)
for name := range symbols {
sym, depth, ok := symTable.Resolve(name)
sym, depth, ok := symTable.Resolve(name, false)
if !ok || depth != 0 {
err = fmt.Errorf("symbol not found: %s", name)
return
Expand Down

0 comments on commit 15494e1

Please sign in to comment.