Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'lrparser/org.eclipse.cdt.core.lrparser/src/org/eclipse/cdt/internal/core/dom/lrparser/gpp/GPPParsersym.java')
-rw-r--r--lrparser/org.eclipse.cdt.core.lrparser/src/org/eclipse/cdt/internal/core/dom/lrparser/gpp/GPPParsersym.java34
1 files changed, 17 insertions, 17 deletions
diff --git a/lrparser/org.eclipse.cdt.core.lrparser/src/org/eclipse/cdt/internal/core/dom/lrparser/gpp/GPPParsersym.java b/lrparser/org.eclipse.cdt.core.lrparser/src/org/eclipse/cdt/internal/core/dom/lrparser/gpp/GPPParsersym.java
index 9244f64a591..304f23f81f8 100644
--- a/lrparser/org.eclipse.cdt.core.lrparser/src/org/eclipse/cdt/internal/core/dom/lrparser/gpp/GPPParsersym.java
+++ b/lrparser/org.eclipse.cdt.core.lrparser/src/org/eclipse/cdt/internal/core/dom/lrparser/gpp/GPPParsersym.java
@@ -25,7 +25,7 @@ public interface GPPParsersym {
TK_case = 84,
TK_catch = 127,
TK_char = 17,
- TK_class = 48,
+ TK_class = 49,
TK_const = 28,
TK_const_cast = 50,
TK_continue = 85,
@@ -65,9 +65,9 @@ public interface GPPParsersym {
TK_static_cast = 55,
TK_struct = 64,
TK_switch = 93,
- TK_template = 44,
+ TK_template = 45,
TK_this = 56,
- TK_throw = 70,
+ TK_throw = 71,
TK_try = 79,
TK_true = 57,
TK_typedef = 40,
@@ -75,7 +75,7 @@ public interface GPPParsersym {
TK_typename = 13,
TK_union = 65,
TK_unsigned = 24,
- TK_using = 67,
+ TK_using = 68,
TK_virtual = 31,
TK_void = 25,
TK_volatile = 29,
@@ -84,12 +84,12 @@ public interface GPPParsersym {
TK_integer = 59,
TK_floating = 60,
TK_charconst = 61,
- TK_stringlit = 45,
+ TK_stringlit = 44,
TK_identifier = 1,
TK_Completion = 2,
- TK_EndOfCompletion = 11,
+ TK_EndOfCompletion = 10,
TK_Invalid = 131,
- TK_LeftBracket = 71,
+ TK_LeftBracket = 72,
TK_LeftParen = 3,
TK_Dot = 128,
TK_DotStar = 98,
@@ -98,16 +98,16 @@ public interface GPPParsersym {
TK_PlusPlus = 46,
TK_MinusMinus = 47,
TK_And = 12,
- TK_Star = 10,
+ TK_Star = 11,
TK_Plus = 42,
TK_Minus = 43,
TK_Tilde = 8,
- TK_Bang = 49,
+ TK_Bang = 48,
TK_Slash = 99,
TK_Percent = 100,
TK_RightShift = 94,
TK_LeftShift = 95,
- TK_LT = 69,
+ TK_LT = 70,
TK_GT = 78,
TK_LE = 101,
TK_GE = 102,
@@ -134,17 +134,17 @@ public interface GPPParsersym {
TK_OrAssign = 125,
TK_Comma = 77,
TK_RightBracket = 126,
- TK_RightParen = 72,
+ TK_RightParen = 73,
TK_RightBrace = 81,
TK_SemiColon = 41,
- TK_LeftBrace = 73,
+ TK_LeftBrace = 67,
TK_typeof = 27,
TK___alignof__ = 62,
TK___attribute__ = 6,
TK___declspec = 7,
TK_MAX = 109,
TK_MIN = 110,
- TK_ERROR_TOKEN = 68,
+ TK_ERROR_TOKEN = 69,
TK_EOF_TOKEN = 129;
public final static String orderedTerminalSymbols[] = {
@@ -158,8 +158,8 @@ public interface GPPParsersym {
"__declspec",
"Tilde",
"operator",
- "Star",
"EndOfCompletion",
+ "Star",
"And",
"typename",
"_Complex",
@@ -192,12 +192,12 @@ public interface GPPParsersym {
"SemiColon",
"Plus",
"Minus",
- "template",
"stringlit",
+ "template",
"PlusPlus",
"MinusMinus",
- "class",
"Bang",
+ "class",
"const_cast",
"dynamic_cast",
"false",
@@ -215,13 +215,13 @@ public interface GPPParsersym {
"struct",
"union",
"namespace",
+ "LeftBrace",
"using",
"ERROR_TOKEN",
"LT",
"throw",
"LeftBracket",
"RightParen",
- "LeftBrace",
"Colon",
"delete",
"new",

Back to the top