Sign in
gem5
/
public
/
gem5
/
540e6515de83c5bd314c41f47bcc9fe1275c1c4c
/
.
/
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
()