BooleanLiteral represents a boolean literal.
| 321 | |
| 322 | // BooleanLiteral represents a boolean literal. |
| 323 | type BooleanLiteral struct { |
| 324 | Val bool |
| 325 | } |
| 326 | |
| 327 | // Type returns the type. |
| 328 | func (l *BooleanLiteral) Type() Type { |
nothing calls this directly
no outgoing calls
no test coverage detected