parser bugfix on bracket quotes

master^2
Oliver Kennedy 2015-05-26 19:34:23 -04:00
parent 00cb185ec5
commit 430f40dc14
2 changed files with 2 additions and 2 deletions

View File

@ -1139,7 +1139,7 @@ private int jjMoveNfa_0(int startState, int curPos)
jjCheckNAddTwoStates(29, 30);
break;
case 29:
if ((0xfffffffeffffffffL & l) != 0L)
if ((0xffffffffdfffffffL & l) != 0L)
jjCheckNAddTwoStates(29, 30);
break;
case 30:

View File

@ -244,7 +244,7 @@ TOKEN:
| < S_CHAR_LITERAL: "'" (~["'"])* "'" ("'" (~["'"])* "'")*>
| < S_QUOTED_IDENTIFIER: ("\"" (~["\n","\r","\""])* "\"")
| ("`" (~["\n","\r","`"])* "`")
| ("[" (~["\n","\r","`"])* "]") >
| ("[" (~["\n","\r","]"])* "]") >
}
Statement Statement() :