Added base parse body function

This commit is contained in:
Sasha Koshka
2022-08-14 22:38:57 -04:00
parent 8f42fa9c2a
commit 0a067524ce
5 changed files with 57 additions and 0 deletions

View File

@@ -64,6 +64,9 @@ func (parser *ParsingOperation) parse (sourceFile *file.File) (err error) {
err = parser.parseMeta()
if err != nil { return }
err = parser.parseBody()
if err != nil { return }
return
}