src/LexerScanner.cc

changeset 110
7a7a53f1d51b
parent 108
6409ece8297c
child 111
87d9ebd3ef34
--- a/src/LexerScanner.cc	Wed Feb 12 06:33:16 2014 +0200
+++ b/src/LexerScanner.cc	Wed Feb 12 06:50:13 2014 +0200
@@ -111,7 +111,7 @@
 	"return",
 };
 
-static_assert (countof (gTokenStrings) == (int) tkLastNamedToken + 1,
+static_assert (countof (gTokenStrings) == (int)gLastNamedToken + 1,
 	"Count of gTokenStrings is not the same as the amount of named token identifiers.");
 
 // =============================================================================
@@ -192,13 +192,13 @@
 	{
 		int flags = 0;
 
-		if (i >= tkFirstNamedToken)
+		if (i >= gFirstNamedToken)
 			flags |= FCheckWord;
 
 		if (CheckString (gTokenStrings[i], flags))
 		{
 			mTokenText = gTokenStrings[i];
-			mTokenType = (EToken) i;
+			mTokenType = (TokenType) i;
 			return true;
 		}
 	}
@@ -232,7 +232,7 @@
 			mTokenText += *mPosition++;
 		}
 
-		mTokenType = tkString;
+		mTokenType =TK_String;
 		Skip(); // skip the final quote
 		return true;
 	}
@@ -242,13 +242,13 @@
 		while (isdigit (*mPosition))
 			mTokenText += *mPosition++;
 
-		mTokenType = tkNumber;
+		mTokenType =TK_Number;
 		return true;
 	}
 
 	if (IsSymbolChar (*mPosition, false))
 	{
-		mTokenType = tkSymbol;
+		mTokenType =TK_Symbol;
 
 		do
 		{
@@ -288,9 +288,9 @@
 
 // =============================================================================
 //
-String LexerScanner::GetTokenString (EToken a)
+String LexerScanner::GetTokenString (TokenType a)
 {
-	assert ((int) a <= tkLastNamedToken);
+	assert ((int) a <= gLastNamedToken);
 	return gTokenStrings[a];
 }
 

mercurial