Skip to content
This repository has been archived by the owner on Jan 9, 2021. It is now read-only.

Commit

Permalink
Expression operations were removed.
Browse files Browse the repository at this point in the history
  • Loading branch information
1995parham committed Oct 30, 2016
1 parent 34b132b commit e5ec4e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion yepc/core/lex.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ def t_COMMENTS(self, t):
# Operators
t_REL_OP = r'\.eq | \.gt | \.ge | \.lt | \.le | \.ne'
t_MATH_OP = r'\+ | \- | \* | \/ | % | \?'
t_EXP_OP = r'= | \+= | \-= | \*= | \/= | \+\+ | \-\-'
t_EXP_OP = r'='

# etc
t_ID = r'\#[a-zA-Z]{2}[0-9]{2}'
Expand Down

0 comments on commit e5ec4e9

Please sign in to comment.