func-section #1

Merged
sashakoshka merged 52 commits from func-section into main 2022-09-03 18:09:14 -06:00
2 changed files with 1 additions and 4 deletions
Showing only changes of commit fcfa672652 - Show all commits

View File

@ -64,7 +64,6 @@ func (parser *ParsingOperation) parseFaceSection () (
if err != nil { return }
}
return
}
// parseFaceBehavior parses a single interface behavior. Indentation level is
@ -127,6 +126,4 @@ func (parser *ParsingOperation) parseFaceBehavior () (
declaration)
}
}
return
}

View File

@ -6,7 +6,7 @@ import "testing"
// import "git.tebibyte.media/arf/arf/types"
func checkTree (modulePath string, correct string, test *testing.T) {
tree, err := Parse(modulePath)
tree, err := Parse(modulePath)
if tree == nil {
test.Log("TREE IS NIL!")
test.Fail()