branch : pmacs2
This commit is contained in:
moculus 2007-06-14 14:14:26 +00:00
parent 028b58adc4
commit e6db05be3b
1 changed files with 0 additions and 22 deletions

22
test.py
View File

@ -1,22 +0,0 @@
s = "gwejgwe
gewjgewjgwe
gewjgewjgwe
gejwgew
gewgewjge"
import lex2
lines = [
'this is the first line',
'<< EOF;'
' abracadra hocus pocus',
' EOF',
'EOF',
'"this is a double-quoted string" and this is not...',
"we're done",
]
g = lex2.TestGrammar()
l = lex2.Lexer('lexer', g)
l.lex(lines)
for t in l:
print '%-20r %r' % (t.name, t.string)