Node returns the current Node.
()
| 76 | |
| 77 | // Node returns the current Node. |
| 78 | func (c *Cursor) Node() ast.Node { return c.node } |
| 79 | |
| 80 | // Parent returns the parent of the current Node. |
| 81 | func (c *Cursor) Parent() ast.Node { return c.parent } |
no outgoing calls