| 1433 | } |
| 1434 | |
| 1435 | static int compile_emit_actions( compiler * c, PARSE * parse ) |
| 1436 | { |
| 1437 | SUBACTION a; |
| 1438 | a.name = object_copy( parse->string ); |
| 1439 | a.command = function_compile_actions( object_str( parse->string1 ), |
| 1440 | parse->file, parse->line ); |
| 1441 | a.flags = parse->num; |
| 1442 | dynamic_array_push( c->actions, a ); |
| 1443 | return (int)( c->actions->size - 1 ); |
| 1444 | } |
| 1445 | |
| 1446 | static JAM_FUNCTION * compile_to_function( compiler * c ) |
| 1447 | { |
no test coverage detected