Files
tools/executor/state.py
T

12 lines
253 B
Python
Raw Normal View History

2026-03-21 00:54:07 +03:00
__author__ = 'RemiZOffAlex'
__email__ = 'remizoffalex@mail.ru'
class State:
def __init__(self):
self.variables = {}
self.environments = {}
self.scopes = {'root': {}}
self.current = 'root'
self.closures = []