25 lines
256 B
Python
25 lines
256 B
Python
|
# lex_token.py
|
||
|
#
|
||
|
# tokens is right type, but is missing a token for one rule
|
||
|
|
||
|
import lex
|
||
|
|
||
|
tokens = [
|
||
|
"PLUS",
|
||
|
"NUMBER",
|
||
|
]
|
||
|
|
||
|
t_PLUS = r'\+'
|
||
|
t_MINUS = r'-'
|
||
|
t_NUMBER = r'\d+'
|
||
|
|
||
|
def t_error(t):
|
||
|
pass
|
||
|
|
||
|
import sys
|
||
|
sys.tracebacklimit = 0
|
||
|
|
||
|
lex.lex()
|
||
|
|
||
|
|