diff options
author | Aaron Kennedy <aaron.kennedy@nokia.com> | 2009-07-09 07:25:16 (GMT) |
---|---|---|
committer | Aaron Kennedy <aaron.kennedy@nokia.com> | 2009-07-09 07:25:16 (GMT) |
commit | 8a6e5d5c95a8ae586c8fc2fa63be0228c4cefb53 (patch) | |
tree | 92326e96d070ac6c437f7b3cd8d6ac906b2b7656 /src/declarative/qml/parser/qmljsgrammar_p.h | |
parent | 6c901f67fb2f2e73fa362e72d985a04fa57cdf48 (diff) | |
download | Qt-8a6e5d5c95a8ae586c8fc2fa63be0228c4cefb53.zip Qt-8a6e5d5c95a8ae586c8fc2fa63be0228c4cefb53.tar.gz Qt-8a6e5d5c95a8ae586c8fc2fa63be0228c4cefb53.tar.bz2 |
Expand input keyword to include "as" support
Diffstat (limited to 'src/declarative/qml/parser/qmljsgrammar_p.h')
-rw-r--r-- | src/declarative/qml/parser/qmljsgrammar_p.h | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/src/declarative/qml/parser/qmljsgrammar_p.h b/src/declarative/qml/parser/qmljsgrammar_p.h index fde9969..a8d4bdf 100644 --- a/src/declarative/qml/parser/qmljsgrammar_p.h +++ b/src/declarative/qml/parser/qmljsgrammar_p.h @@ -59,11 +59,12 @@ class QmlJSGrammar public: enum { EOF_SYMBOL = 0, - REDUCE_HERE = 90, - SHIFT_THERE = 89, + REDUCE_HERE = 91, + SHIFT_THERE = 90, T_AND = 1, T_AND_AND = 2, T_AND_EQ = 3, + T_AS = 89, T_AUTOMATIC_SEMICOLON = 62, T_BREAK = 4, T_CASE = 5, @@ -150,15 +151,15 @@ public: T_XOR = 78, T_XOR_EQ = 79, - ACCEPT_STATE = 597, - RULE_COUNT = 328, - STATE_COUNT = 598, - TERMINAL_COUNT = 91, + ACCEPT_STATE = 608, + RULE_COUNT = 334, + STATE_COUNT = 609, + TERMINAL_COUNT = 92, NON_TERMINAL_COUNT = 104, - GOTO_INDEX_OFFSET = 598, - GOTO_INFO_OFFSET = 2179, - GOTO_CHECK_OFFSET = 2179 + GOTO_INDEX_OFFSET = 609, + GOTO_INFO_OFFSET = 2136, + GOTO_CHECK_OFFSET = 2136 }; static const char *const spell []; |