| 165 | } |
| 166 | |
| 167 | static bool coloredOutput(CommandLineOptions const& _options) |
| 168 | { |
| 169 | return |
| 170 | (!_options.formatting.coloredOutput.has_value() && isatty(STDERR_FILENO)) || |
| 171 | (_options.formatting.coloredOutput.has_value() && _options.formatting.coloredOutput.value()); |
| 172 | } |
| 173 | |
| 174 | void CommandLineInterface::handleEVMAssembly(std::string const& _contract) |
| 175 | { |
no test coverage detected