view python/ir/symboltable.py @ 153:e05b2b216bfc

Added common
author Windel Bouwman
date Sat, 02 Mar 2013 09:58:31 +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 = {}