| 1525 | } |
| 1526 | |
| 1527 | static int32_t compile_emit_constant( compiler * c, OBJECT * value ) |
| 1528 | { |
| 1529 | OBJECT * copy = object_copy( value ); |
| 1530 | dynamic_array_push( c->constants, copy ); |
| 1531 | return c->constants->size - 1; |
| 1532 | } |
| 1533 | |
| 1534 | static void compile_push_cleanup( compiler * c, uint32_t op_code, int32_t arg ) |
| 1535 | { |
no test coverage detected