From aeecf0881e48ec91b958140b91556cd84e473abd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benedikt=20B=C3=B6hm?= Date: Tue, 26 May 2009 11:37:39 +0200 Subject: fix __init__.py --- src/front/__init__.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/front/__init__.py b/src/front/__init__.py index fdf35a8..b72b440 100644 --- a/src/front/__init__.py +++ b/src/front/__init__.py @@ -1,6 +1,5 @@ from front.lexer import Lexer from front.parser import Parser -from front.symbols import SymbolTable def main(): source = '''fun fib[a] @@ -19,7 +18,6 @@ fun main[] @sum end''' - symbols = SymbolTable() lex = Lexer(source) # testing @@ -28,7 +26,7 @@ end''' print token.__repr__() if not token: break - + # parse = Parser(lex) # parse.program() -- cgit v1.2.3