SPR-7100: '_' supported as first char of identifier

git-svn-id: https://src.springframework.org/svn/spring-framework/trunk@3254 50f2f4bb-b051-0410-bef5-90022cba6387
This commit is contained in:
Andy Clement
2010-04-16 21:10:23 +00:00
parent 7c04f12f73
commit efc8a513d1
3 changed files with 14 additions and 0 deletions
@@ -57,6 +57,9 @@ class Tokenizer {
case '+':
pushCharToken(TokenKind.PLUS);
break;
case '_': // the other way to start an identifier
lexIdentifier();
break;
case '-':
pushCharToken(TokenKind.MINUS);
break;