Disallow functions without implementation to use modifiers. This was already the case in the experimental 0.5.0 mode.

This commit is contained in:
Christian Parpart 2018-07-03 11:28:57 +02:00 committed by Alex Beregszaszi
parent 0fcdafe2b5
commit 9f35f0b805
4 changed files with 6 additions and 11 deletions

View File

@ -51,6 +51,7 @@ Breaking Changes:
* Type Checker: Address members are not included in contract types anymore. An explicit conversion is now required before invoking an ``address`` member from a contract. * Type Checker: Address members are not included in contract types anymore. An explicit conversion is now required before invoking an ``address`` member from a contract.
* Remove obsolete ``std`` directory from the Solidity repository. This means accessing ``https://github.com/ethereum/soldity/blob/develop/std/*.sol`` (or ``https://github.com/ethereum/solidity/std/*.sol`` in Remix) will not be possible. * Remove obsolete ``std`` directory from the Solidity repository. This means accessing ``https://github.com/ethereum/soldity/blob/develop/std/*.sol`` (or ``https://github.com/ethereum/solidity/std/*.sol`` in Remix) will not be possible.
* References Resolver: Turn missing storage locations into an error. This was already the case in the experimental 0.5.0 mode. * References Resolver: Turn missing storage locations into an error. This was already the case in the experimental 0.5.0 mode.
* Syntax Checker: Disallow functions without implementation to use modifiers. This was already the case in the experimental 0.5.0 mode.
* Syntax Checker: Named return values in function types are an error. * Syntax Checker: Named return values in function types are an error.
* Syntax Checker: Strictly require visibility specifier for functions. This was already the case in the experimental 0.5.0 mode. * Syntax Checker: Strictly require visibility specifier for functions. This was already the case in the experimental 0.5.0 mode.
* Syntax Checker: Disallow unary ``+``. This was already the case in the experimental 0.5.0 mode. * Syntax Checker: Disallow unary ``+``. This was already the case in the experimental 0.5.0 mode.

View File

@ -213,8 +213,6 @@ bool SyntaxChecker::visit(ContractDefinition const& _contract)
bool SyntaxChecker::visit(FunctionDefinition const& _function) bool SyntaxChecker::visit(FunctionDefinition const& _function)
{ {
bool const v050 = m_sourceUnit->annotation().experimentalFeatures.count(ExperimentalFeature::V050);
if (_function.noVisibilitySpecified()) if (_function.noVisibilitySpecified())
{ {
string suggestedVisibility = _function.isFallback() || m_isInterface ? "external" : "public"; string suggestedVisibility = _function.isFallback() || m_isInterface ? "external" : "public";
@ -225,12 +223,8 @@ bool SyntaxChecker::visit(FunctionDefinition const& _function)
} }
if (!_function.isImplemented() && !_function.modifiers().empty()) if (!_function.isImplemented() && !_function.modifiers().empty())
{ m_errorReporter.syntaxError(_function.location(), "Functions without implementation cannot have modifiers.");
if (v050)
m_errorReporter.syntaxError(_function.location(), "Functions without implementation cannot have modifiers.");
else
m_errorReporter.warning(_function.location(), "Modifiers of functions without implementation are ignored." );
}
return true; return true;
} }

View File

@ -3,5 +3,5 @@ contract C {
constructor() public x; constructor() public x;
} }
// ---- // ----
// Warning: (83-106): Modifiers of functions without implementation are ignored. // SyntaxError: (83-106): Functions without implementation cannot have modifiers.
// DeclarationError: (104-105): Undeclared identifier. // DeclarationError: (104-105): Undeclared identifier.

View File

@ -9,5 +9,5 @@ contract C
function bar() public only_owner; function bar() public only_owner;
} }
// ---- // ----
// Warning: (203-236): Modifiers of functions without implementation are ignored. // SyntaxError: (203-236): Functions without implementation cannot have modifiers.
// Warning: (241-274): Modifiers of functions without implementation are ignored. // SyntaxError: (241-274): Functions without implementation cannot have modifiers.