same thing forf phrases and blocks
This commit is contained in:
parent
caeed943a3
commit
e06de0ad9a
@ -195,3 +195,40 @@ func (section FaceSection) Behaviors () (iterator types.Iterator[FaceBehavior])
|
|||||||
iterator = types.NewIterator(section.behaviors)
|
iterator = types.NewIterator(section.behaviors)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Kind returns what kind of phrase it is.
|
||||||
|
func (phrase Phrase) Kind () (kind PhraseKind) {
|
||||||
|
kind = phrase.kind
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
// ArgumentsLength returns the amount of arguments in the phrase.
|
||||||
|
func (phrase Phrase) ArgumentsLength () (length int) {
|
||||||
|
length = len(phrase.arguments)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
// Argument returns the argument at index.
|
||||||
|
func (phrase Phrase) Argument (index int) (argument Argument) {
|
||||||
|
argument = phrase.arguments[index]
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
// ReturnsToLength returns the amount of things the phrase returns to.
|
||||||
|
func (phrase Phrase) ReturnsToLength () (length int) {
|
||||||
|
length = len(phrase.returnsTo)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
// ReturnTo returns the thing alskdjaslkdjsa whatever i dont even know wtf.
|
||||||
|
func (phrase Phrase) ReturnTo (index int) (returnTo Argument) {
|
||||||
|
returnTo = phrase.returnsTo[index]
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
// Block returns the block under the phrase, if it is a control flow statement.
|
||||||
|
func (phrase Phrase) Block () (block Block) {
|
||||||
|
block = phrase.block
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
@ -267,6 +267,8 @@ type Phrase struct {
|
|||||||
location file.Location
|
location file.Location
|
||||||
command Argument
|
command Argument
|
||||||
arguments []Argument
|
arguments []Argument
|
||||||
|
// TODO: this is wack. it should be named after a plural noun like,
|
||||||
|
// returnees or something. accessor methods should beupdated to match.
|
||||||
returnsTo []Argument
|
returnsTo []Argument
|
||||||
|
|
||||||
kind PhraseKind
|
kind PhraseKind
|
||||||
|
Reference in New Issue
Block a user