QmlJS: Lexer apply fix from Qt5.

Change-Id: Ic11e6bad2868f56b5d7c2c063b72fb3d25c5417f
Reviewed-on: http://codereview.qt-project.org/5294
Reviewed-by: Roberto Raggi <roberto.raggi@nokia.com>
This commit is contained in:
Christian Kamm
2011-09-21 10:29:21 +02:00
parent 859d80961d
commit 98f44af8a2

View File

@@ -465,7 +465,7 @@ again:
scanChar();
if (_terminator && !_delimited && !_prohibitAutomaticSemicolon) {
_stackToken = T_PLUS_PLUS;
_stackToken = T_MINUS_MINUS;
return T_SEMICOLON;
}