| 305 | } |
| 306 | |
| 307 | type navigableExprImpl struct { |
| 308 | Expr |
| 309 | depth int |
| 310 | ast *AST |
| 311 | parent NavigableExpr |
| 312 | createChildren childFactory |
| 313 | } |
| 314 | |
| 315 | func (nav *navigableExprImpl) Parent() (NavigableExpr, bool) { |
| 316 | if nav.parent != nil { |
nothing calls this directly
no outgoing calls
no test coverage detected