Mercurial > lcfOS
comparison python/ppci/c3/lexer.py @ 319:8d07a4254f04
Work on burg
author | Windel Bouwman |
---|---|
date | Sat, 18 Jan 2014 18:58:43 +0100 |
parents | 084cccaa5deb |
children | 44f336460c2a |
comparison
equal
deleted
inserted
replaced
318:e84047f29c78 | 319:8d07a4254f04 |
---|---|
1 import collections | |
2 import re | 1 import re |
3 | |
4 from ppci import CompilerError, SourceLocation, Token | 2 from ppci import CompilerError, SourceLocation, Token |
5 | 3 |
6 """ | 4 """ |
7 Lexical analyzer part. Splits the input character stream into tokens. | 5 Lexical analyzer part. Splits the input character stream into tokens. |
8 """ | 6 """ |