| 39 | using namespace solidity::yul; |
| 40 | |
| 41 | std::string Data::toString(DebugInfoSelection const&, CharStreamProvider const*) const |
| 42 | { |
| 43 | return "data " + util::escapeAndQuoteString(name) + " hex\"" + util::toHex(data) + "\""; |
| 44 | } |
| 45 | |
| 46 | std::string Object::toString( |
| 47 | DebugInfoSelection const& _debugInfoSelection, |
no test coverage detected