summaryrefslogtreecommitdiffstats
path: root/src/front/token.py (follow)
Commit message (Collapse)AuthorAgeFilesLines
* fix function_callBenedikt Böhm2009-06-291-0/+1
| | | | | - function_call is now an expression and a statement - call keyword is required to make lookahead = 1 work
* added parserAlexander Sulfrian2009-06-231-0/+2
| | | | | - commited parser (Michael Popov) - changed encoding of parser.py to utf8
* implement AST interfaces, which also superseeds parser tokensBenedikt Böhm2009-05-211-41/+6
|
* remove symbol table from lexerBenedikt Böhm2009-05-201-9/+14
|
* convert tags to a typesafe enum so we can print strings instead of intsBenedikt Böhm2009-05-201-42/+50
|
* implemented lexer (with tokens and symbolTable)Alexander Sulfrian2009-05-201-0/+66
todo: beautify code, implement token classes for parser implemented test function with testcode moved token class to single file (token.py)