Source code for pyaiml21.interpreter.symbol_table

"""Symbol table for the interpreter."""
from typing import Dict


[docs]class SymbolTable(Dict[str, str]): """A dictionary like structure to store local variables."""