| 1859 | } |
| 1860 | |
| 1861 | static void var_parse_string_compile( VAR_PARSE_STRING const * parse, |
| 1862 | compiler * c ) |
| 1863 | { |
| 1864 | compile_emit( c, INSTR_PUSH_CONSTANT, compile_emit_constant( c, parse->s ) |
| 1865 | ); |
| 1866 | } |
| 1867 | |
| 1868 | static void var_parse_file_compile( VAR_PARSE_FILE const * parse, compiler * c ) |
| 1869 | { |
no test coverage detected