Lines Matching defs:Bool
700 type Bool struct { struct
701 LiteralPos scanner.Position
702 Value bool
703 Token string
706 func (x *Bool) Pos() scanner.Position { return x.LiteralPos }
707 func (x *Bool) End() scanner.Position { return endPos(x.LiteralPos, len(x.Token)) }
709 func (x *Bool) Copy() Expression {
714 func (x *Bool) Eval(scope *Scope) (Expression, error) {
718 func (x *Bool) PrintfInto(value string) error {
722 func (x *Bool) MarkReferencedVariables(scope *Scope) {
725 func (x *Bool) String() string {
729 func (x *Bool) Type() Type {