mirror of
https://github.com/micropython/micropython.git
synced 2025-09-05 17:30:41 +02:00
10 lines
229 B
C
10 lines
229 B
C
enum {
|
|
MP_EMIT_OPT_NONE,
|
|
MP_EMIT_OPT_BYTE_CODE,
|
|
MP_EMIT_OPT_NATIVE_PYTHON,
|
|
MP_EMIT_OPT_VIPER,
|
|
MP_EMIT_OPT_ASM_THUMB,
|
|
};
|
|
|
|
mp_obj_t mp_compile(mp_parse_node_t pn, qstr source_file, uint emit_opt, bool is_repl);
|