ArrayNode represents an array.
| 233 | |
| 234 | // ArrayNode represents an array. |
| 235 | type ArrayNode struct { |
| 236 | base |
| 237 | Nodes []Node // Nodes of the array. |
| 238 | } |
| 239 | |
| 240 | // MapNode represents a map. |
| 241 | type MapNode struct { |
nothing calls this directly
no outgoing calls
no test coverage detected