view python/ir/symboltable.py @ 151:afc8c0207984

Added ir code generator stub
author Windel Bouwman
date Fri, 01 Mar 2013 17:13:56 +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 = {}