Skip to content

Commit 08ce0db

Browse files
committed
[WIP] Debug library deployment
1 parent eb1a20d commit 08ce0db

File tree

3 files changed

+26
-4
lines changed

3 files changed

+26
-4
lines changed

test/libsolidity/SolidityExecutionFramework.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ bytes SolidityExecutionFramework::multiSourceCompileContract(
6868
}
6969

7070
m_compiler.compile(m_compilerInput);
71-
71+
7272
auto output = m_compiler.output();
7373
if (!output.success())
7474
{
@@ -96,6 +96,7 @@ bytes SolidityExecutionFramework::multiSourceCompileContract(
9696

9797
if (m_showMetadata)
9898
std::cout << "metadata: " << contract.value().metadata << std::endl;
99+
99100
return contract.value().object;
100101
}
101102

test/libsolidity/util/compiler/Compiler.cpp

+5-3
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,14 @@ std::optional<CompiledContract> CompilerOutput::contract(
2323
// Return specific contract if name was set, or last in the list.
2424
if (_contractName.has_value())
2525
{
26+
auto contractName = _contractName.value();
2627
for (auto const& contract: contracts)
2728
if (
28-
_contractName.value().compare(contract.name) ||
29-
_contractName.value().compare(":" + contract.name)
29+
contractName == contract.name ||
30+
":" + contractName == contract.name
3031
)
3132
return std::make_optional(contract);
33+
3234
return std::nullopt;
3335
}
3436
else
@@ -70,4 +72,4 @@ std::optional<langutil::Error> CompilerOutput::findError(
7072
std::string CompilerOutput::errorInformation() const
7173
{
7274
return m_errorInformation;
73-
}
75+
}

test/libsolidity/util/compiler/Compiler.h

+19
Original file line numberDiff line numberDiff line change
@@ -159,6 +159,25 @@ class CompilerOutput
159159
/// compilation.
160160
std::string errorInformation() const;
161161

162+
friend std::ostream& operator<<(std::ostream& os, const CompilerOutput& output)
163+
{
164+
os << "CompilerOutput {" << std::endl;
165+
os << " m_sourceUnits: [" << std::endl;
166+
167+
for (auto [sourceName, contracts]: output.m_sourceUnits) {
168+
os << " name: " << sourceName << std::endl;
169+
os << " contracts: [" << std::endl;
170+
for (auto contract: contracts) {
171+
os << " name: " << contract.name << std::endl;
172+
}
173+
os << " ]" << std::endl;
174+
}
175+
176+
os << " ]" << std::endl;
177+
os << "}" << std::endl;
178+
return os;
179+
}
180+
162181
private:
163182
/// All compiled contracts, indexed by source name.
164183
SourceUnits m_sourceUnits;

0 commit comments

Comments
 (0)