MCPcopy Create free account
hub / github.com/argotorg/solidity / parseAndAnalyze

Method parseAndAnalyze

libsolidity/interface/CompilerStack.cpp:721–731  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

719}
720
721bool 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
733bool CompilerStack::isRequestedSource(std::string const& _sourceName) const
734{

Callers 3

compileSolidityMethod · 0.45
compileYulMethod · 0.45
loadGeneratedIRMethod · 0.45

Calls 1

parseFunction · 0.50

Tested by

no test coverage detected