diff options
Diffstat (limited to 'Include/frameobject.h')
-rw-r--r-- | Include/frameobject.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Include/frameobject.h b/Include/frameobject.h index 22bdfa9..479664d 100644 --- a/Include/frameobject.h +++ b/Include/frameobject.h @@ -41,6 +41,8 @@ typedef struct _frame { int f_nvalues; /* size of f_valuestack */ int f_nblocks; /* size of f_blockstack */ int f_iblock; /* index in f_blockstack */ + int f_lasti; /* Last instruction if called */ + int f_lineno; /* Current line number */ } frameobject; |