Cleaned up `parseClass`

expression_parsing.sync-conflict-20210316-090018-O3W7KWN
Tristan B. V. Kildaire 2021-03-05 11:38:00 +02:00
parent f36ab8df5f
commit 847f76d7d2
1 changed files with 1 additions and 5 deletions

View File

@ -357,9 +357,6 @@ public final class Parser
* *
* This is called when there is an occurrence of * This is called when there is an occurrence of
* a token `class` * a token `class`
*
* STATUS: Not integrated
* STATUS: Not tested
*/ */
private void parseClass() private void parseClass()
{ {
@ -378,8 +375,7 @@ public final class Parser
/* Parse a body */ /* Parse a body */
parseBody(); parseBody();
/* Pop off the ending `}` */
/* TODO: Ending here, expect closing `}`? */
nextToken(); nextToken();
} }