Merge branch 'master' of git://github.com/Alek900/wren into Alek900-master
Conflicts: src/wren_compiler.c
This commit is contained in:
+4
-1
@@ -785,8 +785,11 @@ static void nextToken(Parser* parser)
|
||||
|
||||
case ' ':
|
||||
case '\r':
|
||||
case '\t':
|
||||
// Skip forward until we run out of whitespace.
|
||||
while (peekChar(parser) == ' ' || peekChar(parser) == '\r')
|
||||
while (peekChar(parser) == ' ' ||
|
||||
peekChar(parser) == '\r' ||
|
||||
peekChar(parser) == '\t')
|
||||
{
|
||||
nextChar(parser);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user