Linaro Git Browser
Code Review
Sign In
review.linaro.org
/
lite
/
micropython
/
d139c489bab6b58906868e3fc8383ea813a122d4
/
.
/
py
/
compile.h
blob: 10fd603f2e84c4ce76d7fb304ca67cdc5cccf1d9 [
file
] [
log
] [
blame
]
// 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
);