forked from qt-creator/qt-creator
qmljs: update parser
Update the qtcreator qmljs parser to the one of Qt 5.12. It supports EcmaScript 7. Task-number: QTCREATORBUG-20341 Change-Id: I0d1cff71402ba17e22cde6b46c65614e162280de Reviewed-by: Erik Verbruggen <erik.verbruggen@qt.io>
This commit is contained in:
@@ -42,10 +42,10 @@ QT_QML_BEGIN_NAMESPACE
|
||||
|
||||
namespace QmlJS {
|
||||
|
||||
static inline int classify2(const QChar *s, bool qmlMode) {
|
||||
static inline int classify2(const QChar *s, int parseModeFlags) {
|
||||
if (s[0].unicode() == 'a') {
|
||||
if (s[1].unicode() == 's') {
|
||||
return qmlMode ? Lexer::T_AS : Lexer::T_IDENTIFIER;
|
||||
return Lexer::T_AS;
|
||||
}
|
||||
}
|
||||
else if (s[0].unicode() == 'd') {
|
||||
@@ -61,15 +61,18 @@ static inline int classify2(const QChar *s, bool qmlMode) {
|
||||
return Lexer::T_IN;
|
||||
}
|
||||
}
|
||||
else if (qmlMode && s[0].unicode() == 'o') {
|
||||
else if (s[0].unicode() == 'o') {
|
||||
if (s[1].unicode() == 'n') {
|
||||
return qmlMode ? Lexer::T_ON : Lexer::T_IDENTIFIER;
|
||||
return (parseModeFlags & Lexer::QmlMode) ? Lexer::T_ON : Lexer::T_IDENTIFIER;
|
||||
}
|
||||
else if (s[1].unicode() == 'f') {
|
||||
return Lexer::T_OF;
|
||||
}
|
||||
}
|
||||
return Lexer::T_IDENTIFIER;
|
||||
}
|
||||
|
||||
static inline int classify3(const QChar *s, bool qmlMode) {
|
||||
static inline int classify3(const QChar *s, int parseModeFlags) {
|
||||
if (s[0].unicode() == 'f') {
|
||||
if (s[1].unicode() == 'o') {
|
||||
if (s[2].unicode() == 'r') {
|
||||
@@ -87,7 +90,7 @@ static inline int classify3(const QChar *s, bool qmlMode) {
|
||||
else if (s[0].unicode() == 'i') {
|
||||
if (s[1].unicode() == 'n') {
|
||||
if (s[2].unicode() == 't') {
|
||||
return qmlMode ? int(Lexer::T_INT) : int(Lexer::T_IDENTIFIER);
|
||||
return (parseModeFlags & Lexer::QmlMode) ? int(Lexer::T_INT) : int(Lexer::T_IDENTIFIER);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -129,12 +132,12 @@ static inline int classify3(const QChar *s, bool qmlMode) {
|
||||
return Lexer::T_IDENTIFIER;
|
||||
}
|
||||
|
||||
static inline int classify4(const QChar *s, bool qmlMode) {
|
||||
static inline int classify4(const QChar *s, int parseModeFlags) {
|
||||
if (s[0].unicode() == 'b') {
|
||||
if (s[1].unicode() == 'y') {
|
||||
if (s[2].unicode() == 't') {
|
||||
if (s[3].unicode() == 'e') {
|
||||
return qmlMode ? int(Lexer::T_BYTE) : int(Lexer::T_IDENTIFIER);
|
||||
return (parseModeFlags & Lexer::QmlMode) ? int(Lexer::T_BYTE) : int(Lexer::T_IDENTIFIER);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -150,7 +153,7 @@ static inline int classify4(const QChar *s, bool qmlMode) {
|
||||
else if (s[1].unicode() == 'h') {
|
||||
if (s[2].unicode() == 'a') {
|
||||
if (s[3].unicode() == 'r') {
|
||||
return qmlMode ? int(Lexer::T_CHAR) : int(Lexer::T_IDENTIFIER);
|
||||
return (parseModeFlags & Lexer::QmlMode) ? int(Lexer::T_CHAR) : int(Lexer::T_IDENTIFIER);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -166,7 +169,16 @@ static inline int classify4(const QChar *s, bool qmlMode) {
|
||||
else if (s[1].unicode() == 'n') {
|
||||
if (s[2].unicode() == 'u') {
|
||||
if (s[3].unicode() == 'm') {
|
||||
return qmlMode ? int(Lexer::T_ENUM) : int(Lexer::T_RESERVED_WORD);
|
||||
return (parseModeFlags & Lexer::QmlMode) ? int(Lexer::T_ENUM) : int(Lexer::T_RESERVED_WORD);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
else if (s[0].unicode() == 'f') {
|
||||
if (s[1].unicode() == 'r') {
|
||||
if (s[2].unicode() == 'o') {
|
||||
if (s[3].unicode() == 'm') {
|
||||
return int(Lexer::T_FROM);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -175,7 +187,7 @@ static inline int classify4(const QChar *s, bool qmlMode) {
|
||||
if (s[1].unicode() == 'o') {
|
||||
if (s[2].unicode() == 't') {
|
||||
if (s[3].unicode() == 'o') {
|
||||
return qmlMode ? int(Lexer::T_GOTO) : int(Lexer::T_IDENTIFIER);
|
||||
return (parseModeFlags & Lexer::QmlMode) ? int(Lexer::T_GOTO) : int(Lexer::T_IDENTIFIER);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -184,7 +196,7 @@ static inline int classify4(const QChar *s, bool qmlMode) {
|
||||
if (s[1].unicode() == 'o') {
|
||||
if (s[2].unicode() == 'n') {
|
||||
if (s[3].unicode() == 'g') {
|
||||
return qmlMode ? int(Lexer::T_LONG) : int(Lexer::T_IDENTIFIER);
|
||||
return (parseModeFlags & Lexer::QmlMode) ? int(Lexer::T_LONG) : int(Lexer::T_IDENTIFIER);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -235,7 +247,7 @@ static inline int classify4(const QChar *s, bool qmlMode) {
|
||||
return Lexer::T_IDENTIFIER;
|
||||
}
|
||||
|
||||
static inline int classify5(const QChar *s, bool qmlMode) {
|
||||
static inline int classify5(const QChar *s, int parseModeFlags) {
|
||||
if (s[0].unicode() == 'b') {
|
||||
if (s[1].unicode() == 'r') {
|
||||
if (s[2].unicode() == 'e') {
|
||||
@@ -290,7 +302,7 @@ static inline int classify5(const QChar *s, bool qmlMode) {
|
||||
if (s[2].unicode() == 'n') {
|
||||
if (s[3].unicode() == 'a') {
|
||||
if (s[4].unicode() == 'l') {
|
||||
return qmlMode ? int(Lexer::T_FINAL) : int(Lexer::T_IDENTIFIER);
|
||||
return (parseModeFlags & Lexer::QmlMode) ? int(Lexer::T_FINAL) : int(Lexer::T_IDENTIFIER);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -299,7 +311,7 @@ static inline int classify5(const QChar *s, bool qmlMode) {
|
||||
if (s[2].unicode() == 'o') {
|
||||
if (s[3].unicode() == 'a') {
|
||||
if (s[4].unicode() == 't') {
|
||||
return qmlMode ? int(Lexer::T_FLOAT) : int(Lexer::T_IDENTIFIER);
|
||||
return (parseModeFlags & Lexer::QmlMode) ? int(Lexer::T_FLOAT) : int(Lexer::T_IDENTIFIER);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -310,7 +322,7 @@ static inline int classify5(const QChar *s, bool qmlMode) {
|
||||
if (s[2].unicode() == 'o') {
|
||||
if (s[3].unicode() == 'r') {
|
||||
if (s[4].unicode() == 't') {
|
||||
return qmlMode ? int(Lexer::T_SHORT) : int(Lexer::T_IDENTIFIER);
|
||||
return (parseModeFlags & Lexer::QmlMode) ? int(Lexer::T_SHORT) : int(Lexer::T_IDENTIFIER);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -319,7 +331,7 @@ static inline int classify5(const QChar *s, bool qmlMode) {
|
||||
if (s[2].unicode() == 'p') {
|
||||
if (s[3].unicode() == 'e') {
|
||||
if (s[4].unicode() == 'r') {
|
||||
return qmlMode ? int(Lexer::T_SUPER) : int(Lexer::T_RESERVED_WORD);
|
||||
return int(Lexer::T_SUPER);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -347,10 +359,21 @@ static inline int classify5(const QChar *s, bool qmlMode) {
|
||||
}
|
||||
}
|
||||
}
|
||||
else if (s[0].unicode() == 'y') {
|
||||
if (s[1].unicode() == 'i') {
|
||||
if (s[2].unicode() == 'e') {
|
||||
if (s[3].unicode() == 'l') {
|
||||
if (s[4].unicode() == 'd') {
|
||||
return (parseModeFlags & Lexer::YieldIsKeyword) ? Lexer::T_YIELD : Lexer::T_IDENTIFIER;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
return Lexer::T_IDENTIFIER;
|
||||
}
|
||||
|
||||
static inline int classify6(const QChar *s, bool qmlMode) {
|
||||
static inline int classify6(const QChar *s, int parseModeFlags) {
|
||||
if (s[0].unicode() == 'd') {
|
||||
if (s[1].unicode() == 'e') {
|
||||
if (s[2].unicode() == 'l') {
|
||||
@@ -368,7 +391,7 @@ static inline int classify6(const QChar *s, bool qmlMode) {
|
||||
if (s[3].unicode() == 'b') {
|
||||
if (s[4].unicode() == 'l') {
|
||||
if (s[5].unicode() == 'e') {
|
||||
return qmlMode ? int(Lexer::T_DOUBLE) : int(Lexer::T_IDENTIFIER);
|
||||
return (parseModeFlags & Lexer::QmlMode) ? int(Lexer::T_DOUBLE) : int(Lexer::T_IDENTIFIER);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -394,7 +417,7 @@ static inline int classify6(const QChar *s, bool qmlMode) {
|
||||
if (s[3].unicode() == 'o') {
|
||||
if (s[4].unicode() == 'r') {
|
||||
if (s[5].unicode() == 't') {
|
||||
return qmlMode ? int(Lexer::T_IMPORT) : int(Lexer::T_RESERVED_WORD);
|
||||
return Lexer::T_IMPORT;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -407,7 +430,7 @@ static inline int classify6(const QChar *s, bool qmlMode) {
|
||||
if (s[3].unicode() == 'i') {
|
||||
if (s[4].unicode() == 'v') {
|
||||
if (s[5].unicode() == 'e') {
|
||||
return qmlMode ? int(Lexer::T_NATIVE) : int(Lexer::T_IDENTIFIER);
|
||||
return (parseModeFlags & Lexer::QmlMode) ? int(Lexer::T_NATIVE) : int(Lexer::T_IDENTIFIER);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -420,7 +443,7 @@ static inline int classify6(const QChar *s, bool qmlMode) {
|
||||
if (s[3].unicode() == 'l') {
|
||||
if (s[4].unicode() == 'i') {
|
||||
if (s[5].unicode() == 'c') {
|
||||
return qmlMode ? Lexer::T_PUBLIC : Lexer::T_IDENTIFIER;
|
||||
return (parseModeFlags & Lexer::QmlMode) ? Lexer::T_PUBLIC : Lexer::T_IDENTIFIER;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -431,7 +454,7 @@ static inline int classify6(const QChar *s, bool qmlMode) {
|
||||
if (s[3].unicode() == 'g') {
|
||||
if (s[4].unicode() == 'm') {
|
||||
if (s[5].unicode() == 'a') {
|
||||
return qmlMode ? Lexer::T_PRAGMA : Lexer::T_IDENTIFIER;
|
||||
return (parseModeFlags & Lexer::QmlMode) ? Lexer::T_PRAGMA : Lexer::T_IDENTIFIER;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -452,7 +475,7 @@ static inline int classify6(const QChar *s, bool qmlMode) {
|
||||
}
|
||||
}
|
||||
else if (s[0].unicode() == 's') {
|
||||
if (qmlMode && s[1].unicode() == 'i') {
|
||||
if ((parseModeFlags & Lexer::QmlMode) && s[1].unicode() == 'i') {
|
||||
if (s[2].unicode() == 'g') {
|
||||
if (s[3].unicode() == 'n') {
|
||||
if (s[4].unicode() == 'a') {
|
||||
@@ -468,7 +491,7 @@ static inline int classify6(const QChar *s, bool qmlMode) {
|
||||
if (s[3].unicode() == 't') {
|
||||
if (s[4].unicode() == 'i') {
|
||||
if (s[5].unicode() == 'c') {
|
||||
return qmlMode ? int(Lexer::T_STATIC) : int(Lexer::T_IDENTIFIER);
|
||||
return (parseModeFlags & Lexer::StaticIsKeyword) ? int(Lexer::T_STATIC) : int(Lexer::T_IDENTIFIER);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -492,7 +515,7 @@ static inline int classify6(const QChar *s, bool qmlMode) {
|
||||
if (s[3].unicode() == 'o') {
|
||||
if (s[4].unicode() == 'w') {
|
||||
if (s[5].unicode() == 's') {
|
||||
return qmlMode ? int(Lexer::T_THROWS) : int(Lexer::T_IDENTIFIER);
|
||||
return (parseModeFlags & Lexer::QmlMode) ? int(Lexer::T_THROWS) : int(Lexer::T_IDENTIFIER);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -513,7 +536,7 @@ static inline int classify6(const QChar *s, bool qmlMode) {
|
||||
return Lexer::T_IDENTIFIER;
|
||||
}
|
||||
|
||||
static inline int classify7(const QChar *s, bool qmlMode) {
|
||||
static inline int classify7(const QChar *s, int parseModeFlags) {
|
||||
if (s[0].unicode() == 'b') {
|
||||
if (s[1].unicode() == 'o') {
|
||||
if (s[2].unicode() == 'o') {
|
||||
@@ -521,7 +544,7 @@ static inline int classify7(const QChar *s, bool qmlMode) {
|
||||
if (s[4].unicode() == 'e') {
|
||||
if (s[5].unicode() == 'a') {
|
||||
if (s[6].unicode() == 'n') {
|
||||
return qmlMode ? int(Lexer::T_BOOLEAN) : int(Lexer::T_IDENTIFIER);
|
||||
return (parseModeFlags & Lexer::QmlMode) ? int(Lexer::T_BOOLEAN) : int(Lexer::T_IDENTIFIER);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -581,7 +604,7 @@ static inline int classify7(const QChar *s, bool qmlMode) {
|
||||
if (s[4].unicode() == 'a') {
|
||||
if (s[5].unicode() == 'g') {
|
||||
if (s[6].unicode() == 'e') {
|
||||
return qmlMode ? int(Lexer::T_PACKAGE) : int(Lexer::T_IDENTIFIER);
|
||||
return (parseModeFlags & Lexer::QmlMode) ? int(Lexer::T_PACKAGE) : int(Lexer::T_IDENTIFIER);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -594,7 +617,7 @@ static inline int classify7(const QChar *s, bool qmlMode) {
|
||||
if (s[4].unicode() == 'a') {
|
||||
if (s[5].unicode() == 't') {
|
||||
if (s[6].unicode() == 'e') {
|
||||
return qmlMode ? int(Lexer::T_PRIVATE) : int(Lexer::T_IDENTIFIER);
|
||||
return (parseModeFlags & Lexer::QmlMode) ? int(Lexer::T_PRIVATE) : int(Lexer::T_IDENTIFIER);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -605,7 +628,7 @@ static inline int classify7(const QChar *s, bool qmlMode) {
|
||||
return Lexer::T_IDENTIFIER;
|
||||
}
|
||||
|
||||
static inline int classify8(const QChar *s, bool qmlMode) {
|
||||
static inline int classify8(const QChar *s, int parseModeFlags) {
|
||||
if (s[0].unicode() == 'a') {
|
||||
if (s[1].unicode() == 'b') {
|
||||
if (s[2].unicode() == 's') {
|
||||
@@ -614,7 +637,7 @@ static inline int classify8(const QChar *s, bool qmlMode) {
|
||||
if (s[5].unicode() == 'a') {
|
||||
if (s[6].unicode() == 'c') {
|
||||
if (s[7].unicode() == 't') {
|
||||
return qmlMode ? int(Lexer::T_ABSTRACT) : int(Lexer::T_IDENTIFIER);
|
||||
return (parseModeFlags & Lexer::QmlMode) ? int(Lexer::T_ABSTRACT) : int(Lexer::T_IDENTIFIER);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -674,7 +697,7 @@ static inline int classify8(const QChar *s, bool qmlMode) {
|
||||
}
|
||||
}
|
||||
}
|
||||
else if (qmlMode && s[0].unicode() == 'p') {
|
||||
else if ((parseModeFlags & Lexer::QmlMode) && s[0].unicode() == 'p') {
|
||||
if (s[1].unicode() == 'r') {
|
||||
if (s[2].unicode() == 'o') {
|
||||
if (s[3].unicode() == 'p') {
|
||||
@@ -691,7 +714,7 @@ static inline int classify8(const QChar *s, bool qmlMode) {
|
||||
}
|
||||
}
|
||||
}
|
||||
else if (qmlMode && s[0].unicode() == 'r') {
|
||||
else if ((parseModeFlags & Lexer::QmlMode) && s[0].unicode() == 'r') {
|
||||
if (s[1].unicode() == 'e') {
|
||||
if (s[2].unicode() == 'a') {
|
||||
if (s[3].unicode() == 'd') {
|
||||
@@ -716,7 +739,7 @@ static inline int classify8(const QChar *s, bool qmlMode) {
|
||||
if (s[5].unicode() == 'i') {
|
||||
if (s[6].unicode() == 'l') {
|
||||
if (s[7].unicode() == 'e') {
|
||||
return qmlMode ? int(Lexer::T_VOLATILE) : int(Lexer::T_IDENTIFIER);
|
||||
return (parseModeFlags & Lexer::QmlMode) ? int(Lexer::T_VOLATILE) : int(Lexer::T_IDENTIFIER);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -728,7 +751,7 @@ static inline int classify8(const QChar *s, bool qmlMode) {
|
||||
return Lexer::T_IDENTIFIER;
|
||||
}
|
||||
|
||||
static inline int classify9(const QChar *s, bool qmlMode) {
|
||||
static inline int classify9(const QChar *s, int parseModeFlags) {
|
||||
if (s[0].unicode() == 'i') {
|
||||
if (s[1].unicode() == 'n') {
|
||||
if (s[2].unicode() == 't') {
|
||||
@@ -738,7 +761,7 @@ static inline int classify9(const QChar *s, bool qmlMode) {
|
||||
if (s[6].unicode() == 'a') {
|
||||
if (s[7].unicode() == 'c') {
|
||||
if (s[8].unicode() == 'e') {
|
||||
return qmlMode ? int(Lexer::T_INTERFACE) : int(Lexer::T_IDENTIFIER);
|
||||
return (parseModeFlags & Lexer::QmlMode) ? int(Lexer::T_INTERFACE) : int(Lexer::T_IDENTIFIER);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -757,7 +780,7 @@ static inline int classify9(const QChar *s, bool qmlMode) {
|
||||
if (s[6].unicode() == 't') {
|
||||
if (s[7].unicode() == 'e') {
|
||||
if (s[8].unicode() == 'd') {
|
||||
return qmlMode ? int(Lexer::T_PROTECTED) : int(Lexer::T_IDENTIFIER);
|
||||
return (parseModeFlags & Lexer::QmlMode) ? int(Lexer::T_PROTECTED) : int(Lexer::T_IDENTIFIER);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -776,7 +799,7 @@ static inline int classify9(const QChar *s, bool qmlMode) {
|
||||
if (s[6].unicode() == 'e') {
|
||||
if (s[7].unicode() == 'n') {
|
||||
if (s[8].unicode() == 't') {
|
||||
return qmlMode ? int(Lexer::T_TRANSIENT) : int(Lexer::T_IDENTIFIER);
|
||||
return (parseModeFlags & Lexer::QmlMode) ? int(Lexer::T_TRANSIENT) : int(Lexer::T_IDENTIFIER);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -789,7 +812,7 @@ static inline int classify9(const QChar *s, bool qmlMode) {
|
||||
return Lexer::T_IDENTIFIER;
|
||||
}
|
||||
|
||||
static inline int classify10(const QChar *s, bool qmlMode) {
|
||||
static inline int classify10(const QChar *s, int parseModeFlags) {
|
||||
if (s[0].unicode() == 'i') {
|
||||
if (s[1].unicode() == 'm') {
|
||||
if (s[2].unicode() == 'p') {
|
||||
@@ -800,7 +823,7 @@ static inline int classify10(const QChar *s, bool qmlMode) {
|
||||
if (s[7].unicode() == 'n') {
|
||||
if (s[8].unicode() == 't') {
|
||||
if (s[9].unicode() == 's') {
|
||||
return qmlMode ? int(Lexer::T_IMPLEMENTS) : int(Lexer::T_IDENTIFIER);
|
||||
return (parseModeFlags & Lexer::QmlMode) ? int(Lexer::T_IMPLEMENTS) : int(Lexer::T_IDENTIFIER);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -833,7 +856,7 @@ static inline int classify10(const QChar *s, bool qmlMode) {
|
||||
return Lexer::T_IDENTIFIER;
|
||||
}
|
||||
|
||||
static inline int classify12(const QChar *s, bool qmlMode) {
|
||||
static inline int classify12(const QChar *s, int parseModeFlags) {
|
||||
if (s[0].unicode() == 's') {
|
||||
if (s[1].unicode() == 'y') {
|
||||
if (s[2].unicode() == 'n') {
|
||||
@@ -846,7 +869,7 @@ static inline int classify12(const QChar *s, bool qmlMode) {
|
||||
if (s[9].unicode() == 'z') {
|
||||
if (s[10].unicode() == 'e') {
|
||||
if (s[11].unicode() == 'd') {
|
||||
return qmlMode ? int(Lexer::T_SYNCHRONIZED) : int(Lexer::T_IDENTIFIER);
|
||||
return (parseModeFlags & Lexer::QmlMode) ? int(Lexer::T_SYNCHRONIZED) : int(Lexer::T_IDENTIFIER);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -862,18 +885,18 @@ static inline int classify12(const QChar *s, bool qmlMode) {
|
||||
return Lexer::T_IDENTIFIER;
|
||||
}
|
||||
|
||||
int Lexer::classify(const QChar *s, int n, bool qmlMode) {
|
||||
int Lexer::classify(const QChar *s, int n, int parseModeFlags) {
|
||||
switch (n) {
|
||||
case 2: return classify2(s, qmlMode);
|
||||
case 3: return classify3(s, qmlMode);
|
||||
case 4: return classify4(s, qmlMode);
|
||||
case 5: return classify5(s, qmlMode);
|
||||
case 6: return classify6(s, qmlMode);
|
||||
case 7: return classify7(s, qmlMode);
|
||||
case 8: return classify8(s, qmlMode);
|
||||
case 9: return classify9(s, qmlMode);
|
||||
case 10: return classify10(s, qmlMode);
|
||||
case 12: return classify12(s, qmlMode);
|
||||
case 2: return classify2(s, parseModeFlags);
|
||||
case 3: return classify3(s, parseModeFlags);
|
||||
case 4: return classify4(s, parseModeFlags);
|
||||
case 5: return classify5(s, parseModeFlags);
|
||||
case 6: return classify6(s, parseModeFlags);
|
||||
case 7: return classify7(s, parseModeFlags);
|
||||
case 8: return classify8(s, parseModeFlags);
|
||||
case 9: return classify9(s, parseModeFlags);
|
||||
case 10: return classify10(s, parseModeFlags);
|
||||
case 12: return classify12(s, parseModeFlags);
|
||||
default: return Lexer::T_IDENTIFIER;
|
||||
} // switch
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user