You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
270 B
10 lines
270 B
// These must fit in 8 bits; see scope.h
|
|
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);
|
|
|