Files
tools/executor/state.py
T
RemiZOffAlex 9f00a3d2a0
Test Actions / Builder (push) Failing after 6s
Добавить executor/state.py
2026-03-21 00:54:07 +03:00

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 = []