(node *ast.FloatNode)
| 390 | } |
| 391 | |
| 392 | func (c *compiler) FloatNode(node *ast.FloatNode) { |
| 393 | switch node.Type().Kind() { |
| 394 | case reflect.Float32: |
| 395 | c.emitPush(float32(node.Value)) |
| 396 | case reflect.Float64: |
| 397 | c.emitPush(node.Value) |
| 398 | default: |
| 399 | c.emitPush(node.Value) |
| 400 | } |
| 401 | } |
| 402 | |
| 403 | func (c *compiler) BoolNode(node *ast.BoolNode) { |
| 404 | if node.Value { |