| 487 | } |
| 488 | |
| 489 | std::string Assembly::assemblyString( |
| 490 | DebugInfoSelection const& _debugInfoSelection, |
| 491 | StringMap const& _sourceCodes |
| 492 | ) const |
| 493 | { |
| 494 | std::ostringstream tmp; |
| 495 | assemblyStream(tmp, _debugInfoSelection, "", _sourceCodes); |
| 496 | return (_debugInfoSelection.ethdebug ? "/// ethdebug: enabled\n" : "") + tmp.str(); |
| 497 | } |
| 498 | |
| 499 | Json Assembly::assemblyJSON(std::map<std::string, unsigned> const& _sourceIndices, bool _includeSourceList) const |
| 500 | { |