Versions in this module Expand all Collapse all v0 v0.0.1 Oct 16, 2022 Changes in this version + type Error struct + ArgIndex int + Err error + func NewError(argIndex int, err error) *Error + func NewErrorf(argIndex int, format string, args ...interface{}) *Error + func (e *Error) Error() string + type InterpreterRegistry map[string]conflow.FunctionInterpreter + func (i InterpreterRegistry) NodeTransformer(name string) (parsley.NodeTransformer, bool) + type Node struct + func (n *Node) ArgumentNodes() []parsley.Node + func (n *Node) Children() []parsley.Node + func (n *Node) Name() conflow.ID + func (n *Node) Pos() parsley.Pos + func (n *Node) ReaderPos() parsley.Pos + func (n *Node) Schema() interface{} + func (n *Node) SetReaderPos(f func(parsley.Pos) parsley.Pos) + func (n *Node) StaticCheck(ctx interface{}) parsley.Error + func (n *Node) String() string + func (n *Node) Token() string + func (n *Node) Value(ctx interface{}) (interface{}, parsley.Error)