BoolNode represents a boolean.
| 94 | |
| 95 | // BoolNode represents a boolean. |
| 96 | type BoolNode struct { |
| 97 | base |
| 98 | Value bool // Value of the boolean. |
| 99 | } |
| 100 | |
| 101 | // StringNode represents a string. |
| 102 | type StringNode struct { |
nothing calls this directly
no outgoing calls
no test coverage detected