elvish/pkg/eval/args_walker.go

76 lines
1.8 KiB
Go
Raw Normal View History

package eval
2019-12-24 04:00:59 +08:00
import "github.com/elves/elvish/pkg/parse"
2018-01-01 01:54:26 +08:00
type errorpfer interface {
errorpf(begin, end int, fmt string, args ...interface{})
}
// argsWalker is used by builtin special forms to implement argument parsing.
type argsWalker struct {
2018-01-01 01:54:26 +08:00
cp errorpfer
form *parse.Form
idx int
}
func (cp *compiler) walkArgs(f *parse.Form) *argsWalker {
return &argsWalker{cp, f, 0}
}
func (aw *argsWalker) more() bool {
return aw.idx < len(aw.form.Args)
}
func (aw *argsWalker) peek() *parse.Compound {
if !aw.more() {
aw.cp.errorpf(aw.form.Range().To, aw.form.Range().To, "need more arguments")
}
return aw.form.Args[aw.idx]
}
func (aw *argsWalker) next() *parse.Compound {
n := aw.peek()
aw.idx++
return n
}
// nextIs returns whether the next argument's source matches the given text. It
// also consumes the argument if it is.
func (aw *argsWalker) nextIs(text string) bool {
if aw.more() && aw.form.Args[aw.idx].SourceText() == text {
aw.idx++
return true
}
return false
}
// nextMustLambda fetches the next argument, raising an error if it is not a
// lambda.
func (aw *argsWalker) nextMustLambda() *parse.Primary {
n := aw.next()
if len(n.Indexings) != 1 {
aw.cp.errorpf(n.Range().From, n.Range().To, "must be lambda")
}
if len(n.Indexings[0].Indicies) != 0 {
aw.cp.errorpf(n.Range().From, n.Range().To, "must be lambda")
}
pn := n.Indexings[0].Head
if pn.Type != parse.Lambda {
aw.cp.errorpf(n.Range().From, n.Range().To, "must be lambda")
}
return pn
}
func (aw *argsWalker) nextMustLambdaIfAfter(leader string) *parse.Primary {
if aw.nextIs(leader) {
return aw.nextMustLambda()
}
return nil
}
func (aw *argsWalker) mustEnd() {
if aw.more() {
aw.cp.errorpf(aw.form.Args[aw.idx].Range().From, aw.form.Range().To, "too many arguments")
}
}