2014-05-26 09:22:19 +00:00
|
|
|
/*
|
2017-02-02 10:06:28 +00:00
|
|
|
This file is part of solidity.
|
2014-05-26 09:22:19 +00:00
|
|
|
|
2017-02-02 10:06:28 +00:00
|
|
|
solidity is free software: you can redistribute it and/or modify
|
2014-05-26 09:22:19 +00:00
|
|
|
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.
|
|
|
|
|
2017-02-02 10:06:28 +00:00
|
|
|
solidity is distributed in the hope that it will be useful,
|
2014-05-26 09:22:19 +00:00
|
|
|
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
|
2017-02-02 10:06:28 +00:00
|
|
|
along with solidity. If not, see <http://www.gnu.org/licenses/>.
|
2014-05-26 09:22:19 +00:00
|
|
|
*/
|
|
|
|
/** @file Parser.h
|
|
|
|
* @author Gav Wood <i@gavwood.com>
|
|
|
|
* @date 2014
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
2014-09-05 16:24:29 +00:00
|
|
|
#include <libdevcore/Common.h>
|
2016-10-15 12:26:16 +00:00
|
|
|
#include "Exceptions.h"
|
2014-05-26 09:22:19 +00:00
|
|
|
|
|
|
|
namespace boost { namespace spirit { class utree; } }
|
|
|
|
namespace sp = boost::spirit;
|
|
|
|
|
2014-09-05 15:09:58 +00:00
|
|
|
namespace dev
|
|
|
|
{
|
2014-05-26 09:22:19 +00:00
|
|
|
namespace eth
|
|
|
|
{
|
|
|
|
|
|
|
|
void killBigints(sp::utree const& _this);
|
|
|
|
void parseTreeLLL(std::string const& _s, sp::utree& o_out);
|
2014-05-26 10:12:22 +00:00
|
|
|
void debugOutAST(std::ostream& _out, sp::utree const& _this);
|
2014-05-26 09:22:19 +00:00
|
|
|
|
|
|
|
}
|
2014-09-05 15:09:58 +00:00
|
|
|
}
|