BuildStringLiteral creates a string literal node
(value string)
| 299 | |
| 300 | // BuildStringLiteral creates a string literal node |
| 301 | func BuildStringLiteral(value string) *StringLiteralNode { |
| 302 | return &StringLiteralNode{Value: value} |
| 303 | } |
| 304 | |
| 305 | // BuildBooleanLiteral creates a boolean literal node |
| 306 | func BuildBooleanLiteral(value bool) *BooleanLiteralNode { |
no outgoing calls