Define constants for types of scopes

This commit is contained in:
Jeremy Hylton 2001-04-12 06:39:24 +00:00
parent 0056a427bb
commit 53ee2a94c7
2 changed files with 10 additions and 0 deletions

View file

@ -7,3 +7,8 @@ OP_ASSIGN = 'OP_ASSIGN'
OP_DELETE = 'OP_DELETE'
OP_APPLY = 'OP_APPLY'
SC_LOCAL = 1
SC_GLOBAL = 2
SC_FREE = 3
SC_CELL = 4
SC_UNKNOWN = 5