Skip to content
GitLab
Explore
Projects
Groups
Topics
Snippets
Projects
Groups
Topics
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
GlimmerBase
DataBaseContest
Commits
8fe31b6a
Commit
8fe31b6a
authored
9 months ago
by
liam
Browse files
Options
Download
Patches
Plain Diff
add support for !=
parent
ccb1f1fe
main
liam_debug
noah_debug
push_branch
zyw
No related merge requests found
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/parser/lex.l
+1
-0
src/parser/lex.l
src/parser/lex.yy.cpp
+202
-197
src/parser/lex.yy.cpp
with
203 additions
and
197 deletions
+203
-197
src/parser/lex.l
+
1
−
0
View file @
8fe31b6a
...
...
@@ -99,6 +99,7 @@ single_op ";"|"("|")"|","|"*"|"="|">"|"<"|"."
">=" { return GEQ; }
"<=" { return LEQ; }
"<>" { return NEQ; }
"!=" { return NEQ; }
{single_op} { return yytext[0]; }
/* id */
{identifier} {
...
...
This diff is collapsed.
Click to expand it.
src/parser/lex.yy.cpp
+
202
−
197
View file @
8fe31b6a
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment
Menu
Explore
Projects
Groups
Topics
Snippets