From 847f76d7d257034f019e8c28d9f9d659781f6cdc Mon Sep 17 00:00:00 2001 From: "Tristan B. Kildaire" Date: Fri, 5 Mar 2021 11:38:00 +0200 Subject: [PATCH] Cleaned up `parseClass` --- source/tlang/compiler/parser.d | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/source/tlang/compiler/parser.d b/source/tlang/compiler/parser.d index 890673b..ad1df02 100644 --- a/source/tlang/compiler/parser.d +++ b/source/tlang/compiler/parser.d @@ -357,9 +357,6 @@ public final class Parser * * This is called when there is an occurrence of * a token `class` - * - * STATUS: Not integrated - * STATUS: Not tested */ private void parseClass() { @@ -378,8 +375,7 @@ public final class Parser /* Parse a body */ parseBody(); - - /* TODO: Ending here, expect closing `}`? */ + /* Pop off the ending `}` */ nextToken(); }