AstBoolean is a literal true/false value.
| 6 | |
| 7 | // AstBoolean is a literal true/false value. |
| 8 | type AstBoolean struct { |
| 9 | Source RegoSource |
| 10 | Value bool |
| 11 | } |
| 12 | |
| 13 | func Bool(t bool) BooleanNode { |
| 14 | return AstBoolean{Value: t, Source: RegoSource(strconv.FormatBool(t))} |
nothing calls this directly
no outgoing calls
no test coverage detected