You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
664 B
34 lines
664 B
import antlr3
|
|
import testbase
|
|
import unittest
|
|
|
|
|
|
class t038lexerRuleLabel(testbase.ANTLRTest):
|
|
def setUp(self):
|
|
self.compileGrammar()
|
|
|
|
|
|
def lexerClass(self, base):
|
|
class TLexer(base):
|
|
def recover(self, input, re):
|
|
# no error recovery yet, just crash!
|
|
raise
|
|
|
|
return TLexer
|
|
|
|
|
|
def testValid1(self):
|
|
cStream = antlr3.StringStream('a 2')
|
|
|
|
lexer = self.getLexer(cStream)
|
|
|
|
while True:
|
|
t = lexer.nextToken()
|
|
if t.type == antlr3.EOF:
|
|
break
|
|
print t
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|