| 2021 | } |
| 2022 | |
| 2023 | static void var_parse_string_compile( VAR_PARSE_STRING const * parse, |
| 2024 | compiler * c ) |
| 2025 | { |
| 2026 | compile_emit( c, INSTR_PUSH_CONSTANT, compile_emit_constant( c, parse->s ) |
| 2027 | ); |
| 2028 | } |
| 2029 | |
| 2030 | static void parse_var_string( char const * first, char const * last, |
| 2031 | struct dynamic_array * out ); |
no test coverage detected