diff options
Diffstat (limited to 'py/scope.h')
-rw-r--r-- | py/scope.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/py/scope.h b/py/scope.h index 660317f30b..7ecd1e19f9 100644 --- a/py/scope.h +++ b/py/scope.h @@ -36,7 +36,8 @@ typedef struct _scope_t { int num_dict_params; */ int num_locals; - int stack_size; + int stack_size; // maximum size of the locals stack + int exc_stack_size; // maximum size of the exception stack uint unique_code_id; uint emit_options; } scope_t; |