fix runtime panics on self assignment (#387)
This commit is contained in:
parent
818d6dc687
commit
6fc8053992
2 changed files with 10 additions and 1 deletions
|
@ -692,12 +692,15 @@ func (c *Compiler) compileAssign(
|
||||||
return c.errorf(node, "operator ':=' not allowed with selector")
|
return c.errorf(node, "operator ':=' not allowed with selector")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
_, isFunc := rhs[0].(*parser.FuncLit)
|
||||||
symbol, depth, exists := c.symbolTable.Resolve(ident, false)
|
symbol, depth, exists := c.symbolTable.Resolve(ident, false)
|
||||||
if op == token.Define {
|
if op == token.Define {
|
||||||
if depth == 0 && exists {
|
if depth == 0 && exists {
|
||||||
return c.errorf(node, "'%s' redeclared in this block", ident)
|
return c.errorf(node, "'%s' redeclared in this block", ident)
|
||||||
}
|
}
|
||||||
symbol = c.symbolTable.Define(ident)
|
if isFunc {
|
||||||
|
symbol = c.symbolTable.Define(ident)
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
if !exists {
|
if !exists {
|
||||||
return c.errorf(node, "unresolved reference '%s'", ident)
|
return c.errorf(node, "unresolved reference '%s'", ident)
|
||||||
|
@ -718,6 +721,10 @@ func (c *Compiler) compileAssign(
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if op == token.Define && !isFunc {
|
||||||
|
symbol = c.symbolTable.Define(ident)
|
||||||
|
}
|
||||||
|
|
||||||
switch op {
|
switch op {
|
||||||
case token.AddAssign:
|
case token.AddAssign:
|
||||||
c.emit(node, parser.OpBinaryOp, int(token.Add))
|
c.emit(node, parser.OpBinaryOp, int(token.Add))
|
||||||
|
|
|
@ -1023,6 +1023,8 @@ func TestCompilerErrorReport(t *testing.T) {
|
||||||
|
|
||||||
expectCompileError(t, `a = 1`,
|
expectCompileError(t, `a = 1`,
|
||||||
"Compile Error: unresolved reference 'a'\n\tat test:1:1")
|
"Compile Error: unresolved reference 'a'\n\tat test:1:1")
|
||||||
|
expectCompileError(t, `a := a`,
|
||||||
|
"Compile Error: unresolved reference 'a'\n\tat test:1:6")
|
||||||
expectCompileError(t, `a, b := 1, 2`,
|
expectCompileError(t, `a, b := 1, 2`,
|
||||||
"Compile Error: tuple assignment not allowed\n\tat test:1:1")
|
"Compile Error: tuple assignment not allowed\n\tat test:1:1")
|
||||||
expectCompileError(t, `a.b := 1`,
|
expectCompileError(t, `a.b := 1`,
|
||||||
|
|
Loading…
Reference in a new issue