Made parser more fault-tolerant for DCD

This commit is contained in:
Hackerpilot 2013-11-19 11:07:58 -08:00
parent d7498ffb7f
commit c9eb658412
1 changed files with 4 additions and 2 deletions

View File

@ -851,8 +851,10 @@ alias core.sys.posix.stdio.fileno fileno;
if (!currentIs(TokenType.rBrace))
node.declarationsAndStatements = parseDeclarationsAndStatements();
auto closeBrace = expect(TokenType.rBrace);
if (closeBrace is null) return null;
node.endLocation = closeBrace.startIndex;
if (closeBrace !is null)
node.endLocation = closeBrace.startIndex;
else
node.endLocation = size_t.max;
return node;
}