()
| 192 | func (n *Node) AsNode() *Node { return n } |
| 193 | func (n *Node) Pos() int { return n.Loc.Pos() } |
| 194 | func (n *Node) End() int { return n.Loc.End() } |
| 195 | func (n *Node) IterChildren() iter.Seq[*Node] { |
| 196 | // Implemented directly (rather than through the nodeData interface) so that the |
| 197 | // returned iterator and the visitor closure it passes to ForEachChild do not |
no test coverage detected