()
| 105 | } |
| 106 | |
| 107 | func (c *compiler) nodeParent() ast.Node { |
| 108 | if len(c.nodes) > 1 { |
| 109 | return c.nodes[len(c.nodes)-2] |
| 110 | } |
| 111 | return nil |
| 112 | } |
| 113 | |
| 114 | func (c *compiler) emitLocation(loc file.Location, op Opcode, arg int) int { |
| 115 | c.bytecode = append(c.bytecode, op) |