Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type EqExpr ¶
type EqExpr struct { LHS Expression RHS Expression // contains filtered or unexported fields }
EqExpr ...
type EvalContext ¶
type EvalContext struct {
// contains filtered or unexported fields
}
EvalContext ...
type Expression ¶
type Expression interface { fmt.Stringer Eval(*EvalContext) (Value, error) Position() scanner.Position }
Expression ...
type IdentExpr ¶
type IdentExpr struct { Name string // contains filtered or unexported fields }
IdentExpr ...
type IneqExpr ¶
type IneqExpr struct { LHS Expression RHS Expression // contains filtered or unexported fields }
IneqExpr ...
type StringExpr ¶
type StringExpr struct { Value string // contains filtered or unexported fields }
StringExpr ...
func (*StringExpr) String ¶
func (e *StringExpr) String() string
Click to show internal directories.
Click to hide internal directories.