(data string, typ NodeType)
| 552 | } |
| 553 | |
| 554 | func createNode(data string, typ NodeType) *TNode { |
| 555 | return &TNode{Data: data, Type: typ, Attr: make([]Attribute, 0)} |
| 556 | } |
| 557 | |
| 558 | func (n *TNode) createChildNode(data string, typ NodeType) *TNode { |
| 559 | m := createNode(data, typ) |
no outgoing calls
no test coverage detected
searching dependent graphs…