Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ( // ErrBadSubstitution represents a substitution parsing error. ErrBadSubstitution = errors.New("bad substitution") // ErrMissingClosingBrace represents a missing closing brace "}" error. ErrMissingClosingBrace = errors.New("missing closing brace") // ErrParseVariableName represents the error when unable to parse a // variable name within a substitution. ErrParseVariableName = errors.New("unable to parse variable name") // ErrParseFuncSubstitution represents the error when unable to parse the // substitution within a function parameter. ErrParseFuncSubstitution = errors.New("unable to parse substitution within function") // ErrParseDefaultFunction represent the error when unable to parse a // default function. ErrParseDefaultFunction = errors.New("unable to parse default function") )
Functions ¶
This section is empty.
Types ¶
type Node ¶
type Node interface {
// contains filtered or unexported methods
}
Node is an element in the parse tree.
Click to show internal directories.
Click to hide internal directories.