ExprBool is a representation of a boolean.
| 7407 | |
| 7408 | // ExprBool is a representation of a boolean. |
| 7409 | type ExprBool struct { |
| 7410 | interfaces.Textarea |
| 7411 | |
| 7412 | data *interfaces.Data |
| 7413 | scope *interfaces.Scope // store for referencing this later |
| 7414 | |
| 7415 | V bool |
| 7416 | } |
| 7417 | |
| 7418 | // String returns a short representation of this expression. |
| 7419 | func (obj *ExprBool) String() string { return "bool(" + strconv.FormatBool(obj.V) + ")" } |
nothing calls this directly
no outgoing calls
no test coverage detected