diff --git a/source/tlang/compiler/parsing/core.d b/source/tlang/compiler/parsing/core.d index 15d0627..1dbf9c0 100644 --- a/source/tlang/compiler/parsing/core.d +++ b/source/tlang/compiler/parsing/core.d @@ -337,6 +337,10 @@ public final class Parser } + + /* TODO: Remove this and actually impleent struct's body parsing */ + generatedStruct = new Struct(structName); + /* Expect closing brace (sanity) */ expect(SymbolType.CCURLY, getCurrentToken());