File tree 3 files changed +26
-4
lines changed
3 files changed +26
-4
lines changed Original file line number Diff line number Diff line change @@ -68,7 +68,7 @@ bytes SolidityExecutionFramework::multiSourceCompileContract(
68
68
}
69
69
70
70
m_compiler.compile (m_compilerInput);
71
-
71
+
72
72
auto output = m_compiler.output ();
73
73
if (!output.success ())
74
74
{
@@ -96,6 +96,7 @@ bytes SolidityExecutionFramework::multiSourceCompileContract(
96
96
97
97
if (m_showMetadata)
98
98
std::cout << " metadata: " << contract.value ().metadata << std::endl;
99
+
99
100
return contract.value ().object ;
100
101
}
101
102
Original file line number Diff line number Diff line change @@ -23,12 +23,14 @@ std::optional<CompiledContract> CompilerOutput::contract(
23
23
// Return specific contract if name was set, or last in the list.
24
24
if (_contractName.has_value ())
25
25
{
26
+ auto contractName = _contractName.value ();
26
27
for (auto const & contract: contracts)
27
28
if (
28
- _contractName. value (). compare ( contract.name ) ||
29
- _contractName. value (). compare ( " :" + contract.name )
29
+ contractName == contract.name ||
30
+ " :" + contractName == contract.name
30
31
)
31
32
return std::make_optional (contract);
33
+
32
34
return std::nullopt;
33
35
}
34
36
else
@@ -70,4 +72,4 @@ std::optional<langutil::Error> CompilerOutput::findError(
70
72
std::string CompilerOutput::errorInformation () const
71
73
{
72
74
return m_errorInformation;
73
- }
75
+ }
Original file line number Diff line number Diff line change @@ -159,6 +159,25 @@ class CompilerOutput
159
159
// / compilation.
160
160
std::string errorInformation () const ;
161
161
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
+
162
181
private:
163
182
// / All compiled contracts, indexed by source name.
164
183
SourceUnits m_sourceUnits;
You can’t perform that action at this time.
0 commit comments