solidity/ASTForward.h

95 lines
2.2 KiB
C
Raw Normal View History

2014-10-13 15:13:48 +00:00
/*
2014-10-16 12:08:54 +00:00
This file is part of cpp-ethereum.
2014-10-13 15:13:48 +00:00
2014-10-16 12:08:54 +00:00
cpp-ethereum 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
2014-10-16 12:08:54 +00:00
cpp-ethereum 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
2014-10-16 12:08:54 +00:00
You should have received a copy of the GNU General Public License
along with cpp-ethereum. If not, see <http://www.gnu.org/licenses/>.
2014-10-13 15:13:48 +00:00
*/
/**
* @author Christian <c@ethdev.com>
* @date 2014
* Forward-declarations of AST classes.
*/
#pragma once
#include <string>
#include <memory>
#include <vector>
// Forward-declare all AST node types
2014-10-16 12:08:54 +00:00
namespace dev
{
namespace solidity
{
class ASTNode;
2014-12-03 06:46:55 +00:00
class SourceUnit;
class ImportDirective;
2014-10-13 16:22:15 +00:00
class Declaration;
class ContractDefinition;
class InheritanceSpecifier;
class StructDefinition;
2015-02-09 17:08:56 +00:00
class EnumDefinition;
2015-02-13 16:34:46 +00:00
class EnumValue;
class ParameterList;
class FunctionDefinition;
class VariableDeclaration;
2015-01-21 10:16:18 +00:00
class ModifierDefinition;
class ModifierInvocation;
2015-01-29 13:35:28 +00:00
class EventDefinition;
2014-11-21 18:14:56 +00:00
class MagicVariableDeclaration;
class TypeName;
class ElementaryTypeName;
class UserDefinedTypeName;
class Mapping;
class ArrayTypeName;
class Statement;
class Block;
2015-01-21 10:16:18 +00:00
class PlaceholderStatement;
class IfStatement;
class BreakableStatement;
class WhileStatement;
class ForStatement;
class Continue;
class Break;
class Return;
class VariableDeclarationStatement;
class ExpressionStatement;
class Expression;
class Assignment;
class UnaryOperation;
class BinaryOperation;
class FunctionCall;
2014-12-12 15:49:26 +00:00
class NewExpression;
class MemberAccess;
class IndexAccess;
class PrimaryExpression;
2014-10-13 13:07:21 +00:00
class Identifier;
class ElementaryTypeNameExpression;
class Literal;
class VariableScope;
// 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>
using ASTPointer = std::shared_ptr<T>;
using ASTString = std::string;
2014-10-16 12:08:54 +00:00
}
}