2014-10-13 15:13:48 +00:00
|
|
|
/*
|
2019-02-13 15:56:46 +00:00
|
|
|
This file is part of solidity.
|
2014-10-13 15:13:48 +00:00
|
|
|
|
2019-02-13 15:56:46 +00:00
|
|
|
solidity is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
2014-10-13 15:13:48 +00:00
|
|
|
|
2019-02-13 15:56:46 +00:00
|
|
|
solidity is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
2014-10-13 15:13:48 +00:00
|
|
|
|
2019-02-13 15:56:46 +00:00
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with solidity. If not, see <http://www.gnu.org/licenses/>.
|
2014-10-13 15:13:48 +00:00
|
|
|
*/
|
2020-07-17 14:54:12 +00:00
|
|
|
// SPDX-License-Identifier: GPL-3.0
|
2014-10-13 15:13:48 +00:00
|
|
|
/**
|
|
|
|
* @author Christian <c@ethdev.com>
|
|
|
|
* @date 2014
|
|
|
|
* Forward-declarations of AST classes.
|
|
|
|
*/
|
|
|
|
|
2014-10-10 14:37:54 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <memory>
|
2018-12-17 14:33:15 +00:00
|
|
|
#include <string>
|
2014-10-10 14:37:54 +00:00
|
|
|
#include <vector>
|
|
|
|
|
2019-12-10 14:54:09 +00:00
|
|
|
// Forward-declare all AST node types and related enums.
|
|
|
|
|
2019-12-11 16:31:36 +00:00
|
|
|
namespace solidity::langutil
|
2019-12-10 14:54:09 +00:00
|
|
|
{
|
|
|
|
enum class Token : unsigned int;
|
|
|
|
}
|
2014-10-10 14:37:54 +00:00
|
|
|
|
2019-12-11 16:31:36 +00:00
|
|
|
namespace solidity::frontend
|
2014-10-16 12:08:54 +00:00
|
|
|
{
|
2014-10-10 14:37:54 +00:00
|
|
|
|
|
|
|
class ASTNode;
|
2020-08-06 12:46:04 +00:00
|
|
|
class ScopeOpener;
|
2014-12-03 06:46:55 +00:00
|
|
|
class SourceUnit;
|
2016-08-19 17:57:21 +00:00
|
|
|
class PragmaDirective;
|
2014-12-03 06:46:55 +00:00
|
|
|
class ImportDirective;
|
2014-10-13 16:22:15 +00:00
|
|
|
class Declaration;
|
2019-05-07 09:51:32 +00:00
|
|
|
class CallableDeclaration;
|
2019-08-13 11:00:46 +00:00
|
|
|
class OverrideSpecifier;
|
2014-10-10 14:37:54 +00:00
|
|
|
class ContractDefinition;
|
2015-01-19 20:05:47 +00:00
|
|
|
class InheritanceSpecifier;
|
2015-11-25 13:23:35 +00:00
|
|
|
class UsingForDirective;
|
2014-10-10 14:37:54 +00:00
|
|
|
class StructDefinition;
|
2015-02-09 17:08:56 +00:00
|
|
|
class EnumDefinition;
|
2015-02-13 16:34:46 +00:00
|
|
|
class EnumValue;
|
2021-07-28 08:32:59 +00:00
|
|
|
class UserDefinedValueTypeDefinition;
|
2014-10-10 14:37:54 +00:00
|
|
|
class ParameterList;
|
|
|
|
class FunctionDefinition;
|
|
|
|
class VariableDeclaration;
|
2015-01-21 10:16:18 +00:00
|
|
|
class ModifierDefinition;
|
2015-01-22 00:02:38 +00:00
|
|
|
class ModifierInvocation;
|
2015-01-29 13:35:28 +00:00
|
|
|
class EventDefinition;
|
2021-01-28 11:56:22 +00:00
|
|
|
class ErrorDefinition;
|
2014-11-21 18:14:56 +00:00
|
|
|
class MagicVariableDeclaration;
|
2014-10-10 14:37:54 +00:00
|
|
|
class TypeName;
|
|
|
|
class ElementaryTypeName;
|
|
|
|
class UserDefinedTypeName;
|
2016-09-27 19:37:32 +00:00
|
|
|
class FunctionTypeName;
|
2014-10-10 14:37:54 +00:00
|
|
|
class Mapping;
|
2015-02-20 14:52:30 +00:00
|
|
|
class ArrayTypeName;
|
2017-09-28 13:24:01 +00:00
|
|
|
class InlineAssembly;
|
2014-10-10 14:37:54 +00:00
|
|
|
class Statement;
|
|
|
|
class Block;
|
2015-01-21 10:16:18 +00:00
|
|
|
class PlaceholderStatement;
|
2014-10-10 14:37:54 +00:00
|
|
|
class IfStatement;
|
2019-09-02 14:17:02 +00:00
|
|
|
class TryCatchClause;
|
|
|
|
class TryStatement;
|
2014-10-10 14:37:54 +00:00
|
|
|
class BreakableStatement;
|
|
|
|
class WhileStatement;
|
2014-12-15 16:45:18 +00:00
|
|
|
class ForStatement;
|
2014-10-10 14:37:54 +00:00
|
|
|
class Continue;
|
|
|
|
class Break;
|
|
|
|
class Return;
|
2015-09-15 14:33:14 +00:00
|
|
|
class Throw;
|
2018-02-16 15:55:21 +00:00
|
|
|
class EmitStatement;
|
2015-02-17 15:21:38 +00:00
|
|
|
class VariableDeclarationStatement;
|
2014-10-30 00:20:32 +00:00
|
|
|
class ExpressionStatement;
|
2014-10-10 14:37:54 +00:00
|
|
|
class Expression;
|
2015-12-22 16:44:51 +00:00
|
|
|
class Conditional;
|
2014-10-10 14:37:54 +00:00
|
|
|
class Assignment;
|
2015-10-12 21:02:35 +00:00
|
|
|
class TupleExpression;
|
2014-10-10 14:37:54 +00:00
|
|
|
class UnaryOperation;
|
|
|
|
class BinaryOperation;
|
|
|
|
class FunctionCall;
|
2014-12-12 15:49:26 +00:00
|
|
|
class NewExpression;
|
2014-10-10 14:37:54 +00:00
|
|
|
class MemberAccess;
|
|
|
|
class IndexAccess;
|
|
|
|
class PrimaryExpression;
|
2014-10-13 13:07:21 +00:00
|
|
|
class Identifier;
|
2014-10-10 14:37:54 +00:00
|
|
|
class ElementaryTypeNameExpression;
|
|
|
|
class Literal;
|
2020-01-29 22:13:42 +00:00
|
|
|
class StructuredDocumentation;
|
2014-10-10 14:37:54 +00:00
|
|
|
|
2015-01-22 00:02:38 +00:00
|
|
|
class VariableScope;
|
|
|
|
|
2020-10-29 14:07:09 +00:00
|
|
|
template <class T>
|
|
|
|
struct ASTCompareByID
|
|
|
|
{
|
|
|
|
using is_transparent = void;
|
|
|
|
|
|
|
|
bool operator()(T const* _lhs, T const* _rhs) const
|
|
|
|
{
|
|
|
|
return _lhs->id() < _rhs->id();
|
|
|
|
}
|
|
|
|
bool operator()(T const* _lhs, int64_t _rhs) const
|
|
|
|
{
|
|
|
|
return _lhs->id() < _rhs;
|
|
|
|
}
|
|
|
|
bool operator()(int64_t _lhs, T const* _rhs) const
|
|
|
|
{
|
|
|
|
return _lhs < _rhs->id();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2014-10-10 14:37:54 +00:00
|
|
|
// Used as pointers to AST nodes, to be replaced by more clever pointers, e.g. pointers which do
|
|
|
|
// not do reference counting but point to a special memory area that is completely released
|
|
|
|
// explicitly.
|
|
|
|
template <class T>
|
2014-10-20 12:00:37 +00:00
|
|
|
using ASTPointer = std::shared_ptr<T>;
|
2014-10-10 14:37:54 +00:00
|
|
|
|
|
|
|
using ASTString = std::string;
|
|
|
|
|
2014-10-16 12:08:54 +00:00
|
|
|
}
|