str builds a StringLiteralNode.
(v string)
| 19 | |
| 20 | // str builds a StringLiteralNode. |
| 21 | func str(v string) *StringLiteralNode { return &StringLiteralNode{Value: v} } |
| 22 | |
| 23 | // boolLit builds a BooleanLiteralNode. |
| 24 | func boolLit(v bool) *BooleanLiteralNode { return &BooleanLiteralNode{Value: v} } |
no outgoing calls
no test coverage detected