fix local symbol resolution bug (#316)

* fix local symbol resolution bug

* 1
This commit is contained in:
daniel 2020-09-13 19:33:48 -07:00 committed by GitHub
parent 7834251c84
commit 15494e1691
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 50 additions and 22 deletions

View file

@ -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)
}
@ -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)

View file

@ -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) {

View file

@ -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
}

View file

@ -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.

View file

@ -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)

View file

@ -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) {
@ -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