(text string)
| 768 | } |
| 769 | |
| 770 | func NewStringNode(text string) *StringNode { |
| 771 | return &StringNode{Text: text} |
| 772 | } |
| 773 | func NewStringNodeToken(t lex.Token) *StringNode { |
| 774 | return &StringNode{Text: t.V, Quote: t.Quote} |
| 775 | } |
no outgoing calls
no test coverage detected