Skip to content

Commit 05175c9

Browse files
committed
Improve runtime errors
1 parent e498575 commit 05175c9

File tree

1 file changed

+17
-9
lines changed

1 file changed

+17
-9
lines changed

compiler/compiler.go

+17-9
Original file line numberDiff line numberDiff line change
@@ -47,13 +47,13 @@ func Compile(tree *parser.Tree, config *conf.Config) (program *Program, err erro
4747
}
4848

4949
type compiler struct {
50-
locations []file.Location
51-
constants []interface{}
52-
bytecode []byte
53-
index map[interface{}]uint16
54-
mapEnv bool
55-
cast reflect.Kind
56-
currentNode ast.Node
50+
locations []file.Location
51+
constants []interface{}
52+
bytecode []byte
53+
index map[interface{}]uint16
54+
mapEnv bool
55+
cast reflect.Kind
56+
nodes []ast.Node
5757
}
5858

5959
func (c *compiler) emit(op byte, b ...byte) int {
@@ -62,7 +62,11 @@ func (c *compiler) emit(op byte, b ...byte) int {
6262
c.bytecode = append(c.bytecode, b...)
6363

6464
for i := 0; i < 1+len(b); i++ {
65-
c.locations = append(c.locations, c.currentNode.Location())
65+
var loc file.Location
66+
if len(c.nodes) > 0 {
67+
loc = c.nodes[len(c.nodes)-1].Location()
68+
}
69+
c.locations = append(c.locations, loc)
6670
}
6771

6872
return current
@@ -113,7 +117,11 @@ func (c *compiler) calcBackwardJump(to int) []byte {
113117
}
114118

115119
func (c *compiler) compile(node ast.Node) {
116-
c.currentNode = node
120+
c.nodes = append(c.nodes, node)
121+
defer func() {
122+
c.nodes = c.nodes[:len(c.nodes)-1]
123+
}()
124+
117125
switch n := node.(type) {
118126
case *ast.NilNode:
119127
c.NilNode(n)

0 commit comments

Comments
 (0)