| 1413 | } |
| 1414 | |
| 1415 | static int compile_emit_constant( compiler * c, OBJECT * value ) |
| 1416 | { |
| 1417 | OBJECT * copy = object_copy( value ); |
| 1418 | dynamic_array_push( c->constants, copy ); |
| 1419 | return c->constants->size - 1; |
| 1420 | } |
| 1421 | |
| 1422 | static int compile_emit_rule( compiler * c, OBJECT * name, PARSE * parse, |
| 1423 | int num_arguments, struct arg_list * arguments, int local ) |
no test coverage detected