()
| 1922 | } |
| 1923 | func (m *ArrayNode) NodeType() string { return "Array" } |
| 1924 | func (m *ArrayNode) String() string { |
| 1925 | w := NewDefaultWriter() |
| 1926 | m.WriteDialect(w) |
| 1927 | return w.String() |
| 1928 | } |
| 1929 | func (m *ArrayNode) WriteDialect(w DialectWriter) { |
| 1930 | if m.wraptype == "[" { |
| 1931 | io.WriteString(w, "[") |
nothing calls this directly
no test coverage detected