BooleanLiteralNode represents a boolean literal value
| 175 | |
| 176 | // BooleanLiteralNode represents a boolean literal value |
| 177 | type BooleanLiteralNode struct { |
| 178 | Value bool |
| 179 | } |
| 180 | |
| 181 | func (b *BooleanLiteralNode) Render() string { |
| 182 | if b.Value { |
nothing calls this directly
no outgoing calls
no test coverage detected