diff --git a/Assembly.cpp b/Assembly.cpp index 0ccc174cb..021463e4b 100644 --- a/Assembly.cpp +++ b/Assembly.cpp @@ -54,14 +54,10 @@ eth::AssemblyItems compileContract(const string& _sourceCode) resolver.registerDeclarations(*sourceUnit); for (ASTPointer const& node: sourceUnit->getNodes()) if (ContractDefinition* contract = dynamic_cast(node.get())) - { BOOST_REQUIRE_NO_THROW(resolver.resolveNamesAndTypes(*contract)); - } for (ASTPointer const& node: sourceUnit->getNodes()) if (ContractDefinition* contract = dynamic_cast(node.get())) - { BOOST_REQUIRE_NO_THROW(resolver.checkTypeRequirements(*contract)); - } for (ASTPointer const& node: sourceUnit->getNodes()) if (ContractDefinition* contract = dynamic_cast(node.get())) { @@ -81,7 +77,7 @@ void checkAssemblyLocations(AssemblyItems const& _items, std::vector