src/LexerScanner.cc

changeset 91
427eb377d53e
parent 88
5def6ff8b466
child 98
ea02b78a737a
--- a/src/LexerScanner.cc	Mon Feb 03 11:23:56 2014 +0200
+++ b/src/LexerScanner.cc	Mon Feb 03 20:12:44 2014 +0200
@@ -36,13 +36,22 @@
 
 static const String gTokenStrings[] =
 {
+	"<<=",
+	">>=",
 	"==",
+	"!=",
 	"[]",
 	"+=",
 	"-=",
 	"*=",
 	"/=",
 	"%=",
+	"<<",
+	">>",
+	">=",
+	"<=",
+	"&&",
+	"||",
 	"'",
 	"$",
 	"(",
@@ -65,6 +74,10 @@
 	";",
 	"#",
 	"!",
+	"&",
+	"|",
+	"^",
+	"?",
 	"->",
 	"bool",
 	"break",
@@ -89,6 +102,8 @@
 	"str",
 	"void",
 	"while",
+	"true",
+	"false",
 	"enum",
 	"func",
 	"return",

mercurial