(text string)
| 90 | } |
| 91 | |
| 92 | func newText(text string) *TextNode { |
| 93 | return &TextNode{NodeType: NodeText, Text: text} |
| 94 | } |
| 95 | |
| 96 | func (t *TextNode) String() string { |
| 97 | return fmt.Sprintf("%s: %s", t.Type(), t.Text) |
no outgoing calls
no test coverage detected