| 1808 | } |
| 1809 | |
| 1810 | static void var_parse_string_compile( VAR_PARSE_STRING const * parse, |
| 1811 | compiler * c ) |
| 1812 | { |
| 1813 | compile_emit( c, INSTR_PUSH_CONSTANT, compile_emit_constant( c, parse->s ) |
| 1814 | ); |
| 1815 | } |
| 1816 | |
| 1817 | static void var_parse_file_compile( VAR_PARSE_FILE const * parse, compiler * c ) |
| 1818 | { |
no test coverage detected