view python/ir/symboltable.py @ 168:49f1ab80d040

Added awesome icons
author Windel Bouwman
date Fri, 22 Mar 2013 19:09:38 +0100
parents 4e79484a9d47
children
line wrap: on
line source


class SymbolTable:
   """ Holds a table of symbols for a module or function """
   def __init__(self):
      self.symbols = {}