| 3412 | } |
| 3413 | |
| 3414 | static void argument_list_compiler_recurse( struct argument_list_compiler * c, |
| 3415 | PARSE * parse ) |
| 3416 | { |
| 3417 | if ( parse ) |
| 3418 | { |
| 3419 | argument_list_compiler_add( c, parse->right ); |
| 3420 | argument_list_compiler_recurse( c, parse->left ); |
| 3421 | } |
| 3422 | } |
| 3423 | |
| 3424 | static struct arg_list * arg_list_compile( PARSE * parse, int * num_arguments ) |
| 3425 | { |
no test coverage detected