diff options
Diffstat (limited to 'py/compile.h')
-rw-r--r-- | py/compile.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/py/compile.h b/py/compile.h index 983a443e95..cef20efce2 100644 --- a/py/compile.h +++ b/py/compile.h @@ -35,3 +35,6 @@ enum { // the compiler will free the parse tree (pn) before it returns mp_obj_t mp_compile(mp_parse_node_t pn, qstr source_file, uint emit_opt, bool is_repl); + +// this is implemented in runtime.c +mp_obj_t mp_parse_compile_execute(mp_lexer_t *lex, mp_parse_input_kind_t parse_input_kind, mp_obj_dict_t *globals, mp_obj_dict_t *locals); |