| 3313 | } |
| 3314 | |
| 3315 | static void argument_list_compiler_recurse( struct argument_list_compiler * c, |
| 3316 | PARSE * parse ) |
| 3317 | { |
| 3318 | if ( parse ) |
| 3319 | { |
| 3320 | argument_list_compiler_add( c, parse->right ); |
| 3321 | argument_list_compiler_recurse( c, parse->left ); |
| 3322 | } |
| 3323 | } |
| 3324 | |
| 3325 | static struct arg_list * arg_list_compile( PARSE * parse, int * num_arguments ) |
| 3326 | { |
no test coverage detected