(k, v string)
| 580 | } |
| 581 | |
| 582 | func (n *TNode) addAttribute(k, v string) { |
| 583 | n.Attr = append(n.Attr, Attribute{k, v}) |
| 584 | } |
| 585 | |
| 586 | func (n *TNode) getAttribute(key string) string { |
| 587 | for i := 0; i < len(n.Attr); i++ { |
no outgoing calls
no test coverage detected