BuildBooleanLiteral creates a boolean literal node
(value bool)
| 304 | |
| 305 | // BuildBooleanLiteral creates a boolean literal node |
| 306 | func BuildBooleanLiteral(value bool) *BooleanLiteralNode { |
| 307 | return &BooleanLiteralNode{Value: value} |
| 308 | } |
| 309 | |
| 310 | // BuildNullLiteral creates a null literal node |
| 311 | func BuildNullLiteral() *ExpressionNode { |
no outgoing calls