Attributes returns node attributes as map
()
| 37 | |
| 38 | // Attributes returns node attributes as map |
| 39 | func (n *String) Attributes() map[string]interface{} { |
| 40 | return map[string]interface{}{ |
| 41 | "Value": n.Value, |
| 42 | } |
| 43 | } |
| 44 | |
| 45 | // Walk traverses nodes |
| 46 | // Walk is invoked recursively until v.EnterNode returns true |
nothing calls this directly
no outgoing calls
no test coverage detected