()
| 545 | } |
| 546 | |
| 547 | func (n *Node) TypeParameters() []*Node { |
| 548 | list := n.TypeParameterList() |
| 549 | if list != nil { |
| 550 | return list.Nodes |
| 551 | } |
| 552 | return nil |
| 553 | } |
| 554 | |
| 555 | func (n *Node) MemberList() *NodeList { |
| 556 | switch n.Kind { |
no test coverage detected