| 267 | } |
| 268 | |
| 269 | bool astIsContainerView(const Token* tok) |
| 270 | { |
| 271 | const Library::Container* container = getLibraryContainer(tok); |
| 272 | return container && !astIsIterator(tok) && container->view; |
| 273 | } |
| 274 | |
| 275 | bool astIsContainerOwned(const Token* tok) { |
| 276 | return astIsContainer(tok) && !astIsContainerView(tok); |
no test coverage detected