()
| 207 | func (n *Node) Clone(f NodeFactoryCoercible) *Node { return n.data.Clone(f) } |
| 208 | func (n *Node) VisitEachChild(v *NodeVisitor) *Node { return n.data.VisitEachChild(v) } |
| 209 | func (n *Node) Name() *DeclarationName { return n.data.Name() } |
| 210 | func (n *Node) Modifiers() *ModifierList { return n.data.Modifiers() } |
| 211 | func (n *Node) FlowNodeData() *FlowNodeBase { return n.data.FlowNodeData() } |
| 212 | func (n *Node) DeclarationData() *DeclarationBase { return n.data.DeclarationData() } |
no test coverage detected