(view: ViewCommon)
| 1256 | |
| 1257 | _hasAncestorView(ancestorView: ViewCommon): boolean { |
| 1258 | const matcher = (view: ViewCommon) => view === ancestorView; |
| 1259 | |
| 1260 | for (let parent = this.parent; parent != null; parent = parent.parent) { |
| 1261 | if (matcher(<ViewCommon>parent)) { |
no outgoing calls
no test coverage detected