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

Function isEthdebugProgramRequested

libsolidity/interface/StandardCompiler.cpp:310–318  ·  view source on GitHub ↗

@returns true if any per-contract ethdebug program output was requested.

Source from the content-addressed store, hash-verified

308
309/// @returns true if any per-contract ethdebug program output was requested.
310bool isEthdebugProgramRequested(Json const& _outputSelection)
311{
312 if (!_outputSelection.is_object())
313 return false;
314
315 static std::array constexpr ethdebugArtifacts{"evm.bytecode.ethdebug", "evm.deployedBytecode.ethdebug"};
316
317 return areArtifactsRequested(_outputSelection, ethdebugArtifacts);
318}
319
320/// @returns true if any ethdebug output (global or per-contract) was requested.
321bool isAnyEthdebugRequested(Json const& _outputSelection)

Callers 1

parseInputMethod · 0.85

Calls 1

areArtifactsRequestedFunction · 0.85

Tested by

no test coverage detected