Sign in
gem5
/
public
/
gem5
/
e85cf4f717ddd764a7c84000427ae56bac084855
/
.
/
ext
/
ply
/
test
/
lex_error2.py
blob: 8040d3902b3fd40631e3444dc649d863e6683258 [
file
] [
log
] [
blame
]
# lex_error2.py
#
# t_error defined, but not function
import
sys
if
".."
not
in
sys
.
path
:
sys
.
path
.
insert
(
0
,
".."
)
import
ply
.
lex
as
lex
tokens
=
[
"PLUS"
,
"MINUS"
,
"NUMBER"
,
]
t_PLUS
=
r
'\+'
t_MINUS
=
r
'-'
t_NUMBER
=
r
'\d+'
t_error
=
"foo"
lex
.
lex
()