| 3306 | } |
| 3307 | |
| 3308 | static void argument_list_compiler_add( struct argument_list_compiler * c, |
| 3309 | PARSE * parse ) |
| 3310 | { |
| 3311 | struct arg_list args = arg_compile( parse ); |
| 3312 | dynamic_array_push( c->args, args ); |
| 3313 | } |
| 3314 | |
| 3315 | static void argument_list_compiler_recurse( struct argument_list_compiler * c, |
| 3316 | PARSE * parse ) |
no test coverage detected