2017-06-01 13:41:51 +00:00
|
|
|
/*
|
|
|
|
This file is part of solidity.
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with solidity. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
2020-07-17 14:54:12 +00:00
|
|
|
// SPDX-License-Identifier: GPL-3.0
|
2017-06-01 13:41:51 +00:00
|
|
|
/**
|
|
|
|
* @author Christian <c@ethdev.com>
|
|
|
|
* @date 2016
|
2018-06-12 17:36:38 +00:00
|
|
|
* Forward declaration of classes for inline assembly / Yul AST
|
2017-06-01 13:41:51 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2019-11-19 15:42:49 +00:00
|
|
|
#include <variant>
|
2017-06-01 13:41:51 +00:00
|
|
|
|
2019-12-11 16:31:36 +00:00
|
|
|
namespace solidity::yul
|
2017-06-01 13:41:51 +00:00
|
|
|
{
|
|
|
|
|
2021-04-27 14:53:04 +00:00
|
|
|
struct DebugData;
|
2020-10-29 14:00:27 +00:00
|
|
|
enum class LiteralKind;
|
2017-06-01 13:41:51 +00:00
|
|
|
struct Literal;
|
|
|
|
struct Label;
|
|
|
|
struct Identifier;
|
|
|
|
struct Assignment;
|
|
|
|
struct VariableDeclaration;
|
|
|
|
struct FunctionDefinition;
|
|
|
|
struct FunctionCall;
|
2017-11-21 12:36:41 +00:00
|
|
|
struct If;
|
2017-06-01 13:41:51 +00:00
|
|
|
struct Switch;
|
2017-11-29 21:43:28 +00:00
|
|
|
struct Case;
|
2017-06-01 13:41:51 +00:00
|
|
|
struct ForLoop;
|
2019-03-04 14:38:05 +00:00
|
|
|
struct Break;
|
|
|
|
struct Continue;
|
2019-10-28 14:25:02 +00:00
|
|
|
struct Leave;
|
2017-12-08 13:01:22 +00:00
|
|
|
struct ExpressionStatement;
|
2017-06-01 13:41:51 +00:00
|
|
|
struct Block;
|
|
|
|
|
2017-11-29 21:43:28 +00:00
|
|
|
struct TypedName;
|
|
|
|
|
2019-11-20 11:27:40 +00:00
|
|
|
using Expression = std::variant<FunctionCall, Identifier, Literal>;
|
|
|
|
using Statement = std::variant<ExpressionStatement, Assignment, VariableDeclaration, FunctionDefinition, If, Switch, ForLoop, Break, Continue, Leave, Block>;
|
2017-06-01 13:41:51 +00:00
|
|
|
|
|
|
|
}
|