|
|
|
@ -112,7 +112,7 @@ typedef struct _emit_method_table_t {
|
|
|
|
|
void (*end_finally)(emit_t *emit);
|
|
|
|
|
void (*get_iter)(emit_t *emit, bool use_stack);
|
|
|
|
|
void (*for_iter)(emit_t *emit, mp_uint_t label);
|
|
|
|
|
void (*for_iter_end)(emit_t *emit, bool use_stack);
|
|
|
|
|
void (*for_iter_end)(emit_t *emit);
|
|
|
|
|
void (*pop_block)(emit_t *emit);
|
|
|
|
|
void (*pop_except)(emit_t *emit);
|
|
|
|
|
void (*unary_op)(emit_t *emit, mp_unary_op_t op);
|
|
|
|
@ -230,7 +230,7 @@ void mp_emit_bc_setup_finally(emit_t *emit, mp_uint_t label);
|
|
|
|
|
void mp_emit_bc_end_finally(emit_t *emit);
|
|
|
|
|
void mp_emit_bc_get_iter(emit_t *emit, bool use_stack);
|
|
|
|
|
void mp_emit_bc_for_iter(emit_t *emit, mp_uint_t label);
|
|
|
|
|
void mp_emit_bc_for_iter_end(emit_t *emit, bool use_stack);
|
|
|
|
|
void mp_emit_bc_for_iter_end(emit_t *emit);
|
|
|
|
|
void mp_emit_bc_pop_block(emit_t *emit);
|
|
|
|
|
void mp_emit_bc_pop_except(emit_t *emit);
|
|
|
|
|
void mp_emit_bc_unary_op(emit_t *emit, mp_unary_op_t op);
|
|
|
|
|