| 301 | } |
| 302 | |
| 303 | Library::Container::Action astContainerAction(const Token* tok, const Library& library, const Token** ftok) |
| 304 | { |
| 305 | const auto ftokCont = getContainerFunction(tok, library); |
| 306 | if (ftok) |
| 307 | *ftok = ftokCont.first; |
| 308 | if (!ftokCont.first) |
| 309 | return Library::Container::Action::NO_ACTION; |
| 310 | return ftokCont.second->getAction(ftokCont.first->str()); |
| 311 | } |
| 312 | |
| 313 | Library::Container::Yield astContainerYield(const Token* tok, const Library& library, const Token** ftok) |
| 314 | { |
no test coverage detected