| 719 | } |
| 720 | |
| 721 | bool CompilerStack::parseAndAnalyze(State _stopAfter) |
| 722 | { |
| 723 | m_stopAfter = _stopAfter; |
| 724 | |
| 725 | bool success = parse(); |
| 726 | if (m_stackState >= m_stopAfter) |
| 727 | return success; |
| 728 | if (success) |
| 729 | success = analyze(); |
| 730 | return success; |
| 731 | } |
| 732 | |
| 733 | bool CompilerStack::isRequestedSource(std::string const& _sourceName) const |
| 734 | { |
no test coverage detected