私はソースファイルの上にたくさんの変更を加えました。
- はASTを変更:変更があるhttp://melpon.org/wandbox/permlink/sY2CQkXiMiLoS1BM
にあるものを確認してください。それは正しいとは思わなかった。主にバリアントに「単項」を追加する部分。
- 文法を修正しました。これは私が実際にあなたのテストから文法を作ることができるものに基づいています。私は間違っているかもしれません、私は最初のテストケースを動作させるように試みました。より良い
特に「parser.hpp」で、あなたに対する私の変化を比較するための差分ツールを実行します。注:私の変更はあなたの要件に従って正しくない場合は、私はデバッグを有効にするために、あなたをお勧めします「BOOST_SPIRIT_X3_DEBUG」とそれをトレースします。そのような場合BOOST_SPIRIT_X3_DEBUGがどれくらい役に立つかを十分に強調することはできません。
parser.hpp
#include <boost/spirit/home/x3.hpp>
#include "ast.hpp"
#include "operators.hpp"
namespace parser{
namespace x3 = boost::spirit::x3;
template<typename T>
auto as = [](auto p) { return x3::rule<struct _, T>{} = as_parser(p); };
typedef x3::rule<struct multiplicative_expr_class, ast::Expression> multiplicative_expr_type;
typedef x3::rule<struct expression_class, ast::Expression> expression_type;
typedef x3::rule<struct primary_expr_class, ast::Operand> primary_expr_type;
typedef x3::rule<struct func_call_call_class, ast::Expression> func_call_expr_type;
typedef x3::rule<struct unary_expr_class, ast::Operand> unary_expr_type;
const primary_expr_type primary_expr = "primary_expr";
const func_call_expr_type func_call_expr = "func_call_expr";
const expression_type expression = "expression";
const multiplicative_expr_type multiplicative_expr = "multiplicative_expr";
const unary_expr_type unary_expr = "unary_expr";
auto const primary_expr_def =
+(x3::alpha | x3::char_('.'))
| ("(" > expression > ")");
auto const idx = as<ast::Operation>(helper::idxaccess_op > primary_expr > ']');
auto const func = as<ast::Operation>(helper::func_call_op > primary_expr%',' > ')');
auto const data = as<ast::Operation>(helper::access_op > expression);
auto const func_call_expr_def =
primary_expr >> *(idx | func | data);
auto const unary_expr_def =
func_call_expr
| as<ast::Operation>(helper::unary_op > func_call_expr);
auto const multiplicative_expr_def =
primary_expr >> *(idx | func);
auto const expression_def = multiplicative_expr_def;
BOOST_SPIRIT_DEFINE(primary_expr,
func_call_expr,
multiplicative_expr,
unary_expr,
expression);
}
ast.hpp
#include <boost/spirit/home/x3.hpp>
#include <boost/spirit/home/x3/support/ast/variant.hpp>
#include <boost/fusion/include/adapt_struct.hpp>
#include <vector>
namespace ast{
namespace x3 = boost::spirit::x3;
enum class operator_t
{
_eq_, // ==
_ne_, // !=
_lt_, // <
_gt_, // >
_le_, // <=
_ge_, // >=
_add_, // +
_sub_, // -
_mul_, // *
_div_, ///
_mod_, // %
_pos_, // unary +
_neg_, // unary -
_not_, // unary !
_size_, // unary #
_bitnot_, // unary ~
_bitand_, // &
_bitor_, // |
_bitxor_, //^
_shl_, // <<
_shr_, // >>
_and_, // &&
_or_, // ||
_idx_, // []
_apply_, //()
_access_ // .
};
struct nil{};
struct Expression;
typedef x3::variant<
nil,
std::string,
x3::forward_ast<Expression>
//std::vector<Expression> //adding this as an operand for function parameter
> Operand;
struct Operation {
operator_t operator_;
Operand operand_;
};
struct Expression {
Operand first_;
std::vector<Operation> rest_;
};
}
BOOST_FUSION_ADAPT_STRUCT(ast::Operation, operator_, operand_)
BOOST_FUSION_ADAPT_STRUCT(ast::Expression, first_, rest_)
リンクに問題が発生しても問題が解決されないように、必ず質問にコードを含めてください。 – Rakete1111
内部コンパイラエラーはちょっと深刻です。だから、これはコンパイラのバグだと思います。コード内でエラーを見つけられず、正しい場合はコンパイルできませんでした。 – ForceBru
@ Rakete1111これをどうすればいいですか? – Exagon