| 3586 | } |
| 3587 | |
| 3588 | static void argument_list_compiler_recurse( struct argument_list_compiler * c, |
| 3589 | PARSE * parse ) |
| 3590 | { |
| 3591 | if ( parse ) |
| 3592 | { |
| 3593 | argument_list_compiler_add( c, parse->right ); |
| 3594 | argument_list_compiler_recurse( c, parse->left ); |
| 3595 | } |
| 3596 | } |
| 3597 | |
| 3598 | static struct arg_list * arg_list_compile( PARSE * parse, int32_t * num_arguments ) |
| 3599 | { |
no test coverage detected