| 311 | } |
| 312 | |
| 313 | Library::Container::Yield astContainerYield(const Token* tok, const Library& library, const Token** ftok) |
| 314 | { |
| 315 | const auto ftokCont = getContainerFunction(tok, library); |
| 316 | if (ftok) |
| 317 | *ftok = ftokCont.first; |
| 318 | if (!ftokCont.first) |
| 319 | return Library::Container::Yield::NO_YIELD; |
| 320 | return ftokCont.second->getYield(ftokCont.first->str()); |
| 321 | } |
| 322 | |
| 323 | Library::Container::Yield astFunctionYield(const Token* tok, const Library& library, const Token** ftok) |
| 324 | { |
no test coverage detected