mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Rename Token::Const to Token::Constant
This commit is contained in:
parent
81887bc7eb
commit
3b41cd3c23
@ -321,7 +321,7 @@ Parser::FunctionHeaderParserResult Parser::parseFunctionHeader(bool _forceEmptyN
|
||||
while (true)
|
||||
{
|
||||
Token::Value token = m_scanner->currentToken();
|
||||
if (token == Token::Const)
|
||||
if (token == Token::Constant)
|
||||
{
|
||||
if (result.isDeclaredConst)
|
||||
parserError(string("Multiple \"constant\" specifiers."));
|
||||
@ -522,7 +522,7 @@ ASTPointer<VariableDeclaration> Parser::parseVariableDeclaration(
|
||||
{
|
||||
if (_options.allowIndexed && token == Token::Indexed)
|
||||
isIndexed = true;
|
||||
else if (token == Token::Const)
|
||||
else if (token == Token::Constant)
|
||||
isDeclaredConst = true;
|
||||
else if (_options.allowLocationSpecifier && Token::isLocationSpecifier(token))
|
||||
{
|
||||
|
@ -143,7 +143,7 @@ namespace solidity
|
||||
K(As, "as", 0) \
|
||||
K(Assembly, "assembly", 0) \
|
||||
K(Break, "break", 0) \
|
||||
K(Const, "constant", 0) \
|
||||
K(Constant, "constant", 0) \
|
||||
K(Continue, "continue", 0) \
|
||||
K(Contract, "contract", 0) \
|
||||
K(Do, "do", 0) \
|
||||
|
Loading…
Reference in New Issue
Block a user