Removed FuncOutput from the tree

This commit is contained in:
2022-09-17 12:12:04 -04:00
parent a492622e30
commit 49eb7f9b9d
4 changed files with 5 additions and 22 deletions

View File

@@ -260,12 +260,6 @@ type Phrase struct {
// Block represents a scoped/indented block of code.
type Block []Phrase
// FuncOutput represents an input a function section. It is unlike an input in
// that it can have a default value.
type FuncOutput struct {
Declaration
}
// FuncSection represents a function section.
type FuncSection struct {
locatable
@@ -274,7 +268,7 @@ type FuncSection struct {
receiver *Declaration
inputs []Declaration
outputs []FuncOutput
outputs []Declaration
root Block
external bool