1
0

Fix label parsing

This commit is contained in:
otya128
2017-07-10 19:41:23 +09:00
parent fb1ca9bc0a
commit 0975903757
2 changed files with 5 additions and 5 deletions

View File

@@ -270,7 +270,7 @@ class Lexical
}
if (isLabel)
{
token = Token(TokenType.Label, TokenValue(iden));
token = Token(TokenType.Label, TokenValue(std.uni.toUpper(iden)));
}
else
{