diff options
| author | Damien George <damien.p.george@gmail.com> | 2014-01-18 23:24:36 +0000 |
|---|---|---|
| committer | Damien George <damien.p.george@gmail.com> | 2014-01-18 23:24:36 +0000 |
| commit | 08335004cfe95048ee06134a3e49b9fb75639139 (patch) | |
| tree | 7518a854012938fd70c57b3571a630a142b84f28 /py/bc.h | |
| parent | aefe79880f8c5f66132673ccc9be27d2ca29005b (diff) | |
Add source file name and line number to error messages.
Byte code has a map from byte-code offset to source-code line number,
used to give better error messages.
Diffstat (limited to 'py/bc.h')
| -rw-r--r-- | py/bc.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1,2 +1,2 @@ mp_obj_t mp_execute_byte_code(const byte *code, const mp_obj_t *args, uint n_args, uint n_state); -bool mp_execute_byte_code_2(const byte **ip_in_out, mp_obj_t *fastn, mp_obj_t **sp_in_out); +bool mp_execute_byte_code_2(const byte *code_info, const byte **ip_in_out, mp_obj_t *fastn, mp_obj_t **sp_in_out); |
