Attributes returns node attributes as map
()
| 42 | |
| 43 | // Attributes returns node attributes as map |
| 44 | func (n *ArrayItem) Attributes() map[string]interface{} { |
| 45 | return map[string]interface{}{ |
| 46 | "Unpack": n.Unpack, |
| 47 | } |
| 48 | } |
| 49 | |
| 50 | // Walk traverses nodes |
| 51 | // Walk is invoked recursively until v.EnterNode returns true |
nothing calls this directly
no outgoing calls
no test coverage detected