| 273 | } |
| 274 | |
| 275 | Projection::Iterator Projection::begin() { |
| 276 | Reference<Projection> root = Reference<Projection>::addRef(this); |
| 277 | |
| 278 | Projection::Iterator itr; |
| 279 | itr.stack.emplace_back(root); |
| 280 | |
| 281 | return ++itr; |
| 282 | } |
| 283 | |
| 284 | Projection::Iterator const Projection::end() { |
| 285 | return Projection::Iterator::end; |
no outgoing calls
no test coverage detected