diff --git a/source/tlang/compiler/parsing/core.d b/source/tlang/compiler/parsing/core.d index 0b33017..108ab24 100644 --- a/source/tlang/compiler/parsing/core.d +++ b/source/tlang/compiler/parsing/core.d @@ -397,10 +397,9 @@ public final class Parser /* TODO: Remove this and actually impleent struct's body parsing */ - generatedStruct = new Struct(structName); - /* TODO: Add Statement[] array, statements, to `generatedStruct` */ - + generatedStruct = new Struct(structName); + /* Expect closing brace (sanity) */ expect(SymbolType.CCURLY, getCurrentToken());