12 lines
253 B
Python
12 lines
253 B
Python
__author__ = 'RemiZOffAlex'
|
|
__email__ = 'remizoffalex@mail.ru'
|
|
|
|
|
|
class State:
|
|
def __init__(self):
|
|
self.variables = {}
|
|
self.environments = {}
|
|
self.scopes = {'root': {}}
|
|
self.current = 'root'
|
|
self.closures = []
|