| 3579 | } |
| 3580 | |
| 3581 | static void argument_list_compiler_add( struct argument_list_compiler * c, |
| 3582 | PARSE * parse ) |
| 3583 | { |
| 3584 | struct arg_list args = arg_compile( parse ); |
| 3585 | dynamic_array_push( c->args, args ); |
| 3586 | } |
| 3587 | |
| 3588 | static void argument_list_compiler_recurse( struct argument_list_compiler * c, |
| 3589 | PARSE * parse ) |
no test coverage detected