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/cpp/CPPNoCastExpressionParsersym.java')
-rw-r--r--lrparser/org.eclipse.cdt.core.lrparser/src/org/eclipse/cdt/internal/core/dom/lrparser/cpp/CPPNoCastExpressionParsersym.java44
1 files changed, 22 insertions, 22 deletions
diff --git a/lrparser/org.eclipse.cdt.core.lrparser/src/org/eclipse/cdt/internal/core/dom/lrparser/cpp/CPPNoCastExpressionParsersym.java b/lrparser/org.eclipse.cdt.core.lrparser/src/org/eclipse/cdt/internal/core/dom/lrparser/cpp/CPPNoCastExpressionParsersym.java
index 7dbd7aec12b..56f7a57b725 100644
--- a/lrparser/org.eclipse.cdt.core.lrparser/src/org/eclipse/cdt/internal/core/dom/lrparser/cpp/CPPNoCastExpressionParsersym.java
+++ b/lrparser/org.eclipse.cdt.core.lrparser/src/org/eclipse/cdt/internal/core/dom/lrparser/cpp/CPPNoCastExpressionParsersym.java
@@ -15,7 +15,7 @@ package org.eclipse.cdt.internal.core.dom.lrparser.cpp;
public interface CPPNoCastExpressionParsersym {
public final static int
- TK_asm = 64,
+ TK_asm = 67,
TK_auto = 49,
TK_bool = 13,
TK_break = 76,
@@ -23,7 +23,7 @@ public interface CPPNoCastExpressionParsersym {
TK_catch = 116,
TK_char = 14,
TK_class = 57,
- TK_const = 47,
+ TK_const = 46,
TK_const_cast = 26,
TK_continue = 78,
TK_default = 79,
@@ -32,10 +32,10 @@ public interface CPPNoCastExpressionParsersym {
TK_double = 15,
TK_dynamic_cast = 27,
TK_else = 120,
- TK_enum = 65,
+ TK_enum = 60,
TK_explicit = 50,
TK_export = 73,
- TK_extern = 43,
+ TK_extern = 42,
TK_false = 28,
TK_float = 16,
TK_for = 81,
@@ -46,7 +46,7 @@ public interface CPPNoCastExpressionParsersym {
TK_int = 17,
TK_long = 18,
TK_mutable = 53,
- TK_namespace = 62,
+ TK_namespace = 65,
TK_new = 41,
TK_operator = 6,
TK_private = 117,
@@ -60,20 +60,20 @@ public interface CPPNoCastExpressionParsersym {
TK_sizeof = 30,
TK_static = 55,
TK_static_cast = 31,
- TK_struct = 66,
+ TK_struct = 61,
TK_switch = 85,
- TK_template = 45,
+ TK_template = 47,
TK_this = 32,
TK_throw = 39,
TK_try = 74,
TK_true = 33,
TK_typedef = 56,
TK_typeid = 34,
- TK_typename = 10,
- TK_union = 67,
+ TK_typename = 8,
+ TK_union = 62,
TK_unsigned = 21,
- TK_using = 60,
- TK_virtual = 46,
+ TK_using = 63,
+ TK_virtual = 45,
TK_void = 22,
TK_volatile = 48,
TK_wchar_t = 23,
@@ -97,16 +97,16 @@ public interface CPPNoCastExpressionParsersym {
TK_MinusMinus = 12,
TK_And = 7,
TK_Star = 5,
- TK_Plus = 8,
- TK_Minus = 9,
+ TK_Plus = 9,
+ TK_Minus = 10,
TK_Tilde = 4,
TK_Bang = 25,
TK_Slash = 89,
TK_Percent = 90,
TK_RightShift = 86,
TK_LeftShift = 87,
- TK_LT = 61,
- TK_GT = 63,
+ TK_LT = 64,
+ TK_GT = 66,
TK_LE = 91,
TK_GE = 92,
TK_EQ = 95,
@@ -135,7 +135,7 @@ public interface CPPNoCastExpressionParsersym {
TK_RightBracket = 113,
TK_RightParen = 72,
TK_RightBrace = 71,
- TK_SemiColon = 42,
+ TK_SemiColon = 43,
TK_ERROR_TOKEN = 44,
TK_EOF_TOKEN = 114;
@@ -148,9 +148,9 @@ public interface CPPNoCastExpressionParsersym {
"Star",
"operator",
"And",
+ "typename",
"Plus",
"Minus",
- "typename",
"PlusPlus",
"MinusMinus",
"bool",
@@ -182,12 +182,12 @@ public interface CPPNoCastExpressionParsersym {
"throw",
"delete",
"new",
- "SemiColon",
"extern",
+ "SemiColon",
"ERROR_TOKEN",
- "template",
"virtual",
"const",
+ "template",
"volatile",
"auto",
"explicit",
@@ -200,14 +200,14 @@ public interface CPPNoCastExpressionParsersym {
"class",
"LeftBracket",
"LeftBrace",
+ "enum",
+ "struct",
+ "union",
"using",
"LT",
"namespace",
"GT",
"asm",
- "enum",
- "struct",
- "union",
"Comma",
"Assign",
"Colon",

Back to the top