(node *ast.ConstantNode)
| 417 | } |
| 418 | |
| 419 | func (c *compiler) ConstantNode(node *ast.ConstantNode) { |
| 420 | if node.Value == nil { |
| 421 | c.emit(OpNil) |
| 422 | return |
| 423 | } |
| 424 | c.emitPush(node.Value) |
| 425 | } |
| 426 | |
| 427 | func (c *compiler) UnaryNode(node *ast.UnaryNode) { |
| 428 | c.compile(node.Node) |