From da47f9df7b508149f137ebd4d80f6b31e27131d3 Mon Sep 17 00:00:00 2001 From: LianaHus Date: Fri, 6 Nov 2015 20:56:14 +0100 Subject: [PATCH] style fixes --- libsolidity/analysis/NameAndTypeResolver.cpp | 4 +- libsolidity/analysis/ReferencesResolver.cpp | 39 ++++++++++--------- libsolidity/analysis/ReferencesResolver.h | 8 ++-- .../SolidityNameAndTypeResolution.cpp | 4 +- 4 files changed, 28 insertions(+), 27 deletions(-) diff --git a/libsolidity/analysis/NameAndTypeResolver.cpp b/libsolidity/analysis/NameAndTypeResolver.cpp index 85944e0fd..806f1322c 100644 --- a/libsolidity/analysis/NameAndTypeResolver.cpp +++ b/libsolidity/analysis/NameAndTypeResolver.cpp @@ -108,7 +108,7 @@ bool NameAndTypeResolver::resolveNamesAndTypes(ContractDefinition& _contract) for (ASTPointer const& function: _contract.definedFunctions()) { m_currentScope = &m_scopes[function.get()]; - if (! ReferencesResolver( + if (!ReferencesResolver( m_errors, *this, &_contract, @@ -134,7 +134,7 @@ bool NameAndTypeResolver::resolveNamesAndTypes(ContractDefinition& _contract) for (ASTPointer const& function: _contract.definedFunctions()) { m_currentScope = &m_scopes[function.get()]; - if (! ReferencesResolver( + if (!ReferencesResolver( m_errors, *this, &_contract, diff --git a/libsolidity/analysis/ReferencesResolver.cpp b/libsolidity/analysis/ReferencesResolver.cpp index 6878f79ff..558cae924 100644 --- a/libsolidity/analysis/ReferencesResolver.cpp +++ b/libsolidity/analysis/ReferencesResolver.cpp @@ -41,7 +41,7 @@ bool ReferencesResolver::visit(UserDefinedTypeName const& _typeName) { Declaration const* declaration = m_resolver.pathFromCurrentScope(_typeName.namePath()); if (!declaration) - DeclarationFatalError(_typeName.location(), "Identifier not found or not unique."); + fatalDeclarationError(_typeName.location(), "Identifier not found or not unique."); _typeName.annotation().referencedDeclaration = declaration; return true; @@ -51,7 +51,7 @@ bool ReferencesResolver::visit(Identifier const& _identifier) { auto declarations = m_resolver.nameFromCurrentScope(_identifier.name()); if (declarations.empty()) - DeclarationFatalError(_identifier.location(), "Undeclared identifier."); + fatalDeclarationError(_identifier.location(), "Undeclared identifier."); else if (declarations.size() == 1) { _identifier.annotation().referencedDeclaration = declarations.front(); @@ -86,7 +86,7 @@ void ReferencesResolver::endVisit(VariableDeclaration const& _variable) if (contract.isLibrary()) { if (loc == Location::Memory) - TypeFatalError(_variable.location(), + fatalTypeError(_variable.location(), "Location has to be calldata or storage for external " "library functions (remove the \"memory\" keyword)." ); @@ -95,7 +95,7 @@ void ReferencesResolver::endVisit(VariableDeclaration const& _variable) { // force location of external function parameters (not return) to calldata if (loc != Location::Default) - TypeFatalError(_variable.location(), + fatalTypeError(_variable.location(), "Location has to be calldata for external functions " "(remove the \"memory\" or \"storage\" keyword)." ); @@ -108,7 +108,7 @@ void ReferencesResolver::endVisit(VariableDeclaration const& _variable) auto const& contract = dynamic_cast(*_variable.scope()->scope()); // force locations of public or external function (return) parameters to memory if (loc == Location::Storage && !contract.isLibrary()) - TypeFatalError(_variable.location(), + fatalTypeError(_variable.location(), "Location has to be memory for publicly visible functions " "(remove the \"storage\" keyword)." ); @@ -120,7 +120,7 @@ void ReferencesResolver::endVisit(VariableDeclaration const& _variable) if (_variable.isConstant()) { if (loc != Location::Default && loc != Location::Memory) - TypeFatalError( + fatalTypeError( _variable.location(), "Storage location has to be \"memory\" (or unspecified) for constants." ); @@ -138,14 +138,14 @@ void ReferencesResolver::endVisit(VariableDeclaration const& _variable) } } else if (loc != Location::Default && !ref) - TypeFatalError(_variable.location(), "Storage location can only be given for array or struct types."); + fatalTypeError(_variable.location(), "Storage location can only be given for array or struct types."); if (!type) - TypeFatalError(_variable.location(), "Invalid type name."); + fatalTypeError(_variable.location(), "Invalid type name."); } else if (!_variable.canHaveAutoType()) - TypeFatalError(_variable.location(), "Explicit type needed."); + fatalTypeError(_variable.location(), "Explicit type needed."); // otherwise we have a "var"-declaration whose type is resolved by the first assignment _variable.annotation().type = type; @@ -171,7 +171,7 @@ TypePointer ReferencesResolver::typeFor(TypeName const& _typeName) else if (ContractDefinition const* contract = dynamic_cast(declaration)) type = make_shared(*contract); else - TypeFatalError(typeName->location(), "Name has to refer to a struct, enum or contract."); + fatalTypeError(typeName->location(), "Name has to refer to a struct, enum or contract."); } else if (auto mapping = dynamic_cast(&_typeName)) { @@ -187,7 +187,7 @@ TypePointer ReferencesResolver::typeFor(TypeName const& _typeName) { TypePointer baseType = typeFor(arrayType->baseType()); if (baseType->storageBytes() == 0) - TypeFatalError(arrayType->baseType().location(), "Illegal base type of storage size zero for array."); + fatalTypeError(arrayType->baseType().location(), "Illegal base type of storage size zero for array."); if (Expression const* length = arrayType->length()) { if (!length->annotation().type) @@ -195,8 +195,9 @@ TypePointer ReferencesResolver::typeFor(TypeName const& _typeName) auto const* lengthType = dynamic_cast(length->annotation().type.get()); if (!lengthType) - TypeFatalError(length->location(), "Invalid array length."); - else type = make_shared(DataLocation::Storage, baseType, lengthType->literalValue(nullptr)); + fatalTypeError(length->location(), "Invalid array length."); + else + type = make_shared(DataLocation::Storage, baseType, lengthType->literalValue(nullptr)); } else type = make_shared(DataLocation::Storage, baseType); @@ -205,7 +206,7 @@ TypePointer ReferencesResolver::typeFor(TypeName const& _typeName) return _typeName.annotation().type = move(type); } -void ReferencesResolver::TypeError(SourceLocation const& _location, string const& _description) +void ReferencesResolver::typeError(SourceLocation const& _location, string const& _description) { auto err = make_shared(Error::Type::TypeError); *err << errinfo_sourceLocation(_location) << errinfo_comment(_description); @@ -213,13 +214,13 @@ void ReferencesResolver::TypeError(SourceLocation const& _location, string const m_errors.push_back(err); } -void ReferencesResolver::TypeFatalError(SourceLocation const& _location, string const& _description) +void ReferencesResolver::fatalTypeError(SourceLocation const& _location, string const& _description) { - TypeError(_location, _description); + typeError(_location, _description); BOOST_THROW_EXCEPTION(FatalError()); } -void ReferencesResolver::DeclarationError(SourceLocation const& _location, string const& _description) +void ReferencesResolver::declarationError(SourceLocation const& _location, string const& _description) { auto err = make_shared(Error::Type::DeclarationError); *err << errinfo_sourceLocation(_location) << errinfo_comment(_description); @@ -227,9 +228,9 @@ void ReferencesResolver::DeclarationError(SourceLocation const& _location, strin m_errors.push_back(err); } -void ReferencesResolver::DeclarationFatalError(SourceLocation const& _location, string const& _description) +void ReferencesResolver::fatalDeclarationError(SourceLocation const& _location, string const& _description) { - DeclarationError(_location, _description); + declarationError(_location, _description); BOOST_THROW_EXCEPTION(FatalError()); } diff --git a/libsolidity/analysis/ReferencesResolver.h b/libsolidity/analysis/ReferencesResolver.h index be618f239..bde4bbc56 100644 --- a/libsolidity/analysis/ReferencesResolver.h +++ b/libsolidity/analysis/ReferencesResolver.h @@ -80,16 +80,16 @@ private: TypePointer typeFor(TypeName const& _typeName); /// Adds a new error to the list of errors. - void TypeError(SourceLocation const& _location, std::string const& _description); + void typeError(SourceLocation const& _location, std::string const& _description); /// Adds a new error to the list of errors and throws to abort type checking. - void TypeFatalError(SourceLocation const& _location, std::string const& _description); + void fatalTypeError(SourceLocation const& _location, std::string const& _description); /// Adds a new error to the list of errors. - void DeclarationError(const SourceLocation& _location, std::string const& _description); + void declarationError(const SourceLocation& _location, std::string const& _description); /// Adds a new error to the list of errors and throws to abort type checking. - void DeclarationFatalError(const SourceLocation& _location, std::string const& _description); + void fatalDeclarationError(const SourceLocation& _location, std::string const& _description); ErrorList& m_errors; NameAndTypeResolver& m_resolver; diff --git a/test/libsolidity/SolidityNameAndTypeResolution.cpp b/test/libsolidity/SolidityNameAndTypeResolution.cpp index f4e010007..915d6542f 100644 --- a/test/libsolidity/SolidityNameAndTypeResolution.cpp +++ b/test/libsolidity/SolidityNameAndTypeResolution.cpp @@ -69,7 +69,7 @@ parseAnalyseAndReturnError(string const& _source, bool _reportWarnings = false) globalContext->setCurrentContract(*contract); resolver.updateDeclaration(*globalContext->currentThis()); resolver.updateDeclaration(*globalContext->currentSuper()); - if (! resolver.resolveNamesAndTypes(*contract)) + if (!resolver.resolveNamesAndTypes(*contract)) success = false; } if (success) @@ -93,7 +93,7 @@ parseAnalyseAndReturnError(string const& _source, bool _reportWarnings = false) return make_pair(sourceUnit, std::make_shared(currentError->type())); } } - catch(Error const& _e) + catch (Error const& _e) { return make_pair(sourceUnit, std::make_shared(_e.type())); }