StringNode holds a value literal, quotes not included
| 223 | |
| 224 | // StringNode holds a value literal, quotes not included |
| 225 | StringNode struct { |
| 226 | Quote byte |
| 227 | Text string |
| 228 | noQuote bool |
| 229 | needsEscape bool // Does Text contain Quote value? |
| 230 | } |
| 231 | |
| 232 | // NullNode is a simple NULL type node |
| 233 | NullNode struct{} |
nothing calls this directly
no outgoing calls
no test coverage detected