1
0
Fork 0

parse text in upper case

This commit is contained in:
Kevin Matz 2019-11-17 11:48:55 -05:00
parent c1a7ad48b2
commit fcc44e6f49
1 changed files with 1 additions and 0 deletions

View File

@ -58,6 +58,7 @@ walker = ParseTreeWalker()
def comment(text):
text = text.upper()
input_stream = InputStream(text)
lexer = CommentMacroLexer(input_stream)
stream = CommonTokenStream(lexer)