From 9b7ee7971dd598e770d1cc3360d636cf88272398 Mon Sep 17 00:00:00 2001 From: xensik Date: Thu, 20 Oct 2022 17:19:34 +0200 Subject: [PATCH] add treyarch const locals --- gen/t6/parser.ypp | 15 +- src/t6/xsk/compiler.cpp | 32 +- src/t6/xsk/compiler.hpp | 2 +- src/t6/xsk/lexer.cpp | 1 + src/t6/xsk/parser.cpp | 2639 ++++++++++++++++---------------- src/t6/xsk/parser.hpp | 715 ++++----- src/utils/xsk/arc/nodetree.cpp | 18 +- src/utils/xsk/arc/nodetree.hpp | 30 +- 8 files changed, 1722 insertions(+), 1730 deletions(-) diff --git a/gen/t6/parser.ypp b/gen/t6/parser.ypp index b4e4256f..5d2268a4 100644 --- a/gen/t6/parser.ypp +++ b/gen/t6/parser.ypp @@ -89,6 +89,7 @@ xsk::arc::t6::parser::symbol_type T6lex(xsk::arc::t6::lexer& lexer); %token SELF "self" %token ANIM "anim" %token LEVEL "level" +%token CONST "const" %token GETNEXTARRAYKEY "getnextarraykey" %token GETFIRSTARRAYKEY "getfirstarraykey" %token GETDVARCOLORALPHA "getdvarcoloralpha" @@ -165,7 +166,6 @@ xsk::arc::t6::parser::symbol_type T6lex(xsk::arc::t6::lexer& lexer); %type include %type declaration %type decl_usingtree -%type decl_constant %type decl_thread %type stmt %type stmt_or_dev @@ -175,6 +175,7 @@ xsk::arc::t6::parser::symbol_type T6lex(xsk::arc::t6::lexer& lexer); %type stmt_block %type stmt_expr %type stmt_call +%type stmt_const %type stmt_assign %type stmt_endon %type stmt_notify @@ -323,7 +324,6 @@ declaration : DEVBEGIN { $$.as_dev_begin = std::make_unique(@$); } | DEVEND { $$.as_dev_end = std::make_unique(@$); } | decl_usingtree { $$.as_usingtree = std::move($1); } - | decl_constant { $$.as_constant = std::move($1); } | decl_thread { $$.as_thread = std::move($1); } ; @@ -332,11 +332,6 @@ decl_usingtree { lexer.ban_header(@$); $$ = std::make_unique(@$, std::move($3)); } ; -decl_constant - : expr_identifier ASSIGN expr SEMICOLON - { $$ = std::make_unique(@$, std::move($1), std::move($3)); } - ; - decl_thread : expr_identifier LPAREN expr_parameters RPAREN stmt_block { lexer.ban_header(@$); $$ = std::make_unique(@$, std::move($1), std::move($3), std::move($5), export_flags::none); } @@ -349,6 +344,7 @@ decl_thread stmt : stmt_block { $$.as_list = std::move($1); } | stmt_call { $$.as_call = std::move($1); } + | stmt_const { $$.as_const = std::move($1); } | stmt_assign { $$.as_assign = std::move($1); } | stmt_endon { $$.as_endon = std::move($1); } | stmt_notify { $$.as_notify = std::move($1); } @@ -419,6 +415,11 @@ stmt_call { $$ = std::make_unique(@$, ast::expr(std::move($1))); } ; +stmt_const + : CONST expr_identifier ASSIGN expr SEMICOLON + { $$ = std::make_unique(@$, std::move($2), std::move($4)); } + ; + stmt_assign : expr_assign SEMICOLON { $$ = std::make_unique(@$, std::move($1)); } diff --git a/src/t6/xsk/compiler.cpp b/src/t6/xsk/compiler.cpp index aeed8f2c..07a16d57 100644 --- a/src/t6/xsk/compiler.cpp +++ b/src/t6/xsk/compiler.cpp @@ -78,7 +78,6 @@ void compiler::compile_program(const ast::program::ptr& program) assembly_ = std::make_unique(); includes_.clear(); animtrees_.clear(); - constants_.clear(); local_functions_.clear(); index_ = 0; developer_thread_ = false; @@ -132,9 +131,6 @@ void compiler::emit_declaration(const ast::decl& decl) case ast::kind::decl_usingtree: emit_decl_usingtree(decl.as_usingtree); break; - case ast::kind::decl_constant: - emit_decl_constant(decl.as_constant); - break; case ast::kind::decl_thread: emit_decl_thread(decl.as_thread); break; @@ -153,16 +149,6 @@ void compiler::emit_decl_usingtree(const ast::decl_usingtree::ptr& animtree) animtrees_.push_back({ animtree->name->value, false }); } -void compiler::emit_decl_constant(const ast::decl_constant::ptr& constant) -{ - const auto itr = constants_.find(constant->name->value); - - if (itr != constants_.end()) - throw comp_error(constant->loc(), "duplicated constant '" + constant->name->value + "'"); - - constants_.insert({ constant->name->value, std::move(constant->value) }); -} - void compiler::emit_decl_thread(const ast::decl_thread::ptr& thread) { function_ = std::make_unique(); @@ -176,6 +162,7 @@ void compiler::emit_decl_thread(const ast::decl_thread::ptr& thread) can_break_ = false; can_continue_ = false; local_stack_.clear(); + constants_.clear(); blocks_.clear(); process_thread(thread); @@ -210,6 +197,9 @@ void compiler::emit_stmt(const ast::stmt& stmt) case ast::kind::stmt_call: emit_stmt_call(stmt.as_call); break; + case ast::kind::stmt_const: + emit_stmt_const(stmt.as_const); + break; case ast::kind::stmt_assign: emit_stmt_assign(stmt.as_assign); break; @@ -338,6 +328,19 @@ void compiler::emit_stmt_call(const ast::stmt_call::ptr& stmt) throw comp_error(stmt->loc(), "unknown call statement expression"); } +void compiler::emit_stmt_const(const ast::stmt_const::ptr& stmt) +{ + const auto itr = constants_.find(stmt->lvalue->value); + + if (itr != constants_.end()) + throw comp_error(stmt->loc(), "duplicated constant '" + stmt->lvalue->value + "'"); + + if (std::find(local_stack_.begin(), local_stack_.end(), stmt->lvalue->value) != local_stack_.end()) + throw comp_error(stmt->loc(), "constant already defined as local variable '" + stmt->lvalue->value + "'"); + + constants_.insert({ stmt->lvalue->value, std::move(stmt->rvalue) }); +} + void compiler::emit_stmt_assign(const ast::stmt_assign::ptr& stmt) { switch (stmt->expr.kind()) @@ -2043,6 +2046,7 @@ void compiler::process_stmt(const ast::stmt& stmt) process_stmt_switch(stmt.as_switch); break; case ast::kind::stmt_call: + case ast::kind::stmt_const: case ast::kind::stmt_endon: case ast::kind::stmt_notify: case ast::kind::stmt_wait: diff --git a/src/t6/xsk/compiler.hpp b/src/t6/xsk/compiler.hpp index c04c3af9..976134a0 100644 --- a/src/t6/xsk/compiler.hpp +++ b/src/t6/xsk/compiler.hpp @@ -43,13 +43,13 @@ private: void emit_include(const ast::include::ptr& include); void emit_declaration(const ast::decl& decl); void emit_decl_usingtree(const ast::decl_usingtree::ptr& animtree); - void emit_decl_constant(const ast::decl_constant::ptr& constant); void emit_decl_thread(const ast::decl_thread::ptr& thread); void emit_stmt(const ast::stmt& stmt); void emit_stmt_list(const ast::stmt_list::ptr& stmt); void emit_stmt_dev(const ast::stmt_dev::ptr& stmt); void emit_stmt_expr(const ast::stmt_expr::ptr& stmt); void emit_stmt_call(const ast::stmt_call::ptr& stmt); + void emit_stmt_const(const ast::stmt_const::ptr& stmt); void emit_stmt_assign(const ast::stmt_assign::ptr& stmt); void emit_stmt_endon(const ast::stmt_endon::ptr& stmt); void emit_stmt_notify(const ast::stmt_notify::ptr& stmt); diff --git a/src/t6/xsk/lexer.cpp b/src/t6/xsk/lexer.cpp index 8fd13f17..d40eb610 100644 --- a/src/t6/xsk/lexer.cpp +++ b/src/t6/xsk/lexer.cpp @@ -62,6 +62,7 @@ const std::unordered_map keywo { "self", parser::token::SELF }, { "anim", parser::token::ANIM }, { "level", parser::token::LEVEL }, + { "const", parser::token::CONST }, { "isdefined", parser::token::ISDEFINED }, { "vectorscale", parser::token::VECTORSCALE }, { "anglestoup", parser::token::ANGLESTOUP }, diff --git a/src/t6/xsk/parser.cpp b/src/t6/xsk/parser.cpp index 7cffdc5e..4d03717d 100644 --- a/src/t6/xsk/parser.cpp +++ b/src/t6/xsk/parser.cpp @@ -224,10 +224,6 @@ namespace xsk { namespace arc { namespace t6 { value.YY_MOVE_OR_COPY< ast::decl > (YY_MOVE (that.value)); break; - case symbol_kind::S_decl_constant: // decl_constant - value.YY_MOVE_OR_COPY< ast::decl_constant::ptr > (YY_MOVE (that.value)); - break; - case symbol_kind::S_decl_thread: // decl_thread value.YY_MOVE_OR_COPY< ast::decl_thread::ptr > (YY_MOVE (that.value)); break; @@ -477,6 +473,10 @@ namespace xsk { namespace arc { namespace t6 { value.YY_MOVE_OR_COPY< ast::stmt_case::ptr > (YY_MOVE (that.value)); break; + case symbol_kind::S_stmt_const: // stmt_const + value.YY_MOVE_OR_COPY< ast::stmt_const::ptr > (YY_MOVE (that.value)); + break; + case symbol_kind::S_stmt_continue: // stmt_continue value.YY_MOVE_OR_COPY< ast::stmt_continue::ptr > (YY_MOVE (that.value)); break; @@ -597,10 +597,6 @@ namespace xsk { namespace arc { namespace t6 { value.move< ast::decl > (YY_MOVE (that.value)); break; - case symbol_kind::S_decl_constant: // decl_constant - value.move< ast::decl_constant::ptr > (YY_MOVE (that.value)); - break; - case symbol_kind::S_decl_thread: // decl_thread value.move< ast::decl_thread::ptr > (YY_MOVE (that.value)); break; @@ -850,6 +846,10 @@ namespace xsk { namespace arc { namespace t6 { value.move< ast::stmt_case::ptr > (YY_MOVE (that.value)); break; + case symbol_kind::S_stmt_const: // stmt_const + value.move< ast::stmt_const::ptr > (YY_MOVE (that.value)); + break; + case symbol_kind::S_stmt_continue: // stmt_continue value.move< ast::stmt_continue::ptr > (YY_MOVE (that.value)); break; @@ -970,10 +970,6 @@ namespace xsk { namespace arc { namespace t6 { value.copy< ast::decl > (that.value); break; - case symbol_kind::S_decl_constant: // decl_constant - value.copy< ast::decl_constant::ptr > (that.value); - break; - case symbol_kind::S_decl_thread: // decl_thread value.copy< ast::decl_thread::ptr > (that.value); break; @@ -1223,6 +1219,10 @@ namespace xsk { namespace arc { namespace t6 { value.copy< ast::stmt_case::ptr > (that.value); break; + case symbol_kind::S_stmt_const: // stmt_const + value.copy< ast::stmt_const::ptr > (that.value); + break; + case symbol_kind::S_stmt_continue: // stmt_continue value.copy< ast::stmt_continue::ptr > (that.value); break; @@ -1342,10 +1342,6 @@ namespace xsk { namespace arc { namespace t6 { value.move< ast::decl > (that.value); break; - case symbol_kind::S_decl_constant: // decl_constant - value.move< ast::decl_constant::ptr > (that.value); - break; - case symbol_kind::S_decl_thread: // decl_thread value.move< ast::decl_thread::ptr > (that.value); break; @@ -1595,6 +1591,10 @@ namespace xsk { namespace arc { namespace t6 { value.move< ast::stmt_case::ptr > (that.value); break; + case symbol_kind::S_stmt_const: // stmt_const + value.move< ast::stmt_const::ptr > (that.value); + break; + case symbol_kind::S_stmt_continue: // stmt_continue value.move< ast::stmt_continue::ptr > (that.value); break; @@ -1969,10 +1969,6 @@ namespace xsk { namespace arc { namespace t6 { yylhs.value.emplace< ast::decl > (); break; - case symbol_kind::S_decl_constant: // decl_constant - yylhs.value.emplace< ast::decl_constant::ptr > (); - break; - case symbol_kind::S_decl_thread: // decl_thread yylhs.value.emplace< ast::decl_thread::ptr > (); break; @@ -2222,6 +2218,10 @@ namespace xsk { namespace arc { namespace t6 { yylhs.value.emplace< ast::stmt_case::ptr > (); break; + case symbol_kind::S_stmt_const: // stmt_const + yylhs.value.emplace< ast::stmt_const::ptr > (); + break; + case symbol_kind::S_stmt_continue: // stmt_continue yylhs.value.emplace< ast::stmt_continue::ptr > (); break; @@ -2339,1615 +2339,1615 @@ namespace xsk { namespace arc { namespace t6 { switch (yyn) { case 2: // root: program -#line 294 "parser.ypp" +#line 295 "parser.ypp" { ast = std::move(yystack_[0].value.as < ast::program::ptr > ()); } #line 2345 "parser.cpp" break; case 3: // root: %empty -#line 295 "parser.ypp" +#line 296 "parser.ypp" { ast = std::make_unique(yylhs.location); } #line 2351 "parser.cpp" break; case 4: // program: program inline -#line 300 "parser.ypp" +#line 301 "parser.ypp" { yylhs.value.as < ast::program::ptr > () = std::move(yystack_[1].value.as < ast::program::ptr > ()); } #line 2357 "parser.cpp" break; case 5: // program: program include -#line 302 "parser.ypp" +#line 303 "parser.ypp" { yylhs.value.as < ast::program::ptr > () = std::move(yystack_[1].value.as < ast::program::ptr > ()); yylhs.value.as < ast::program::ptr > ()->includes.push_back(std::move(yystack_[0].value.as < ast::include::ptr > ())); } #line 2363 "parser.cpp" break; case 6: // program: program declaration -#line 304 "parser.ypp" +#line 305 "parser.ypp" { yylhs.value.as < ast::program::ptr > () = std::move(yystack_[1].value.as < ast::program::ptr > ()); yylhs.value.as < ast::program::ptr > ()->declarations.push_back(std::move(yystack_[0].value.as < ast::decl > ())); } #line 2369 "parser.cpp" break; case 7: // program: inline -#line 306 "parser.ypp" +#line 307 "parser.ypp" { yylhs.value.as < ast::program::ptr > () = std::make_unique(yylhs.location); } #line 2375 "parser.cpp" break; case 8: // program: include -#line 308 "parser.ypp" +#line 309 "parser.ypp" { yylhs.value.as < ast::program::ptr > () = std::make_unique(yylhs.location); yylhs.value.as < ast::program::ptr > ()->includes.push_back(std::move(yystack_[0].value.as < ast::include::ptr > ())); } #line 2381 "parser.cpp" break; case 9: // program: declaration -#line 310 "parser.ypp" +#line 311 "parser.ypp" { yylhs.value.as < ast::program::ptr > () = std::make_unique(yylhs.location); yylhs.value.as < ast::program::ptr > ()->declarations.push_back(std::move(yystack_[0].value.as < ast::decl > ())); } #line 2387 "parser.cpp" break; case 10: // inline: "#inline" expr_path ";" -#line 314 "parser.ypp" +#line 315 "parser.ypp" { lexer.push_header(yystack_[1].value.as < ast::expr_path::ptr > ()->value); } #line 2393 "parser.cpp" break; case 11: // include: "#include" expr_path ";" -#line 319 "parser.ypp" +#line 320 "parser.ypp" { yylhs.value.as < ast::include::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[1].value.as < ast::expr_path::ptr > ())); } #line 2399 "parser.cpp" break; case 12: // declaration: "/#" -#line 323 "parser.ypp" +#line 324 "parser.ypp" { yylhs.value.as < ast::decl > ().as_dev_begin = std::make_unique(yylhs.location); } #line 2405 "parser.cpp" break; case 13: // declaration: "#/" -#line 324 "parser.ypp" +#line 325 "parser.ypp" { yylhs.value.as < ast::decl > ().as_dev_end = std::make_unique(yylhs.location); } #line 2411 "parser.cpp" break; case 14: // declaration: decl_usingtree -#line 325 "parser.ypp" +#line 326 "parser.ypp" { yylhs.value.as < ast::decl > ().as_usingtree = std::move(yystack_[0].value.as < ast::decl_usingtree::ptr > ()); } #line 2417 "parser.cpp" break; - case 15: // declaration: decl_constant -#line 326 "parser.ypp" - { yylhs.value.as < ast::decl > ().as_constant = std::move(yystack_[0].value.as < ast::decl_constant::ptr > ()); } + case 15: // declaration: decl_thread +#line 327 "parser.ypp" + { yylhs.value.as < ast::decl > ().as_thread = std::move(yystack_[0].value.as < ast::decl_thread::ptr > ()); } #line 2423 "parser.cpp" break; - case 16: // declaration: decl_thread -#line 327 "parser.ypp" - { yylhs.value.as < ast::decl > ().as_thread = std::move(yystack_[0].value.as < ast::decl_thread::ptr > ()); } + case 16: // decl_usingtree: "#using_animtree" "(" expr_string ")" ";" +#line 332 "parser.ypp" + { lexer.ban_header(yylhs.location); yylhs.value.as < ast::decl_usingtree::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[2].value.as < ast::expr_string::ptr > ())); } #line 2429 "parser.cpp" break; - case 17: // decl_usingtree: "#using_animtree" "(" expr_string ")" ";" -#line 332 "parser.ypp" - { lexer.ban_header(yylhs.location); yylhs.value.as < ast::decl_usingtree::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[2].value.as < ast::expr_string::ptr > ())); } + case 17: // decl_thread: expr_identifier "(" expr_parameters ")" stmt_block +#line 337 "parser.ypp" + { lexer.ban_header(yylhs.location); yylhs.value.as < ast::decl_thread::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[4].value.as < ast::expr_identifier::ptr > ()), std::move(yystack_[2].value.as < ast::expr_parameters::ptr > ()), std::move(yystack_[0].value.as < ast::stmt_list::ptr > ()), export_flags::none); } #line 2435 "parser.cpp" break; - case 18: // decl_constant: expr_identifier "=" expr ";" -#line 337 "parser.ypp" - { yylhs.value.as < ast::decl_constant::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[3].value.as < ast::expr_identifier::ptr > ()), std::move(yystack_[1].value.as < ast::expr > ())); } + case 18: // decl_thread: "autoexec" expr_identifier "(" expr_parameters ")" stmt_block +#line 339 "parser.ypp" + { lexer.ban_header(yylhs.location); yylhs.value.as < ast::decl_thread::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[4].value.as < ast::expr_identifier::ptr > ()), std::move(yystack_[2].value.as < ast::expr_parameters::ptr > ()), std::move(yystack_[0].value.as < ast::stmt_list::ptr > ()), export_flags::vis_autoexec); } #line 2441 "parser.cpp" break; - case 19: // decl_thread: expr_identifier "(" expr_parameters ")" stmt_block -#line 342 "parser.ypp" - { lexer.ban_header(yylhs.location); yylhs.value.as < ast::decl_thread::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[4].value.as < ast::expr_identifier::ptr > ()), std::move(yystack_[2].value.as < ast::expr_parameters::ptr > ()), std::move(yystack_[0].value.as < ast::stmt_list::ptr > ()), export_flags::none); } + case 19: // decl_thread: "private" expr_identifier "(" expr_parameters ")" stmt_block +#line 341 "parser.ypp" + { lexer.ban_header(yylhs.location); yylhs.value.as < ast::decl_thread::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[4].value.as < ast::expr_identifier::ptr > ()), std::move(yystack_[2].value.as < ast::expr_parameters::ptr > ()), std::move(yystack_[0].value.as < ast::stmt_list::ptr > ()), export_flags::vis_private); } #line 2447 "parser.cpp" break; - case 20: // decl_thread: "autoexec" expr_identifier "(" expr_parameters ")" stmt_block -#line 344 "parser.ypp" - { lexer.ban_header(yylhs.location); yylhs.value.as < ast::decl_thread::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[4].value.as < ast::expr_identifier::ptr > ()), std::move(yystack_[2].value.as < ast::expr_parameters::ptr > ()), std::move(yystack_[0].value.as < ast::stmt_list::ptr > ()), export_flags::vis_autoexec); } + case 20: // stmt: stmt_block +#line 345 "parser.ypp" + { yylhs.value.as < ast::stmt > ().as_list = std::move(yystack_[0].value.as < ast::stmt_list::ptr > ()); } #line 2453 "parser.cpp" break; - case 21: // decl_thread: "private" expr_identifier "(" expr_parameters ")" stmt_block + case 21: // stmt: stmt_call #line 346 "parser.ypp" - { lexer.ban_header(yylhs.location); yylhs.value.as < ast::decl_thread::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[4].value.as < ast::expr_identifier::ptr > ()), std::move(yystack_[2].value.as < ast::expr_parameters::ptr > ()), std::move(yystack_[0].value.as < ast::stmt_list::ptr > ()), export_flags::vis_private); } + { yylhs.value.as < ast::stmt > ().as_call = std::move(yystack_[0].value.as < ast::stmt_call::ptr > ()); } #line 2459 "parser.cpp" break; - case 22: // stmt: stmt_block -#line 350 "parser.ypp" - { yylhs.value.as < ast::stmt > ().as_list = std::move(yystack_[0].value.as < ast::stmt_list::ptr > ()); } + case 22: // stmt: stmt_const +#line 347 "parser.ypp" + { yylhs.value.as < ast::stmt > ().as_const = std::move(yystack_[0].value.as < ast::stmt_const::ptr > ()); } #line 2465 "parser.cpp" break; - case 23: // stmt: stmt_call -#line 351 "parser.ypp" - { yylhs.value.as < ast::stmt > ().as_call = std::move(yystack_[0].value.as < ast::stmt_call::ptr > ()); } + case 23: // stmt: stmt_assign +#line 348 "parser.ypp" + { yylhs.value.as < ast::stmt > ().as_assign = std::move(yystack_[0].value.as < ast::stmt_assign::ptr > ()); } #line 2471 "parser.cpp" break; - case 24: // stmt: stmt_assign -#line 352 "parser.ypp" - { yylhs.value.as < ast::stmt > ().as_assign = std::move(yystack_[0].value.as < ast::stmt_assign::ptr > ()); } + case 24: // stmt: stmt_endon +#line 349 "parser.ypp" + { yylhs.value.as < ast::stmt > ().as_endon = std::move(yystack_[0].value.as < ast::stmt_endon::ptr > ()); } #line 2477 "parser.cpp" break; - case 25: // stmt: stmt_endon -#line 353 "parser.ypp" - { yylhs.value.as < ast::stmt > ().as_endon = std::move(yystack_[0].value.as < ast::stmt_endon::ptr > ()); } + case 25: // stmt: stmt_notify +#line 350 "parser.ypp" + { yylhs.value.as < ast::stmt > ().as_notify = std::move(yystack_[0].value.as < ast::stmt_notify::ptr > ()); } #line 2483 "parser.cpp" break; - case 26: // stmt: stmt_notify -#line 354 "parser.ypp" - { yylhs.value.as < ast::stmt > ().as_notify = std::move(yystack_[0].value.as < ast::stmt_notify::ptr > ()); } + case 26: // stmt: stmt_wait +#line 351 "parser.ypp" + { yylhs.value.as < ast::stmt > ().as_wait = std::move(yystack_[0].value.as < ast::stmt_wait::ptr > ()); } #line 2489 "parser.cpp" break; - case 27: // stmt: stmt_wait -#line 355 "parser.ypp" - { yylhs.value.as < ast::stmt > ().as_wait = std::move(yystack_[0].value.as < ast::stmt_wait::ptr > ()); } + case 27: // stmt: stmt_waittill +#line 352 "parser.ypp" + { yylhs.value.as < ast::stmt > ().as_waittill = std::move(yystack_[0].value.as < ast::stmt_waittill::ptr > ()); } #line 2495 "parser.cpp" break; - case 28: // stmt: stmt_waittill -#line 356 "parser.ypp" - { yylhs.value.as < ast::stmt > ().as_waittill = std::move(yystack_[0].value.as < ast::stmt_waittill::ptr > ()); } + case 28: // stmt: stmt_waittillmatch +#line 353 "parser.ypp" + { yylhs.value.as < ast::stmt > ().as_waittillmatch = std::move(yystack_[0].value.as < ast::stmt_waittillmatch::ptr > ()); } #line 2501 "parser.cpp" break; - case 29: // stmt: stmt_waittillmatch -#line 357 "parser.ypp" - { yylhs.value.as < ast::stmt > ().as_waittillmatch = std::move(yystack_[0].value.as < ast::stmt_waittillmatch::ptr > ()); } + case 29: // stmt: stmt_waittillframeend +#line 354 "parser.ypp" + { yylhs.value.as < ast::stmt > ().as_waittillframeend = std::move(yystack_[0].value.as < ast::stmt_waittillframeend::ptr > ()); } #line 2507 "parser.cpp" break; - case 30: // stmt: stmt_waittillframeend -#line 358 "parser.ypp" - { yylhs.value.as < ast::stmt > ().as_waittillframeend = std::move(yystack_[0].value.as < ast::stmt_waittillframeend::ptr > ()); } + case 30: // stmt: stmt_if +#line 355 "parser.ypp" + { yylhs.value.as < ast::stmt > ().as_if = std::move(yystack_[0].value.as < ast::stmt_if::ptr > ()); } #line 2513 "parser.cpp" break; - case 31: // stmt: stmt_if -#line 359 "parser.ypp" - { yylhs.value.as < ast::stmt > ().as_if = std::move(yystack_[0].value.as < ast::stmt_if::ptr > ()); } + case 31: // stmt: stmt_ifelse +#line 356 "parser.ypp" + { yylhs.value.as < ast::stmt > ().as_ifelse = std::move(yystack_[0].value.as < ast::stmt_ifelse::ptr > ()); } #line 2519 "parser.cpp" break; - case 32: // stmt: stmt_ifelse -#line 360 "parser.ypp" - { yylhs.value.as < ast::stmt > ().as_ifelse = std::move(yystack_[0].value.as < ast::stmt_ifelse::ptr > ()); } + case 32: // stmt: stmt_while +#line 357 "parser.ypp" + { yylhs.value.as < ast::stmt > ().as_while = std::move(yystack_[0].value.as < ast::stmt_while::ptr > ()); } #line 2525 "parser.cpp" break; - case 33: // stmt: stmt_while -#line 361 "parser.ypp" - { yylhs.value.as < ast::stmt > ().as_while = std::move(yystack_[0].value.as < ast::stmt_while::ptr > ()); } + case 33: // stmt: stmt_dowhile +#line 358 "parser.ypp" + { yylhs.value.as < ast::stmt > ().as_dowhile = std::move(yystack_[0].value.as < ast::stmt_dowhile::ptr > ()); } #line 2531 "parser.cpp" break; - case 34: // stmt: stmt_dowhile -#line 362 "parser.ypp" - { yylhs.value.as < ast::stmt > ().as_dowhile = std::move(yystack_[0].value.as < ast::stmt_dowhile::ptr > ()); } + case 34: // stmt: stmt_for +#line 359 "parser.ypp" + { yylhs.value.as < ast::stmt > ().as_for = std::move(yystack_[0].value.as < ast::stmt_for::ptr > ()); } #line 2537 "parser.cpp" break; - case 35: // stmt: stmt_for -#line 363 "parser.ypp" - { yylhs.value.as < ast::stmt > ().as_for = std::move(yystack_[0].value.as < ast::stmt_for::ptr > ()); } + case 35: // stmt: stmt_foreach +#line 360 "parser.ypp" + { yylhs.value.as < ast::stmt > ().as_foreach = std::move(yystack_[0].value.as < ast::stmt_foreach::ptr > ()); } #line 2543 "parser.cpp" break; - case 36: // stmt: stmt_foreach -#line 364 "parser.ypp" - { yylhs.value.as < ast::stmt > ().as_foreach = std::move(yystack_[0].value.as < ast::stmt_foreach::ptr > ()); } + case 36: // stmt: stmt_switch +#line 361 "parser.ypp" + { yylhs.value.as < ast::stmt > ().as_switch = std::move(yystack_[0].value.as < ast::stmt_switch::ptr > ()); } #line 2549 "parser.cpp" break; - case 37: // stmt: stmt_switch -#line 365 "parser.ypp" - { yylhs.value.as < ast::stmt > ().as_switch = std::move(yystack_[0].value.as < ast::stmt_switch::ptr > ()); } + case 37: // stmt: stmt_case +#line 362 "parser.ypp" + { yylhs.value.as < ast::stmt > ().as_case = std::move(yystack_[0].value.as < ast::stmt_case::ptr > ()); } #line 2555 "parser.cpp" break; - case 38: // stmt: stmt_case -#line 366 "parser.ypp" - { yylhs.value.as < ast::stmt > ().as_case = std::move(yystack_[0].value.as < ast::stmt_case::ptr > ()); } + case 38: // stmt: stmt_default +#line 363 "parser.ypp" + { yylhs.value.as < ast::stmt > ().as_default = std::move(yystack_[0].value.as < ast::stmt_default::ptr > ()); } #line 2561 "parser.cpp" break; - case 39: // stmt: stmt_default -#line 367 "parser.ypp" - { yylhs.value.as < ast::stmt > ().as_default = std::move(yystack_[0].value.as < ast::stmt_default::ptr > ()); } + case 39: // stmt: stmt_break +#line 364 "parser.ypp" + { yylhs.value.as < ast::stmt > ().as_break = std::move(yystack_[0].value.as < ast::stmt_break::ptr > ()); } #line 2567 "parser.cpp" break; - case 40: // stmt: stmt_break -#line 368 "parser.ypp" - { yylhs.value.as < ast::stmt > ().as_break = std::move(yystack_[0].value.as < ast::stmt_break::ptr > ()); } + case 40: // stmt: stmt_continue +#line 365 "parser.ypp" + { yylhs.value.as < ast::stmt > ().as_continue = std::move(yystack_[0].value.as < ast::stmt_continue::ptr > ()); } #line 2573 "parser.cpp" break; - case 41: // stmt: stmt_continue -#line 369 "parser.ypp" - { yylhs.value.as < ast::stmt > ().as_continue = std::move(yystack_[0].value.as < ast::stmt_continue::ptr > ()); } + case 41: // stmt: stmt_return +#line 366 "parser.ypp" + { yylhs.value.as < ast::stmt > ().as_return = std::move(yystack_[0].value.as < ast::stmt_return::ptr > ()); } #line 2579 "parser.cpp" break; - case 42: // stmt: stmt_return -#line 370 "parser.ypp" - { yylhs.value.as < ast::stmt > ().as_return = std::move(yystack_[0].value.as < ast::stmt_return::ptr > ()); } + case 42: // stmt: stmt_prof_begin +#line 367 "parser.ypp" + { yylhs.value.as < ast::stmt > ().as_prof_begin = std::move(yystack_[0].value.as < ast::stmt_prof_begin::ptr > ()); } #line 2585 "parser.cpp" break; - case 43: // stmt: stmt_prof_begin -#line 371 "parser.ypp" - { yylhs.value.as < ast::stmt > ().as_prof_begin = std::move(yystack_[0].value.as < ast::stmt_prof_begin::ptr > ()); } + case 43: // stmt: stmt_prof_end +#line 368 "parser.ypp" + { yylhs.value.as < ast::stmt > ().as_prof_end = std::move(yystack_[0].value.as < ast::stmt_prof_end::ptr > ()); } #line 2591 "parser.cpp" break; - case 44: // stmt: stmt_prof_end + case 44: // stmt_or_dev: stmt #line 372 "parser.ypp" - { yylhs.value.as < ast::stmt > ().as_prof_end = std::move(yystack_[0].value.as < ast::stmt_prof_end::ptr > ()); } + { yylhs.value.as < ast::stmt > () = std::move(yystack_[0].value.as < ast::stmt > ()); } #line 2597 "parser.cpp" break; - case 45: // stmt_or_dev: stmt -#line 376 "parser.ypp" - { yylhs.value.as < ast::stmt > () = std::move(yystack_[0].value.as < ast::stmt > ()); } + case 45: // stmt_or_dev: stmt_dev +#line 373 "parser.ypp" + { yylhs.value.as < ast::stmt > ().as_dev = std::move(yystack_[0].value.as < ast::stmt_dev::ptr > ()); } #line 2603 "parser.cpp" break; - case 46: // stmt_or_dev: stmt_dev -#line 377 "parser.ypp" - { yylhs.value.as < ast::stmt > ().as_dev = std::move(yystack_[0].value.as < ast::stmt_dev::ptr > ()); } + case 46: // stmt_list: stmt_list stmt +#line 378 "parser.ypp" + { yylhs.value.as < ast::stmt_list::ptr > () = std::move(yystack_[1].value.as < ast::stmt_list::ptr > ()); yylhs.value.as < ast::stmt_list::ptr > ()->list.push_back(std::move(yystack_[0].value.as < ast::stmt > ())); } #line 2609 "parser.cpp" break; - case 47: // stmt_list: stmt_list stmt -#line 382 "parser.ypp" - { yylhs.value.as < ast::stmt_list::ptr > () = std::move(yystack_[1].value.as < ast::stmt_list::ptr > ()); yylhs.value.as < ast::stmt_list::ptr > ()->list.push_back(std::move(yystack_[0].value.as < ast::stmt > ())); } + case 47: // stmt_list: stmt +#line 380 "parser.ypp" + { yylhs.value.as < ast::stmt_list::ptr > () = std::make_unique(yylhs.location); yylhs.value.as < ast::stmt_list::ptr > ()->list.push_back(std::move(yystack_[0].value.as < ast::stmt > ())); } #line 2615 "parser.cpp" break; - case 48: // stmt_list: stmt -#line 384 "parser.ypp" - { yylhs.value.as < ast::stmt_list::ptr > () = std::make_unique(yylhs.location); yylhs.value.as < ast::stmt_list::ptr > ()->list.push_back(std::move(yystack_[0].value.as < ast::stmt > ())); } + case 48: // stmt_or_dev_list: stmt_or_dev_list stmt_or_dev +#line 385 "parser.ypp" + { yylhs.value.as < ast::stmt_list::ptr > () = std::move(yystack_[1].value.as < ast::stmt_list::ptr > ()); yylhs.value.as < ast::stmt_list::ptr > ()->list.push_back(std::move(yystack_[0].value.as < ast::stmt > ())); } #line 2621 "parser.cpp" break; - case 49: // stmt_or_dev_list: stmt_or_dev_list stmt_or_dev -#line 389 "parser.ypp" - { yylhs.value.as < ast::stmt_list::ptr > () = std::move(yystack_[1].value.as < ast::stmt_list::ptr > ()); yylhs.value.as < ast::stmt_list::ptr > ()->list.push_back(std::move(yystack_[0].value.as < ast::stmt > ())); } + case 49: // stmt_or_dev_list: stmt_or_dev +#line 387 "parser.ypp" + { yylhs.value.as < ast::stmt_list::ptr > () = std::make_unique(yylhs.location); yylhs.value.as < ast::stmt_list::ptr > ()->list.push_back(std::move(yystack_[0].value.as < ast::stmt > ())); } #line 2627 "parser.cpp" break; - case 50: // stmt_or_dev_list: stmt_or_dev + case 50: // stmt_dev: "/#" stmt_list "#/" #line 391 "parser.ypp" - { yylhs.value.as < ast::stmt_list::ptr > () = std::make_unique(yylhs.location); yylhs.value.as < ast::stmt_list::ptr > ()->list.push_back(std::move(yystack_[0].value.as < ast::stmt > ())); } + { yylhs.value.as < ast::stmt_dev::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[1].value.as < ast::stmt_list::ptr > ())); } #line 2633 "parser.cpp" break; - case 51: // stmt_dev: "/#" stmt_list "#/" -#line 395 "parser.ypp" - { yylhs.value.as < ast::stmt_dev::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[1].value.as < ast::stmt_list::ptr > ())); } + case 51: // stmt_dev: "/#" "#/" +#line 392 "parser.ypp" + { yylhs.value.as < ast::stmt_dev::ptr > () = std::make_unique(yylhs.location, std::make_unique(yylhs.location)); } #line 2639 "parser.cpp" break; - case 52: // stmt_dev: "/#" "#/" + case 52: // stmt_block: "{" stmt_or_dev_list "}" #line 396 "parser.ypp" - { yylhs.value.as < ast::stmt_dev::ptr > () = std::make_unique(yylhs.location, std::make_unique(yylhs.location)); } + { yylhs.value.as < ast::stmt_list::ptr > () = std::move(yystack_[1].value.as < ast::stmt_list::ptr > ()); } #line 2645 "parser.cpp" break; - case 53: // stmt_block: "{" stmt_or_dev_list "}" -#line 400 "parser.ypp" - { yylhs.value.as < ast::stmt_list::ptr > () = std::move(yystack_[1].value.as < ast::stmt_list::ptr > ()); } + case 53: // stmt_block: "{" "}" +#line 397 "parser.ypp" + { yylhs.value.as < ast::stmt_list::ptr > () = std::make_unique(yylhs.location); } #line 2651 "parser.cpp" break; - case 54: // stmt_block: "{" "}" -#line 401 "parser.ypp" - { yylhs.value.as < ast::stmt_list::ptr > () = std::make_unique(yylhs.location); } + case 54: // stmt_expr: expr_assign +#line 402 "parser.ypp" + { yylhs.value.as < ast::stmt_expr::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[0].value.as < ast::expr > ())); } #line 2657 "parser.cpp" break; - case 55: // stmt_expr: expr_assign -#line 406 "parser.ypp" + case 55: // stmt_expr: expr_increment +#line 404 "parser.ypp" { yylhs.value.as < ast::stmt_expr::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[0].value.as < ast::expr > ())); } #line 2663 "parser.cpp" break; - case 56: // stmt_expr: expr_increment -#line 408 "parser.ypp" + case 56: // stmt_expr: expr_decrement +#line 406 "parser.ypp" { yylhs.value.as < ast::stmt_expr::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[0].value.as < ast::expr > ())); } #line 2669 "parser.cpp" break; - case 57: // stmt_expr: expr_decrement -#line 410 "parser.ypp" - { yylhs.value.as < ast::stmt_expr::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[0].value.as < ast::expr > ())); } + case 57: // stmt_expr: %empty +#line 408 "parser.ypp" + { yylhs.value.as < ast::stmt_expr::ptr > () = std::make_unique(yylhs.location, std::make_unique(yylhs.location)); } #line 2675 "parser.cpp" break; - case 58: // stmt_expr: %empty -#line 412 "parser.ypp" - { yylhs.value.as < ast::stmt_expr::ptr > () = std::make_unique(yylhs.location, std::make_unique(yylhs.location)); } + case 58: // stmt_call: expr_call ";" +#line 413 "parser.ypp" + { yylhs.value.as < ast::stmt_call::ptr > () = std::make_unique(yylhs.location, ast::expr(std::move(yystack_[1].value.as < ast::expr_call::ptr > ()))); } #line 2681 "parser.cpp" break; - case 59: // stmt_call: expr_call ";" -#line 417 "parser.ypp" - { yylhs.value.as < ast::stmt_call::ptr > () = std::make_unique(yylhs.location, ast::expr(std::move(yystack_[1].value.as < ast::expr_call::ptr > ()))); } + case 59: // stmt_call: expr_method ";" +#line 415 "parser.ypp" + { yylhs.value.as < ast::stmt_call::ptr > () = std::make_unique(yylhs.location, ast::expr(std::move(yystack_[1].value.as < ast::expr_method::ptr > ()))); } #line 2687 "parser.cpp" break; - case 60: // stmt_call: expr_method ";" -#line 419 "parser.ypp" - { yylhs.value.as < ast::stmt_call::ptr > () = std::make_unique(yylhs.location, ast::expr(std::move(yystack_[1].value.as < ast::expr_method::ptr > ()))); } + case 60: // stmt_const: "const" expr_identifier "=" expr ";" +#line 420 "parser.ypp" + { yylhs.value.as < ast::stmt_const::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[3].value.as < ast::expr_identifier::ptr > ()), std::move(yystack_[1].value.as < ast::expr > ())); } #line 2693 "parser.cpp" break; case 61: // stmt_assign: expr_assign ";" -#line 424 "parser.ypp" +#line 425 "parser.ypp" { yylhs.value.as < ast::stmt_assign::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[1].value.as < ast::expr > ())); } #line 2699 "parser.cpp" break; case 62: // stmt_assign: expr_increment ";" -#line 426 "parser.ypp" +#line 427 "parser.ypp" { yylhs.value.as < ast::stmt_assign::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[1].value.as < ast::expr > ())); } #line 2705 "parser.cpp" break; case 63: // stmt_assign: expr_decrement ";" -#line 428 "parser.ypp" +#line 429 "parser.ypp" { yylhs.value.as < ast::stmt_assign::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[1].value.as < ast::expr > ())); } #line 2711 "parser.cpp" break; case 64: // stmt_endon: expr_object "endon" "(" expr ")" ";" -#line 433 "parser.ypp" +#line 434 "parser.ypp" { yylhs.value.as < ast::stmt_endon::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[5].value.as < ast::expr > ()), std::move(yystack_[2].value.as < ast::expr > ())); } #line 2717 "parser.cpp" break; case 65: // stmt_notify: expr_object "notify" "(" expr "," expr_arguments_no_empty ")" ";" -#line 438 "parser.ypp" +#line 439 "parser.ypp" { yylhs.value.as < ast::stmt_notify::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[7].value.as < ast::expr > ()), std::move(yystack_[4].value.as < ast::expr > ()), std::move(yystack_[2].value.as < ast::expr_arguments::ptr > ())); } #line 2723 "parser.cpp" break; case 66: // stmt_notify: expr_object "notify" "(" expr ")" ";" -#line 440 "parser.ypp" +#line 441 "parser.ypp" { yylhs.value.as < ast::stmt_notify::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[5].value.as < ast::expr > ()), std::move(yystack_[2].value.as < ast::expr > ()), std::make_unique(yylhs.location)); } #line 2729 "parser.cpp" break; case 67: // stmt_wait: "wait" expr ";" -#line 445 "parser.ypp" +#line 446 "parser.ypp" { yylhs.value.as < ast::stmt_wait::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[1].value.as < ast::expr > ())); } #line 2735 "parser.cpp" break; case 68: // stmt_waittill: expr_object "waittill" "(" expr "," expr_arguments_no_empty ")" ";" -#line 450 "parser.ypp" +#line 451 "parser.ypp" { yylhs.value.as < ast::stmt_waittill::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[7].value.as < ast::expr > ()), std::move(yystack_[4].value.as < ast::expr > ()), std::move(yystack_[2].value.as < ast::expr_arguments::ptr > ())); } #line 2741 "parser.cpp" break; case 69: // stmt_waittill: expr_object "waittill" "(" expr ")" ";" -#line 452 "parser.ypp" +#line 453 "parser.ypp" { yylhs.value.as < ast::stmt_waittill::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[5].value.as < ast::expr > ()), std::move(yystack_[2].value.as < ast::expr > ()), std::make_unique(yylhs.location)); } #line 2747 "parser.cpp" break; case 70: // stmt_waittillmatch: expr_object "waittillmatch" "(" expr "," expr_arguments_no_empty ")" ";" -#line 457 "parser.ypp" +#line 458 "parser.ypp" { yylhs.value.as < ast::stmt_waittillmatch::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[7].value.as < ast::expr > ()), std::move(yystack_[4].value.as < ast::expr > ()), std::move(yystack_[2].value.as < ast::expr_arguments::ptr > ())); } #line 2753 "parser.cpp" break; case 71: // stmt_waittillmatch: expr_object "waittillmatch" "(" expr ")" ";" -#line 459 "parser.ypp" +#line 460 "parser.ypp" { yylhs.value.as < ast::stmt_waittillmatch::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[5].value.as < ast::expr > ()), std::move(yystack_[2].value.as < ast::expr > ()), std::make_unique(yylhs.location)); } #line 2759 "parser.cpp" break; case 72: // stmt_waittillframeend: "waittillframeend" ";" -#line 464 "parser.ypp" +#line 465 "parser.ypp" { yylhs.value.as < ast::stmt_waittillframeend::ptr > () = std::make_unique(yylhs.location); } #line 2765 "parser.cpp" break; case 73: // stmt_if: "if" "(" expr ")" stmt -#line 469 "parser.ypp" +#line 470 "parser.ypp" { yylhs.value.as < ast::stmt_if::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[2].value.as < ast::expr > ()), std::move(yystack_[0].value.as < ast::stmt > ())); } #line 2771 "parser.cpp" break; case 74: // stmt_ifelse: "if" "(" expr ")" stmt "else" stmt -#line 474 "parser.ypp" +#line 475 "parser.ypp" { yylhs.value.as < ast::stmt_ifelse::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[4].value.as < ast::expr > ()), std::move(yystack_[2].value.as < ast::stmt > ()), std::move(yystack_[0].value.as < ast::stmt > ())); } #line 2777 "parser.cpp" break; case 75: // stmt_while: "while" "(" expr ")" stmt -#line 479 "parser.ypp" +#line 480 "parser.ypp" { yylhs.value.as < ast::stmt_while::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[2].value.as < ast::expr > ()), std::move(yystack_[0].value.as < ast::stmt > ())); } #line 2783 "parser.cpp" break; case 76: // stmt_dowhile: "do" stmt "while" "(" expr ")" ";" -#line 484 "parser.ypp" +#line 485 "parser.ypp" { yylhs.value.as < ast::stmt_dowhile::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[2].value.as < ast::expr > ()), std::move(yystack_[5].value.as < ast::stmt > ())); } #line 2789 "parser.cpp" break; case 77: // stmt_for: "for" "(" stmt_expr ";" expr_or_empty ";" stmt_expr ")" stmt -#line 489 "parser.ypp" +#line 490 "parser.ypp" { yylhs.value.as < ast::stmt_for::ptr > () = std::make_unique(yylhs.location, ast::stmt(std::move(yystack_[6].value.as < ast::stmt_expr::ptr > ())), std::move(yystack_[4].value.as < ast::expr > ()), ast::stmt(std::move(yystack_[2].value.as < ast::stmt_expr::ptr > ())), std::move(yystack_[0].value.as < ast::stmt > ())); } #line 2795 "parser.cpp" break; case 78: // stmt_foreach: "foreach" "(" expr_identifier "in" expr ")" stmt -#line 494 "parser.ypp" +#line 495 "parser.ypp" { yylhs.value.as < ast::stmt_foreach::ptr > () = std::make_unique(yylhs.location, ast::expr(std::move(yystack_[4].value.as < ast::expr_identifier::ptr > ())), std::move(yystack_[2].value.as < ast::expr > ()), std::move(yystack_[0].value.as < ast::stmt > ())); } #line 2801 "parser.cpp" break; case 79: // stmt_foreach: "foreach" "(" expr_identifier "," expr_identifier "in" expr ")" stmt -#line 496 "parser.ypp" +#line 497 "parser.ypp" { yylhs.value.as < ast::stmt_foreach::ptr > () = std::make_unique(yylhs.location, ast::expr(std::move(yystack_[6].value.as < ast::expr_identifier::ptr > ())), ast::expr(std::move(yystack_[4].value.as < ast::expr_identifier::ptr > ())), std::move(yystack_[2].value.as < ast::expr > ()), std::move(yystack_[0].value.as < ast::stmt > ())); } #line 2807 "parser.cpp" break; case 80: // stmt_switch: "switch" "(" expr ")" stmt_block -#line 501 "parser.ypp" +#line 502 "parser.ypp" { yylhs.value.as < ast::stmt_switch::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[2].value.as < ast::expr > ()), std::move(yystack_[0].value.as < ast::stmt_list::ptr > ())); } #line 2813 "parser.cpp" break; case 81: // stmt_case: "case" expr_integer ":" -#line 506 "parser.ypp" +#line 507 "parser.ypp" { yylhs.value.as < ast::stmt_case::ptr > () = std::make_unique(yylhs.location, ast::expr(std::move(yystack_[1].value.as < ast::expr_integer::ptr > ())), std::make_unique(yylhs.location)); } #line 2819 "parser.cpp" break; case 82: // stmt_case: "case" expr_string ":" -#line 508 "parser.ypp" +#line 509 "parser.ypp" { yylhs.value.as < ast::stmt_case::ptr > () = std::make_unique(yylhs.location, ast::expr(std::move(yystack_[1].value.as < ast::expr_string::ptr > ())), std::make_unique(yylhs.location)); } #line 2825 "parser.cpp" break; case 83: // stmt_default: "default" ":" -#line 513 "parser.ypp" +#line 514 "parser.ypp" { yylhs.value.as < ast::stmt_default::ptr > () = std::make_unique(yylhs.location, std::make_unique(yylhs.location)); } #line 2831 "parser.cpp" break; case 84: // stmt_break: "break" ";" -#line 518 "parser.ypp" +#line 519 "parser.ypp" { yylhs.value.as < ast::stmt_break::ptr > () = std::make_unique(yylhs.location); } #line 2837 "parser.cpp" break; case 85: // stmt_continue: "continue" ";" -#line 523 "parser.ypp" +#line 524 "parser.ypp" { yylhs.value.as < ast::stmt_continue::ptr > () = std::make_unique(yylhs.location); } #line 2843 "parser.cpp" break; case 86: // stmt_return: "return" expr ";" -#line 528 "parser.ypp" +#line 529 "parser.ypp" { yylhs.value.as < ast::stmt_return::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[1].value.as < ast::expr > ())); } #line 2849 "parser.cpp" break; case 87: // stmt_return: "return" ";" -#line 530 "parser.ypp" +#line 531 "parser.ypp" { yylhs.value.as < ast::stmt_return::ptr > () = std::make_unique(yylhs.location, std::make_unique(yylhs.location)); } #line 2855 "parser.cpp" break; case 88: // stmt_prof_begin: "prof_begin" "(" expr_arguments ")" ";" -#line 535 "parser.ypp" +#line 536 "parser.ypp" { yylhs.value.as < ast::stmt_prof_begin::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[2].value.as < ast::expr_arguments::ptr > ())); } #line 2861 "parser.cpp" break; case 89: // stmt_prof_end: "prof_end" "(" expr_arguments ")" ";" -#line 540 "parser.ypp" +#line 541 "parser.ypp" { yylhs.value.as < ast::stmt_prof_end::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[2].value.as < ast::expr_arguments::ptr > ())); } #line 2867 "parser.cpp" break; case 90: // expr: expr_ternary -#line 544 "parser.ypp" +#line 545 "parser.ypp" { yylhs.value.as < ast::expr > () = std::move(yystack_[0].value.as < ast::expr > ()); } #line 2873 "parser.cpp" break; case 91: // expr: expr_binary -#line 545 "parser.ypp" +#line 546 "parser.ypp" { yylhs.value.as < ast::expr > () = std::move(yystack_[0].value.as < ast::expr > ()); } #line 2879 "parser.cpp" break; case 92: // expr: expr_primitive -#line 546 "parser.ypp" +#line 547 "parser.ypp" { yylhs.value.as < ast::expr > () = std::move(yystack_[0].value.as < ast::expr > ()); } #line 2885 "parser.cpp" break; case 93: // expr_or_empty: expr -#line 550 "parser.ypp" +#line 551 "parser.ypp" { yylhs.value.as < ast::expr > () = std::move(yystack_[0].value.as < ast::expr > ()); } #line 2891 "parser.cpp" break; case 94: // expr_or_empty: %empty -#line 551 "parser.ypp" +#line 552 "parser.ypp" { yylhs.value.as < ast::expr > ().as_node = std::make_unique(yylhs.location); } #line 2897 "parser.cpp" break; case 95: // expr_assign: expr_object "=" expr -#line 556 "parser.ypp" +#line 557 "parser.ypp" { yylhs.value.as < ast::expr > ().as_node = std::make_unique(yylhs.location, std::move(yystack_[2].value.as < ast::expr > ()), std::move(yystack_[0].value.as < ast::expr > ())); } #line 2903 "parser.cpp" break; case 96: // expr_assign: expr_object "|=" expr -#line 558 "parser.ypp" +#line 559 "parser.ypp" { yylhs.value.as < ast::expr > ().as_node = std::make_unique(yylhs.location, std::move(yystack_[2].value.as < ast::expr > ()), std::move(yystack_[0].value.as < ast::expr > ())); } #line 2909 "parser.cpp" break; case 97: // expr_assign: expr_object "&=" expr -#line 560 "parser.ypp" +#line 561 "parser.ypp" { yylhs.value.as < ast::expr > ().as_node = std::make_unique(yylhs.location, std::move(yystack_[2].value.as < ast::expr > ()), std::move(yystack_[0].value.as < ast::expr > ())); } #line 2915 "parser.cpp" break; case 98: // expr_assign: expr_object "^=" expr -#line 562 "parser.ypp" +#line 563 "parser.ypp" { yylhs.value.as < ast::expr > ().as_node = std::make_unique(yylhs.location, std::move(yystack_[2].value.as < ast::expr > ()), std::move(yystack_[0].value.as < ast::expr > ())); } #line 2921 "parser.cpp" break; case 99: // expr_assign: expr_object "<<=" expr -#line 564 "parser.ypp" +#line 565 "parser.ypp" { yylhs.value.as < ast::expr > ().as_node = std::make_unique(yylhs.location, std::move(yystack_[2].value.as < ast::expr > ()),std::move( yystack_[0].value.as < ast::expr > ())); } #line 2927 "parser.cpp" break; case 100: // expr_assign: expr_object ">>=" expr -#line 566 "parser.ypp" +#line 567 "parser.ypp" { yylhs.value.as < ast::expr > ().as_node = std::make_unique(yylhs.location, std::move(yystack_[2].value.as < ast::expr > ()), std::move(yystack_[0].value.as < ast::expr > ())); } #line 2933 "parser.cpp" break; case 101: // expr_assign: expr_object "+=" expr -#line 568 "parser.ypp" +#line 569 "parser.ypp" { yylhs.value.as < ast::expr > ().as_node = std::make_unique(yylhs.location, std::move(yystack_[2].value.as < ast::expr > ()), std::move(yystack_[0].value.as < ast::expr > ())); } #line 2939 "parser.cpp" break; case 102: // expr_assign: expr_object "-=" expr -#line 570 "parser.ypp" +#line 571 "parser.ypp" { yylhs.value.as < ast::expr > ().as_node = std::make_unique(yylhs.location, std::move(yystack_[2].value.as < ast::expr > ()), std::move(yystack_[0].value.as < ast::expr > ())); } #line 2945 "parser.cpp" break; case 103: // expr_assign: expr_object "*=" expr -#line 572 "parser.ypp" +#line 573 "parser.ypp" { yylhs.value.as < ast::expr > ().as_node = std::make_unique(yylhs.location, std::move(yystack_[2].value.as < ast::expr > ()), std::move(yystack_[0].value.as < ast::expr > ())); } #line 2951 "parser.cpp" break; case 104: // expr_assign: expr_object "/=" expr -#line 574 "parser.ypp" +#line 575 "parser.ypp" { yylhs.value.as < ast::expr > ().as_node = std::make_unique(yylhs.location, std::move(yystack_[2].value.as < ast::expr > ()), std::move(yystack_[0].value.as < ast::expr > ())); } #line 2957 "parser.cpp" break; case 105: // expr_assign: expr_object "%=" expr -#line 576 "parser.ypp" +#line 577 "parser.ypp" { yylhs.value.as < ast::expr > ().as_node = std::make_unique(yylhs.location, std::move(yystack_[2].value.as < ast::expr > ()), std::move(yystack_[0].value.as < ast::expr > ())); } #line 2963 "parser.cpp" break; case 106: // expr_increment: "++" expr_object -#line 581 "parser.ypp" +#line 582 "parser.ypp" { yylhs.value.as < ast::expr > ().as_node = std::make_unique(yylhs.location, std::move(yystack_[0].value.as < ast::expr > ()), true); } #line 2969 "parser.cpp" break; case 107: // expr_increment: expr_object "++" -#line 583 "parser.ypp" +#line 584 "parser.ypp" { yylhs.value.as < ast::expr > ().as_node = std::make_unique(yylhs.location, std::move(yystack_[1].value.as < ast::expr > ()), false); } #line 2975 "parser.cpp" break; case 108: // expr_decrement: "--" expr_object -#line 588 "parser.ypp" +#line 589 "parser.ypp" { yylhs.value.as < ast::expr > ().as_node = std::make_unique(yylhs.location, std::move(yystack_[0].value.as < ast::expr > ()), true); } #line 2981 "parser.cpp" break; case 109: // expr_decrement: expr_object "--" -#line 590 "parser.ypp" +#line 591 "parser.ypp" { yylhs.value.as < ast::expr > ().as_node = std::make_unique(yylhs.location, std::move(yystack_[1].value.as < ast::expr > ()), false); } #line 2987 "parser.cpp" break; case 110: // expr_ternary: expr "?" expr ":" expr -#line 595 "parser.ypp" +#line 596 "parser.ypp" { yylhs.value.as < ast::expr > ().as_node = std::make_unique(yylhs.location, std::move(yystack_[4].value.as < ast::expr > ()), std::move(yystack_[2].value.as < ast::expr > ()), std::move(yystack_[0].value.as < ast::expr > ())); } #line 2993 "parser.cpp" break; case 111: // expr_binary: expr "||" expr -#line 600 "parser.ypp" +#line 601 "parser.ypp" { yylhs.value.as < ast::expr > ().as_node = std::make_unique(yylhs.location, std::move(yystack_[2].value.as < ast::expr > ()), std::move(yystack_[0].value.as < ast::expr > ())); } #line 2999 "parser.cpp" break; case 112: // expr_binary: expr "&&" expr -#line 602 "parser.ypp" +#line 603 "parser.ypp" { yylhs.value.as < ast::expr > ().as_node = std::make_unique(yylhs.location, std::move(yystack_[2].value.as < ast::expr > ()), std::move(yystack_[0].value.as < ast::expr > ())); } #line 3005 "parser.cpp" break; case 113: // expr_binary: expr "==" expr -#line 604 "parser.ypp" +#line 605 "parser.ypp" { yylhs.value.as < ast::expr > ().as_node = std::make_unique(yylhs.location, std::move(yystack_[2].value.as < ast::expr > ()), std::move(yystack_[0].value.as < ast::expr > ())); } #line 3011 "parser.cpp" break; case 114: // expr_binary: expr "!=" expr -#line 606 "parser.ypp" +#line 607 "parser.ypp" { yylhs.value.as < ast::expr > ().as_node = std::make_unique(yylhs.location, std::move(yystack_[2].value.as < ast::expr > ()), std::move(yystack_[0].value.as < ast::expr > ())); } #line 3017 "parser.cpp" break; case 115: // expr_binary: expr "<=" expr -#line 608 "parser.ypp" +#line 609 "parser.ypp" { yylhs.value.as < ast::expr > ().as_node = std::make_unique(yylhs.location, std::move(yystack_[2].value.as < ast::expr > ()), std::move(yystack_[0].value.as < ast::expr > ())); } #line 3023 "parser.cpp" break; case 116: // expr_binary: expr ">=" expr -#line 610 "parser.ypp" +#line 611 "parser.ypp" { yylhs.value.as < ast::expr > ().as_node = std::make_unique(yylhs.location, std::move(yystack_[2].value.as < ast::expr > ()), std::move(yystack_[0].value.as < ast::expr > ())); } #line 3029 "parser.cpp" break; case 117: // expr_binary: expr "<" expr -#line 612 "parser.ypp" +#line 613 "parser.ypp" { yylhs.value.as < ast::expr > ().as_node = std::make_unique(yylhs.location, std::move(yystack_[2].value.as < ast::expr > ()), std::move(yystack_[0].value.as < ast::expr > ())); } #line 3035 "parser.cpp" break; case 118: // expr_binary: expr ">" expr -#line 614 "parser.ypp" +#line 615 "parser.ypp" { yylhs.value.as < ast::expr > ().as_node = std::make_unique(yylhs.location, std::move(yystack_[2].value.as < ast::expr > ()), std::move(yystack_[0].value.as < ast::expr > ())); } #line 3041 "parser.cpp" break; case 119: // expr_binary: expr "|" expr -#line 616 "parser.ypp" +#line 617 "parser.ypp" { yylhs.value.as < ast::expr > ().as_node = std::make_unique(yylhs.location, std::move(yystack_[2].value.as < ast::expr > ()), std::move(yystack_[0].value.as < ast::expr > ())); } #line 3047 "parser.cpp" break; case 120: // expr_binary: expr "&" expr -#line 618 "parser.ypp" +#line 619 "parser.ypp" { yylhs.value.as < ast::expr > ().as_node = std::make_unique(yylhs.location, std::move(yystack_[2].value.as < ast::expr > ()), std::move(yystack_[0].value.as < ast::expr > ())); } #line 3053 "parser.cpp" break; case 121: // expr_binary: expr "^" expr -#line 620 "parser.ypp" +#line 621 "parser.ypp" { yylhs.value.as < ast::expr > ().as_node = std::make_unique(yylhs.location, std::move(yystack_[2].value.as < ast::expr > ()), std::move(yystack_[0].value.as < ast::expr > ())); } #line 3059 "parser.cpp" break; case 122: // expr_binary: expr "<<" expr -#line 622 "parser.ypp" +#line 623 "parser.ypp" { yylhs.value.as < ast::expr > ().as_node = std::make_unique(yylhs.location, std::move(yystack_[2].value.as < ast::expr > ()), std::move(yystack_[0].value.as < ast::expr > ())); } #line 3065 "parser.cpp" break; case 123: // expr_binary: expr ">>" expr -#line 624 "parser.ypp" +#line 625 "parser.ypp" { yylhs.value.as < ast::expr > ().as_node = std::make_unique(yylhs.location, std::move(yystack_[2].value.as < ast::expr > ()), std::move(yystack_[0].value.as < ast::expr > ())); } #line 3071 "parser.cpp" break; case 124: // expr_binary: expr "+" expr -#line 626 "parser.ypp" +#line 627 "parser.ypp" { yylhs.value.as < ast::expr > ().as_node = std::make_unique(yylhs.location, std::move(yystack_[2].value.as < ast::expr > ()), std::move(yystack_[0].value.as < ast::expr > ())); } #line 3077 "parser.cpp" break; case 125: // expr_binary: expr "-" expr -#line 628 "parser.ypp" +#line 629 "parser.ypp" { yylhs.value.as < ast::expr > ().as_node = std::make_unique(yylhs.location, std::move(yystack_[2].value.as < ast::expr > ()), std::move(yystack_[0].value.as < ast::expr > ())); } #line 3083 "parser.cpp" break; case 126: // expr_binary: expr "*" expr -#line 630 "parser.ypp" +#line 631 "parser.ypp" { yylhs.value.as < ast::expr > ().as_node = std::make_unique(yylhs.location, std::move(yystack_[2].value.as < ast::expr > ()), std::move(yystack_[0].value.as < ast::expr > ())); } #line 3089 "parser.cpp" break; case 127: // expr_binary: expr "/" expr -#line 632 "parser.ypp" +#line 633 "parser.ypp" { yylhs.value.as < ast::expr > ().as_node = std::make_unique(yylhs.location, std::move(yystack_[2].value.as < ast::expr > ()), std::move(yystack_[0].value.as < ast::expr > ())); } #line 3095 "parser.cpp" break; case 128: // expr_binary: expr "%" expr -#line 634 "parser.ypp" +#line 635 "parser.ypp" { yylhs.value.as < ast::expr > ().as_node = std::make_unique(yylhs.location, std::move(yystack_[2].value.as < ast::expr > ()), std::move(yystack_[0].value.as < ast::expr > ())); } #line 3101 "parser.cpp" break; case 129: // expr_primitive: expr_complement -#line 638 "parser.ypp" +#line 639 "parser.ypp" { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_complement::ptr > ()); } #line 3107 "parser.cpp" break; case 130: // expr_primitive: expr_negate -#line 639 "parser.ypp" +#line 640 "parser.ypp" { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_negate::ptr > ()); } #line 3113 "parser.cpp" break; case 131: // expr_primitive: expr_not -#line 640 "parser.ypp" +#line 641 "parser.ypp" { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_not::ptr > ()); } #line 3119 "parser.cpp" break; case 132: // expr_primitive: expr_call -#line 641 "parser.ypp" +#line 642 "parser.ypp" { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_call::ptr > ()); } #line 3125 "parser.cpp" break; case 133: // expr_primitive: expr_method -#line 642 "parser.ypp" +#line 643 "parser.ypp" { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_method::ptr > ()); } #line 3131 "parser.cpp" break; case 134: // expr_primitive: expr_getnextarraykey -#line 643 "parser.ypp" +#line 644 "parser.ypp" { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_getnextarraykey::ptr > ()); } #line 3137 "parser.cpp" break; case 135: // expr_primitive: expr_getfirstarraykey -#line 644 "parser.ypp" +#line 645 "parser.ypp" { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_getfirstarraykey::ptr > ()); } #line 3143 "parser.cpp" break; case 136: // expr_primitive: expr_getdvarcoloralpha -#line 645 "parser.ypp" +#line 646 "parser.ypp" { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_getdvarcoloralpha::ptr > ()); } #line 3149 "parser.cpp" break; case 137: // expr_primitive: expr_getdvarcolorblue -#line 646 "parser.ypp" +#line 647 "parser.ypp" { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_getdvarcolorblue::ptr > ()); } #line 3155 "parser.cpp" break; case 138: // expr_primitive: expr_getdvarcolorgreen -#line 647 "parser.ypp" +#line 648 "parser.ypp" { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_getdvarcolorgreen::ptr > ()); } #line 3161 "parser.cpp" break; case 139: // expr_primitive: expr_getdvarcolorred -#line 648 "parser.ypp" +#line 649 "parser.ypp" { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_getdvarcolorred::ptr > ()); } #line 3167 "parser.cpp" break; case 140: // expr_primitive: expr_getdvarvector -#line 649 "parser.ypp" +#line 650 "parser.ypp" { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_getdvarvector::ptr > ()); } #line 3173 "parser.cpp" break; case 141: // expr_primitive: expr_getdvarfloat -#line 650 "parser.ypp" +#line 651 "parser.ypp" { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_getdvarfloat::ptr > ()); } #line 3179 "parser.cpp" break; case 142: // expr_primitive: expr_getdvarint -#line 651 "parser.ypp" +#line 652 "parser.ypp" { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_getdvarint::ptr > ()); } #line 3185 "parser.cpp" break; case 143: // expr_primitive: expr_getdvar -#line 652 "parser.ypp" +#line 653 "parser.ypp" { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_getdvar::ptr > ()); } #line 3191 "parser.cpp" break; case 144: // expr_primitive: expr_gettime -#line 653 "parser.ypp" +#line 654 "parser.ypp" { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_gettime::ptr > ()); } #line 3197 "parser.cpp" break; case 145: // expr_primitive: expr_abs -#line 654 "parser.ypp" +#line 655 "parser.ypp" { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_abs::ptr > ()); } #line 3203 "parser.cpp" break; case 146: // expr_primitive: expr_vectortoangles -#line 655 "parser.ypp" +#line 656 "parser.ypp" { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_vectortoangles::ptr > ()); } #line 3209 "parser.cpp" break; case 147: // expr_primitive: expr_angleclamp180 -#line 656 "parser.ypp" +#line 657 "parser.ypp" { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_angleclamp180::ptr > ()); } #line 3215 "parser.cpp" break; case 148: // expr_primitive: expr_anglestoforward -#line 657 "parser.ypp" +#line 658 "parser.ypp" { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_anglestoforward::ptr > ()); } #line 3221 "parser.cpp" break; case 149: // expr_primitive: expr_anglestoright -#line 658 "parser.ypp" +#line 659 "parser.ypp" { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_anglestoright::ptr > ()); } #line 3227 "parser.cpp" break; case 150: // expr_primitive: expr_anglestoup -#line 659 "parser.ypp" +#line 660 "parser.ypp" { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_anglestoup::ptr > ()); } #line 3233 "parser.cpp" break; case 151: // expr_primitive: expr_vectorscale -#line 660 "parser.ypp" +#line 661 "parser.ypp" { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_vectorscale::ptr > ()); } #line 3239 "parser.cpp" break; case 152: // expr_primitive: expr_isdefined -#line 661 "parser.ypp" +#line 662 "parser.ypp" { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_isdefined::ptr > ()); } #line 3245 "parser.cpp" break; case 153: // expr_primitive: expr_reference -#line 662 "parser.ypp" +#line 663 "parser.ypp" { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_reference::ptr > ()); } #line 3251 "parser.cpp" break; case 154: // expr_primitive: expr_array -#line 663 "parser.ypp" +#line 664 "parser.ypp" { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_array::ptr > ()); } #line 3257 "parser.cpp" break; case 155: // expr_primitive: expr_field -#line 664 "parser.ypp" +#line 665 "parser.ypp" { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_field::ptr > ()); } #line 3263 "parser.cpp" break; case 156: // expr_primitive: expr_size -#line 665 "parser.ypp" +#line 666 "parser.ypp" { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_size::ptr > ()); } #line 3269 "parser.cpp" break; case 157: // expr_primitive: expr_paren -#line 666 "parser.ypp" +#line 667 "parser.ypp" { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_paren::ptr > ()); } #line 3275 "parser.cpp" break; case 158: // expr_primitive: expr_empty_array -#line 667 "parser.ypp" +#line 668 "parser.ypp" { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_empty_array::ptr > ()); } #line 3281 "parser.cpp" break; case 159: // expr_primitive: expr_undefined -#line 668 "parser.ypp" +#line 669 "parser.ypp" { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_undefined::ptr > ()); } #line 3287 "parser.cpp" break; case 160: // expr_primitive: expr_game -#line 669 "parser.ypp" +#line 670 "parser.ypp" { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_game::ptr > ()); } #line 3293 "parser.cpp" break; case 161: // expr_primitive: expr_self -#line 670 "parser.ypp" +#line 671 "parser.ypp" { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_self::ptr > ()); } #line 3299 "parser.cpp" break; case 162: // expr_primitive: expr_anim -#line 671 "parser.ypp" +#line 672 "parser.ypp" { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_anim::ptr > ()); } #line 3305 "parser.cpp" break; case 163: // expr_primitive: expr_level -#line 672 "parser.ypp" +#line 673 "parser.ypp" { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_level::ptr > ()); } #line 3311 "parser.cpp" break; case 164: // expr_primitive: expr_animation -#line 673 "parser.ypp" +#line 674 "parser.ypp" { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_animation::ptr > ()); } #line 3317 "parser.cpp" break; case 165: // expr_primitive: expr_animtree -#line 674 "parser.ypp" +#line 675 "parser.ypp" { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_animtree::ptr > ()); } #line 3323 "parser.cpp" break; case 166: // expr_primitive: expr_identifier -#line 675 "parser.ypp" +#line 676 "parser.ypp" { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_identifier::ptr > ()); } #line 3329 "parser.cpp" break; case 167: // expr_primitive: expr_istring -#line 676 "parser.ypp" +#line 677 "parser.ypp" { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_istring::ptr > ()); } #line 3335 "parser.cpp" break; case 168: // expr_primitive: expr_string -#line 677 "parser.ypp" +#line 678 "parser.ypp" { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_string::ptr > ()); } #line 3341 "parser.cpp" break; case 169: // expr_primitive: expr_vector -#line 678 "parser.ypp" +#line 679 "parser.ypp" { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_vector::ptr > ()); } #line 3347 "parser.cpp" break; case 170: // expr_primitive: expr_hash -#line 679 "parser.ypp" +#line 680 "parser.ypp" { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_hash::ptr > ()); } #line 3353 "parser.cpp" break; case 171: // expr_primitive: expr_float -#line 680 "parser.ypp" +#line 681 "parser.ypp" { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_float::ptr > ()); } #line 3359 "parser.cpp" break; case 172: // expr_primitive: expr_integer -#line 681 "parser.ypp" +#line 682 "parser.ypp" { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_integer::ptr > ()); } #line 3365 "parser.cpp" break; case 173: // expr_primitive: expr_false -#line 682 "parser.ypp" +#line 683 "parser.ypp" { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_false::ptr > ()); } #line 3371 "parser.cpp" break; case 174: // expr_primitive: expr_true -#line 683 "parser.ypp" +#line 684 "parser.ypp" { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_true::ptr > ()); } #line 3377 "parser.cpp" break; case 175: // expr_complement: "~" expr -#line 688 "parser.ypp" +#line 689 "parser.ypp" { yylhs.value.as < ast::expr_complement::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[0].value.as < ast::expr > ())); } #line 3383 "parser.cpp" break; case 176: // expr_negate: "-" expr_identifier -#line 693 "parser.ypp" +#line 694 "parser.ypp" { yylhs.value.as < ast::expr_negate::ptr > () = std::make_unique(yylhs.location, ast::expr(std::move(yystack_[0].value.as < ast::expr_identifier::ptr > ()))); } #line 3389 "parser.cpp" break; case 177: // expr_negate: "-" expr_paren -#line 695 "parser.ypp" +#line 696 "parser.ypp" { yylhs.value.as < ast::expr_negate::ptr > () = std::make_unique(yylhs.location, ast::expr(std::move(yystack_[0].value.as < ast::expr_paren::ptr > ()))); } #line 3395 "parser.cpp" break; case 178: // expr_negate: "-" expr_array -#line 697 "parser.ypp" +#line 698 "parser.ypp" { yylhs.value.as < ast::expr_negate::ptr > () = std::make_unique(yylhs.location, ast::expr(std::move(yystack_[0].value.as < ast::expr_array::ptr > ()))); } #line 3401 "parser.cpp" break; case 179: // expr_negate: "-" expr_field -#line 699 "parser.ypp" +#line 700 "parser.ypp" { yylhs.value.as < ast::expr_negate::ptr > () = std::make_unique(yylhs.location, ast::expr(std::move(yystack_[0].value.as < ast::expr_field::ptr > ()))); } #line 3407 "parser.cpp" break; case 180: // expr_not: "!" expr -#line 704 "parser.ypp" +#line 705 "parser.ypp" { yylhs.value.as < ast::expr_not::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[0].value.as < ast::expr > ())); } #line 3413 "parser.cpp" break; case 181: // expr_call: expr_function -#line 708 "parser.ypp" +#line 709 "parser.ypp" { yylhs.value.as < ast::expr_call::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[0].value.as < ast::call > ())); } #line 3419 "parser.cpp" break; case 182: // expr_call: expr_pointer -#line 709 "parser.ypp" +#line 710 "parser.ypp" { yylhs.value.as < ast::expr_call::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[0].value.as < ast::call > ())); } #line 3425 "parser.cpp" break; case 183: // expr_method: expr_object expr_function -#line 712 "parser.ypp" +#line 713 "parser.ypp" { yylhs.value.as < ast::expr_method::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[1].value.as < ast::expr > ()), std::move(yystack_[0].value.as < ast::call > ())); } #line 3431 "parser.cpp" break; case 184: // expr_method: expr_object expr_pointer -#line 713 "parser.ypp" +#line 714 "parser.ypp" { yylhs.value.as < ast::expr_method::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[1].value.as < ast::expr > ()), std::move(yystack_[0].value.as < ast::call > ())); } #line 3437 "parser.cpp" break; case 185: // expr_function: expr_identifier "(" expr_arguments ")" -#line 718 "parser.ypp" +#line 719 "parser.ypp" { yylhs.value.as < ast::call > ().as_function = std::make_unique(yylhs.location, std::make_unique(yylhs.location), std::move(yystack_[3].value.as < ast::expr_identifier::ptr > ()), std::move(yystack_[1].value.as < ast::expr_arguments::ptr > ()), ast::call::mode::normal); } #line 3443 "parser.cpp" break; case 186: // expr_function: expr_path "::" expr_identifier "(" expr_arguments ")" -#line 720 "parser.ypp" +#line 721 "parser.ypp" { yylhs.value.as < ast::call > ().as_function = std::make_unique(yylhs.location, std::move(yystack_[5].value.as < ast::expr_path::ptr > ()), std::move(yystack_[3].value.as < ast::expr_identifier::ptr > ()), std::move(yystack_[1].value.as < ast::expr_arguments::ptr > ()), ast::call::mode::normal); } #line 3449 "parser.cpp" break; case 187: // expr_function: "thread" expr_identifier "(" expr_arguments ")" -#line 722 "parser.ypp" +#line 723 "parser.ypp" { yylhs.value.as < ast::call > ().as_function = std::make_unique(yylhs.location, std::make_unique(yylhs.location), std::move(yystack_[3].value.as < ast::expr_identifier::ptr > ()), std::move(yystack_[1].value.as < ast::expr_arguments::ptr > ()), ast::call::mode::thread); } #line 3455 "parser.cpp" break; case 188: // expr_function: "thread" expr_path "::" expr_identifier "(" expr_arguments ")" -#line 724 "parser.ypp" +#line 725 "parser.ypp" { yylhs.value.as < ast::call > ().as_function = std::make_unique(yylhs.location, std::move(yystack_[5].value.as < ast::expr_path::ptr > ()), std::move(yystack_[3].value.as < ast::expr_identifier::ptr > ()), std::move(yystack_[1].value.as < ast::expr_arguments::ptr > ()), ast::call::mode::thread); } #line 3461 "parser.cpp" break; case 189: // expr_pointer: "[" "[" expr "]" "]" "(" expr_arguments ")" -#line 729 "parser.ypp" +#line 730 "parser.ypp" { yylhs.value.as < ast::call > ().as_pointer = std::make_unique(yylhs.location, std::move(yystack_[5].value.as < ast::expr > ()), std::move(yystack_[1].value.as < ast::expr_arguments::ptr > ()), ast::call::mode::normal); } #line 3467 "parser.cpp" break; case 190: // expr_pointer: "thread" "[" "[" expr "]" "]" "(" expr_arguments ")" -#line 731 "parser.ypp" +#line 732 "parser.ypp" { yylhs.value.as < ast::call > ().as_pointer = std::make_unique(yylhs.location, std::move(yystack_[5].value.as < ast::expr > ()), std::move(yystack_[1].value.as < ast::expr_arguments::ptr > ()), ast::call::mode::thread); } #line 3473 "parser.cpp" break; case 191: // expr_parameters: expr_parameters "," expr_parameters_default -#line 736 "parser.ypp" +#line 737 "parser.ypp" { yylhs.value.as < ast::expr_parameters::ptr > () = std::move(yystack_[2].value.as < ast::expr_parameters::ptr > ()); yylhs.value.as < ast::expr_parameters::ptr > ()->list.push_back(std::move(yystack_[0].value.as < ast::expr > ())); } #line 3479 "parser.cpp" break; case 192: // expr_parameters: expr_parameters "," expr_identifier -#line 738 "parser.ypp" +#line 739 "parser.ypp" { yylhs.value.as < ast::expr_parameters::ptr > () = std::move(yystack_[2].value.as < ast::expr_parameters::ptr > ()); yylhs.value.as < ast::expr_parameters::ptr > ()->list.push_back(ast::expr(std::move(yystack_[0].value.as < ast::expr_identifier::ptr > ()))); } #line 3485 "parser.cpp" break; case 193: // expr_parameters: expr_parameters_default -#line 740 "parser.ypp" +#line 741 "parser.ypp" { yylhs.value.as < ast::expr_parameters::ptr > () = std::make_unique(yylhs.location); yylhs.value.as < ast::expr_parameters::ptr > ()->list.push_back(std::move(yystack_[0].value.as < ast::expr > ())); } #line 3491 "parser.cpp" break; case 194: // expr_parameters: expr_identifier -#line 742 "parser.ypp" +#line 743 "parser.ypp" { yylhs.value.as < ast::expr_parameters::ptr > () = std::make_unique(yylhs.location); yylhs.value.as < ast::expr_parameters::ptr > ()->list.push_back(ast::expr(std::move(yystack_[0].value.as < ast::expr_identifier::ptr > ()))); } #line 3497 "parser.cpp" break; case 195: // expr_parameters: %empty -#line 744 "parser.ypp" +#line 745 "parser.ypp" { yylhs.value.as < ast::expr_parameters::ptr > () = std::make_unique(yylhs.location); } #line 3503 "parser.cpp" break; case 196: // expr_parameters_default: expr_identifier "=" expr_literal -#line 749 "parser.ypp" +#line 750 "parser.ypp" { yylhs.value.as < ast::expr > ().as_node = std::make_unique(yylhs.location, ast::expr(std::move(yystack_[2].value.as < ast::expr_identifier::ptr > ())), std::move(yystack_[0].value.as < ast::expr > ())); } #line 3509 "parser.cpp" break; case 197: // expr_literal: expr_istring -#line 753 "parser.ypp" +#line 754 "parser.ypp" { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_istring::ptr > ()); } #line 3515 "parser.cpp" break; case 198: // expr_literal: expr_string -#line 754 "parser.ypp" +#line 755 "parser.ypp" { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_string::ptr > ()); } #line 3521 "parser.cpp" break; case 199: // expr_literal: expr_float -#line 755 "parser.ypp" +#line 756 "parser.ypp" { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_float::ptr > ()); } #line 3527 "parser.cpp" break; case 200: // expr_literal: expr_integer -#line 756 "parser.ypp" +#line 757 "parser.ypp" { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_integer::ptr > ()); } #line 3533 "parser.cpp" break; case 201: // expr_literal: expr_false -#line 757 "parser.ypp" +#line 758 "parser.ypp" { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_false::ptr > ()); } #line 3539 "parser.cpp" break; case 202: // expr_literal: expr_true -#line 758 "parser.ypp" +#line 759 "parser.ypp" { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_true::ptr > ()); } #line 3545 "parser.cpp" break; case 203: // expr_arguments: expr_arguments_no_empty -#line 763 "parser.ypp" +#line 764 "parser.ypp" { yylhs.value.as < ast::expr_arguments::ptr > () = std::move(yystack_[0].value.as < ast::expr_arguments::ptr > ()); } #line 3551 "parser.cpp" break; case 204: // expr_arguments: %empty -#line 765 "parser.ypp" +#line 766 "parser.ypp" { yylhs.value.as < ast::expr_arguments::ptr > () = std::make_unique(yylhs.location); } #line 3557 "parser.cpp" break; case 205: // expr_arguments_no_empty: expr_arguments "," expr -#line 770 "parser.ypp" +#line 771 "parser.ypp" { yylhs.value.as < ast::expr_arguments::ptr > () = std::move(yystack_[2].value.as < ast::expr_arguments::ptr > ()); yylhs.value.as < ast::expr_arguments::ptr > ()->list.push_back(std::move(yystack_[0].value.as < ast::expr > ())); } #line 3563 "parser.cpp" break; case 206: // expr_arguments_no_empty: expr -#line 772 "parser.ypp" +#line 773 "parser.ypp" { yylhs.value.as < ast::expr_arguments::ptr > () = std::make_unique(yylhs.location); yylhs.value.as < ast::expr_arguments::ptr > ()->list.push_back(std::move(yystack_[0].value.as < ast::expr > ())); } #line 3569 "parser.cpp" break; case 207: // expr_getnextarraykey: "getnextarraykey" "(" expr "," expr ")" -#line 777 "parser.ypp" +#line 778 "parser.ypp" { yylhs.value.as < ast::expr_getnextarraykey::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[3].value.as < ast::expr > ()), std::move(yystack_[1].value.as < ast::expr > ())); } #line 3575 "parser.cpp" break; case 208: // expr_getfirstarraykey: "getfirstarraykey" "(" expr ")" -#line 782 "parser.ypp" +#line 783 "parser.ypp" { yylhs.value.as < ast::expr_getfirstarraykey::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[1].value.as < ast::expr > ())); } #line 3581 "parser.cpp" break; case 209: // expr_getdvarcoloralpha: "getdvarcoloralpha" "(" expr ")" -#line 787 "parser.ypp" +#line 788 "parser.ypp" { yylhs.value.as < ast::expr_getdvarcoloralpha::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[1].value.as < ast::expr > ())); } #line 3587 "parser.cpp" break; case 210: // expr_getdvarcolorblue: "getdvarcolorblue" "(" expr ")" -#line 792 "parser.ypp" +#line 793 "parser.ypp" { yylhs.value.as < ast::expr_getdvarcolorblue::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[1].value.as < ast::expr > ())); } #line 3593 "parser.cpp" break; case 211: // expr_getdvarcolorgreen: "getdvarcolorgreen" "(" expr ")" -#line 797 "parser.ypp" +#line 798 "parser.ypp" { yylhs.value.as < ast::expr_getdvarcolorgreen::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[1].value.as < ast::expr > ())); } #line 3599 "parser.cpp" break; case 212: // expr_getdvarcolorred: "getdvarcolorred" "(" expr ")" -#line 802 "parser.ypp" +#line 803 "parser.ypp" { yylhs.value.as < ast::expr_getdvarcolorred::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[1].value.as < ast::expr > ())); } #line 3605 "parser.cpp" break; case 213: // expr_getdvarvector: "getdvarvector" "(" expr ")" -#line 807 "parser.ypp" +#line 808 "parser.ypp" { yylhs.value.as < ast::expr_getdvarvector::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[1].value.as < ast::expr > ())); } #line 3611 "parser.cpp" break; case 214: // expr_getdvarfloat: "getdvarfloat" "(" expr ")" -#line 812 "parser.ypp" +#line 813 "parser.ypp" { yylhs.value.as < ast::expr_getdvarfloat::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[1].value.as < ast::expr > ())); } #line 3617 "parser.cpp" break; case 215: // expr_getdvarint: "getdvarint" "(" expr ")" -#line 817 "parser.ypp" +#line 818 "parser.ypp" { yylhs.value.as < ast::expr_getdvarint::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[1].value.as < ast::expr > ())); } #line 3623 "parser.cpp" break; case 216: // expr_getdvar: "getdvar" "(" expr ")" -#line 822 "parser.ypp" +#line 823 "parser.ypp" { yylhs.value.as < ast::expr_getdvar::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[1].value.as < ast::expr > ())); } #line 3629 "parser.cpp" break; case 217: // expr_gettime: "gettime" "(" ")" -#line 827 "parser.ypp" +#line 828 "parser.ypp" { yylhs.value.as < ast::expr_gettime::ptr > () = std::make_unique(yylhs.location); } #line 3635 "parser.cpp" break; case 218: // expr_abs: "abs" "(" expr ")" -#line 832 "parser.ypp" +#line 833 "parser.ypp" { yylhs.value.as < ast::expr_abs::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[1].value.as < ast::expr > ())); } #line 3641 "parser.cpp" break; case 219: // expr_vectortoangles: "vectortoangles" "(" expr ")" -#line 837 "parser.ypp" +#line 838 "parser.ypp" { yylhs.value.as < ast::expr_vectortoangles::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[1].value.as < ast::expr > ())); } #line 3647 "parser.cpp" break; case 220: // expr_angleclamp180: "angleclamp180" "(" expr ")" -#line 842 "parser.ypp" +#line 843 "parser.ypp" { yylhs.value.as < ast::expr_angleclamp180::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[1].value.as < ast::expr > ())); } #line 3653 "parser.cpp" break; case 221: // expr_anglestoforward: "anglestoforward" "(" expr ")" -#line 847 "parser.ypp" +#line 848 "parser.ypp" { yylhs.value.as < ast::expr_anglestoforward::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[1].value.as < ast::expr > ())); } #line 3659 "parser.cpp" break; case 222: // expr_anglestoright: "anglestoright" "(" expr ")" -#line 852 "parser.ypp" +#line 853 "parser.ypp" { yylhs.value.as < ast::expr_anglestoright::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[1].value.as < ast::expr > ())); } #line 3665 "parser.cpp" break; case 223: // expr_anglestoup: "anglestoup" "(" expr ")" -#line 857 "parser.ypp" +#line 858 "parser.ypp" { yylhs.value.as < ast::expr_anglestoup::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[1].value.as < ast::expr > ())); } #line 3671 "parser.cpp" break; case 224: // expr_vectorscale: "vectorscale" "(" expr "," expr ")" -#line 862 "parser.ypp" +#line 863 "parser.ypp" { yylhs.value.as < ast::expr_vectorscale::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[3].value.as < ast::expr > ()), std::move(yystack_[1].value.as < ast::expr > ())); } #line 3677 "parser.cpp" break; case 225: // expr_isdefined: "isdefined" "(" expr ")" -#line 867 "parser.ypp" +#line 868 "parser.ypp" { yylhs.value.as < ast::expr_isdefined::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[1].value.as < ast::expr > ())); } #line 3683 "parser.cpp" break; case 226: // expr_reference: "::" expr_identifier -#line 872 "parser.ypp" +#line 873 "parser.ypp" { yylhs.value.as < ast::expr_reference::ptr > () = std::make_unique(yylhs.location, std::make_unique(yylhs.location), std::move(yystack_[0].value.as < ast::expr_identifier::ptr > ())); } #line 3689 "parser.cpp" break; case 227: // expr_reference: expr_path "::" expr_identifier -#line 874 "parser.ypp" +#line 875 "parser.ypp" { yylhs.value.as < ast::expr_reference::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[2].value.as < ast::expr_path::ptr > ()), std::move(yystack_[0].value.as < ast::expr_identifier::ptr > ())); } #line 3695 "parser.cpp" break; case 228: // expr_array: expr_object "[" expr "]" -#line 879 "parser.ypp" +#line 880 "parser.ypp" { yylhs.value.as < ast::expr_array::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[3].value.as < ast::expr > ()), std::move(yystack_[1].value.as < ast::expr > ())); } #line 3701 "parser.cpp" break; case 229: // expr_array: expr_getdvarvector "[" expr "]" -#line 881 "parser.ypp" +#line 882 "parser.ypp" { yylhs.value.as < ast::expr_array::ptr > () = std::make_unique(yylhs.location, ast::expr(std::move(yystack_[3].value.as < ast::expr_getdvarvector::ptr > ())), std::move(yystack_[1].value.as < ast::expr > ())); } #line 3707 "parser.cpp" break; case 230: // expr_array: expr_vectortoangles "[" expr "]" -#line 883 "parser.ypp" +#line 884 "parser.ypp" { yylhs.value.as < ast::expr_array::ptr > () = std::make_unique(yylhs.location, ast::expr(std::move(yystack_[3].value.as < ast::expr_vectortoangles::ptr > ())), std::move(yystack_[1].value.as < ast::expr > ())); } #line 3713 "parser.cpp" break; case 231: // expr_array: expr_angleclamp180 "[" expr "]" -#line 885 "parser.ypp" +#line 886 "parser.ypp" { yylhs.value.as < ast::expr_array::ptr > () = std::make_unique(yylhs.location, ast::expr(std::move(yystack_[3].value.as < ast::expr_angleclamp180::ptr > ())), std::move(yystack_[1].value.as < ast::expr > ())); } #line 3719 "parser.cpp" break; case 232: // expr_array: expr_anglestoforward "[" expr "]" -#line 887 "parser.ypp" +#line 888 "parser.ypp" { yylhs.value.as < ast::expr_array::ptr > () = std::make_unique(yylhs.location, ast::expr(std::move(yystack_[3].value.as < ast::expr_anglestoforward::ptr > ())), std::move(yystack_[1].value.as < ast::expr > ())); } #line 3725 "parser.cpp" break; case 233: // expr_array: expr_anglestoright "[" expr "]" -#line 889 "parser.ypp" +#line 890 "parser.ypp" { yylhs.value.as < ast::expr_array::ptr > () = std::make_unique(yylhs.location, ast::expr(std::move(yystack_[3].value.as < ast::expr_anglestoright::ptr > ())), std::move(yystack_[1].value.as < ast::expr > ())); } #line 3731 "parser.cpp" break; case 234: // expr_array: expr_anglestoup "[" expr "]" -#line 891 "parser.ypp" +#line 892 "parser.ypp" { yylhs.value.as < ast::expr_array::ptr > () = std::make_unique(yylhs.location, ast::expr(std::move(yystack_[3].value.as < ast::expr_anglestoup::ptr > ())), std::move(yystack_[1].value.as < ast::expr > ())); } #line 3737 "parser.cpp" break; case 235: // expr_array: expr_vectorscale "[" expr "]" -#line 893 "parser.ypp" +#line 894 "parser.ypp" { yylhs.value.as < ast::expr_array::ptr > () = std::make_unique(yylhs.location, ast::expr(std::move(yystack_[3].value.as < ast::expr_vectorscale::ptr > ())), std::move(yystack_[1].value.as < ast::expr > ())); } #line 3743 "parser.cpp" break; case 236: // expr_field: expr_object "." expr_identifier_nosize -#line 898 "parser.ypp" +#line 899 "parser.ypp" { yylhs.value.as < ast::expr_field::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[2].value.as < ast::expr > ()), std::move(yystack_[0].value.as < ast::expr_identifier::ptr > ())); } #line 3749 "parser.cpp" break; case 237: // expr_size: expr_object "." "size" -#line 903 "parser.ypp" +#line 904 "parser.ypp" { yylhs.value.as < ast::expr_size::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[2].value.as < ast::expr > ())); } #line 3755 "parser.cpp" break; case 238: // expr_paren: "(" expr ")" -#line 908 "parser.ypp" +#line 909 "parser.ypp" { yylhs.value.as < ast::expr_paren::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[1].value.as < ast::expr > ())); } #line 3761 "parser.cpp" break; case 239: // expr_object: expr_call -#line 912 "parser.ypp" +#line 913 "parser.ypp" { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_call::ptr > ()); } #line 3767 "parser.cpp" break; case 240: // expr_object: expr_method -#line 913 "parser.ypp" +#line 914 "parser.ypp" { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_method::ptr > ()); } #line 3773 "parser.cpp" break; case 241: // expr_object: expr_array -#line 914 "parser.ypp" +#line 915 "parser.ypp" { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_array::ptr > ()); } #line 3779 "parser.cpp" break; case 242: // expr_object: expr_field -#line 915 "parser.ypp" +#line 916 "parser.ypp" { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_field::ptr > ()); } #line 3785 "parser.cpp" break; case 243: // expr_object: expr_game -#line 916 "parser.ypp" +#line 917 "parser.ypp" { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_game::ptr > ()); } #line 3791 "parser.cpp" break; case 244: // expr_object: expr_self -#line 917 "parser.ypp" +#line 918 "parser.ypp" { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_self::ptr > ()); } #line 3797 "parser.cpp" break; case 245: // expr_object: expr_anim -#line 918 "parser.ypp" +#line 919 "parser.ypp" { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_anim::ptr > ()); } #line 3803 "parser.cpp" break; case 246: // expr_object: expr_level -#line 919 "parser.ypp" +#line 920 "parser.ypp" { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_level::ptr > ()); } #line 3809 "parser.cpp" break; case 247: // expr_object: expr_identifier -#line 920 "parser.ypp" +#line 921 "parser.ypp" { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_identifier::ptr > ()); } #line 3815 "parser.cpp" break; case 248: // expr_empty_array: "[" "]" -#line 925 "parser.ypp" +#line 926 "parser.ypp" { yylhs.value.as < ast::expr_empty_array::ptr > () = std::make_unique(yylhs.location); } #line 3821 "parser.cpp" break; case 249: // expr_undefined: "undefined" -#line 930 "parser.ypp" +#line 931 "parser.ypp" { yylhs.value.as < ast::expr_undefined::ptr > () = std::make_unique(yylhs.location); } #line 3827 "parser.cpp" break; case 250: // expr_game: "game" -#line 935 "parser.ypp" +#line 936 "parser.ypp" { yylhs.value.as < ast::expr_game::ptr > () = std::make_unique(yylhs.location); } #line 3833 "parser.cpp" break; case 251: // expr_self: "self" -#line 940 "parser.ypp" +#line 941 "parser.ypp" { yylhs.value.as < ast::expr_self::ptr > () = std::make_unique(yylhs.location); } #line 3839 "parser.cpp" break; case 252: // expr_anim: "anim" -#line 945 "parser.ypp" +#line 946 "parser.ypp" { yylhs.value.as < ast::expr_anim::ptr > () = std::make_unique(yylhs.location); } #line 3845 "parser.cpp" break; case 253: // expr_level: "level" -#line 950 "parser.ypp" +#line 951 "parser.ypp" { yylhs.value.as < ast::expr_level::ptr > () = std::make_unique(yylhs.location); } #line 3851 "parser.cpp" break; case 254: // expr_animation: "%" "identifier" -#line 955 "parser.ypp" +#line 956 "parser.ypp" { yylhs.value.as < ast::expr_animation::ptr > () = std::make_unique(yylhs.location, yystack_[0].value.as < std::string > ()); } #line 3857 "parser.cpp" break; case 255: // expr_animtree: "#animtree" -#line 960 "parser.ypp" +#line 961 "parser.ypp" { yylhs.value.as < ast::expr_animtree::ptr > () = std::make_unique(yylhs.location); } #line 3863 "parser.cpp" break; case 256: // expr_identifier_nosize: "identifier" -#line 965 "parser.ypp" +#line 966 "parser.ypp" { yylhs.value.as < ast::expr_identifier::ptr > () = std::make_unique(yylhs.location, yystack_[0].value.as < std::string > ()); } #line 3869 "parser.cpp" break; case 257: // expr_identifier: "identifier" -#line 970 "parser.ypp" +#line 971 "parser.ypp" { yylhs.value.as < ast::expr_identifier::ptr > () = std::make_unique(yylhs.location, yystack_[0].value.as < std::string > ()); } #line 3875 "parser.cpp" break; case 258: // expr_identifier: "size" -#line 972 "parser.ypp" +#line 973 "parser.ypp" { yylhs.value.as < ast::expr_identifier::ptr > () = std::make_unique(yylhs.location, "size"); } #line 3881 "parser.cpp" break; case 259: // expr_path: "identifier" -#line 977 "parser.ypp" +#line 978 "parser.ypp" { yylhs.value.as < ast::expr_path::ptr > () = std::make_unique(yylhs.location, yystack_[0].value.as < std::string > ()); } #line 3887 "parser.cpp" break; case 260: // expr_path: "path" -#line 979 "parser.ypp" +#line 980 "parser.ypp" { yylhs.value.as < ast::expr_path::ptr > () = std::make_unique(yylhs.location, yystack_[0].value.as < std::string > ()); } #line 3893 "parser.cpp" break; case 261: // expr_istring: "localized string" -#line 984 "parser.ypp" +#line 985 "parser.ypp" { yylhs.value.as < ast::expr_istring::ptr > () = std::make_unique(yylhs.location, yystack_[0].value.as < std::string > ()); } #line 3899 "parser.cpp" break; case 262: // expr_string: "string literal" -#line 989 "parser.ypp" +#line 990 "parser.ypp" { yylhs.value.as < ast::expr_string::ptr > () = std::make_unique(yylhs.location, yystack_[0].value.as < std::string > ()); } #line 3905 "parser.cpp" break; case 263: // expr_vector: "(" expr "," expr "," expr ")" -#line 994 "parser.ypp" +#line 995 "parser.ypp" { yylhs.value.as < ast::expr_vector::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[5].value.as < ast::expr > ()), std::move(yystack_[3].value.as < ast::expr > ()), std::move(yystack_[1].value.as < ast::expr > ())); } #line 3911 "parser.cpp" break; case 264: // expr_hash: "hash" -#line 999 "parser.ypp" +#line 1000 "parser.ypp" { yylhs.value.as < ast::expr_hash::ptr > () = std::make_unique(yylhs.location, yystack_[0].value.as < std::string > ()); } #line 3917 "parser.cpp" break; case 265: // expr_float: "-" "float" -#line 1004 "parser.ypp" +#line 1005 "parser.ypp" { yylhs.value.as < ast::expr_float::ptr > () = std::make_unique(yylhs.location, "-" + yystack_[0].value.as < std::string > ()); } #line 3923 "parser.cpp" break; case 266: // expr_float: "float" -#line 1006 "parser.ypp" +#line 1007 "parser.ypp" { yylhs.value.as < ast::expr_float::ptr > () = std::make_unique(yylhs.location, yystack_[0].value.as < std::string > ()); } #line 3929 "parser.cpp" break; case 267: // expr_integer: "-" "integer" -#line 1011 "parser.ypp" +#line 1012 "parser.ypp" { yylhs.value.as < ast::expr_integer::ptr > () = std::make_unique(yylhs.location, "-" + yystack_[0].value.as < std::string > ()); } #line 3935 "parser.cpp" break; case 268: // expr_integer: "integer" -#line 1013 "parser.ypp" +#line 1014 "parser.ypp" { yylhs.value.as < ast::expr_integer::ptr > () = std::make_unique(yylhs.location, yystack_[0].value.as < std::string > ()); } #line 3941 "parser.cpp" break; case 269: // expr_false: "false" -#line 1018 "parser.ypp" +#line 1019 "parser.ypp" { yylhs.value.as < ast::expr_false::ptr > () = std::make_unique(yylhs.location); } #line 3947 "parser.cpp" break; case 270: // expr_true: "true" -#line 1023 "parser.ypp" +#line 1024 "parser.ypp" { yylhs.value.as < ast::expr_true::ptr > () = std::make_unique(yylhs.location); } #line 3953 "parser.cpp" break; @@ -4144,7 +4144,7 @@ namespace xsk { namespace arc { namespace t6 { "waittillframeend", "if", "else", "do", "while", "for", "foreach", "in", "switch", "case", "default", "break", "continue", "return", "prof_begin", "prof_end", "thread", "true", "false", "undefined", "size", "game", - "self", "anim", "level", "getnextarraykey", "getfirstarraykey", + "self", "anim", "level", "const", "getnextarraykey", "getfirstarraykey", "getdvarcoloralpha", "getdvarcolorblue", "getdvarcolorgreen", "getdvarcolorred", "getdvarvector", "getdvarfloat", "getdvarint", "getdvar", "gettime", "abs", "vectortoangles", "angleclamp180", @@ -4156,9 +4156,9 @@ namespace xsk { namespace arc { namespace t6 { "string literal", "localized string", "hash", "float", "integer", "SIZEOF", "THEN", "TERN", "NEG", "ANIMREF", "PREINC", "PREDEC", "POSTINC", "POSTDEC", "$accept", "root", "program", "inline", "include", - "declaration", "decl_usingtree", "decl_constant", "decl_thread", "stmt", - "stmt_or_dev", "stmt_list", "stmt_or_dev_list", "stmt_dev", "stmt_block", - "stmt_expr", "stmt_call", "stmt_assign", "stmt_endon", "stmt_notify", + "declaration", "decl_usingtree", "decl_thread", "stmt", "stmt_or_dev", + "stmt_list", "stmt_or_dev_list", "stmt_dev", "stmt_block", "stmt_expr", + "stmt_call", "stmt_const", "stmt_assign", "stmt_endon", "stmt_notify", "stmt_wait", "stmt_waittill", "stmt_waittillmatch", "stmt_waittillframeend", "stmt_if", "stmt_ifelse", "stmt_while", "stmt_dowhile", "stmt_for", "stmt_foreach", "stmt_switch", "stmt_case", @@ -4450,1012 +4450,981 @@ namespace xsk { namespace arc { namespace t6 { } - const short parser::yypact_ninf_ = -399; + const short parser::yypact_ninf_ = -373; const short parser::yytable_ninf_ = -260; const short parser::yypact_[] = { - 42, -399, -399, -97, -97, -49, -35, -35, -399, -399, - 28, 42, -399, -399, -399, -399, -399, -399, -46, -399, - -399, -38, -26, -83, 7, 12, -399, -399, -399, -399, - -35, 1435, -399, -399, -399, -20, -35, -35, -30, -399, - -12, -399, -9, -399, -399, -399, -399, -399, -399, -399, - 22, 25, 56, 62, 66, 93, 99, 107, 112, 123, - 124, 125, 131, 132, 133, 134, 147, 148, 151, 1435, - -47, -35, 1435, 1435, 1554, -2, -8, -399, -399, -399, - -399, 3427, -399, -399, -399, -399, -399, -399, -11, 1, - -399, -399, -399, -399, -399, -399, -399, -399, 74, -399, - -399, -399, -399, -399, 110, 149, 157, 162, 163, 165, - -399, -399, 6, 82, -399, -399, 104, -399, -399, 111, - 188, 205, 273, -399, -399, -6, 144, -399, -399, -399, - -399, -399, -399, -399, -399, 72, -4, 3, 168, -35, - -21, 169, 174, 167, 1435, 1435, 1435, 1435, 1435, 1435, - 1435, 1435, 1435, 1435, 177, 1435, 1435, 1435, 1435, 1435, - 1435, 1435, 1435, 1869, 1435, -399, -399, -399, -399, 1435, - 175, -399, -399, -399, -399, 74, 110, 149, 157, 162, - 163, 165, 6, 82, -399, 483, -399, -399, -399, -399, - -6, 172, -399, -399, 1435, 1435, 1435, 1435, 1435, 1435, - 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, - 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, - 1515, -29, -399, -399, 182, 1435, -35, -399, 168, 168, - 1614, -399, -399, -12, 55, -399, -399, -399, -399, -399, - -399, -399, 1435, 1435, -35, 3278, 2035, 2069, 2103, 2137, - 2171, 2205, 2239, 2273, 2307, -399, 2341, 2375, 2409, 2443, - 2477, 2511, 3317, 2545, -399, 1435, 1271, 2579, 137, -35, - 3392, 230, 230, 792, 1195, 601, 601, 60, 60, 60, - 60, 3541, 3551, 895, -1, -1, -399, -399, -399, 1431, - 2959, 2999, 3039, 3079, 3119, 3159, 1275, 3199, -399, -399, - -399, 3510, 15, -399, 184, -399, -399, 1737, 1435, 178, - 187, 1859, 190, 191, 193, 197, 8, 189, 194, 196, - 1355, 208, 210, -399, 733, 733, -399, -399, 1676, -399, - -399, -399, -399, -399, -399, -399, -399, -399, -399, -399, - -399, -399, -399, -399, -399, -399, -399, -399, -399, -399, - -399, -399, -399, 206, 209, 214, 215, 216, -399, -399, - 109, 182, 3239, 32, 211, 1435, -399, -399, -399, -399, - -399, -399, -399, -399, -399, -399, -399, -399, -399, -399, - -399, 1435, -399, 3356, 213, 184, 1435, -399, -399, -399, - -399, -399, -399, -399, -399, -399, 1435, 1435, -399, -399, - 1798, 3462, -399, 1435, 255, 1435, 333, -35, 1435, 179, - 219, 222, -399, -399, -399, -399, 3497, 1435, 1435, 483, - 483, -399, -399, -399, -399, -399, -399, -399, 232, 235, - 236, 237, -399, -399, 1435, 1435, 1435, 1435, 1435, 1435, - 1435, 1435, 1435, 1435, 1435, 233, -399, 1435, 2613, 2647, - 1435, 242, 3510, 3510, 44, -399, -399, -399, 2681, 246, - 2715, 245, -399, -399, -399, 1077, -7, 2749, -399, -399, - -399, 64, 71, 1435, 1435, 1435, 1435, 3510, 3510, 3510, - 3510, 3510, 3510, 3510, 3510, 3510, 3510, 3510, 247, 78, - -399, -399, 2783, 1435, -399, 1859, 1435, 1859, 1435, 1435, - -35, 168, 248, 249, 2817, 1913, 1957, 2001, 1435, -399, - -399, 89, 306, 2851, -399, 3510, 258, 2885, 312, -399, - -399, -399, 268, 269, 1435, 271, 1435, 272, 1435, 91, - -399, 1859, 274, 333, 1859, 1435, -399, -399, 277, 284, - -399, 285, -399, 286, -399, -399, -399, 287, -399, 2919, - 280, 281, 283, 1859, 1859, -399, -399, -399, -399, -399 + 79, -373, -373, 32, 32, -65, -31, -31, -373, -373, + 20, 79, -373, -373, -373, -373, -373, -41, -373, -373, + -49, -43, -77, -25, -19, -373, -373, -373, -373, -31, + -373, -373, -373, -23, -31, -31, -24, -373, -17, 28, + -15, -9, 40, -31, 127, -373, 40, 40, 1407, -373, + -373, -17, -373, -373, 9, -373, -373, -373, -373, -373, + -373, -373, -373, -373, -373, -373, -373, 1532, 1226, 35, + 55, 1656, 64, 69, 71, 91, -78, 83, 84, 85, + 1064, 103, 106, 93, -373, -373, -373, -373, -31, 111, + 116, 118, 122, 123, 136, 140, -373, 62, 1030, 1030, + 109, -373, -373, 1470, -373, -373, -373, -373, -373, -373, + -373, -373, -373, -373, -373, -373, -373, -373, -373, -373, + -373, -373, -373, -373, -373, -373, -373, -373, -373, 125, + 132, 138, 143, 147, -373, -373, 141, 154, 155, 166, + 167, 169, 172, -373, -373, 727, -373, -373, -373, -373, + 183, 119, -373, -373, -373, -373, 1594, -373, -373, 195, + 197, 201, 203, 205, 206, 208, 209, 210, 211, 214, + 216, 1226, 76, -31, 1226, 1226, 669, 179, -373, 3184, + -373, -373, -373, -373, -373, -373, 402, 427, -373, -373, + -373, -373, -373, -373, 141, -373, -373, -373, -373, -373, + 154, 155, 166, 167, 169, 172, -373, -373, 510, 517, + -373, -373, 571, -373, -373, 737, 771, 777, 950, -373, + -373, 351, 218, -373, -373, -373, -373, -373, -373, -373, + -373, -373, 1226, 259, 1226, 973, -31, 1226, 176, 219, + 229, -373, -373, -373, -373, 3219, 1226, 1226, 237, 243, + 236, 222, 1226, 1226, 1226, 1226, 1226, 1226, 1226, 1226, + -373, -373, 984, 984, -373, -373, -373, -373, -373, -373, + -373, 1226, 1226, 1226, 1226, 1226, 1226, 1226, 245, 249, + 253, 257, 1307, 212, -373, -373, 1226, 1226, 1226, 1226, + 1226, 1226, 1226, 1226, 1226, 1226, 1226, -373, -373, 183, + 1226, -31, -373, -373, 1226, 1226, 1226, 1226, 1226, 1226, + 1226, 1226, 1226, 254, 1226, 1226, 1666, -373, -373, -373, + -373, 1226, 510, 517, -373, 984, 351, -373, -373, 1226, + 1226, 1226, 1226, 1226, 1226, 1226, 1226, 1226, 1226, 1226, + 1226, 1226, 1226, 1226, 1226, 1226, 1226, 1226, -29, -31, + 1832, 260, 1866, 251, -373, -373, -373, 900, -5, 1900, + -373, -373, -373, 3267, 4, -373, 5, 1226, 1226, -31, + 1226, 1934, 1968, 2002, 2036, 2070, 2104, 3035, 1141, 1222, + 1303, 2756, 2796, 2836, 2876, 2916, 1226, 1226, 1226, 1226, + 1145, 2956, -373, -373, 3267, 3267, 3267, 3267, 3267, 3267, + 3267, 3267, 3267, 3267, 3267, 12, 263, 3074, 2138, 2172, + 2206, 2240, 2274, 2308, 2342, 2376, -373, 2410, 2444, -373, + 1226, 2478, 3149, 383, 383, 3298, 3308, 3380, 3380, 148, + 148, 148, 148, 3339, 255, 3349, 66, 66, -373, -373, + -373, -373, 263, 1656, 1226, 1656, 1226, 1226, -31, 40, + 261, 1226, 269, 2996, 25, 264, 3254, -373, -373, -373, + -373, -373, -373, 1226, 279, -373, -373, -373, -373, -373, + -373, -373, 2512, 1710, 1754, 1798, -373, -373, 1226, 1226, + -373, -373, -373, -373, -373, -373, -373, -373, -373, -373, + 3113, 1226, 308, 2546, -373, 3267, 275, 2580, 327, -373, + -373, 3267, -373, 285, -373, 1226, -373, 2614, 291, 292, + 293, 1226, 295, 1226, 296, 1226, 31, 2648, 1226, 3267, + 1656, 298, 973, 1656, 1226, 309, 45, -373, 1226, -373, + -373, 304, 310, -373, 312, -373, 316, -373, -373, 2682, + -373, -373, 318, -373, 2716, 1226, -373, 56, 305, 311, + 313, -373, 1656, 1656, 57, -373, -373, -373, -373, -373, + -373, -373 }; const short parser::yydefact_[] = { 3, 12, 13, 0, 0, 0, 0, 0, 258, 257, - 0, 2, 7, 8, 9, 14, 15, 16, 0, 260, - 259, 0, 0, 0, 0, 0, 1, 4, 5, 6, - 195, 0, 10, 11, 262, 0, 195, 195, 0, 193, - 194, 255, 0, 270, 269, 249, 250, 251, 252, 253, + 0, 2, 7, 8, 9, 14, 15, 0, 260, 259, + 0, 0, 0, 0, 0, 1, 4, 5, 6, 195, + 10, 11, 262, 0, 195, 195, 0, 193, 194, 0, + 0, 0, 0, 0, 0, 16, 0, 0, 0, 17, + 191, 192, 270, 269, 0, 261, 266, 268, 196, 197, + 198, 199, 200, 201, 202, 18, 19, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 250, 251, 252, 253, 0, 0, + 0, 0, 0, 0, 0, 0, 53, 0, 0, 0, + 257, 44, 49, 0, 45, 20, 21, 22, 23, 24, + 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, + 35, 36, 37, 38, 39, 40, 41, 42, 43, 0, + 0, 0, 239, 240, 181, 182, 0, 0, 0, 0, + 0, 0, 0, 241, 242, 0, 243, 244, 245, 246, + 247, 0, 265, 267, 51, 47, 0, 255, 249, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 264, 0, + 90, 91, 92, 129, 130, 131, 132, 133, 134, 135, + 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, + 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, + 156, 157, 0, 158, 159, 160, 161, 162, 163, 164, + 165, 166, 0, 167, 168, 169, 170, 171, 172, 173, + 174, 72, 0, 0, 0, 57, 0, 0, 0, 0, + 0, 83, 84, 85, 87, 0, 204, 204, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 239, 240, 106, 108, 52, 48, 61, 62, 63, 58, + 59, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 107, 109, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 183, 184, 0, + 204, 0, 50, 46, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 248, 226, 180, + 175, 0, 178, 179, 177, 0, 176, 254, 67, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 257, 261, 264, 266, - 268, 0, 90, 91, 92, 129, 130, 131, 132, 133, - 181, 182, 134, 135, 136, 137, 138, 139, 140, 141, - 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, - 152, 153, 154, 155, 156, 157, 0, 158, 159, 160, - 161, 162, 163, 164, 165, 166, 0, 167, 168, 169, - 170, 171, 172, 173, 174, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 54, 55, 56, 0, 0, 0, + 82, 81, 86, 206, 0, 203, 0, 0, 204, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 248, 226, 180, 175, 0, - 0, 265, 267, 239, 240, 0, 0, 0, 0, 0, - 0, 0, 178, 179, 177, 0, 243, 244, 245, 246, - 176, 0, 254, 18, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 183, 184, 0, 204, 0, 17, 0, 0, - 0, 19, 191, 192, 0, 196, 197, 198, 199, 200, - 201, 202, 0, 204, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 217, 0, 0, 0, 0, - 0, 0, 0, 0, 238, 0, 0, 0, 0, 0, - 0, 122, 123, 111, 112, 113, 114, 115, 116, 117, - 118, 119, 120, 121, 124, 125, 126, 127, 128, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 237, 256, - 236, 206, 0, 203, 227, 20, 21, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 54, 0, 0, 45, 50, 0, 46, - 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, - 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, - 42, 43, 44, 0, 0, 0, 239, 240, 241, 242, - 0, 247, 0, 0, 0, 0, 208, 209, 210, 211, - 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, - 223, 0, 225, 0, 0, 0, 0, 229, 230, 231, - 232, 233, 234, 235, 228, 185, 0, 204, 52, 48, - 0, 0, 72, 0, 0, 0, 58, 0, 0, 0, - 0, 0, 83, 84, 85, 87, 0, 204, 204, 106, - 108, 53, 49, 61, 62, 63, 59, 60, 0, 0, - 0, 0, 107, 109, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 187, 204, 0, 0, - 0, 0, 110, 205, 0, 51, 47, 67, 0, 0, - 0, 0, 55, 56, 57, 0, 0, 0, 82, 81, - 86, 0, 0, 0, 0, 0, 0, 95, 101, 102, - 103, 104, 105, 96, 97, 98, 100, 99, 0, 0, - 207, 224, 0, 204, 186, 0, 0, 0, 94, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 204, 188, - 263, 0, 73, 0, 75, 93, 0, 0, 0, 80, - 88, 89, 0, 0, 204, 0, 204, 0, 204, 0, - 189, 0, 0, 58, 0, 0, 64, 66, 0, 203, - 69, 203, 71, 203, 190, 74, 76, 0, 78, 0, - 0, 0, 0, 0, 0, 65, 68, 70, 77, 79 + 0, 0, 256, 236, 95, 101, 102, 103, 104, 105, + 96, 97, 98, 100, 99, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 217, 0, 0, 238, + 0, 0, 0, 122, 123, 111, 112, 113, 114, 115, + 116, 117, 118, 119, 120, 121, 124, 125, 126, 127, + 128, 237, 227, 0, 0, 0, 94, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 213, 219, 220, + 221, 222, 223, 0, 0, 229, 230, 231, 232, 233, + 234, 235, 0, 0, 0, 0, 228, 185, 204, 0, + 208, 209, 210, 211, 212, 214, 215, 216, 218, 225, + 0, 0, 73, 0, 75, 93, 0, 0, 0, 80, + 88, 205, 89, 0, 187, 204, 60, 0, 0, 0, + 0, 204, 0, 204, 0, 204, 0, 0, 0, 110, + 0, 0, 57, 0, 0, 0, 0, 224, 204, 64, + 66, 0, 203, 69, 203, 71, 203, 186, 207, 0, + 74, 76, 0, 78, 0, 204, 188, 0, 0, 0, + 0, 263, 0, 0, 0, 189, 65, 68, 70, 77, + 79, 190 }; const short parser::yypgoto_[] = { - -399, -399, -399, 351, 354, 355, -399, -399, -399, -264, - 40, -399, -399, -399, -137, -163, -399, -399, -399, -399, - -399, -399, -399, -399, -399, -399, -399, -399, -399, -399, - -399, -399, -399, -399, -399, -399, -399, -399, 420, -399, - -398, -396, -392, -399, -399, -399, -399, -399, -399, -71, - -43, -98, -89, 63, 243, -399, -220, -362, -399, -399, - -399, -399, -399, -399, -16, -399, -399, -399, -399, -399, - 114, 201, 353, 413, 439, 465, -399, -399, 602, 614, - -399, 297, 710, -399, -399, 718, 726, 734, 759, -399, - -399, -399, 0, 9, 234, -19, -399, -399, 251, -138, - 252, 253 + -373, -373, -373, 378, 385, 387, -373, -373, -22, 297, + -373, -373, -373, -30, -121, -373, -373, -373, -373, -373, + -373, -373, -373, -373, -373, -373, -373, -373, -373, -373, + -373, -373, -373, -373, -373, -373, -373, -373, 622, -373, + -232, -230, -216, -373, -373, -373, -373, -373, -373, -46, + -40, -144, -104, 120, 361, -373, -224, -372, -373, -373, + -373, -373, -373, -373, -34, -373, -373, -373, -373, -373, + 14, 54, 100, 117, 126, 135, -373, -373, 152, 200, + -373, 231, 217, -373, -373, 238, 252, 314, 335, -373, + -373, -373, 0, 6, 366, -4, -373, -373, 371, -20, + 372, 374 }; const short parser::yydefgoto_[] = { - 0, 10, 11, 12, 13, 14, 15, 16, 17, 326, - 327, 400, 328, 329, 330, 461, 331, 332, 333, 334, - 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, - 345, 346, 347, 348, 349, 350, 351, 352, 301, 516, - 353, 354, 355, 82, 83, 84, 85, 86, 87, 88, - 89, 90, 91, 38, 39, 235, 538, 303, 92, 93, - 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, - 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, - 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, - 124, 300, 125, 126, 127, 128, 129, 130, 131, 132, - 133, 134 + 0, 10, 11, 12, 13, 14, 15, 16, 101, 102, + 156, 103, 104, 105, 353, 106, 107, 108, 109, 110, + 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, + 121, 122, 123, 124, 125, 126, 127, 128, 363, 496, + 129, 130, 131, 180, 181, 182, 183, 184, 185, 186, + 187, 134, 135, 36, 37, 58, 531, 365, 188, 189, + 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, + 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, + 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, + 220, 393, 221, 222, 223, 224, 225, 226, 227, 228, + 229, 230 }; const short parser::yytable_[] = { - 18, 231, 239, 173, 35, 302, 24, 25, 462, 8, - 463, 18, 21, 22, 464, 298, 19, 20, 222, 23, - 43, 44, 30, 363, 499, 164, 165, 223, 26, -239, - 40, 174, 34, -239, -247, 8, 40, 40, -247, 138, - 32, -240, 142, 399, 139, -240, -241, 404, 31, 135, - -241, 143, 33, 1, 2, 3, 4, 5, 175, 6, - 7, -239, 225, 141, -239, 228, -247, 500, -259, -247, - 139, 166, 229, -240, 190, 36, -240, 139, -241, 9, - 37, -241, 140, 191, 395, 299, 8, 222, 234, 396, - 144, 305, 306, 145, 34, 77, 223, 79, 80, 136, - 137, 446, -239, -239, 19, 76, 396, -247, -247, 210, - 211, 212, 192, 494, -240, -240, 224, 409, 396, -241, - -241, 237, -242, 34, 146, 191, -242, 80, 428, 429, - 147, 430, 431, 502, 148, 462, 456, 463, 396, 233, - 503, 464, 195, 196, 42, 396, 213, 509, 8, 42, - 227, -243, 396, 8, -242, -243, 9, -242, 530, 356, - 544, 149, 539, 396, 541, 396, 543, 150, 208, 209, - 210, 211, 212, 171, 172, 151, 220, 454, 411, 221, - 152, 220, 214, -243, 268, 224, -243, 357, 176, 432, - 433, 153, 154, 155, 191, -242, -242, 471, 472, 156, - 157, 158, 159, 434, 435, 436, 437, 438, 439, 440, - 441, 442, 443, 444, 175, 160, 161, 19, 76, 162, - 226, 215, 19, 76, -243, -243, 304, 489, -244, 216, - 361, 512, -244, 514, 217, 218, 356, 219, 230, 191, - 356, 242, 243, 244, 364, -245, 255, 164, 269, -245, - 225, 299, 397, 173, 173, 403, 402, 356, 405, 406, - -244, 407, 222, -244, 357, 408, 412, 545, 357, 385, - 548, 223, 413, 511, 414, 177, 417, -245, 418, 447, - -245, 174, 174, 459, 423, 357, 451, 424, 529, 558, - 559, 175, 425, 426, 427, 175, 468, 410, 172, 469, - 473, -244, -244, 474, 475, 476, 488, 361, 175, 175, - 493, 361, 175, -246, 496, 508, 191, -246, -245, -245, - 191, 222, 222, 498, 361, 361, 520, 521, 361, 356, - 223, 223, 531, 191, 191, 173, 533, 191, 208, 209, - 210, 211, 212, 535, 176, -246, 536, 537, -246, 540, - 542, 396, 546, 550, 551, 552, 553, 357, 555, 556, - 224, 557, 27, 174, 519, 28, 29, 222, 422, 191, - 547, 184, 0, 42, 236, 0, 223, 8, 46, 47, - 48, 49, 232, 0, 175, 0, -246, -246, 56, 0, - 175, 238, 240, 241, 62, 63, 64, 65, 66, 67, - 361, 0, 0, 0, 0, 170, 361, 466, 0, 191, - 0, 0, 0, 324, 325, 191, 0, 0, 0, 224, - 224, 176, 0, 0, 356, 176, 356, 178, 191, 191, - 0, 177, 0, 0, 0, 0, 0, 0, 176, 176, - 0, 0, 176, 0, 0, 0, 19, 76, 0, 0, - 0, 81, 357, 0, 357, 0, 0, 0, 0, 0, - 356, 0, 173, 356, 0, 224, 0, 0, 0, 0, - 0, 0, 0, 0, 191, 0, 0, 0, 0, 175, - 0, 175, 356, 356, 0, 0, 0, 179, 357, 163, - 174, 357, 167, 168, 0, 361, 0, 361, 0, 0, - 518, 0, 0, 0, 191, 0, 191, 0, 177, 0, - 357, 357, 177, 180, 176, 175, 0, 175, 175, 0, - 176, 0, 0, 42, 0, 177, 177, 8, 0, 177, - 0, 361, 0, 361, 361, 0, 0, 175, 175, 181, - 191, 0, 191, 191, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 361, 361, 220, 0, 0, 268, 0, - 0, 0, 191, 191, 245, 246, 247, 248, 249, 250, - 251, 252, 253, 254, 0, 256, 257, 258, 259, 260, - 261, 262, 263, 178, 266, 0, 0, 0, 0, 267, - 0, 0, 0, 0, 0, 0, 19, 76, 0, 0, - 0, 177, 0, 0, 0, 0, 0, 177, 0, 176, - 0, 176, 0, 0, 270, 271, 272, 273, 274, 275, - 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, - 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, - 297, 0, 0, 179, 0, 176, 0, 176, 176, 0, + 17, 297, 132, 354, 22, 355, 23, 24, 133, 20, + 21, 17, 49, 8, 136, 441, 65, 66, 33, 356, + 25, 132, 364, 366, 62, 132, 447, 133, 29, 38, + 30, 133, 238, 136, 38, 38, 31, 136, 32, 32, + 60, 298, 57, 51, 34, 155, 42, 39, 150, 233, + 35, 43, 260, 260, 151, 46, 240, 132, 261, 261, + 43, 47, 137, 133, 136, 136, 43, 150, 297, 136, + 448, 150, 239, 151, 450, 452, 405, 151, 44, 451, + 451, 137, 477, 249, 9, 137, 392, 451, 251, 250, + 1, 2, 3, 4, 5, 504, 6, 7, 150, 150, + 451, 537, 138, 150, 151, 151, 451, 45, 298, 151, + 132, 48, 137, 137, 231, 546, 133, 137, 297, 297, + 451, 138, 136, 8, 232, 138, 555, 561, 152, 153, + 260, 451, 451, 234, 303, 259, 261, 8, 235, 532, + 236, 534, 136, 536, 454, 299, 18, 19, 139, 259, + 317, 151, 138, 138, 40, 41, 150, 138, 298, 298, + 237, 241, 151, 242, 243, 140, 248, 139, 52, 53, + 137, 139, 246, 318, 141, 247, 326, 345, 346, 347, + 252, 297, 151, 142, 140, 253, -259, 254, 140, 260, + 137, 255, 256, 141, 9, 261, 301, 141, 139, 139, + 143, 136, 142, 139, 266, 257, 142, 18, 100, 258, + 138, 267, 299, 297, 271, 140, 140, 268, 151, 143, + 140, 298, 269, 143, 141, 141, 270, 272, 273, 141, + 138, 330, 331, 142, 142, 150, 358, 54, 142, 274, + 275, 151, 276, 32, 55, 277, 56, 57, 144, 137, + 143, 143, 300, 298, 516, 143, 139, 343, 344, 345, + 346, 347, 299, 299, 304, 145, 305, 144, 151, 151, + 306, 144, 307, 140, 308, 309, 139, 310, 311, 312, + 313, 526, 141, 314, 145, 315, 146, 351, 145, 138, + 354, 142, 355, 140, 327, 349, 153, 360, 144, 144, + 147, 406, 141, 144, 547, 146, 356, 361, 143, 146, + 367, 142, 368, 369, 386, 262, 263, 370, 387, 147, + 145, 554, 388, 147, 416, 299, 389, 392, 322, 444, + 446, 151, 478, 505, 520, 139, 146, 146, 330, 331, + 500, 146, 334, 335, 336, 337, 338, 339, 502, 442, + 147, 147, 140, 508, 522, 147, 144, 299, 524, 525, + 528, 141, 148, 151, 343, 344, 345, 346, 347, 455, + 142, 529, 530, 145, 533, 535, 323, 541, 545, 451, + 548, 148, 549, 149, 556, 148, 550, 143, 552, 26, + 557, -247, 558, 325, 146, -247, 27, 132, 28, 132, + 265, 542, 149, 133, 50, 133, 149, 324, 147, 136, + 59, 136, 148, 148, 146, 61, 63, 148, 64, 499, + 300, 492, 0, 494, -247, 0, 0, -247, 147, 0, + 0, 0, 0, 149, 149, 144, 0, 0, 149, 0, + 0, 0, -239, 150, 0, 150, -239, 0, 498, 151, + 0, 151, 357, 0, 0, 0, 0, 137, 0, 137, + 0, 0, 0, 0, 0, -247, -247, -240, 0, 0, + 148, -240, 0, 146, 132, -239, 260, 132, -239, 0, + 133, 0, 261, 133, 0, 0, 136, 147, 136, 136, + 148, 149, 343, 344, 345, 346, 347, 138, 540, 138, + -240, 543, 0, -240, 0, 0, 132, 132, 0, 0, + 0, 149, 133, 133, 0, 0, -239, -239, 136, 136, + 150, 0, 150, 150, 0, 0, 151, 0, 151, 151, + 559, 560, 0, 0, 137, 0, 137, 137, 0, 0, + 0, -240, -240, 139, 0, 139, 0, 0, 0, 148, + -241, 0, 150, 150, -241, 0, 0, -242, 151, 151, + 140, -242, 140, 0, 0, 0, 137, 137, 0, 141, + 149, 141, 0, 0, 138, 0, 138, 138, 142, 0, + 142, 0, 0, -241, 0, 0, -241, 0, 0, 0, + -242, 0, 0, -242, 0, 143, 0, 143, 0, 0, + 0, 0, 0, 0, 0, 0, 138, 138, 0, 0, + 0, 83, 0, 0, 0, 8, 0, 0, 0, 0, + 139, 0, 139, 139, -241, -241, 0, 0, 0, 0, + 0, -242, -242, 0, 0, 0, 0, 140, 0, 140, + 140, 0, 0, 144, 282, 144, 141, 348, 141, 141, + 0, 0, 139, 139, 0, 142, 0, 142, 142, 0, + 145, 0, 145, 0, 0, 0, 0, 0, 0, 140, + 140, 0, 143, 0, 143, 143, 0, 0, 141, 141, + 0, 146, 0, 146, 0, 18, 100, 142, 142, 0, + 179, 0, 0, 0, 0, 147, 0, 147, 0, 0, + 0, 0, 245, 0, 143, 143, 0, 0, 0, 83, + 0, 0, 0, 8, 84, 85, 86, 87, 0, 0, + 144, 0, 144, 144, 0, 89, 0, 0, 0, 0, + 0, 90, 91, 92, 93, 94, 95, 145, 321, 357, + 145, 0, 97, 0, 0, 0, 278, 279, 0, 280, + 281, 0, 144, 144, 0, 0, 0, 148, 146, 148, + 146, 146, 0, 0, 0, 0, 0, 83, 0, 145, + 145, 8, 147, 0, 147, 147, 0, -243, 149, 0, + 149, -243, 0, 18, 100, 0, 0, 0, 152, 153, + 146, 146, 0, 316, 0, 0, 319, 320, 0, 0, + 282, 0, 0, 283, 147, 147, 0, 0, 284, 285, + -243, -244, 0, -243, 0, -244, 0, -245, 0, 0, + 0, -245, 286, 287, 288, 289, 290, 291, 292, 293, + 294, 295, 296, 0, 148, 0, 148, 148, 0, 0, + 0, 18, 100, 0, -244, 0, 0, -244, 0, 0, + -245, -243, -243, -245, 350, 149, 352, 149, 149, 359, + 0, 0, 0, 0, 0, 0, 148, 148, 0, 0, + 0, 0, 0, 0, 371, 372, 373, 374, 375, 376, + 377, 378, 0, 0, 0, -244, -244, 149, 149, 0, + 0, -245, -245, 379, 380, 381, 382, 383, 384, 385, + 0, 0, 0, 0, 391, 0, 0, 0, 394, 395, + 396, 397, 398, 399, 400, 401, 402, 403, 404, 0, + 0, 0, 0, 0, 0, 0, 407, 408, 409, 410, + 411, 412, 413, 414, 415, 0, 417, 418, 0, 0, + 83, 0, 0, 421, 8, 0, 0, 0, 0, 0, + 0, 422, 423, 424, 425, 426, 427, 428, 429, 430, + 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, + 0, 0, 0, 282, 0, 0, 283, 0, 0, 0, + 0, 284, 285, 0, 0, 0, 0, 0, 0, 453, + -246, 0, 456, 0, -246, 286, 287, 288, 289, 290, + 291, 292, 293, 294, 295, 296, 0, 0, 472, 473, + 474, 475, 378, 83, 18, 100, 0, 8, 84, 85, + 86, 87, 0, -246, 83, 0, -246, 0, 8, 89, + 0, 0, 0, 0, 0, 90, 91, 92, 93, 94, + 95, 0, 490, 0, 0, 0, 97, 0, 0, 0, + 0, 0, 0, 0, 98, 99, 0, 282, 0, 0, + 283, 0, 0, 0, -246, -246, 493, 0, 495, 497, + 83, 0, 0, 501, 8, 84, 85, 86, 87, 0, + 157, 0, 0, 0, 0, 507, 89, 18, 100, 0, + 0, 0, 90, 91, 92, 93, 94, 95, 18, 100, + 0, 517, 0, 97, 83, 52, 53, 158, 8, 84, + 85, 86, 87, 519, 159, 160, 161, 162, 163, 164, + 89, 165, 166, 167, 168, 169, 90, 91, 92, 93, + 94, 95, 170, 171, 0, 0, 0, 172, 0, 0, + 539, 173, 0, 244, 18, 100, 544, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 174, 175, 0, + 0, 157, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 176, 0, 0, 177, 18, 100, + 32, 55, 178, 56, 57, 83, 52, 53, 158, 8, + 84, 85, 86, 87, 0, 159, 160, 161, 162, 163, + 164, 89, 165, 166, 167, 168, 169, 90, 91, 92, + 93, 94, 95, 170, 171, 464, 0, 0, 390, 317, + 0, 329, 173, 0, 330, 331, 332, 333, 334, 335, + 336, 337, 338, 339, 0, 0, 0, 0, 174, 175, + 0, 0, 157, 0, 0, 0, 0, 340, 341, 342, + 343, 344, 345, 346, 347, 176, 0, 0, 177, 18, + 100, 32, 55, 178, 56, 57, 83, 52, 53, 158, + 8, 84, 85, 86, 87, 0, 159, 160, 161, 162, + 163, 164, 89, 165, 166, 167, 168, 169, 90, 91, + 92, 93, 94, 95, 170, 171, 465, 0, 0, 172, + 0, 0, 329, 173, 0, 330, 331, 332, 333, 334, + 335, 336, 337, 338, 339, 0, 0, 0, 0, 174, + 175, 0, 0, 157, 0, 0, 0, 0, 340, 341, + 342, 343, 344, 345, 346, 347, 176, 0, 0, 177, + 18, 100, 32, 55, 178, 56, 57, 83, 52, 53, + 158, 8, 84, 85, 86, 87, 0, 159, 160, 161, + 162, 163, 164, 89, 165, 166, 167, 168, 169, 90, + 91, 92, 93, 94, 95, 170, 171, 466, 0, 0, + 390, 0, 0, 329, 173, 0, 330, 331, 332, 333, + 334, 335, 336, 337, 338, 339, 0, 0, 0, 0, + 174, 175, 0, 0, 0, 0, 0, 0, 0, 340, + 341, 342, 343, 344, 345, 346, 347, 176, 67, 0, + 177, 18, 100, 32, 55, 178, 56, 57, 68, 0, + 0, 69, 70, 0, 71, 72, 73, 74, 0, 75, + 76, 77, 78, 79, 80, 81, 82, 83, 0, 0, + 0, 8, 84, 85, 86, 87, 88, 0, 0, 0, + 0, 0, 0, 89, 0, 0, 0, 0, 0, 90, + 91, 92, 93, 94, 95, 0, 0, 0, 48, 96, + 97, 67, 0, 0, 0, 0, 0, 0, 98, 99, + 0, 68, 0, 0, 69, 70, 0, 71, 72, 73, + 74, 0, 75, 76, 77, 78, 79, 80, 81, 82, + 83, 0, 0, 0, 8, 84, 85, 86, 87, 88, + 0, 18, 100, 0, 0, 0, 89, 0, 0, 0, + 0, 0, 90, 91, 92, 93, 94, 95, 0, 0, + 0, 48, 264, 97, 154, 0, 0, 0, 0, 0, + 0, 98, 99, 68, 0, 0, 69, 70, 0, 71, + 72, 73, 74, 0, 75, 76, 77, 78, 79, 80, + 81, 82, 83, 0, 0, 0, 8, 84, 85, 86, + 87, 88, 0, 0, 18, 100, 0, 0, 89, 0, + 0, 0, 0, 0, 90, 91, 92, 93, 94, 95, + 0, 0, 0, 48, 0, 97, 302, 0, 0, 0, + 0, 0, 0, 98, 99, 68, 0, 0, 69, 70, + 0, 71, 72, 73, 74, 0, 75, 76, 77, 78, + 79, 80, 81, 82, 83, 0, 0, 0, 8, 84, + 85, 86, 87, 88, 0, 0, 18, 100, 0, 0, + 89, 0, 0, 0, 0, 0, 90, 91, 92, 93, + 94, 95, 0, 0, 0, 48, 0, 97, 0, 0, + 0, 0, 0, 0, 0, 98, 99, 68, 0, 0, + 69, 70, 0, 71, 72, 73, 74, 0, 75, 76, + 77, 78, 79, 80, 81, 82, 83, 0, 0, 0, + 8, 84, 85, 86, 87, 88, 0, 0, 18, 100, + 0, 0, 89, 0, 0, 0, 0, 0, 90, 91, + 92, 93, 94, 95, 0, 0, 0, 48, 0, 97, + 0, 0, 0, 0, 0, 0, 419, 98, 99, 0, + 0, 420, 0, 0, 0, 0, 329, 0, 0, 330, + 331, 332, 333, 334, 335, 336, 337, 338, 339, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 178, 0, 362, 0, 178, 0, 0, 176, 176, 180, - 0, 0, 0, 0, 0, 0, 182, 178, 178, 0, - 0, 178, 0, 195, 196, 383, 0, 0, 183, 201, - 202, 203, 204, 0, 0, 181, 177, 0, 177, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 208, - 209, 210, 211, 212, 0, 0, 266, 0, 0, 0, - 179, 0, 0, 0, 179, 0, 0, 0, 401, 0, - 0, 0, 177, 0, 177, 177, 0, 179, 179, 0, - 416, 179, 0, 0, 0, 0, 180, 0, 0, 0, - 180, 0, 0, 178, 177, 177, 0, 0, 0, 178, - 0, 0, 0, 180, 180, 0, 0, 180, 0, 0, - 0, 0, 181, 42, 0, 0, 181, 8, 46, 47, - 48, 49, 0, 0, 185, 448, 0, 0, 56, 181, - 181, 0, 186, 181, 62, 63, 64, 65, 66, 67, - 187, 449, 0, 0, 0, 170, 452, 0, 188, 0, - 0, 0, 0, 179, 0, 0, 453, 0, 0, 179, - 0, 0, 0, 458, 0, 460, 0, 0, 467, 0, - 0, 0, 358, 189, 0, 0, 0, 0, 0, 180, - 0, 0, 0, 0, 359, 180, 19, 76, 178, 0, - 178, 0, 0, 0, 477, 478, 479, 480, 481, 482, - 483, 484, 485, 486, 487, 181, 0, 0, 0, 0, - 492, 181, 0, 0, 195, 196, 0, 198, 199, 200, - 201, 202, 203, 204, 178, 0, 178, 178, 0, 0, - 0, 0, 0, 504, 505, 506, 507, 205, 206, 207, - 208, 209, 210, 211, 212, 0, 178, 178, 179, 358, - 179, 0, 0, 358, 0, 0, 513, 0, 515, 517, - 0, 359, 0, 0, 0, 359, 358, 358, 0, 0, - 358, 0, 0, 0, 180, 0, 180, 0, 359, 359, - 360, 0, 359, 0, 179, 0, 179, 179, 186, 0, - 0, 0, 0, 0, 0, 549, 187, 0, 0, 0, - 181, 0, 181, 0, 188, 0, 179, 179, 0, 0, - 180, 0, 180, 180, 0, 0, 0, 195, 196, 0, - 0, 199, 200, 201, 202, 203, 204, 0, 0, 189, - 0, 0, 180, 180, 0, 0, 181, 0, 181, 181, - 0, 206, 358, 208, 209, 210, 211, 212, 358, 0, - 0, 0, 0, 0, 359, 0, 0, 360, 181, 181, - 359, 360, 0, 0, 0, 186, 0, 0, 0, 186, - 0, 0, 0, 187, 419, 420, 0, 187, 360, 0, - 0, 188, 186, 186, 0, 188, 186, 0, 0, 0, - 187, 187, 0, 0, 187, 0, 0, 0, 188, 188, - 0, 0, 188, 0, 0, 0, 189, 0, 0, 0, - 189, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 189, 189, 0, 0, 189, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 358, 0, 358, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 359, - 360, 359, 0, 0, 0, 0, 465, 42, 186, 0, - 0, 8, 0, 0, 186, 0, 187, 0, 0, 0, - 0, 0, 187, 358, 188, 358, 358, 0, 0, 0, - 188, 0, 0, 0, 0, 359, 0, 359, 359, 220, - 0, 0, 268, 0, 0, 358, 358, 432, 433, 189, - 0, 0, 0, 0, 0, 189, 0, 359, 359, 0, - 0, 434, 435, 436, 437, 438, 439, 440, 441, 442, - 443, 444, 0, 0, 0, 0, 0, 0, 0, 0, - 19, 76, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 360, 0, 360, 0, 0, - 0, 0, 0, 186, 0, 186, 0, 0, 0, 0, - 0, 187, 0, 187, 0, 0, 0, 0, 0, 188, - 0, 188, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 360, 0, 465, 360, 0, 0, 0, 0, 186, - 0, 186, 186, 0, 189, 0, 189, 187, 0, 187, - 187, 0, 0, 360, 360, 188, 0, 188, 188, 0, - 0, 186, 186, 0, 0, 0, 0, 195, 196, 187, - 187, 199, 200, 201, 202, 203, 204, 188, 188, 0, - 189, 41, 189, 189, 0, 0, 0, 0, 0, 0, - 205, 206, 207, 208, 209, 210, 211, 212, 0, 0, - 0, 0, 189, 189, 0, 42, 43, 44, 45, 8, - 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, - 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, - 66, 67, 68, 69, 384, 0, 0, 296, 165, 0, - 194, 71, 0, 195, 196, 197, 198, 199, 200, 201, - 202, 203, 204, 0, 0, 0, 0, 72, 73, 0, - 0, 41, 0, 0, 0, 0, 205, 206, 207, 208, - 209, 210, 211, 212, 74, 0, 0, 75, 19, 76, - 34, 77, 78, 79, 80, 42, 43, 44, 45, 8, - 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, - 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, - 66, 67, 68, 69, 0, 0, 0, 70, 0, 0, - 0, 71, 0, 415, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 72, 73, 0, - 0, 41, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 74, 0, 0, 75, 19, 76, - 34, 77, 78, 79, 80, 42, 43, 44, 45, 8, - 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, - 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, - 66, 67, 68, 69, 387, 0, 0, 70, 0, 0, - 194, 71, 0, 195, 196, 197, 198, 199, 200, 201, - 202, 203, 204, 0, 0, 0, 0, 72, 73, 0, - 0, 41, 0, 0, 0, 0, 205, 206, 207, 208, - 209, 210, 211, 212, 74, 0, 0, 75, 19, 76, - 34, 77, 78, 79, 80, 42, 43, 44, 45, 8, - 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, - 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, - 66, 67, 68, 69, 0, 0, 0, 296, 0, 0, - 0, 71, 0, 0, 42, 0, 0, 0, 8, 46, - 47, 48, 49, 0, 0, 0, 0, 72, 73, 56, - 0, 0, 0, 0, 0, 62, 63, 64, 65, 66, - 67, 0, 169, 0, 74, 307, 170, 75, 19, 76, - 34, 77, 78, 79, 80, 308, 0, 0, 309, 310, - 0, 311, 312, 313, 314, 0, 315, 316, 317, 318, - 319, 320, 321, 322, 42, 0, 0, 0, 8, 46, - 47, 48, 49, 0, 0, 0, 0, 19, 76, 56, - 0, 0, 171, 172, 0, 62, 63, 64, 65, 66, - 67, 0, 0, 0, 230, 323, 170, 307, 0, 0, - 0, 0, 0, 0, 324, 325, 0, 308, 0, 0, - 309, 310, 0, 311, 312, 313, 314, 0, 315, 316, - 317, 318, 319, 320, 321, 322, 42, 0, 0, 0, - 8, 46, 47, 48, 49, 0, 0, 19, 76, 0, - 0, 56, 0, 0, 0, 0, 0, 62, 63, 64, - 65, 66, 67, 0, 0, 0, 230, 421, 170, 398, - 0, 0, 0, 0, 0, 0, 324, 325, 308, 0, - 0, 309, 310, 0, 311, 312, 313, 314, 0, 315, - 316, 317, 318, 319, 320, 321, 322, 42, 0, 0, - 0, 8, 46, 47, 48, 49, 0, 0, 0, 19, - 76, 0, 56, 0, 0, 0, 0, 0, 62, 63, - 64, 65, 66, 67, 0, 0, 0, 230, 0, 170, - 455, 0, 0, 0, 0, 0, 0, 324, 325, 308, - 0, 0, 309, 310, 0, 311, 312, 313, 314, 0, - 315, 316, 317, 318, 319, 320, 321, 322, 42, 0, - 0, 0, 8, 46, 47, 48, 49, 0, 0, 0, - 19, 76, 0, 56, 0, 0, 0, 0, 0, 62, - 63, 64, 65, 66, 67, 0, 0, 0, 230, 0, - 170, 0, 0, 0, 0, 0, 0, 0, 324, 325, - 308, 0, 0, 309, 310, 0, 311, 312, 313, 314, - 0, 315, 316, 317, 318, 319, 320, 321, 322, 42, - 0, 0, 0, 8, 46, 47, 48, 49, 0, 0, - 0, 19, 76, 0, 56, 0, 0, 0, 0, 0, - 62, 63, 64, 65, 66, 67, 0, 0, 0, 230, - 0, 170, 0, 0, 0, 0, 0, 0, 264, 324, - 325, 0, 0, 265, 0, 0, 0, 0, 194, 0, - 0, 195, 196, 197, 198, 199, 200, 201, 202, 203, - 204, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 19, 76, 205, 206, 207, 208, 209, 210, - 211, 212, 523, 0, 0, 0, 0, 524, 0, 0, - 0, 0, 194, 0, 0, 195, 196, 197, 198, 199, - 200, 201, 202, 203, 204, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 205, 206, - 207, 208, 209, 210, 211, 212, 525, 0, 0, 0, - 0, 526, 0, 0, 0, 0, 194, 0, 0, 195, - 196, 197, 198, 199, 200, 201, 202, 203, 204, 0, + 18, 100, 340, 341, 342, 343, 344, 345, 346, 347, + 510, 0, 0, 0, 0, 511, 0, 0, 0, 0, + 329, 0, 0, 330, 331, 332, 333, 334, 335, 336, + 337, 338, 339, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 340, 341, 342, 343, + 344, 345, 346, 347, 512, 0, 0, 0, 0, 513, + 0, 0, 0, 0, 329, 0, 0, 330, 331, 332, + 333, 334, 335, 336, 337, 338, 339, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 205, 206, 207, 208, 209, 210, 211, 212, - 527, 0, 0, 0, 0, 528, 0, 0, 0, 0, - 194, 0, 0, 195, 196, 197, 198, 199, 200, 201, - 202, 203, 204, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 366, 0, 205, 206, 207, 208, - 209, 210, 211, 212, 194, 0, 0, 195, 196, 197, - 198, 199, 200, 201, 202, 203, 204, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 367, 0, - 205, 206, 207, 208, 209, 210, 211, 212, 194, 0, - 0, 195, 196, 197, 198, 199, 200, 201, 202, 203, - 204, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 368, 0, 205, 206, 207, 208, 209, 210, - 211, 212, 194, 0, 0, 195, 196, 197, 198, 199, - 200, 201, 202, 203, 204, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 369, 0, 205, 206, - 207, 208, 209, 210, 211, 212, 194, 0, 0, 195, - 196, 197, 198, 199, 200, 201, 202, 203, 204, 0, + 340, 341, 342, 343, 344, 345, 346, 347, 514, 0, + 0, 0, 0, 515, 0, 0, 0, 0, 329, 0, + 0, 330, 331, 332, 333, 334, 335, 336, 337, 338, + 339, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 443, 0, 340, 341, 342, 343, 344, 345, + 346, 347, 329, 0, 0, 330, 331, 332, 333, 334, + 335, 336, 337, 338, 339, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 445, 0, 340, 341, + 342, 343, 344, 345, 346, 347, 329, 0, 0, 330, + 331, 332, 333, 334, 335, 336, 337, 338, 339, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 370, 0, 205, 206, 207, 208, 209, 210, 211, 212, - 194, 0, 0, 195, 196, 197, 198, 199, 200, 201, - 202, 203, 204, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 371, 0, 205, 206, 207, 208, - 209, 210, 211, 212, 194, 0, 0, 195, 196, 197, - 198, 199, 200, 201, 202, 203, 204, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 372, 0, - 205, 206, 207, 208, 209, 210, 211, 212, 194, 0, - 0, 195, 196, 197, 198, 199, 200, 201, 202, 203, - 204, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 373, 0, 205, 206, 207, 208, 209, 210, - 211, 212, 194, 0, 0, 195, 196, 197, 198, 199, - 200, 201, 202, 203, 204, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 374, 0, 205, 206, - 207, 208, 209, 210, 211, 212, 194, 0, 0, 195, - 196, 197, 198, 199, 200, 201, 202, 203, 204, 0, + 449, 0, 340, 341, 342, 343, 344, 345, 346, 347, + 329, 0, 0, 330, 331, 332, 333, 334, 335, 336, + 337, 338, 339, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 457, 0, 340, 341, 342, 343, + 344, 345, 346, 347, 329, 0, 0, 330, 331, 332, + 333, 334, 335, 336, 337, 338, 339, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 458, 0, + 340, 341, 342, 343, 344, 345, 346, 347, 329, 0, + 0, 330, 331, 332, 333, 334, 335, 336, 337, 338, + 339, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 459, 0, 340, 341, 342, 343, 344, 345, + 346, 347, 329, 0, 0, 330, 331, 332, 333, 334, + 335, 336, 337, 338, 339, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 460, 0, 340, 341, + 342, 343, 344, 345, 346, 347, 329, 0, 0, 330, + 331, 332, 333, 334, 335, 336, 337, 338, 339, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 375, 0, 205, 206, 207, 208, 209, 210, 211, 212, - 194, 0, 0, 195, 196, 197, 198, 199, 200, 201, - 202, 203, 204, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 376, 0, 205, 206, 207, 208, - 209, 210, 211, 212, 194, 0, 0, 195, 196, 197, - 198, 199, 200, 201, 202, 203, 204, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 377, 0, - 205, 206, 207, 208, 209, 210, 211, 212, 194, 0, - 0, 195, 196, 197, 198, 199, 200, 201, 202, 203, - 204, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 378, 0, 205, 206, 207, 208, 209, 210, - 211, 212, 194, 0, 0, 195, 196, 197, 198, 199, - 200, 201, 202, 203, 204, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 379, 0, 205, 206, - 207, 208, 209, 210, 211, 212, 194, 0, 0, 195, - 196, 197, 198, 199, 200, 201, 202, 203, 204, 0, + 461, 0, 340, 341, 342, 343, 344, 345, 346, 347, + 329, 0, 0, 330, 331, 332, 333, 334, 335, 336, + 337, 338, 339, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 462, 0, 340, 341, 342, 343, + 344, 345, 346, 347, 329, 0, 0, 330, 331, 332, + 333, 334, 335, 336, 337, 338, 339, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 480, 0, + 340, 341, 342, 343, 344, 345, 346, 347, 329, 0, + 0, 330, 331, 332, 333, 334, 335, 336, 337, 338, + 339, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 481, 0, 340, 341, 342, 343, 344, 345, + 346, 347, 329, 0, 0, 330, 331, 332, 333, 334, + 335, 336, 337, 338, 339, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 482, 0, 340, 341, + 342, 343, 344, 345, 346, 347, 329, 0, 0, 330, + 331, 332, 333, 334, 335, 336, 337, 338, 339, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 380, 0, 205, 206, 207, 208, 209, 210, 211, 212, - 194, 0, 0, 195, 196, 197, 198, 199, 200, 201, - 202, 203, 204, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 382, 0, 205, 206, 207, 208, - 209, 210, 211, 212, 194, 0, 0, 195, 196, 197, - 198, 199, 200, 201, 202, 203, 204, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 264, 0, - 205, 206, 207, 208, 209, 210, 211, 212, 194, 0, - 0, 195, 196, 197, 198, 199, 200, 201, 202, 203, - 204, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 490, 0, 205, 206, 207, 208, 209, 210, - 211, 212, 194, 0, 0, 195, 196, 197, 198, 199, - 200, 201, 202, 203, 204, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 491, 0, 205, 206, - 207, 208, 209, 210, 211, 212, 194, 0, 0, 195, - 196, 197, 198, 199, 200, 201, 202, 203, 204, 0, + 483, 0, 340, 341, 342, 343, 344, 345, 346, 347, + 329, 0, 0, 330, 331, 332, 333, 334, 335, 336, + 337, 338, 339, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 484, 0, 340, 341, 342, 343, + 344, 345, 346, 347, 329, 0, 0, 330, 331, 332, + 333, 334, 335, 336, 337, 338, 339, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 485, 0, + 340, 341, 342, 343, 344, 345, 346, 347, 329, 0, + 0, 330, 331, 332, 333, 334, 335, 336, 337, 338, + 339, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 486, 0, 340, 341, 342, 343, 344, 345, + 346, 347, 329, 0, 0, 330, 331, 332, 333, 334, + 335, 336, 337, 338, 339, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 487, 0, 340, 341, + 342, 343, 344, 345, 346, 347, 329, 0, 0, 330, + 331, 332, 333, 334, 335, 336, 337, 338, 339, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 495, 0, 205, 206, 207, 208, 209, 210, 211, 212, - 194, 0, 0, 195, 196, 197, 198, 199, 200, 201, - 202, 203, 204, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 497, 0, 205, 206, 207, 208, - 209, 210, 211, 212, 194, 0, 0, 195, 196, 197, - 198, 199, 200, 201, 202, 203, 204, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 501, 0, - 205, 206, 207, 208, 209, 210, 211, 212, 194, 0, - 0, 195, 196, 197, 198, 199, 200, 201, 202, 203, - 204, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 510, 0, 205, 206, 207, 208, 209, 210, - 211, 212, 194, 0, 0, 195, 196, 197, 198, 199, - 200, 201, 202, 203, 204, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 522, 0, 205, 206, - 207, 208, 209, 210, 211, 212, 194, 0, 0, 195, - 196, 197, 198, 199, 200, 201, 202, 203, 204, 0, + 488, 0, 340, 341, 342, 343, 344, 345, 346, 347, + 329, 0, 0, 330, 331, 332, 333, 334, 335, 336, + 337, 338, 339, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 489, 0, 340, 341, 342, 343, + 344, 345, 346, 347, 329, 0, 0, 330, 331, 332, + 333, 334, 335, 336, 337, 338, 339, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 419, 0, + 340, 341, 342, 343, 344, 345, 346, 347, 329, 0, + 0, 330, 331, 332, 333, 334, 335, 336, 337, 338, + 339, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 509, 0, 340, 341, 342, 343, 344, 345, + 346, 347, 329, 0, 0, 330, 331, 332, 333, 334, + 335, 336, 337, 338, 339, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 521, 0, 340, 341, + 342, 343, 344, 345, 346, 347, 329, 0, 0, 330, + 331, 332, 333, 334, 335, 336, 337, 338, 339, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 532, 0, 205, 206, 207, 208, 209, 210, 211, 212, - 194, 0, 0, 195, 196, 197, 198, 199, 200, 201, - 202, 203, 204, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 534, 0, 205, 206, 207, 208, - 209, 210, 211, 212, 194, 0, 0, 195, 196, 197, - 198, 199, 200, 201, 202, 203, 204, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 554, 0, - 205, 206, 207, 208, 209, 210, 211, 212, 194, 0, - 0, 195, 196, 197, 198, 199, 200, 201, 202, 203, - 204, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 205, 206, 207, 208, 209, 210, - 211, 212, 388, 0, 0, 0, 0, 0, 194, 0, - 0, 195, 196, 197, 198, 199, 200, 201, 202, 203, - 204, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 205, 206, 207, 208, 209, 210, - 211, 212, 389, 0, 0, 0, 0, 0, 194, 0, - 0, 195, 196, 197, 198, 199, 200, 201, 202, 203, - 204, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 205, 206, 207, 208, 209, 210, - 211, 212, 390, 0, 0, 0, 0, 0, 194, 0, - 0, 195, 196, 197, 198, 199, 200, 201, 202, 203, - 204, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 205, 206, 207, 208, 209, 210, - 211, 212, 391, 0, 0, 0, 0, 0, 194, 0, - 0, 195, 196, 197, 198, 199, 200, 201, 202, 203, - 204, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 205, 206, 207, 208, 209, 210, - 211, 212, 392, 0, 0, 0, 0, 0, 194, 0, - 0, 195, 196, 197, 198, 199, 200, 201, 202, 203, - 204, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 205, 206, 207, 208, 209, 210, - 211, 212, 393, 0, 0, 0, 0, 0, 194, 0, - 0, 195, 196, 197, 198, 199, 200, 201, 202, 203, - 204, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 205, 206, 207, 208, 209, 210, - 211, 212, 394, 0, 0, 0, 0, 0, 194, 0, - 0, 195, 196, 197, 198, 199, 200, 201, 202, 203, - 204, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 205, 206, 207, 208, 209, 210, - 211, 212, 445, 0, 0, 0, 0, 0, 194, 0, - 0, 195, 196, 197, 198, 199, 200, 201, 202, 203, - 204, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 205, 206, 207, 208, 209, 210, - 211, 212, 365, 0, 0, 0, 0, 194, 0, 0, - 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, + 523, 0, 340, 341, 342, 343, 344, 345, 346, 347, + 329, 0, 0, 330, 331, 332, 333, 334, 335, 336, + 337, 338, 339, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 527, 0, 340, 341, 342, 343, + 344, 345, 346, 347, 329, 0, 0, 330, 331, 332, + 333, 334, 335, 336, 337, 338, 339, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 538, 0, + 340, 341, 342, 343, 344, 345, 346, 347, 329, 0, + 0, 330, 331, 332, 333, 334, 335, 336, 337, 338, + 339, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 551, 0, 340, 341, 342, 343, 344, 345, + 346, 347, 329, 0, 0, 330, 331, 332, 333, 334, + 335, 336, 337, 338, 339, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 553, 0, 340, 341, + 342, 343, 344, 345, 346, 347, 329, 0, 0, 330, + 331, 332, 333, 334, 335, 336, 337, 338, 339, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 205, 206, 207, 208, 209, 210, 211, - 212, 381, 0, 0, 0, 0, 194, 0, 0, 195, - 196, 197, 198, 199, 200, 201, 202, 203, 204, 0, + 0, 0, 340, 341, 342, 343, 344, 345, 346, 347, + 467, 0, 0, 0, 0, 0, 329, 0, 0, 330, + 331, 332, 333, 334, 335, 336, 337, 338, 339, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 205, 206, 207, 208, 209, 210, 211, 212, - 450, 0, 0, 0, 0, 194, 0, 0, 195, 196, - 197, 198, 199, 200, 201, 202, 203, 204, 0, 0, + 0, 0, 340, 341, 342, 343, 344, 345, 346, 347, + 468, 0, 0, 0, 0, 0, 329, 0, 0, 330, + 331, 332, 333, 334, 335, 336, 337, 338, 339, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 205, 206, 207, 208, 209, 210, 211, 212, 386, - 0, 194, 0, 0, 195, 196, 197, 198, 199, 200, - 201, 202, 203, 204, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 205, 206, 207, - 208, 209, 210, 211, 212, 193, 194, 0, 0, 195, - 196, 197, 198, 199, 200, 201, 202, 203, 204, 0, + 0, 0, 340, 341, 342, 343, 344, 345, 346, 347, + 469, 0, 0, 0, 0, 0, 329, 0, 0, 330, + 331, 332, 333, 334, 335, 336, 337, 338, 339, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 205, 206, 207, 208, 209, 210, 211, 212, - 457, 194, 0, 0, 195, 196, 197, 198, 199, 200, - 201, 202, 203, 204, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 205, 206, 207, - 208, 209, 210, 211, 212, 470, 194, 0, 0, 195, - 196, 197, 198, 199, 200, 201, 202, 203, 204, 194, - 0, 0, 195, 196, 197, 198, 199, 200, 201, 202, - 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, - 0, 0, 0, 0, 0, 205, 206, 207, 208, 209, - 210, 211, 212, 195, 196, 0, 0, 199, 200, 201, - 202, 203, 204, 195, 196, 0, 0, 199, 200, 201, - 202, 203, 204, 0, 0, 0, 0, 206, 207, 208, - 209, 210, 211, 212, 0, 0, 0, 0, 0, 208, - 209, 210, 211, 212 + 0, 0, 340, 341, 342, 343, 344, 345, 346, 347, + 470, 0, 0, 0, 0, 0, 329, 0, 0, 330, + 331, 332, 333, 334, 335, 336, 337, 338, 339, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 340, 341, 342, 343, 344, 345, 346, 347, + 471, 0, 0, 0, 0, 0, 329, 0, 0, 330, + 331, 332, 333, 334, 335, 336, 337, 338, 339, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 340, 341, 342, 343, 344, 345, 346, 347, + 476, 0, 0, 0, 0, 0, 329, 0, 0, 330, + 331, 332, 333, 334, 335, 336, 337, 338, 339, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 340, 341, 342, 343, 344, 345, 346, 347, + 503, 0, 0, 0, 0, 0, 329, 0, 0, 330, + 331, 332, 333, 334, 335, 336, 337, 338, 339, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 340, 341, 342, 343, 344, 345, 346, 347, + 463, 0, 0, 0, 0, 329, 0, 0, 330, 331, + 332, 333, 334, 335, 336, 337, 338, 339, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 340, 341, 342, 343, 344, 345, 346, 347, 479, + 0, 0, 0, 0, 329, 0, 0, 330, 331, 332, + 333, 334, 335, 336, 337, 338, 339, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 340, 341, 342, 343, 344, 345, 346, 347, 518, 0, + 0, 0, 0, 329, 0, 0, 330, 331, 332, 333, + 334, 335, 336, 337, 338, 339, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 340, + 341, 342, 343, 344, 345, 346, 347, 491, 0, 329, + 0, 0, 330, 331, 332, 333, 334, 335, 336, 337, + 338, 339, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 340, 341, 342, 343, 344, + 345, 346, 347, 328, 329, 0, 0, 330, 331, 332, + 333, 334, 335, 336, 337, 338, 339, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 340, 341, 342, 343, 344, 345, 346, 347, 362, 329, + 0, 0, 330, 331, 332, 333, 334, 335, 336, 337, + 338, 339, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 340, 341, 342, 343, 344, + 345, 346, 347, 506, 329, 0, 0, 330, 331, 332, + 333, 334, 335, 336, 337, 338, 339, 329, 0, 0, + 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, + 340, 341, 342, 343, 344, 345, 346, 347, 0, 0, + 0, 0, 0, 340, 341, 342, 343, 344, 345, 346, + 347, 330, 331, 0, 333, 334, 335, 336, 337, 338, + 339, 330, 331, 0, 0, 334, 335, 336, 337, 338, + 339, 0, 0, 0, 340, 341, 342, 343, 344, 345, + 346, 347, 0, 0, 340, 341, 342, 343, 344, 345, + 346, 347, 330, 331, 0, 0, 334, 335, 336, 337, + 338, 339, 330, 331, 0, 0, 334, 335, 336, 337, + 338, 339, 0, 0, 0, 0, 341, 342, 343, 344, + 345, 346, 347, 0, 0, 0, 341, 0, 343, 344, + 345, 346, 347, 330, 331, 0, 0, 0, 0, 336, + 337, 338, 339, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 343, + 344, 345, 346, 347 }; const short parser::yycheck_[] = { - 0, 138, 140, 74, 23, 225, 6, 7, 406, 44, - 406, 11, 3, 4, 406, 44, 113, 114, 116, 68, - 41, 42, 68, 243, 31, 72, 73, 116, 0, 40, - 30, 74, 115, 44, 40, 44, 36, 37, 44, 69, - 78, 40, 42, 307, 74, 44, 40, 311, 94, 69, - 44, 42, 78, 11, 12, 13, 14, 15, 74, 17, - 18, 72, 68, 72, 75, 69, 72, 74, 76, 75, - 74, 71, 69, 72, 74, 68, 75, 74, 72, 114, - 68, 75, 94, 74, 69, 114, 44, 185, 109, 74, - 68, 228, 229, 68, 115, 116, 185, 118, 119, 36, - 37, 69, 113, 114, 113, 114, 74, 113, 114, 110, - 111, 112, 114, 69, 113, 114, 116, 109, 74, 113, - 114, 140, 40, 115, 68, 116, 44, 119, 19, 20, - 68, 22, 23, 69, 68, 533, 400, 533, 74, 139, - 69, 533, 82, 83, 40, 74, 72, 69, 44, 40, - 78, 40, 74, 44, 72, 44, 114, 75, 69, 230, - 69, 68, 524, 74, 526, 74, 528, 68, 108, 109, - 110, 111, 112, 118, 119, 68, 72, 397, 316, 75, - 68, 72, 72, 72, 75, 185, 75, 230, 74, 80, - 81, 68, 68, 68, 185, 113, 114, 417, 418, 68, - 68, 68, 68, 94, 95, 96, 97, 98, 99, 100, - 101, 102, 103, 104, 230, 68, 68, 113, 114, 68, - 76, 72, 113, 114, 113, 114, 226, 447, 40, 72, - 230, 495, 44, 497, 72, 72, 307, 72, 70, 230, - 311, 72, 68, 76, 244, 40, 69, 72, 76, 44, - 68, 114, 68, 324, 325, 68, 78, 328, 68, 68, - 72, 68, 360, 75, 307, 68, 77, 531, 311, 269, - 534, 360, 78, 493, 78, 74, 68, 72, 68, 68, - 75, 324, 325, 28, 78, 328, 73, 78, 508, 553, - 554, 307, 78, 78, 78, 311, 77, 316, 119, 77, - 68, 113, 114, 68, 68, 68, 73, 307, 324, 325, - 68, 311, 328, 40, 68, 68, 307, 44, 113, 114, - 311, 419, 420, 78, 324, 325, 78, 78, 328, 400, - 419, 420, 26, 324, 325, 406, 78, 328, 108, 109, - 110, 111, 112, 31, 230, 72, 78, 78, 75, 78, - 78, 74, 78, 69, 69, 69, 69, 400, 78, 78, - 360, 78, 11, 406, 501, 11, 11, 465, 328, 360, - 533, 74, -1, 40, 140, -1, 465, 44, 45, 46, - 47, 48, 139, -1, 400, -1, 113, 114, 55, -1, - 406, 140, 140, 140, 61, 62, 63, 64, 65, 66, - 400, -1, -1, -1, -1, 72, 406, 407, -1, 400, - -1, -1, -1, 80, 81, 406, -1, -1, -1, 419, - 420, 307, -1, -1, 495, 311, 497, 74, 419, 420, - -1, 230, -1, -1, -1, -1, -1, -1, 324, 325, - -1, -1, 328, -1, -1, -1, 113, 114, -1, -1, - -1, 31, 495, -1, 497, -1, -1, -1, -1, -1, - 531, -1, 533, 534, -1, 465, -1, -1, -1, -1, - -1, -1, -1, -1, 465, -1, -1, -1, -1, 495, - -1, 497, 553, 554, -1, -1, -1, 74, 531, 69, - 533, 534, 72, 73, -1, 495, -1, 497, -1, -1, - 500, -1, -1, -1, 495, -1, 497, -1, 307, -1, - 553, 554, 311, 74, 400, 531, -1, 533, 534, -1, - 406, -1, -1, 40, -1, 324, 325, 44, -1, 328, - -1, 531, -1, 533, 534, -1, -1, 553, 554, 74, - 531, -1, 533, 534, -1, -1, -1, -1, -1, -1, - -1, -1, -1, 553, 554, 72, -1, -1, 75, -1, - -1, -1, 553, 554, 144, 145, 146, 147, 148, 149, - 150, 151, 152, 153, -1, 155, 156, 157, 158, 159, - 160, 161, 162, 230, 164, -1, -1, -1, -1, 169, - -1, -1, -1, -1, -1, -1, 113, 114, -1, -1, - -1, 400, -1, -1, -1, -1, -1, 406, -1, 495, - -1, 497, -1, -1, 194, 195, 196, 197, 198, 199, - 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, - 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, - 220, -1, -1, 230, -1, 531, -1, 533, 534, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 307, -1, 242, -1, 311, -1, -1, 553, 554, 230, - -1, -1, -1, -1, -1, -1, 74, 324, 325, -1, - -1, 328, -1, 82, 83, 265, -1, -1, 74, 88, - 89, 90, 91, -1, -1, 230, 495, -1, 497, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, 108, - 109, 110, 111, 112, -1, -1, 296, -1, -1, -1, - 307, -1, -1, -1, 311, -1, -1, -1, 308, -1, - -1, -1, 531, -1, 533, 534, -1, 324, 325, -1, - 320, 328, -1, -1, -1, -1, 307, -1, -1, -1, - 311, -1, -1, 400, 553, 554, -1, -1, -1, 406, - -1, -1, -1, 324, 325, -1, -1, 328, -1, -1, - -1, -1, 307, 40, -1, -1, 311, 44, 45, 46, - 47, 48, -1, -1, 74, 365, -1, -1, 55, 324, - 325, -1, 74, 328, 61, 62, 63, 64, 65, 66, - 74, 381, -1, -1, -1, 72, 386, -1, 74, -1, - -1, -1, -1, 400, -1, -1, 396, -1, -1, 406, - -1, -1, -1, 403, -1, 405, -1, -1, 408, -1, - -1, -1, 230, 74, -1, -1, -1, -1, -1, 400, - -1, -1, -1, -1, 230, 406, 113, 114, 495, -1, - 497, -1, -1, -1, 434, 435, 436, 437, 438, 439, - 440, 441, 442, 443, 444, 400, -1, -1, -1, -1, - 450, 406, -1, -1, 82, 83, -1, 85, 86, 87, - 88, 89, 90, 91, 531, -1, 533, 534, -1, -1, - -1, -1, -1, 473, 474, 475, 476, 105, 106, 107, - 108, 109, 110, 111, 112, -1, 553, 554, 495, 307, - 497, -1, -1, 311, -1, -1, 496, -1, 498, 499, - -1, 307, -1, -1, -1, 311, 324, 325, -1, -1, - 328, -1, -1, -1, 495, -1, 497, -1, 324, 325, - 230, -1, 328, -1, 531, -1, 533, 534, 230, -1, - -1, -1, -1, -1, -1, 535, 230, -1, -1, -1, - 495, -1, 497, -1, 230, -1, 553, 554, -1, -1, - 531, -1, 533, 534, -1, -1, -1, 82, 83, -1, - -1, 86, 87, 88, 89, 90, 91, -1, -1, 230, - -1, -1, 553, 554, -1, -1, 531, -1, 533, 534, - -1, 106, 400, 108, 109, 110, 111, 112, 406, -1, - -1, -1, -1, -1, 400, -1, -1, 307, 553, 554, - 406, 311, -1, -1, -1, 307, -1, -1, -1, 311, - -1, -1, -1, 307, 324, 325, -1, 311, 328, -1, - -1, 307, 324, 325, -1, 311, 328, -1, -1, -1, - 324, 325, -1, -1, 328, -1, -1, -1, 324, 325, - -1, -1, 328, -1, -1, -1, 307, -1, -1, -1, - 311, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, 324, 325, -1, -1, 328, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 495, -1, 497, - -1, -1, -1, -1, -1, -1, -1, -1, -1, 495, - 400, 497, -1, -1, -1, -1, 406, 40, 400, -1, - -1, 44, -1, -1, 406, -1, 400, -1, -1, -1, - -1, -1, 406, 531, 400, 533, 534, -1, -1, -1, - 406, -1, -1, -1, -1, 531, -1, 533, 534, 72, - -1, -1, 75, -1, -1, 553, 554, 80, 81, 400, - -1, -1, -1, -1, -1, 406, -1, 553, 554, -1, - -1, 94, 95, 96, 97, 98, 99, 100, 101, 102, - 103, 104, -1, -1, -1, -1, -1, -1, -1, -1, - 113, 114, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 495, -1, 497, -1, -1, - -1, -1, -1, 495, -1, 497, -1, -1, -1, -1, - -1, 495, -1, 497, -1, -1, -1, -1, -1, 495, - -1, 497, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 531, -1, 533, 534, -1, -1, -1, -1, 531, - -1, 533, 534, -1, 495, -1, 497, 531, -1, 533, - 534, -1, -1, 553, 554, 531, -1, 533, 534, -1, - -1, 553, 554, -1, -1, -1, -1, 82, 83, 553, - 554, 86, 87, 88, 89, 90, 91, 553, 554, -1, - 531, 16, 533, 534, -1, -1, -1, -1, -1, -1, - 105, 106, 107, 108, 109, 110, 111, 112, -1, -1, - -1, -1, 553, 554, -1, 40, 41, 42, 43, 44, - 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, - 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, - 65, 66, 67, 68, 73, -1, -1, 72, 73, -1, - 79, 76, -1, 82, 83, 84, 85, 86, 87, 88, - 89, 90, 91, -1, -1, -1, -1, 92, 93, -1, - -1, 16, -1, -1, -1, -1, 105, 106, 107, 108, - 109, 110, 111, 112, 109, -1, -1, 112, 113, 114, - 115, 116, 117, 118, 119, 40, 41, 42, 43, 44, - 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, - 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, - 65, 66, 67, 68, -1, -1, -1, 72, -1, -1, - -1, 76, -1, 78, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 92, 93, -1, + 0, 145, 48, 235, 69, 235, 6, 7, 48, 3, + 4, 11, 42, 44, 48, 44, 46, 47, 22, 235, + 0, 67, 246, 247, 44, 71, 31, 67, 69, 29, + 79, 71, 110, 67, 34, 35, 79, 71, 116, 116, + 44, 145, 120, 43, 69, 67, 70, 70, 48, 71, + 69, 75, 98, 99, 48, 70, 76, 103, 98, 99, + 75, 70, 48, 103, 98, 99, 75, 67, 212, 103, + 75, 71, 76, 67, 70, 70, 300, 71, 95, 75, + 75, 67, 70, 83, 115, 71, 115, 75, 88, 83, + 11, 12, 13, 14, 15, 70, 17, 18, 98, 99, + 75, 70, 48, 103, 98, 99, 75, 79, 212, 103, + 156, 71, 98, 99, 79, 70, 156, 103, 262, 263, + 75, 67, 156, 44, 69, 71, 70, 70, 119, 120, + 176, 75, 75, 69, 156, 73, 176, 44, 69, 511, + 69, 513, 176, 515, 368, 145, 114, 115, 48, 73, + 74, 145, 98, 99, 34, 35, 156, 103, 262, 263, + 69, 78, 156, 79, 79, 48, 73, 67, 41, 42, + 156, 71, 69, 173, 48, 69, 176, 111, 112, 113, + 69, 325, 176, 48, 67, 69, 77, 69, 71, 235, + 176, 69, 69, 67, 115, 235, 77, 71, 98, 99, + 48, 235, 67, 103, 79, 69, 71, 114, 115, 69, + 156, 79, 212, 357, 73, 98, 99, 79, 212, 67, + 103, 325, 79, 71, 98, 99, 79, 73, 73, 103, + 176, 83, 84, 98, 99, 235, 236, 110, 103, 73, + 73, 235, 73, 116, 117, 73, 119, 120, 48, 235, + 98, 99, 69, 357, 478, 103, 156, 109, 110, 111, + 112, 113, 262, 263, 69, 48, 69, 67, 262, 263, + 69, 71, 69, 156, 69, 69, 176, 69, 69, 69, + 69, 505, 156, 69, 67, 69, 48, 28, 71, 235, + 522, 156, 522, 176, 115, 77, 120, 78, 98, 99, + 48, 301, 176, 103, 528, 67, 522, 78, 156, 71, + 73, 176, 69, 77, 69, 98, 99, 95, 69, 67, + 103, 545, 69, 71, 70, 325, 69, 115, 176, 69, + 79, 325, 69, 69, 26, 235, 98, 99, 83, 84, + 79, 103, 87, 88, 89, 90, 91, 92, 79, 349, + 98, 99, 235, 74, 79, 103, 156, 357, 31, 74, + 69, 235, 48, 357, 109, 110, 111, 112, 113, 369, + 235, 79, 79, 156, 79, 79, 176, 79, 69, 75, + 70, 67, 70, 48, 79, 71, 70, 235, 70, 11, + 79, 40, 79, 176, 156, 44, 11, 443, 11, 445, + 103, 522, 67, 443, 43, 445, 71, 176, 156, 443, + 44, 445, 98, 99, 176, 44, 44, 103, 44, 449, + 69, 443, -1, 445, 73, -1, -1, 76, 176, -1, + -1, -1, -1, 98, 99, 235, -1, -1, 103, -1, + -1, -1, 40, 443, -1, 445, 44, -1, 448, 443, + -1, 445, 235, -1, -1, -1, -1, 443, -1, 445, + -1, -1, -1, -1, -1, 114, 115, 40, -1, -1, + 156, 44, -1, 235, 520, 73, 522, 523, 76, -1, + 520, -1, 522, 523, -1, -1, 520, 235, 522, 523, + 176, 156, 109, 110, 111, 112, 113, 443, 520, 445, + 73, 523, -1, 76, -1, -1, 552, 553, -1, -1, + -1, 176, 552, 553, -1, -1, 114, 115, 552, 553, + 520, -1, 522, 523, -1, -1, 520, -1, 522, 523, + 552, 553, -1, -1, 520, -1, 522, 523, -1, -1, + -1, 114, 115, 443, -1, 445, -1, -1, -1, 235, + 40, -1, 552, 553, 44, -1, -1, 40, 552, 553, + 443, 44, 445, -1, -1, -1, 552, 553, -1, 443, + 235, 445, -1, -1, 520, -1, 522, 523, 443, -1, + 445, -1, -1, 73, -1, -1, 76, -1, -1, -1, + 73, -1, -1, 76, -1, 443, -1, 445, -1, -1, + -1, -1, -1, -1, -1, -1, 552, 553, -1, -1, + -1, 40, -1, -1, -1, 44, -1, -1, -1, -1, + 520, -1, 522, 523, 114, 115, -1, -1, -1, -1, + -1, 114, 115, -1, -1, -1, -1, 520, -1, 522, + 523, -1, -1, 443, 73, 445, 520, 76, 522, 523, + -1, -1, 552, 553, -1, 520, -1, 522, 523, -1, + 443, -1, 445, -1, -1, -1, -1, -1, -1, 552, + 553, -1, 520, -1, 522, 523, -1, -1, 552, 553, + -1, 443, -1, 445, -1, 114, 115, 552, 553, -1, + 68, -1, -1, -1, -1, 443, -1, 445, -1, -1, + -1, -1, 80, -1, 552, 553, -1, -1, -1, 40, + -1, -1, -1, 44, 45, 46, 47, 48, -1, -1, + 520, -1, 522, 523, -1, 56, -1, -1, -1, -1, + -1, 62, 63, 64, 65, 66, 67, 520, 69, 522, + 523, -1, 73, -1, -1, -1, 19, 20, -1, 22, + 23, -1, 552, 553, -1, -1, -1, 443, 520, 445, + 522, 523, -1, -1, -1, -1, -1, 40, -1, 552, + 553, 44, 520, -1, 522, 523, -1, 40, 443, -1, + 445, 44, -1, 114, 115, -1, -1, -1, 119, 120, + 552, 553, -1, 171, -1, -1, 174, 175, -1, -1, + 73, -1, -1, 76, 552, 553, -1, -1, 81, 82, + 73, 40, -1, 76, -1, 44, -1, 40, -1, -1, + -1, 44, 95, 96, 97, 98, 99, 100, 101, 102, + 103, 104, 105, -1, 520, -1, 522, 523, -1, -1, + -1, 114, 115, -1, 73, -1, -1, 76, -1, -1, + 73, 114, 115, 76, 232, 520, 234, 522, 523, 237, + -1, -1, -1, -1, -1, -1, 552, 553, -1, -1, + -1, -1, -1, -1, 252, 253, 254, 255, 256, 257, + 258, 259, -1, -1, -1, 114, 115, 552, 553, -1, + -1, 114, 115, 271, 272, 273, 274, 275, 276, 277, + -1, -1, -1, -1, 282, -1, -1, -1, 286, 287, + 288, 289, 290, 291, 292, 293, 294, 295, 296, -1, + -1, -1, -1, -1, -1, -1, 304, 305, 306, 307, + 308, 309, 310, 311, 312, -1, 314, 315, -1, -1, + 40, -1, -1, 321, 44, -1, -1, -1, -1, -1, + -1, 329, 330, 331, 332, 333, 334, 335, 336, 337, + 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, + -1, -1, -1, 73, -1, -1, 76, -1, -1, -1, + -1, 81, 82, -1, -1, -1, -1, -1, -1, 367, + 40, -1, 370, -1, 44, 95, 96, 97, 98, 99, + 100, 101, 102, 103, 104, 105, -1, -1, 386, 387, + 388, 389, 390, 40, 114, 115, -1, 44, 45, 46, + 47, 48, -1, 73, 40, -1, 76, -1, 44, 56, + -1, -1, -1, -1, -1, 62, 63, 64, 65, 66, + 67, -1, 420, -1, -1, -1, 73, -1, -1, -1, + -1, -1, -1, -1, 81, 82, -1, 73, -1, -1, + 76, -1, -1, -1, 114, 115, 444, -1, 446, 447, + 40, -1, -1, 451, 44, 45, 46, 47, 48, -1, + 16, -1, -1, -1, -1, 463, 56, 114, 115, -1, + -1, -1, 62, 63, 64, 65, 66, 67, 114, 115, + -1, 479, -1, 73, 40, 41, 42, 43, 44, 45, + 46, 47, 48, 491, 50, 51, 52, 53, 54, 55, + 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, + 66, 67, 68, 69, -1, -1, -1, 73, -1, -1, + 518, 77, -1, 79, 114, 115, 524, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 93, 94, -1, -1, 16, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 109, -1, -1, 112, 113, 114, - 115, 116, 117, 118, 119, 40, 41, 42, 43, 44, - 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, + -1, -1, -1, -1, 110, -1, -1, 113, 114, 115, + 116, 117, 118, 119, 120, 40, 41, 42, 43, 44, + 45, 46, 47, 48, -1, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, - 65, 66, 67, 68, 73, -1, -1, 72, -1, -1, - 79, 76, -1, 82, 83, 84, 85, 86, 87, 88, - 89, 90, 91, -1, -1, -1, -1, 92, 93, -1, - -1, 16, -1, -1, -1, -1, 105, 106, 107, 108, - 109, 110, 111, 112, 109, -1, -1, 112, 113, 114, - 115, 116, 117, 118, 119, 40, 41, 42, 43, 44, - 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, - 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, - 65, 66, 67, 68, -1, -1, -1, 72, -1, -1, - -1, 76, -1, -1, 40, -1, -1, -1, 44, 45, - 46, 47, 48, -1, -1, -1, -1, 92, 93, 55, - -1, -1, -1, -1, -1, 61, 62, 63, 64, 65, - 66, -1, 68, -1, 109, 11, 72, 112, 113, 114, - 115, 116, 117, 118, 119, 21, -1, -1, 24, 25, - -1, 27, 28, 29, 30, -1, 32, 33, 34, 35, - 36, 37, 38, 39, 40, -1, -1, -1, 44, 45, - 46, 47, 48, -1, -1, -1, -1, 113, 114, 55, - -1, -1, 118, 119, -1, 61, 62, 63, 64, 65, - 66, -1, -1, -1, 70, 71, 72, 11, -1, -1, - -1, -1, -1, -1, 80, 81, -1, 21, -1, -1, - 24, 25, -1, 27, 28, 29, 30, -1, 32, 33, - 34, 35, 36, 37, 38, 39, 40, -1, -1, -1, - 44, 45, 46, 47, 48, -1, -1, 113, 114, -1, - -1, 55, -1, -1, -1, -1, -1, 61, 62, 63, - 64, 65, 66, -1, -1, -1, 70, 71, 72, 12, - -1, -1, -1, -1, -1, -1, 80, 81, 21, -1, + 65, 66, 67, 68, 69, 74, -1, -1, 73, 74, + -1, 80, 77, -1, 83, 84, 85, 86, 87, 88, + 89, 90, 91, 92, -1, -1, -1, -1, 93, 94, + -1, -1, 16, -1, -1, -1, -1, 106, 107, 108, + 109, 110, 111, 112, 113, 110, -1, -1, 113, 114, + 115, 116, 117, 118, 119, 120, 40, 41, 42, 43, + 44, 45, 46, 47, 48, -1, 50, 51, 52, 53, + 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, + 64, 65, 66, 67, 68, 69, 74, -1, -1, 73, + -1, -1, 80, 77, -1, 83, 84, 85, 86, 87, + 88, 89, 90, 91, 92, -1, -1, -1, -1, 93, + 94, -1, -1, 16, -1, -1, -1, -1, 106, 107, + 108, 109, 110, 111, 112, 113, 110, -1, -1, 113, + 114, 115, 116, 117, 118, 119, 120, 40, 41, 42, + 43, 44, 45, 46, 47, 48, -1, 50, 51, 52, + 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, + 63, 64, 65, 66, 67, 68, 69, 74, -1, -1, + 73, -1, -1, 80, 77, -1, 83, 84, 85, 86, + 87, 88, 89, 90, 91, 92, -1, -1, -1, -1, + 93, 94, -1, -1, -1, -1, -1, -1, -1, 106, + 107, 108, 109, 110, 111, 112, 113, 110, 11, -1, + 113, 114, 115, 116, 117, 118, 119, 120, 21, -1, -1, 24, 25, -1, 27, 28, 29, 30, -1, 32, 33, 34, 35, 36, 37, 38, 39, 40, -1, -1, - -1, 44, 45, 46, 47, 48, -1, -1, -1, 113, - 114, -1, 55, -1, -1, -1, -1, -1, 61, 62, - 63, 64, 65, 66, -1, -1, -1, 70, -1, 72, - 12, -1, -1, -1, -1, -1, -1, 80, 81, 21, - -1, -1, 24, 25, -1, 27, 28, 29, 30, -1, - 32, 33, 34, 35, 36, 37, 38, 39, 40, -1, - -1, -1, 44, 45, 46, 47, 48, -1, -1, -1, - 113, 114, -1, 55, -1, -1, -1, -1, -1, 61, - 62, 63, 64, 65, 66, -1, -1, -1, 70, -1, - 72, -1, -1, -1, -1, -1, -1, -1, 80, 81, - 21, -1, -1, 24, 25, -1, 27, 28, 29, 30, - -1, 32, 33, 34, 35, 36, 37, 38, 39, 40, - -1, -1, -1, 44, 45, 46, 47, 48, -1, -1, - -1, 113, 114, -1, 55, -1, -1, -1, -1, -1, - 61, 62, 63, 64, 65, 66, -1, -1, -1, 70, - -1, 72, -1, -1, -1, -1, -1, -1, 69, 80, - 81, -1, -1, 74, -1, -1, -1, -1, 79, -1, - -1, 82, 83, 84, 85, 86, 87, 88, 89, 90, - 91, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 113, 114, 105, 106, 107, 108, 109, 110, - 111, 112, 69, -1, -1, -1, -1, 74, -1, -1, - -1, -1, 79, -1, -1, 82, 83, 84, 85, 86, - 87, 88, 89, 90, 91, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, 105, 106, - 107, 108, 109, 110, 111, 112, 69, -1, -1, -1, - -1, 74, -1, -1, -1, -1, 79, -1, -1, 82, - 83, 84, 85, 86, 87, 88, 89, 90, 91, -1, + -1, 44, 45, 46, 47, 48, 49, -1, -1, -1, + -1, -1, -1, 56, -1, -1, -1, -1, -1, 62, + 63, 64, 65, 66, 67, -1, -1, -1, 71, 72, + 73, 11, -1, -1, -1, -1, -1, -1, 81, 82, + -1, 21, -1, -1, 24, 25, -1, 27, 28, 29, + 30, -1, 32, 33, 34, 35, 36, 37, 38, 39, + 40, -1, -1, -1, 44, 45, 46, 47, 48, 49, + -1, 114, 115, -1, -1, -1, 56, -1, -1, -1, + -1, -1, 62, 63, 64, 65, 66, 67, -1, -1, + -1, 71, 72, 73, 12, -1, -1, -1, -1, -1, + -1, 81, 82, 21, -1, -1, 24, 25, -1, 27, + 28, 29, 30, -1, 32, 33, 34, 35, 36, 37, + 38, 39, 40, -1, -1, -1, 44, 45, 46, 47, + 48, 49, -1, -1, 114, 115, -1, -1, 56, -1, + -1, -1, -1, -1, 62, 63, 64, 65, 66, 67, + -1, -1, -1, 71, -1, 73, 12, -1, -1, -1, + -1, -1, -1, 81, 82, 21, -1, -1, 24, 25, + -1, 27, 28, 29, 30, -1, 32, 33, 34, 35, + 36, 37, 38, 39, 40, -1, -1, -1, 44, 45, + 46, 47, 48, 49, -1, -1, 114, 115, -1, -1, + 56, -1, -1, -1, -1, -1, 62, 63, 64, 65, + 66, 67, -1, -1, -1, 71, -1, 73, -1, -1, + -1, -1, -1, -1, -1, 81, 82, 21, -1, -1, + 24, 25, -1, 27, 28, 29, 30, -1, 32, 33, + 34, 35, 36, 37, 38, 39, 40, -1, -1, -1, + 44, 45, 46, 47, 48, 49, -1, -1, 114, 115, + -1, -1, 56, -1, -1, -1, -1, -1, 62, 63, + 64, 65, 66, 67, -1, -1, -1, 71, -1, 73, + -1, -1, -1, -1, -1, -1, 70, 81, 82, -1, + -1, 75, -1, -1, -1, -1, 80, -1, -1, 83, + 84, 85, 86, 87, 88, 89, 90, 91, 92, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 105, 106, 107, 108, 109, 110, 111, 112, - 69, -1, -1, -1, -1, 74, -1, -1, -1, -1, - 79, -1, -1, 82, 83, 84, 85, 86, 87, 88, - 89, 90, 91, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 69, -1, 105, 106, 107, 108, - 109, 110, 111, 112, 79, -1, -1, 82, 83, 84, - 85, 86, 87, 88, 89, 90, 91, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, 69, -1, - 105, 106, 107, 108, 109, 110, 111, 112, 79, -1, - -1, 82, 83, 84, 85, 86, 87, 88, 89, 90, - 91, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 69, -1, 105, 106, 107, 108, 109, 110, - 111, 112, 79, -1, -1, 82, 83, 84, 85, 86, - 87, 88, 89, 90, 91, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, 69, -1, 105, 106, - 107, 108, 109, 110, 111, 112, 79, -1, -1, 82, - 83, 84, 85, 86, 87, 88, 89, 90, 91, -1, + 114, 115, 106, 107, 108, 109, 110, 111, 112, 113, + 70, -1, -1, -1, -1, 75, -1, -1, -1, -1, + 80, -1, -1, 83, 84, 85, 86, 87, 88, 89, + 90, 91, 92, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 106, 107, 108, 109, + 110, 111, 112, 113, 70, -1, -1, -1, -1, 75, + -1, -1, -1, -1, 80, -1, -1, 83, 84, 85, + 86, 87, 88, 89, 90, 91, 92, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 69, -1, 105, 106, 107, 108, 109, 110, 111, 112, - 79, -1, -1, 82, 83, 84, 85, 86, 87, 88, - 89, 90, 91, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 69, -1, 105, 106, 107, 108, - 109, 110, 111, 112, 79, -1, -1, 82, 83, 84, - 85, 86, 87, 88, 89, 90, 91, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, 69, -1, - 105, 106, 107, 108, 109, 110, 111, 112, 79, -1, - -1, 82, 83, 84, 85, 86, 87, 88, 89, 90, - 91, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 69, -1, 105, 106, 107, 108, 109, 110, - 111, 112, 79, -1, -1, 82, 83, 84, 85, 86, - 87, 88, 89, 90, 91, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, 69, -1, 105, 106, - 107, 108, 109, 110, 111, 112, 79, -1, -1, 82, - 83, 84, 85, 86, 87, 88, 89, 90, 91, -1, + 106, 107, 108, 109, 110, 111, 112, 113, 70, -1, + -1, -1, -1, 75, -1, -1, -1, -1, 80, -1, + -1, 83, 84, 85, 86, 87, 88, 89, 90, 91, + 92, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 70, -1, 106, 107, 108, 109, 110, 111, + 112, 113, 80, -1, -1, 83, 84, 85, 86, 87, + 88, 89, 90, 91, 92, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 70, -1, 106, 107, + 108, 109, 110, 111, 112, 113, 80, -1, -1, 83, + 84, 85, 86, 87, 88, 89, 90, 91, 92, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 69, -1, 105, 106, 107, 108, 109, 110, 111, 112, - 79, -1, -1, 82, 83, 84, 85, 86, 87, 88, - 89, 90, 91, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 69, -1, 105, 106, 107, 108, - 109, 110, 111, 112, 79, -1, -1, 82, 83, 84, - 85, 86, 87, 88, 89, 90, 91, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, 69, -1, - 105, 106, 107, 108, 109, 110, 111, 112, 79, -1, - -1, 82, 83, 84, 85, 86, 87, 88, 89, 90, - 91, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 69, -1, 105, 106, 107, 108, 109, 110, - 111, 112, 79, -1, -1, 82, 83, 84, 85, 86, - 87, 88, 89, 90, 91, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, 69, -1, 105, 106, - 107, 108, 109, 110, 111, 112, 79, -1, -1, 82, - 83, 84, 85, 86, 87, 88, 89, 90, 91, -1, + 70, -1, 106, 107, 108, 109, 110, 111, 112, 113, + 80, -1, -1, 83, 84, 85, 86, 87, 88, 89, + 90, 91, 92, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, 70, -1, 106, 107, 108, 109, + 110, 111, 112, 113, 80, -1, -1, 83, 84, 85, + 86, 87, 88, 89, 90, 91, 92, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, 70, -1, + 106, 107, 108, 109, 110, 111, 112, 113, 80, -1, + -1, 83, 84, 85, 86, 87, 88, 89, 90, 91, + 92, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 70, -1, 106, 107, 108, 109, 110, 111, + 112, 113, 80, -1, -1, 83, 84, 85, 86, 87, + 88, 89, 90, 91, 92, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 70, -1, 106, 107, + 108, 109, 110, 111, 112, 113, 80, -1, -1, 83, + 84, 85, 86, 87, 88, 89, 90, 91, 92, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 69, -1, 105, 106, 107, 108, 109, 110, 111, 112, - 79, -1, -1, 82, 83, 84, 85, 86, 87, 88, - 89, 90, 91, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 69, -1, 105, 106, 107, 108, - 109, 110, 111, 112, 79, -1, -1, 82, 83, 84, - 85, 86, 87, 88, 89, 90, 91, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, 69, -1, - 105, 106, 107, 108, 109, 110, 111, 112, 79, -1, - -1, 82, 83, 84, 85, 86, 87, 88, 89, 90, - 91, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 69, -1, 105, 106, 107, 108, 109, 110, - 111, 112, 79, -1, -1, 82, 83, 84, 85, 86, - 87, 88, 89, 90, 91, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, 69, -1, 105, 106, - 107, 108, 109, 110, 111, 112, 79, -1, -1, 82, - 83, 84, 85, 86, 87, 88, 89, 90, 91, -1, + 70, -1, 106, 107, 108, 109, 110, 111, 112, 113, + 80, -1, -1, 83, 84, 85, 86, 87, 88, 89, + 90, 91, 92, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, 70, -1, 106, 107, 108, 109, + 110, 111, 112, 113, 80, -1, -1, 83, 84, 85, + 86, 87, 88, 89, 90, 91, 92, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, 70, -1, + 106, 107, 108, 109, 110, 111, 112, 113, 80, -1, + -1, 83, 84, 85, 86, 87, 88, 89, 90, 91, + 92, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 70, -1, 106, 107, 108, 109, 110, 111, + 112, 113, 80, -1, -1, 83, 84, 85, 86, 87, + 88, 89, 90, 91, 92, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 70, -1, 106, 107, + 108, 109, 110, 111, 112, 113, 80, -1, -1, 83, + 84, 85, 86, 87, 88, 89, 90, 91, 92, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 69, -1, 105, 106, 107, 108, 109, 110, 111, 112, - 79, -1, -1, 82, 83, 84, 85, 86, 87, 88, - 89, 90, 91, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 69, -1, 105, 106, 107, 108, - 109, 110, 111, 112, 79, -1, -1, 82, 83, 84, - 85, 86, 87, 88, 89, 90, 91, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, 69, -1, - 105, 106, 107, 108, 109, 110, 111, 112, 79, -1, - -1, 82, 83, 84, 85, 86, 87, 88, 89, 90, - 91, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 69, -1, 105, 106, 107, 108, 109, 110, - 111, 112, 79, -1, -1, 82, 83, 84, 85, 86, - 87, 88, 89, 90, 91, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, 69, -1, 105, 106, - 107, 108, 109, 110, 111, 112, 79, -1, -1, 82, - 83, 84, 85, 86, 87, 88, 89, 90, 91, -1, + 70, -1, 106, 107, 108, 109, 110, 111, 112, 113, + 80, -1, -1, 83, 84, 85, 86, 87, 88, 89, + 90, 91, 92, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, 70, -1, 106, 107, 108, 109, + 110, 111, 112, 113, 80, -1, -1, 83, 84, 85, + 86, 87, 88, 89, 90, 91, 92, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, 70, -1, + 106, 107, 108, 109, 110, 111, 112, 113, 80, -1, + -1, 83, 84, 85, 86, 87, 88, 89, 90, 91, + 92, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 70, -1, 106, 107, 108, 109, 110, 111, + 112, 113, 80, -1, -1, 83, 84, 85, 86, 87, + 88, 89, 90, 91, 92, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 70, -1, 106, 107, + 108, 109, 110, 111, 112, 113, 80, -1, -1, 83, + 84, 85, 86, 87, 88, 89, 90, 91, 92, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 69, -1, 105, 106, 107, 108, 109, 110, 111, 112, - 79, -1, -1, 82, 83, 84, 85, 86, 87, 88, - 89, 90, 91, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 69, -1, 105, 106, 107, 108, - 109, 110, 111, 112, 79, -1, -1, 82, 83, 84, - 85, 86, 87, 88, 89, 90, 91, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, 69, -1, - 105, 106, 107, 108, 109, 110, 111, 112, 79, -1, - -1, 82, 83, 84, 85, 86, 87, 88, 89, 90, - 91, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 105, 106, 107, 108, 109, 110, - 111, 112, 73, -1, -1, -1, -1, -1, 79, -1, - -1, 82, 83, 84, 85, 86, 87, 88, 89, 90, - 91, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 105, 106, 107, 108, 109, 110, - 111, 112, 73, -1, -1, -1, -1, -1, 79, -1, - -1, 82, 83, 84, 85, 86, 87, 88, 89, 90, - 91, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 105, 106, 107, 108, 109, 110, - 111, 112, 73, -1, -1, -1, -1, -1, 79, -1, - -1, 82, 83, 84, 85, 86, 87, 88, 89, 90, - 91, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 105, 106, 107, 108, 109, 110, - 111, 112, 73, -1, -1, -1, -1, -1, 79, -1, - -1, 82, 83, 84, 85, 86, 87, 88, 89, 90, - 91, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 105, 106, 107, 108, 109, 110, - 111, 112, 73, -1, -1, -1, -1, -1, 79, -1, - -1, 82, 83, 84, 85, 86, 87, 88, 89, 90, - 91, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 105, 106, 107, 108, 109, 110, - 111, 112, 73, -1, -1, -1, -1, -1, 79, -1, - -1, 82, 83, 84, 85, 86, 87, 88, 89, 90, - 91, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 105, 106, 107, 108, 109, 110, - 111, 112, 73, -1, -1, -1, -1, -1, 79, -1, - -1, 82, 83, 84, 85, 86, 87, 88, 89, 90, - 91, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 105, 106, 107, 108, 109, 110, - 111, 112, 73, -1, -1, -1, -1, -1, 79, -1, - -1, 82, 83, 84, 85, 86, 87, 88, 89, 90, - 91, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 105, 106, 107, 108, 109, 110, - 111, 112, 74, -1, -1, -1, -1, 79, -1, -1, - 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, + 70, -1, 106, 107, 108, 109, 110, 111, 112, 113, + 80, -1, -1, 83, 84, 85, 86, 87, 88, 89, + 90, 91, 92, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, 70, -1, 106, 107, 108, 109, + 110, 111, 112, 113, 80, -1, -1, 83, 84, 85, + 86, 87, 88, 89, 90, 91, 92, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, 70, -1, + 106, 107, 108, 109, 110, 111, 112, 113, 80, -1, + -1, 83, 84, 85, 86, 87, 88, 89, 90, 91, + 92, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 70, -1, 106, 107, 108, 109, 110, 111, + 112, 113, 80, -1, -1, 83, 84, 85, 86, 87, + 88, 89, 90, 91, 92, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 70, -1, 106, 107, + 108, 109, 110, 111, 112, 113, 80, -1, -1, 83, + 84, 85, 86, 87, 88, 89, 90, 91, 92, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, 105, 106, 107, 108, 109, 110, 111, - 112, 74, -1, -1, -1, -1, 79, -1, -1, 82, - 83, 84, 85, 86, 87, 88, 89, 90, 91, -1, + 70, -1, 106, 107, 108, 109, 110, 111, 112, 113, + 80, -1, -1, 83, 84, 85, 86, 87, 88, 89, + 90, 91, 92, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, 70, -1, 106, 107, 108, 109, + 110, 111, 112, 113, 80, -1, -1, 83, 84, 85, + 86, 87, 88, 89, 90, 91, 92, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, 70, -1, + 106, 107, 108, 109, 110, 111, 112, 113, 80, -1, + -1, 83, 84, 85, 86, 87, 88, 89, 90, 91, + 92, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 70, -1, 106, 107, 108, 109, 110, 111, + 112, 113, 80, -1, -1, 83, 84, 85, 86, 87, + 88, 89, 90, 91, 92, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 70, -1, 106, 107, + 108, 109, 110, 111, 112, 113, 80, -1, -1, 83, + 84, 85, 86, 87, 88, 89, 90, 91, 92, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 105, 106, 107, 108, 109, 110, 111, 112, - 74, -1, -1, -1, -1, 79, -1, -1, 82, 83, - 84, 85, 86, 87, 88, 89, 90, 91, -1, -1, + -1, -1, 106, 107, 108, 109, 110, 111, 112, 113, + 74, -1, -1, -1, -1, -1, 80, -1, -1, 83, + 84, 85, 86, 87, 88, 89, 90, 91, 92, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 105, 106, 107, 108, 109, 110, 111, 112, 77, - -1, 79, -1, -1, 82, 83, 84, 85, 86, 87, - 88, 89, 90, 91, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 105, 106, 107, - 108, 109, 110, 111, 112, 78, 79, -1, -1, 82, - 83, 84, 85, 86, 87, 88, 89, 90, 91, -1, + -1, -1, 106, 107, 108, 109, 110, 111, 112, 113, + 74, -1, -1, -1, -1, -1, 80, -1, -1, 83, + 84, 85, 86, 87, 88, 89, 90, 91, 92, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 105, 106, 107, 108, 109, 110, 111, 112, - 78, 79, -1, -1, 82, 83, 84, 85, 86, 87, - 88, 89, 90, 91, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 105, 106, 107, - 108, 109, 110, 111, 112, 78, 79, -1, -1, 82, - 83, 84, 85, 86, 87, 88, 89, 90, 91, 79, - -1, -1, 82, 83, 84, 85, 86, 87, 88, 89, - 90, 91, 105, 106, 107, 108, 109, 110, 111, 112, - -1, -1, -1, -1, -1, 105, 106, 107, 108, 109, - 110, 111, 112, 82, 83, -1, -1, 86, 87, 88, - 89, 90, 91, 82, 83, -1, -1, 86, 87, 88, - 89, 90, 91, -1, -1, -1, -1, 106, 107, 108, - 109, 110, 111, 112, -1, -1, -1, -1, -1, 108, - 109, 110, 111, 112 + -1, -1, 106, 107, 108, 109, 110, 111, 112, 113, + 74, -1, -1, -1, -1, -1, 80, -1, -1, 83, + 84, 85, 86, 87, 88, 89, 90, 91, 92, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 106, 107, 108, 109, 110, 111, 112, 113, + 74, -1, -1, -1, -1, -1, 80, -1, -1, 83, + 84, 85, 86, 87, 88, 89, 90, 91, 92, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 106, 107, 108, 109, 110, 111, 112, 113, + 74, -1, -1, -1, -1, -1, 80, -1, -1, 83, + 84, 85, 86, 87, 88, 89, 90, 91, 92, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 106, 107, 108, 109, 110, 111, 112, 113, + 74, -1, -1, -1, -1, -1, 80, -1, -1, 83, + 84, 85, 86, 87, 88, 89, 90, 91, 92, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 106, 107, 108, 109, 110, 111, 112, 113, + 74, -1, -1, -1, -1, -1, 80, -1, -1, 83, + 84, 85, 86, 87, 88, 89, 90, 91, 92, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 106, 107, 108, 109, 110, 111, 112, 113, + 75, -1, -1, -1, -1, 80, -1, -1, 83, 84, + 85, 86, 87, 88, 89, 90, 91, 92, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, 106, 107, 108, 109, 110, 111, 112, 113, 75, + -1, -1, -1, -1, 80, -1, -1, 83, 84, 85, + 86, 87, 88, 89, 90, 91, 92, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 106, 107, 108, 109, 110, 111, 112, 113, 75, -1, + -1, -1, -1, 80, -1, -1, 83, 84, 85, 86, + 87, 88, 89, 90, 91, 92, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, 106, + 107, 108, 109, 110, 111, 112, 113, 78, -1, 80, + -1, -1, 83, 84, 85, 86, 87, 88, 89, 90, + 91, 92, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 106, 107, 108, 109, 110, + 111, 112, 113, 79, 80, -1, -1, 83, 84, 85, + 86, 87, 88, 89, 90, 91, 92, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 106, 107, 108, 109, 110, 111, 112, 113, 79, 80, + -1, -1, 83, 84, 85, 86, 87, 88, 89, 90, + 91, 92, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 106, 107, 108, 109, 110, + 111, 112, 113, 79, 80, -1, -1, 83, 84, 85, + 86, 87, 88, 89, 90, 91, 92, 80, -1, -1, + 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, + 106, 107, 108, 109, 110, 111, 112, 113, -1, -1, + -1, -1, -1, 106, 107, 108, 109, 110, 111, 112, + 113, 83, 84, -1, 86, 87, 88, 89, 90, 91, + 92, 83, 84, -1, -1, 87, 88, 89, 90, 91, + 92, -1, -1, -1, 106, 107, 108, 109, 110, 111, + 112, 113, -1, -1, 106, 107, 108, 109, 110, 111, + 112, 113, 83, 84, -1, -1, 87, 88, 89, 90, + 91, 92, 83, 84, -1, -1, 87, 88, 89, 90, + 91, 92, -1, -1, -1, -1, 107, 108, 109, 110, + 111, 112, 113, -1, -1, -1, 107, -1, 109, 110, + 111, 112, 113, 83, 84, -1, -1, -1, -1, 89, + 90, 91, 92, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, + 110, 111, 112, 113 }; const unsigned char parser::yystos_[] = { - 0, 11, 12, 13, 14, 15, 17, 18, 44, 114, - 130, 131, 132, 133, 134, 135, 136, 137, 221, 113, - 114, 222, 222, 68, 221, 221, 0, 132, 133, 134, - 68, 94, 78, 78, 115, 224, 68, 68, 182, 183, - 221, 16, 40, 41, 42, 43, 45, 46, 47, 48, - 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, - 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, - 72, 76, 92, 93, 109, 112, 114, 116, 117, 118, - 119, 167, 172, 173, 174, 175, 176, 177, 178, 179, - 180, 181, 187, 188, 189, 190, 191, 192, 193, 194, - 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, - 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, - 215, 216, 217, 218, 219, 221, 222, 223, 224, 225, - 226, 227, 228, 229, 230, 69, 182, 182, 69, 74, - 94, 72, 221, 222, 68, 68, 68, 68, 68, 68, - 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, - 68, 68, 68, 167, 72, 73, 221, 167, 167, 68, - 72, 118, 119, 178, 179, 193, 199, 200, 201, 202, - 203, 204, 207, 208, 210, 211, 214, 215, 216, 217, - 221, 222, 114, 78, 79, 82, 83, 84, 85, 86, - 87, 88, 89, 90, 91, 105, 106, 107, 108, 109, - 110, 111, 112, 72, 72, 72, 72, 72, 72, 72, - 72, 75, 180, 181, 221, 68, 76, 78, 69, 69, - 70, 143, 183, 221, 109, 184, 223, 224, 227, 228, - 229, 230, 72, 68, 76, 167, 167, 167, 167, 167, - 167, 167, 167, 167, 167, 69, 167, 167, 167, 167, - 167, 167, 167, 167, 69, 74, 167, 167, 75, 76, - 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, - 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, - 167, 167, 167, 167, 167, 167, 72, 167, 44, 114, - 220, 167, 185, 186, 221, 143, 143, 11, 21, 24, + 0, 11, 12, 13, 14, 15, 17, 18, 44, 115, + 131, 132, 133, 134, 135, 136, 137, 222, 114, 115, + 223, 223, 69, 222, 222, 0, 133, 134, 135, 69, + 79, 79, 116, 225, 69, 69, 183, 184, 222, 70, + 183, 183, 70, 75, 95, 79, 70, 70, 71, 143, + 184, 222, 41, 42, 110, 117, 119, 120, 185, 224, + 225, 228, 229, 230, 231, 143, 143, 11, 21, 24, 25, 27, 28, 29, 30, 32, 33, 34, 35, 36, - 37, 38, 39, 71, 80, 81, 138, 139, 141, 142, - 143, 145, 146, 147, 148, 149, 150, 151, 152, 153, - 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, - 164, 165, 166, 169, 170, 171, 178, 179, 207, 208, - 211, 221, 167, 185, 221, 74, 69, 69, 69, 69, - 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, - 69, 74, 69, 167, 73, 221, 77, 73, 73, 73, - 73, 73, 73, 73, 73, 69, 74, 68, 12, 138, - 140, 167, 78, 68, 138, 68, 68, 68, 68, 109, - 224, 228, 77, 78, 78, 78, 167, 68, 68, 211, - 211, 71, 139, 78, 78, 78, 78, 78, 19, 20, - 22, 23, 80, 81, 94, 95, 96, 97, 98, 99, - 100, 101, 102, 103, 104, 73, 69, 68, 167, 167, - 74, 73, 167, 167, 185, 12, 138, 78, 167, 28, - 167, 144, 169, 170, 171, 211, 221, 167, 77, 77, - 78, 185, 185, 68, 68, 68, 68, 167, 167, 167, - 167, 167, 167, 167, 167, 167, 167, 167, 73, 185, - 69, 69, 167, 68, 69, 69, 68, 69, 78, 31, - 74, 69, 69, 69, 167, 167, 167, 167, 68, 69, - 69, 185, 138, 167, 138, 167, 168, 167, 221, 143, - 78, 78, 69, 69, 74, 69, 74, 69, 74, 185, - 69, 26, 69, 78, 69, 31, 78, 78, 185, 186, - 78, 186, 78, 186, 69, 138, 78, 144, 138, 167, - 69, 69, 69, 69, 69, 78, 78, 78, 138, 138 + 37, 38, 39, 40, 45, 46, 47, 48, 49, 56, + 62, 63, 64, 65, 66, 67, 72, 73, 81, 82, + 115, 138, 139, 141, 142, 143, 145, 146, 147, 148, + 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, + 159, 160, 161, 162, 163, 164, 165, 166, 167, 170, + 171, 172, 179, 180, 181, 182, 194, 200, 201, 202, + 203, 204, 205, 208, 209, 212, 215, 216, 217, 218, + 222, 223, 119, 120, 12, 138, 140, 16, 43, 50, + 51, 52, 53, 54, 55, 57, 58, 59, 60, 61, + 68, 69, 73, 77, 93, 94, 110, 113, 118, 168, + 173, 174, 175, 176, 177, 178, 179, 180, 188, 189, + 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, + 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, + 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, + 220, 222, 223, 224, 225, 226, 227, 228, 229, 230, + 231, 79, 69, 138, 69, 69, 69, 69, 110, 225, + 229, 78, 79, 79, 79, 168, 69, 69, 73, 222, + 223, 222, 69, 69, 69, 69, 69, 69, 69, 73, + 179, 180, 212, 212, 72, 139, 79, 79, 79, 79, + 79, 73, 73, 73, 73, 73, 73, 73, 19, 20, + 22, 23, 73, 76, 81, 82, 95, 96, 97, 98, + 99, 100, 101, 102, 103, 104, 105, 181, 182, 222, + 69, 77, 12, 138, 69, 69, 69, 69, 69, 69, + 69, 69, 69, 69, 69, 69, 168, 74, 222, 168, + 168, 69, 208, 209, 211, 212, 222, 115, 79, 80, + 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, + 106, 107, 108, 109, 110, 111, 112, 113, 76, 77, + 168, 28, 168, 144, 170, 171, 172, 212, 222, 168, + 78, 78, 79, 168, 186, 187, 186, 73, 69, 77, + 95, 168, 168, 168, 168, 168, 168, 168, 168, 168, + 168, 168, 168, 168, 168, 168, 69, 69, 69, 69, + 73, 168, 115, 221, 168, 168, 168, 168, 168, 168, + 168, 168, 168, 168, 168, 186, 222, 168, 168, 168, + 168, 168, 168, 168, 168, 168, 70, 168, 168, 70, + 75, 168, 168, 168, 168, 168, 168, 168, 168, 168, + 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, + 168, 44, 222, 70, 69, 70, 79, 31, 75, 70, + 70, 75, 70, 168, 186, 222, 168, 70, 70, 70, + 70, 70, 70, 75, 74, 74, 74, 74, 74, 74, + 74, 74, 168, 168, 168, 168, 74, 70, 69, 75, + 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, + 168, 78, 138, 168, 138, 168, 169, 168, 222, 143, + 79, 168, 79, 74, 70, 69, 79, 168, 74, 70, + 70, 75, 70, 75, 70, 75, 186, 168, 75, 168, + 26, 70, 79, 70, 31, 74, 186, 70, 69, 79, + 79, 186, 187, 79, 187, 79, 187, 70, 70, 168, + 138, 79, 144, 138, 168, 69, 70, 186, 70, 70, + 70, 70, 70, 70, 186, 70, 79, 79, 79, 138, + 138, 70 }; const unsigned char parser::yyr1_[] = { - 0, 129, 130, 130, 131, 131, 131, 131, 131, 131, - 132, 133, 134, 134, 134, 134, 134, 135, 136, 137, - 137, 137, 138, 138, 138, 138, 138, 138, 138, 138, + 0, 130, 131, 131, 132, 132, 132, 132, 132, 132, + 133, 134, 135, 135, 135, 135, 136, 137, 137, 137, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, - 138, 138, 138, 138, 138, 139, 139, 140, 140, 141, - 141, 142, 142, 143, 143, 144, 144, 144, 144, 145, - 145, 146, 146, 146, 147, 148, 148, 149, 150, 150, - 151, 151, 152, 153, 154, 155, 156, 157, 158, 158, - 159, 160, 160, 161, 162, 163, 164, 164, 165, 166, - 167, 167, 167, 168, 168, 169, 169, 169, 169, 169, - 169, 169, 169, 169, 169, 169, 170, 170, 171, 171, - 172, 173, 173, 173, 173, 173, 173, 173, 173, 173, - 173, 173, 173, 173, 173, 173, 173, 173, 173, 174, - 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, - 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, - 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, - 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, - 174, 174, 174, 174, 174, 175, 176, 176, 176, 176, - 177, 178, 178, 179, 179, 180, 180, 180, 180, 181, - 181, 182, 182, 182, 182, 182, 183, 184, 184, 184, - 184, 184, 184, 185, 185, 186, 186, 187, 188, 189, - 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, - 200, 201, 202, 203, 204, 205, 206, 206, 207, 207, - 207, 207, 207, 207, 207, 207, 208, 209, 210, 211, - 211, 211, 211, 211, 211, 211, 211, 211, 212, 213, - 214, 215, 216, 217, 218, 219, 220, 221, 221, 222, - 222, 223, 224, 225, 226, 227, 227, 228, 228, 229, - 230 + 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, + 138, 138, 138, 138, 139, 139, 140, 140, 141, 141, + 142, 142, 143, 143, 144, 144, 144, 144, 145, 145, + 146, 147, 147, 147, 148, 149, 149, 150, 151, 151, + 152, 152, 153, 154, 155, 156, 157, 158, 159, 159, + 160, 161, 161, 162, 163, 164, 165, 165, 166, 167, + 168, 168, 168, 169, 169, 170, 170, 170, 170, 170, + 170, 170, 170, 170, 170, 170, 171, 171, 172, 172, + 173, 174, 174, 174, 174, 174, 174, 174, 174, 174, + 174, 174, 174, 174, 174, 174, 174, 174, 174, 175, + 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, + 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, + 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, + 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, + 175, 175, 175, 175, 175, 176, 177, 177, 177, 177, + 178, 179, 179, 180, 180, 181, 181, 181, 181, 182, + 182, 183, 183, 183, 183, 183, 184, 185, 185, 185, + 185, 185, 185, 186, 186, 187, 187, 188, 189, 190, + 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, + 201, 202, 203, 204, 205, 206, 207, 207, 208, 208, + 208, 208, 208, 208, 208, 208, 209, 210, 211, 212, + 212, 212, 212, 212, 212, 212, 212, 212, 213, 214, + 215, 216, 217, 218, 219, 220, 221, 222, 222, 223, + 223, 224, 225, 226, 227, 228, 228, 229, 229, 230, + 231 }; const signed char parser::yyr2_[] = { 0, 2, 1, 0, 2, 2, 2, 1, 1, 1, - 3, 3, 1, 1, 1, 1, 1, 5, 4, 5, - 6, 6, 1, 1, 1, 1, 1, 1, 1, 1, + 3, 3, 1, 1, 1, 1, 5, 5, 6, 6, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, - 1, 1, 1, 1, 1, 1, 1, 2, 1, 2, - 1, 3, 2, 3, 2, 1, 1, 1, 0, 2, - 2, 2, 2, 2, 6, 8, 6, 3, 8, 6, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 1, 1, 2, 1, 2, 1, + 3, 2, 3, 2, 1, 1, 1, 0, 2, 2, + 5, 2, 2, 2, 6, 8, 6, 3, 8, 6, 8, 6, 2, 5, 7, 5, 7, 9, 7, 9, 5, 3, 3, 2, 2, 2, 3, 2, 5, 5, 1, 1, 1, 1, 0, 3, 3, 3, 3, 3, @@ -5486,34 +5455,34 @@ namespace xsk { namespace arc { namespace t6 { const short parser::yyrline_[] = { - 0, 294, 294, 295, 299, 301, 303, 305, 307, 309, - 314, 318, 323, 324, 325, 326, 327, 331, 336, 341, - 343, 345, 350, 351, 352, 353, 354, 355, 356, 357, - 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, - 368, 369, 370, 371, 372, 376, 377, 381, 383, 388, - 390, 395, 396, 400, 401, 405, 407, 409, 412, 416, - 418, 423, 425, 427, 432, 437, 439, 444, 449, 451, - 456, 458, 463, 468, 473, 478, 483, 488, 493, 495, - 500, 505, 507, 512, 517, 522, 527, 529, 534, 539, - 544, 545, 546, 550, 551, 555, 557, 559, 561, 563, - 565, 567, 569, 571, 573, 575, 580, 582, 587, 589, - 594, 599, 601, 603, 605, 607, 609, 611, 613, 615, - 617, 619, 621, 623, 625, 627, 629, 631, 633, 638, - 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, - 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, - 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, - 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, - 679, 680, 681, 682, 683, 687, 692, 694, 696, 698, - 703, 708, 709, 712, 713, 717, 719, 721, 723, 728, - 730, 735, 737, 739, 741, 744, 748, 753, 754, 755, - 756, 757, 758, 762, 765, 769, 771, 776, 781, 786, - 791, 796, 801, 806, 811, 816, 821, 826, 831, 836, - 841, 846, 851, 856, 861, 866, 871, 873, 878, 880, - 882, 884, 886, 888, 890, 892, 897, 902, 907, 912, - 913, 914, 915, 916, 917, 918, 919, 920, 924, 929, - 934, 939, 944, 949, 954, 959, 964, 969, 971, 976, - 978, 983, 988, 993, 998, 1003, 1005, 1010, 1012, 1017, - 1022 + 0, 295, 295, 296, 300, 302, 304, 306, 308, 310, + 315, 319, 324, 325, 326, 327, 331, 336, 338, 340, + 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, + 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, + 365, 366, 367, 368, 372, 373, 377, 379, 384, 386, + 391, 392, 396, 397, 401, 403, 405, 408, 412, 414, + 419, 424, 426, 428, 433, 438, 440, 445, 450, 452, + 457, 459, 464, 469, 474, 479, 484, 489, 494, 496, + 501, 506, 508, 513, 518, 523, 528, 530, 535, 540, + 545, 546, 547, 551, 552, 556, 558, 560, 562, 564, + 566, 568, 570, 572, 574, 576, 581, 583, 588, 590, + 595, 600, 602, 604, 606, 608, 610, 612, 614, 616, + 618, 620, 622, 624, 626, 628, 630, 632, 634, 639, + 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, + 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, + 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, + 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, + 680, 681, 682, 683, 684, 688, 693, 695, 697, 699, + 704, 709, 710, 713, 714, 718, 720, 722, 724, 729, + 731, 736, 738, 740, 742, 745, 749, 754, 755, 756, + 757, 758, 759, 763, 766, 770, 772, 777, 782, 787, + 792, 797, 802, 807, 812, 817, 822, 827, 832, 837, + 842, 847, 852, 857, 862, 867, 872, 874, 879, 881, + 883, 885, 887, 889, 891, 893, 898, 903, 908, 913, + 914, 915, 916, 917, 918, 919, 920, 921, 925, 930, + 935, 940, 945, 950, 955, 960, 965, 970, 972, 977, + 979, 984, 989, 994, 999, 1004, 1006, 1011, 1013, 1018, + 1023 }; void @@ -5546,9 +5515,9 @@ namespace xsk { namespace arc { namespace t6 { #line 13 "parser.ypp" } } } // xsk::arc::t6 -#line 5550 "parser.cpp" +#line 5519 "parser.cpp" -#line 1026 "parser.ypp" +#line 1027 "parser.ypp" void xsk::arc::t6::parser::error(const xsk::arc::location& loc, const std::string& msg) diff --git a/src/t6/xsk/parser.hpp b/src/t6/xsk/parser.hpp index 83230503..93d4a071 100644 --- a/src/t6/xsk/parser.hpp +++ b/src/t6/xsk/parser.hpp @@ -429,14 +429,11 @@ namespace xsk { namespace arc { namespace t6 { // declaration char dummy2[sizeof (ast::decl)]; - // decl_constant - char dummy3[sizeof (ast::decl_constant::ptr)]; - // decl_thread - char dummy4[sizeof (ast::decl_thread::ptr)]; + char dummy3[sizeof (ast::decl_thread::ptr)]; // decl_usingtree - char dummy5[sizeof (ast::decl_usingtree::ptr)]; + char dummy4[sizeof (ast::decl_usingtree::ptr)]; // expr // expr_or_empty @@ -449,178 +446,181 @@ namespace xsk { namespace arc { namespace t6 { // expr_parameters_default // expr_literal // expr_object - char dummy6[sizeof (ast::expr)]; + char dummy5[sizeof (ast::expr)]; // expr_abs - char dummy7[sizeof (ast::expr_abs::ptr)]; + char dummy6[sizeof (ast::expr_abs::ptr)]; // expr_angleclamp180 - char dummy8[sizeof (ast::expr_angleclamp180::ptr)]; + char dummy7[sizeof (ast::expr_angleclamp180::ptr)]; // expr_anglestoforward - char dummy9[sizeof (ast::expr_anglestoforward::ptr)]; + char dummy8[sizeof (ast::expr_anglestoforward::ptr)]; // expr_anglestoright - char dummy10[sizeof (ast::expr_anglestoright::ptr)]; + char dummy9[sizeof (ast::expr_anglestoright::ptr)]; // expr_anglestoup - char dummy11[sizeof (ast::expr_anglestoup::ptr)]; + char dummy10[sizeof (ast::expr_anglestoup::ptr)]; // expr_anim - char dummy12[sizeof (ast::expr_anim::ptr)]; + char dummy11[sizeof (ast::expr_anim::ptr)]; // expr_animation - char dummy13[sizeof (ast::expr_animation::ptr)]; + char dummy12[sizeof (ast::expr_animation::ptr)]; // expr_animtree - char dummy14[sizeof (ast::expr_animtree::ptr)]; + char dummy13[sizeof (ast::expr_animtree::ptr)]; // expr_arguments // expr_arguments_no_empty - char dummy15[sizeof (ast::expr_arguments::ptr)]; + char dummy14[sizeof (ast::expr_arguments::ptr)]; // expr_array - char dummy16[sizeof (ast::expr_array::ptr)]; + char dummy15[sizeof (ast::expr_array::ptr)]; // expr_call - char dummy17[sizeof (ast::expr_call::ptr)]; + char dummy16[sizeof (ast::expr_call::ptr)]; // expr_complement - char dummy18[sizeof (ast::expr_complement::ptr)]; + char dummy17[sizeof (ast::expr_complement::ptr)]; // expr_empty_array - char dummy19[sizeof (ast::expr_empty_array::ptr)]; + char dummy18[sizeof (ast::expr_empty_array::ptr)]; // expr_false - char dummy20[sizeof (ast::expr_false::ptr)]; + char dummy19[sizeof (ast::expr_false::ptr)]; // expr_field - char dummy21[sizeof (ast::expr_field::ptr)]; + char dummy20[sizeof (ast::expr_field::ptr)]; // expr_float - char dummy22[sizeof (ast::expr_float::ptr)]; + char dummy21[sizeof (ast::expr_float::ptr)]; // expr_game - char dummy23[sizeof (ast::expr_game::ptr)]; + char dummy22[sizeof (ast::expr_game::ptr)]; // expr_getdvar - char dummy24[sizeof (ast::expr_getdvar::ptr)]; + char dummy23[sizeof (ast::expr_getdvar::ptr)]; // expr_getdvarcoloralpha - char dummy25[sizeof (ast::expr_getdvarcoloralpha::ptr)]; + char dummy24[sizeof (ast::expr_getdvarcoloralpha::ptr)]; // expr_getdvarcolorblue - char dummy26[sizeof (ast::expr_getdvarcolorblue::ptr)]; + char dummy25[sizeof (ast::expr_getdvarcolorblue::ptr)]; // expr_getdvarcolorgreen - char dummy27[sizeof (ast::expr_getdvarcolorgreen::ptr)]; + char dummy26[sizeof (ast::expr_getdvarcolorgreen::ptr)]; // expr_getdvarcolorred - char dummy28[sizeof (ast::expr_getdvarcolorred::ptr)]; + char dummy27[sizeof (ast::expr_getdvarcolorred::ptr)]; // expr_getdvarfloat - char dummy29[sizeof (ast::expr_getdvarfloat::ptr)]; + char dummy28[sizeof (ast::expr_getdvarfloat::ptr)]; // expr_getdvarint - char dummy30[sizeof (ast::expr_getdvarint::ptr)]; + char dummy29[sizeof (ast::expr_getdvarint::ptr)]; // expr_getdvarvector - char dummy31[sizeof (ast::expr_getdvarvector::ptr)]; + char dummy30[sizeof (ast::expr_getdvarvector::ptr)]; // expr_getfirstarraykey - char dummy32[sizeof (ast::expr_getfirstarraykey::ptr)]; + char dummy31[sizeof (ast::expr_getfirstarraykey::ptr)]; // expr_getnextarraykey - char dummy33[sizeof (ast::expr_getnextarraykey::ptr)]; + char dummy32[sizeof (ast::expr_getnextarraykey::ptr)]; // expr_gettime - char dummy34[sizeof (ast::expr_gettime::ptr)]; + char dummy33[sizeof (ast::expr_gettime::ptr)]; // expr_hash - char dummy35[sizeof (ast::expr_hash::ptr)]; + char dummy34[sizeof (ast::expr_hash::ptr)]; // expr_identifier_nosize // expr_identifier - char dummy36[sizeof (ast::expr_identifier::ptr)]; + char dummy35[sizeof (ast::expr_identifier::ptr)]; // expr_integer - char dummy37[sizeof (ast::expr_integer::ptr)]; + char dummy36[sizeof (ast::expr_integer::ptr)]; // expr_isdefined - char dummy38[sizeof (ast::expr_isdefined::ptr)]; + char dummy37[sizeof (ast::expr_isdefined::ptr)]; // expr_istring - char dummy39[sizeof (ast::expr_istring::ptr)]; + char dummy38[sizeof (ast::expr_istring::ptr)]; // expr_level - char dummy40[sizeof (ast::expr_level::ptr)]; + char dummy39[sizeof (ast::expr_level::ptr)]; // expr_method - char dummy41[sizeof (ast::expr_method::ptr)]; + char dummy40[sizeof (ast::expr_method::ptr)]; // expr_negate - char dummy42[sizeof (ast::expr_negate::ptr)]; + char dummy41[sizeof (ast::expr_negate::ptr)]; // expr_not - char dummy43[sizeof (ast::expr_not::ptr)]; + char dummy42[sizeof (ast::expr_not::ptr)]; // expr_parameters - char dummy44[sizeof (ast::expr_parameters::ptr)]; + char dummy43[sizeof (ast::expr_parameters::ptr)]; // expr_paren - char dummy45[sizeof (ast::expr_paren::ptr)]; + char dummy44[sizeof (ast::expr_paren::ptr)]; // expr_path - char dummy46[sizeof (ast::expr_path::ptr)]; + char dummy45[sizeof (ast::expr_path::ptr)]; // expr_reference - char dummy47[sizeof (ast::expr_reference::ptr)]; + char dummy46[sizeof (ast::expr_reference::ptr)]; // expr_self - char dummy48[sizeof (ast::expr_self::ptr)]; + char dummy47[sizeof (ast::expr_self::ptr)]; // expr_size - char dummy49[sizeof (ast::expr_size::ptr)]; + char dummy48[sizeof (ast::expr_size::ptr)]; // expr_string - char dummy50[sizeof (ast::expr_string::ptr)]; + char dummy49[sizeof (ast::expr_string::ptr)]; // expr_true - char dummy51[sizeof (ast::expr_true::ptr)]; + char dummy50[sizeof (ast::expr_true::ptr)]; // expr_undefined - char dummy52[sizeof (ast::expr_undefined::ptr)]; + char dummy51[sizeof (ast::expr_undefined::ptr)]; // expr_vector - char dummy53[sizeof (ast::expr_vector::ptr)]; + char dummy52[sizeof (ast::expr_vector::ptr)]; // expr_vectorscale - char dummy54[sizeof (ast::expr_vectorscale::ptr)]; + char dummy53[sizeof (ast::expr_vectorscale::ptr)]; // expr_vectortoangles - char dummy55[sizeof (ast::expr_vectortoangles::ptr)]; + char dummy54[sizeof (ast::expr_vectortoangles::ptr)]; // include - char dummy56[sizeof (ast::include::ptr)]; + char dummy55[sizeof (ast::include::ptr)]; // program - char dummy57[sizeof (ast::program::ptr)]; + char dummy56[sizeof (ast::program::ptr)]; // stmt // stmt_or_dev - char dummy58[sizeof (ast::stmt)]; + char dummy57[sizeof (ast::stmt)]; // stmt_assign - char dummy59[sizeof (ast::stmt_assign::ptr)]; + char dummy58[sizeof (ast::stmt_assign::ptr)]; // stmt_break - char dummy60[sizeof (ast::stmt_break::ptr)]; + char dummy59[sizeof (ast::stmt_break::ptr)]; // stmt_call - char dummy61[sizeof (ast::stmt_call::ptr)]; + char dummy60[sizeof (ast::stmt_call::ptr)]; // stmt_case - char dummy62[sizeof (ast::stmt_case::ptr)]; + char dummy61[sizeof (ast::stmt_case::ptr)]; + + // stmt_const + char dummy62[sizeof (ast::stmt_const::ptr)]; // stmt_continue char dummy63[sizeof (ast::stmt_continue::ptr)]; @@ -793,86 +793,87 @@ namespace xsk { namespace arc { namespace t6 { SELF = 46, // "self" ANIM = 47, // "anim" LEVEL = 48, // "level" - GETNEXTARRAYKEY = 49, // "getnextarraykey" - GETFIRSTARRAYKEY = 50, // "getfirstarraykey" - GETDVARCOLORALPHA = 51, // "getdvarcoloralpha" - GETDVARCOLORBLUE = 52, // "getdvarcolorblue" - GETDVARCOLORGREEN = 53, // "getdvarcolorgreen" - GETDVARCOLORRED = 54, // "getdvarcolorred" - GETDVARVECTOR = 55, // "getdvarvector" - GETDVARFLOAT = 56, // "getdvarfloat" - GETDVARINT = 57, // "getdvarint" - GETDVAR = 58, // "getdvar" - GETTIME = 59, // "gettime" - ABS = 60, // "abs" - VECTORTOANGLES = 61, // "vectortoangles" - ANGLECLAMP180 = 62, // "angleclamp180" - ANGLESTOFORWARD = 63, // "anglestoforward" - ANGLESTORIGHT = 64, // "anglestoright" - ANGLESTOUP = 65, // "anglestoup" - VECTORSCALE = 66, // "vectorscale" - ISDEFINED = 67, // "isdefined" - LPAREN = 68, // "(" - RPAREN = 69, // ")" - LBRACE = 70, // "{" - RBRACE = 71, // "}" - LBRACKET = 72, // "[" - RBRACKET = 73, // "]" - COMMA = 74, // "," - DOT = 75, // "." - DOUBLECOLON = 76, // "::" - COLON = 77, // ":" - SEMICOLON = 78, // ";" - QMARK = 79, // "?" - INCREMENT = 80, // "++" - DECREMENT = 81, // "--" - LSHIFT = 82, // "<<" - RSHIFT = 83, // ">>" - OR = 84, // "||" - AND = 85, // "&&" - EQUALITY = 86, // "==" - INEQUALITY = 87, // "!=" - LESS_EQUAL = 88, // "<=" - GREATER_EQUAL = 89, // ">=" - LESS = 90, // "<" - GREATER = 91, // ">" - NOT = 92, // "!" - COMPLEMENT = 93, // "~" - ASSIGN = 94, // "=" - ASSIGN_ADD = 95, // "+=" - ASSIGN_SUB = 96, // "-=" - ASSIGN_MUL = 97, // "*=" - ASSIGN_DIV = 98, // "/=" - ASSIGN_MOD = 99, // "%=" - ASSIGN_BW_OR = 100, // "|=" - ASSIGN_BW_AND = 101, // "&=" - ASSIGN_BW_EXOR = 102, // "^=" - ASSIGN_RSHIFT = 103, // ">>=" - ASSIGN_LSHIFT = 104, // "<<=" - BITWISE_OR = 105, // "|" - BITWISE_AND = 106, // "&" - BITWISE_EXOR = 107, // "^" - ADD = 108, // "+" - SUB = 109, // "-" - MUL = 110, // "*" - DIV = 111, // "/" - MOD = 112, // "%" - PATH = 113, // "path" - IDENTIFIER = 114, // "identifier" - STRING = 115, // "string literal" - ISTRING = 116, // "localized string" - HASH = 117, // "hash" - FLOAT = 118, // "float" - INTEGER = 119, // "integer" - SIZEOF = 120, // SIZEOF - THEN = 121, // THEN - TERN = 122, // TERN - NEG = 123, // NEG - ANIMREF = 124, // ANIMREF - PREINC = 125, // PREINC - PREDEC = 126, // PREDEC - POSTINC = 127, // POSTINC - POSTDEC = 128 // POSTDEC + CONST = 49, // "const" + GETNEXTARRAYKEY = 50, // "getnextarraykey" + GETFIRSTARRAYKEY = 51, // "getfirstarraykey" + GETDVARCOLORALPHA = 52, // "getdvarcoloralpha" + GETDVARCOLORBLUE = 53, // "getdvarcolorblue" + GETDVARCOLORGREEN = 54, // "getdvarcolorgreen" + GETDVARCOLORRED = 55, // "getdvarcolorred" + GETDVARVECTOR = 56, // "getdvarvector" + GETDVARFLOAT = 57, // "getdvarfloat" + GETDVARINT = 58, // "getdvarint" + GETDVAR = 59, // "getdvar" + GETTIME = 60, // "gettime" + ABS = 61, // "abs" + VECTORTOANGLES = 62, // "vectortoangles" + ANGLECLAMP180 = 63, // "angleclamp180" + ANGLESTOFORWARD = 64, // "anglestoforward" + ANGLESTORIGHT = 65, // "anglestoright" + ANGLESTOUP = 66, // "anglestoup" + VECTORSCALE = 67, // "vectorscale" + ISDEFINED = 68, // "isdefined" + LPAREN = 69, // "(" + RPAREN = 70, // ")" + LBRACE = 71, // "{" + RBRACE = 72, // "}" + LBRACKET = 73, // "[" + RBRACKET = 74, // "]" + COMMA = 75, // "," + DOT = 76, // "." + DOUBLECOLON = 77, // "::" + COLON = 78, // ":" + SEMICOLON = 79, // ";" + QMARK = 80, // "?" + INCREMENT = 81, // "++" + DECREMENT = 82, // "--" + LSHIFT = 83, // "<<" + RSHIFT = 84, // ">>" + OR = 85, // "||" + AND = 86, // "&&" + EQUALITY = 87, // "==" + INEQUALITY = 88, // "!=" + LESS_EQUAL = 89, // "<=" + GREATER_EQUAL = 90, // ">=" + LESS = 91, // "<" + GREATER = 92, // ">" + NOT = 93, // "!" + COMPLEMENT = 94, // "~" + ASSIGN = 95, // "=" + ASSIGN_ADD = 96, // "+=" + ASSIGN_SUB = 97, // "-=" + ASSIGN_MUL = 98, // "*=" + ASSIGN_DIV = 99, // "/=" + ASSIGN_MOD = 100, // "%=" + ASSIGN_BW_OR = 101, // "|=" + ASSIGN_BW_AND = 102, // "&=" + ASSIGN_BW_EXOR = 103, // "^=" + ASSIGN_RSHIFT = 104, // ">>=" + ASSIGN_LSHIFT = 105, // "<<=" + BITWISE_OR = 106, // "|" + BITWISE_AND = 107, // "&" + BITWISE_EXOR = 108, // "^" + ADD = 109, // "+" + SUB = 110, // "-" + MUL = 111, // "*" + DIV = 112, // "/" + MOD = 113, // "%" + PATH = 114, // "path" + IDENTIFIER = 115, // "identifier" + STRING = 116, // "string literal" + ISTRING = 117, // "localized string" + HASH = 118, // "hash" + FLOAT = 119, // "float" + INTEGER = 120, // "integer" + SIZEOF = 121, // SIZEOF + THEN = 122, // THEN + TERN = 123, // TERN + NEG = 124, // NEG + ANIMREF = 125, // ANIMREF + PREINC = 126, // PREINC + PREDEC = 127, // PREDEC + POSTINC = 128, // POSTINC + POSTDEC = 129 // POSTDEC }; /// Backward compatibility alias (Bison 3.6). typedef token_kind_type yytokentype; @@ -889,7 +890,7 @@ namespace xsk { namespace arc { namespace t6 { { enum symbol_kind_type { - YYNTOKENS = 129, ///< Number of tokens. + YYNTOKENS = 130, ///< Number of tokens. S_YYEMPTY = -2, S_YYEOF = 0, // "end of file" S_YYerror = 1, // error @@ -940,94 +941,94 @@ namespace xsk { namespace arc { namespace t6 { S_SELF = 46, // "self" S_ANIM = 47, // "anim" S_LEVEL = 48, // "level" - S_GETNEXTARRAYKEY = 49, // "getnextarraykey" - S_GETFIRSTARRAYKEY = 50, // "getfirstarraykey" - S_GETDVARCOLORALPHA = 51, // "getdvarcoloralpha" - S_GETDVARCOLORBLUE = 52, // "getdvarcolorblue" - S_GETDVARCOLORGREEN = 53, // "getdvarcolorgreen" - S_GETDVARCOLORRED = 54, // "getdvarcolorred" - S_GETDVARVECTOR = 55, // "getdvarvector" - S_GETDVARFLOAT = 56, // "getdvarfloat" - S_GETDVARINT = 57, // "getdvarint" - S_GETDVAR = 58, // "getdvar" - S_GETTIME = 59, // "gettime" - S_ABS = 60, // "abs" - S_VECTORTOANGLES = 61, // "vectortoangles" - S_ANGLECLAMP180 = 62, // "angleclamp180" - S_ANGLESTOFORWARD = 63, // "anglestoforward" - S_ANGLESTORIGHT = 64, // "anglestoright" - S_ANGLESTOUP = 65, // "anglestoup" - S_VECTORSCALE = 66, // "vectorscale" - S_ISDEFINED = 67, // "isdefined" - S_LPAREN = 68, // "(" - S_RPAREN = 69, // ")" - S_LBRACE = 70, // "{" - S_RBRACE = 71, // "}" - S_LBRACKET = 72, // "[" - S_RBRACKET = 73, // "]" - S_COMMA = 74, // "," - S_DOT = 75, // "." - S_DOUBLECOLON = 76, // "::" - S_COLON = 77, // ":" - S_SEMICOLON = 78, // ";" - S_QMARK = 79, // "?" - S_INCREMENT = 80, // "++" - S_DECREMENT = 81, // "--" - S_LSHIFT = 82, // "<<" - S_RSHIFT = 83, // ">>" - S_OR = 84, // "||" - S_AND = 85, // "&&" - S_EQUALITY = 86, // "==" - S_INEQUALITY = 87, // "!=" - S_LESS_EQUAL = 88, // "<=" - S_GREATER_EQUAL = 89, // ">=" - S_LESS = 90, // "<" - S_GREATER = 91, // ">" - S_NOT = 92, // "!" - S_COMPLEMENT = 93, // "~" - S_ASSIGN = 94, // "=" - S_ASSIGN_ADD = 95, // "+=" - S_ASSIGN_SUB = 96, // "-=" - S_ASSIGN_MUL = 97, // "*=" - S_ASSIGN_DIV = 98, // "/=" - S_ASSIGN_MOD = 99, // "%=" - S_ASSIGN_BW_OR = 100, // "|=" - S_ASSIGN_BW_AND = 101, // "&=" - S_ASSIGN_BW_EXOR = 102, // "^=" - S_ASSIGN_RSHIFT = 103, // ">>=" - S_ASSIGN_LSHIFT = 104, // "<<=" - S_BITWISE_OR = 105, // "|" - S_BITWISE_AND = 106, // "&" - S_BITWISE_EXOR = 107, // "^" - S_ADD = 108, // "+" - S_SUB = 109, // "-" - S_MUL = 110, // "*" - S_DIV = 111, // "/" - S_MOD = 112, // "%" - S_PATH = 113, // "path" - S_IDENTIFIER = 114, // "identifier" - S_STRING = 115, // "string literal" - S_ISTRING = 116, // "localized string" - S_HASH = 117, // "hash" - S_FLOAT = 118, // "float" - S_INTEGER = 119, // "integer" - S_SIZEOF = 120, // SIZEOF - S_THEN = 121, // THEN - S_TERN = 122, // TERN - S_NEG = 123, // NEG - S_ANIMREF = 124, // ANIMREF - S_PREINC = 125, // PREINC - S_PREDEC = 126, // PREDEC - S_POSTINC = 127, // POSTINC - S_POSTDEC = 128, // POSTDEC - S_YYACCEPT = 129, // $accept - S_root = 130, // root - S_program = 131, // program - S_inline = 132, // inline - S_include = 133, // include - S_declaration = 134, // declaration - S_decl_usingtree = 135, // decl_usingtree - S_decl_constant = 136, // decl_constant + S_CONST = 49, // "const" + S_GETNEXTARRAYKEY = 50, // "getnextarraykey" + S_GETFIRSTARRAYKEY = 51, // "getfirstarraykey" + S_GETDVARCOLORALPHA = 52, // "getdvarcoloralpha" + S_GETDVARCOLORBLUE = 53, // "getdvarcolorblue" + S_GETDVARCOLORGREEN = 54, // "getdvarcolorgreen" + S_GETDVARCOLORRED = 55, // "getdvarcolorred" + S_GETDVARVECTOR = 56, // "getdvarvector" + S_GETDVARFLOAT = 57, // "getdvarfloat" + S_GETDVARINT = 58, // "getdvarint" + S_GETDVAR = 59, // "getdvar" + S_GETTIME = 60, // "gettime" + S_ABS = 61, // "abs" + S_VECTORTOANGLES = 62, // "vectortoangles" + S_ANGLECLAMP180 = 63, // "angleclamp180" + S_ANGLESTOFORWARD = 64, // "anglestoforward" + S_ANGLESTORIGHT = 65, // "anglestoright" + S_ANGLESTOUP = 66, // "anglestoup" + S_VECTORSCALE = 67, // "vectorscale" + S_ISDEFINED = 68, // "isdefined" + S_LPAREN = 69, // "(" + S_RPAREN = 70, // ")" + S_LBRACE = 71, // "{" + S_RBRACE = 72, // "}" + S_LBRACKET = 73, // "[" + S_RBRACKET = 74, // "]" + S_COMMA = 75, // "," + S_DOT = 76, // "." + S_DOUBLECOLON = 77, // "::" + S_COLON = 78, // ":" + S_SEMICOLON = 79, // ";" + S_QMARK = 80, // "?" + S_INCREMENT = 81, // "++" + S_DECREMENT = 82, // "--" + S_LSHIFT = 83, // "<<" + S_RSHIFT = 84, // ">>" + S_OR = 85, // "||" + S_AND = 86, // "&&" + S_EQUALITY = 87, // "==" + S_INEQUALITY = 88, // "!=" + S_LESS_EQUAL = 89, // "<=" + S_GREATER_EQUAL = 90, // ">=" + S_LESS = 91, // "<" + S_GREATER = 92, // ">" + S_NOT = 93, // "!" + S_COMPLEMENT = 94, // "~" + S_ASSIGN = 95, // "=" + S_ASSIGN_ADD = 96, // "+=" + S_ASSIGN_SUB = 97, // "-=" + S_ASSIGN_MUL = 98, // "*=" + S_ASSIGN_DIV = 99, // "/=" + S_ASSIGN_MOD = 100, // "%=" + S_ASSIGN_BW_OR = 101, // "|=" + S_ASSIGN_BW_AND = 102, // "&=" + S_ASSIGN_BW_EXOR = 103, // "^=" + S_ASSIGN_RSHIFT = 104, // ">>=" + S_ASSIGN_LSHIFT = 105, // "<<=" + S_BITWISE_OR = 106, // "|" + S_BITWISE_AND = 107, // "&" + S_BITWISE_EXOR = 108, // "^" + S_ADD = 109, // "+" + S_SUB = 110, // "-" + S_MUL = 111, // "*" + S_DIV = 112, // "/" + S_MOD = 113, // "%" + S_PATH = 114, // "path" + S_IDENTIFIER = 115, // "identifier" + S_STRING = 116, // "string literal" + S_ISTRING = 117, // "localized string" + S_HASH = 118, // "hash" + S_FLOAT = 119, // "float" + S_INTEGER = 120, // "integer" + S_SIZEOF = 121, // SIZEOF + S_THEN = 122, // THEN + S_TERN = 123, // TERN + S_NEG = 124, // NEG + S_ANIMREF = 125, // ANIMREF + S_PREINC = 126, // PREINC + S_PREDEC = 127, // PREDEC + S_POSTINC = 128, // POSTINC + S_POSTDEC = 129, // POSTDEC + S_YYACCEPT = 130, // $accept + S_root = 131, // root + S_program = 132, // program + S_inline = 133, // inline + S_include = 134, // include + S_declaration = 135, // declaration + S_decl_usingtree = 136, // decl_usingtree S_decl_thread = 137, // decl_thread S_stmt = 138, // stmt S_stmt_or_dev = 139, // stmt_or_dev @@ -1037,91 +1038,92 @@ namespace xsk { namespace arc { namespace t6 { S_stmt_block = 143, // stmt_block S_stmt_expr = 144, // stmt_expr S_stmt_call = 145, // stmt_call - S_stmt_assign = 146, // stmt_assign - S_stmt_endon = 147, // stmt_endon - S_stmt_notify = 148, // stmt_notify - S_stmt_wait = 149, // stmt_wait - S_stmt_waittill = 150, // stmt_waittill - S_stmt_waittillmatch = 151, // stmt_waittillmatch - S_stmt_waittillframeend = 152, // stmt_waittillframeend - S_stmt_if = 153, // stmt_if - S_stmt_ifelse = 154, // stmt_ifelse - S_stmt_while = 155, // stmt_while - S_stmt_dowhile = 156, // stmt_dowhile - S_stmt_for = 157, // stmt_for - S_stmt_foreach = 158, // stmt_foreach - S_stmt_switch = 159, // stmt_switch - S_stmt_case = 160, // stmt_case - S_stmt_default = 161, // stmt_default - S_stmt_break = 162, // stmt_break - S_stmt_continue = 163, // stmt_continue - S_stmt_return = 164, // stmt_return - S_stmt_prof_begin = 165, // stmt_prof_begin - S_stmt_prof_end = 166, // stmt_prof_end - S_expr = 167, // expr - S_expr_or_empty = 168, // expr_or_empty - S_expr_assign = 169, // expr_assign - S_expr_increment = 170, // expr_increment - S_expr_decrement = 171, // expr_decrement - S_expr_ternary = 172, // expr_ternary - S_expr_binary = 173, // expr_binary - S_expr_primitive = 174, // expr_primitive - S_expr_complement = 175, // expr_complement - S_expr_negate = 176, // expr_negate - S_expr_not = 177, // expr_not - S_expr_call = 178, // expr_call - S_expr_method = 179, // expr_method - S_expr_function = 180, // expr_function - S_expr_pointer = 181, // expr_pointer - S_expr_parameters = 182, // expr_parameters - S_expr_parameters_default = 183, // expr_parameters_default - S_expr_literal = 184, // expr_literal - S_expr_arguments = 185, // expr_arguments - S_expr_arguments_no_empty = 186, // expr_arguments_no_empty - S_expr_getnextarraykey = 187, // expr_getnextarraykey - S_expr_getfirstarraykey = 188, // expr_getfirstarraykey - S_expr_getdvarcoloralpha = 189, // expr_getdvarcoloralpha - S_expr_getdvarcolorblue = 190, // expr_getdvarcolorblue - S_expr_getdvarcolorgreen = 191, // expr_getdvarcolorgreen - S_expr_getdvarcolorred = 192, // expr_getdvarcolorred - S_expr_getdvarvector = 193, // expr_getdvarvector - S_expr_getdvarfloat = 194, // expr_getdvarfloat - S_expr_getdvarint = 195, // expr_getdvarint - S_expr_getdvar = 196, // expr_getdvar - S_expr_gettime = 197, // expr_gettime - S_expr_abs = 198, // expr_abs - S_expr_vectortoangles = 199, // expr_vectortoangles - S_expr_angleclamp180 = 200, // expr_angleclamp180 - S_expr_anglestoforward = 201, // expr_anglestoforward - S_expr_anglestoright = 202, // expr_anglestoright - S_expr_anglestoup = 203, // expr_anglestoup - S_expr_vectorscale = 204, // expr_vectorscale - S_expr_isdefined = 205, // expr_isdefined - S_expr_reference = 206, // expr_reference - S_expr_array = 207, // expr_array - S_expr_field = 208, // expr_field - S_expr_size = 209, // expr_size - S_expr_paren = 210, // expr_paren - S_expr_object = 211, // expr_object - S_expr_empty_array = 212, // expr_empty_array - S_expr_undefined = 213, // expr_undefined - S_expr_game = 214, // expr_game - S_expr_self = 215, // expr_self - S_expr_anim = 216, // expr_anim - S_expr_level = 217, // expr_level - S_expr_animation = 218, // expr_animation - S_expr_animtree = 219, // expr_animtree - S_expr_identifier_nosize = 220, // expr_identifier_nosize - S_expr_identifier = 221, // expr_identifier - S_expr_path = 222, // expr_path - S_expr_istring = 223, // expr_istring - S_expr_string = 224, // expr_string - S_expr_vector = 225, // expr_vector - S_expr_hash = 226, // expr_hash - S_expr_float = 227, // expr_float - S_expr_integer = 228, // expr_integer - S_expr_false = 229, // expr_false - S_expr_true = 230 // expr_true + S_stmt_const = 146, // stmt_const + S_stmt_assign = 147, // stmt_assign + S_stmt_endon = 148, // stmt_endon + S_stmt_notify = 149, // stmt_notify + S_stmt_wait = 150, // stmt_wait + S_stmt_waittill = 151, // stmt_waittill + S_stmt_waittillmatch = 152, // stmt_waittillmatch + S_stmt_waittillframeend = 153, // stmt_waittillframeend + S_stmt_if = 154, // stmt_if + S_stmt_ifelse = 155, // stmt_ifelse + S_stmt_while = 156, // stmt_while + S_stmt_dowhile = 157, // stmt_dowhile + S_stmt_for = 158, // stmt_for + S_stmt_foreach = 159, // stmt_foreach + S_stmt_switch = 160, // stmt_switch + S_stmt_case = 161, // stmt_case + S_stmt_default = 162, // stmt_default + S_stmt_break = 163, // stmt_break + S_stmt_continue = 164, // stmt_continue + S_stmt_return = 165, // stmt_return + S_stmt_prof_begin = 166, // stmt_prof_begin + S_stmt_prof_end = 167, // stmt_prof_end + S_expr = 168, // expr + S_expr_or_empty = 169, // expr_or_empty + S_expr_assign = 170, // expr_assign + S_expr_increment = 171, // expr_increment + S_expr_decrement = 172, // expr_decrement + S_expr_ternary = 173, // expr_ternary + S_expr_binary = 174, // expr_binary + S_expr_primitive = 175, // expr_primitive + S_expr_complement = 176, // expr_complement + S_expr_negate = 177, // expr_negate + S_expr_not = 178, // expr_not + S_expr_call = 179, // expr_call + S_expr_method = 180, // expr_method + S_expr_function = 181, // expr_function + S_expr_pointer = 182, // expr_pointer + S_expr_parameters = 183, // expr_parameters + S_expr_parameters_default = 184, // expr_parameters_default + S_expr_literal = 185, // expr_literal + S_expr_arguments = 186, // expr_arguments + S_expr_arguments_no_empty = 187, // expr_arguments_no_empty + S_expr_getnextarraykey = 188, // expr_getnextarraykey + S_expr_getfirstarraykey = 189, // expr_getfirstarraykey + S_expr_getdvarcoloralpha = 190, // expr_getdvarcoloralpha + S_expr_getdvarcolorblue = 191, // expr_getdvarcolorblue + S_expr_getdvarcolorgreen = 192, // expr_getdvarcolorgreen + S_expr_getdvarcolorred = 193, // expr_getdvarcolorred + S_expr_getdvarvector = 194, // expr_getdvarvector + S_expr_getdvarfloat = 195, // expr_getdvarfloat + S_expr_getdvarint = 196, // expr_getdvarint + S_expr_getdvar = 197, // expr_getdvar + S_expr_gettime = 198, // expr_gettime + S_expr_abs = 199, // expr_abs + S_expr_vectortoangles = 200, // expr_vectortoangles + S_expr_angleclamp180 = 201, // expr_angleclamp180 + S_expr_anglestoforward = 202, // expr_anglestoforward + S_expr_anglestoright = 203, // expr_anglestoright + S_expr_anglestoup = 204, // expr_anglestoup + S_expr_vectorscale = 205, // expr_vectorscale + S_expr_isdefined = 206, // expr_isdefined + S_expr_reference = 207, // expr_reference + S_expr_array = 208, // expr_array + S_expr_field = 209, // expr_field + S_expr_size = 210, // expr_size + S_expr_paren = 211, // expr_paren + S_expr_object = 212, // expr_object + S_expr_empty_array = 213, // expr_empty_array + S_expr_undefined = 214, // expr_undefined + S_expr_game = 215, // expr_game + S_expr_self = 216, // expr_self + S_expr_anim = 217, // expr_anim + S_expr_level = 218, // expr_level + S_expr_animation = 219, // expr_animation + S_expr_animtree = 220, // expr_animtree + S_expr_identifier_nosize = 221, // expr_identifier_nosize + S_expr_identifier = 222, // expr_identifier + S_expr_path = 223, // expr_path + S_expr_istring = 224, // expr_istring + S_expr_string = 225, // expr_string + S_expr_vector = 226, // expr_vector + S_expr_hash = 227, // expr_hash + S_expr_float = 228, // expr_float + S_expr_integer = 229, // expr_integer + S_expr_false = 230, // expr_false + S_expr_true = 231 // expr_true }; }; @@ -1167,10 +1169,6 @@ namespace xsk { namespace arc { namespace t6 { value.move< ast::decl > (std::move (that.value)); break; - case symbol_kind::S_decl_constant: // decl_constant - value.move< ast::decl_constant::ptr > (std::move (that.value)); - break; - case symbol_kind::S_decl_thread: // decl_thread value.move< ast::decl_thread::ptr > (std::move (that.value)); break; @@ -1420,6 +1418,10 @@ namespace xsk { namespace arc { namespace t6 { value.move< ast::stmt_case::ptr > (std::move (that.value)); break; + case symbol_kind::S_stmt_const: // stmt_const + value.move< ast::stmt_const::ptr > (std::move (that.value)); + break; + case symbol_kind::S_stmt_continue: // stmt_continue value.move< ast::stmt_continue::ptr > (std::move (that.value)); break; @@ -1567,20 +1569,6 @@ namespace xsk { namespace arc { namespace t6 { {} #endif -#if 201103L <= YY_CPLUSPLUS - basic_symbol (typename Base::kind_type t, ast::decl_constant::ptr&& v, location_type&& l) - : Base (t) - , value (std::move (v)) - , location (std::move (l)) - {} -#else - basic_symbol (typename Base::kind_type t, const ast::decl_constant::ptr& v, const location_type& l) - : Base (t) - , value (v) - , location (l) - {} -#endif - #if 201103L <= YY_CPLUSPLUS basic_symbol (typename Base::kind_type t, ast::decl_thread::ptr&& v, location_type&& l) : Base (t) @@ -2407,6 +2395,20 @@ namespace xsk { namespace arc { namespace t6 { {} #endif +#if 201103L <= YY_CPLUSPLUS + basic_symbol (typename Base::kind_type t, ast::stmt_const::ptr&& v, location_type&& l) + : Base (t) + , value (std::move (v)) + , location (std::move (l)) + {} +#else + basic_symbol (typename Base::kind_type t, const ast::stmt_const::ptr& v, const location_type& l) + : Base (t) + , value (v) + , location (l) + {} +#endif + #if 201103L <= YY_CPLUSPLUS basic_symbol (typename Base::kind_type t, ast::stmt_continue::ptr&& v, location_type&& l) : Base (t) @@ -2748,10 +2750,6 @@ switch (yykind) value.template destroy< ast::decl > (); break; - case symbol_kind::S_decl_constant: // decl_constant - value.template destroy< ast::decl_constant::ptr > (); - break; - case symbol_kind::S_decl_thread: // decl_thread value.template destroy< ast::decl_thread::ptr > (); break; @@ -3001,6 +2999,10 @@ switch (yykind) value.template destroy< ast::stmt_case::ptr > (); break; + case symbol_kind::S_stmt_const: // stmt_const + value.template destroy< ast::stmt_const::ptr > (); + break; + case symbol_kind::S_stmt_continue: // stmt_continue value.template destroy< ast::stmt_continue::ptr > (); break; @@ -3994,6 +3996,21 @@ switch (yykind) return symbol_type (token::LEVEL, l); } #endif +#if 201103L <= YY_CPLUSPLUS + static + symbol_type + make_CONST (location_type l) + { + return symbol_type (token::CONST, std::move (l)); + } +#else + static + symbol_type + make_CONST (const location_type& l) + { + return symbol_type (token::CONST, l); + } +#endif #if 201103L <= YY_CPLUSPLUS static symbol_type @@ -5538,9 +5555,9 @@ switch (yykind) /// Constants. enum { - yylast_ = 3663, ///< Last index in yytable_. + yylast_ = 3493, ///< Last index in yytable_. yynnts_ = 102, ///< Number of nonterminal symbols. - yyfinal_ = 26 ///< Termination state number. + yyfinal_ = 25 ///< Termination state number. }; @@ -5575,10 +5592,6 @@ switch (yykind) value.copy< ast::decl > (YY_MOVE (that.value)); break; - case symbol_kind::S_decl_constant: // decl_constant - value.copy< ast::decl_constant::ptr > (YY_MOVE (that.value)); - break; - case symbol_kind::S_decl_thread: // decl_thread value.copy< ast::decl_thread::ptr > (YY_MOVE (that.value)); break; @@ -5828,6 +5841,10 @@ switch (yykind) value.copy< ast::stmt_case::ptr > (YY_MOVE (that.value)); break; + case symbol_kind::S_stmt_const: // stmt_const + value.copy< ast::stmt_const::ptr > (YY_MOVE (that.value)); + break; + case symbol_kind::S_stmt_continue: // stmt_continue value.copy< ast::stmt_continue::ptr > (YY_MOVE (that.value)); break; @@ -5964,10 +5981,6 @@ switch (yykind) value.move< ast::decl > (YY_MOVE (s.value)); break; - case symbol_kind::S_decl_constant: // decl_constant - value.move< ast::decl_constant::ptr > (YY_MOVE (s.value)); - break; - case symbol_kind::S_decl_thread: // decl_thread value.move< ast::decl_thread::ptr > (YY_MOVE (s.value)); break; @@ -6217,6 +6230,10 @@ switch (yykind) value.move< ast::stmt_case::ptr > (YY_MOVE (s.value)); break; + case symbol_kind::S_stmt_const: // stmt_const + value.move< ast::stmt_const::ptr > (YY_MOVE (s.value)); + break; + case symbol_kind::S_stmt_continue: // stmt_continue value.move< ast::stmt_continue::ptr > (YY_MOVE (s.value)); break; @@ -6380,7 +6397,7 @@ switch (yykind) #line 13 "parser.ypp" } } } // xsk::arc::t6 -#line 6384 "parser.hpp" +#line 6401 "parser.hpp" diff --git a/src/utils/xsk/arc/nodetree.cpp b/src/utils/xsk/arc/nodetree.cpp index 7e39ebe3..ad4d1db7 100644 --- a/src/utils/xsk/arc/nodetree.cpp +++ b/src/utils/xsk/arc/nodetree.cpp @@ -415,6 +415,9 @@ stmt_expr::stmt_expr(const location& loc, ast::expr expr) : node(kind::stmt_expr stmt_call::stmt_call(ast::expr expr) : node(kind::stmt_call), expr(std::move(expr)) {} stmt_call::stmt_call(const location& loc, ast::expr expr) : node(kind::stmt_call, loc), expr(std::move(expr)) {} +stmt_const::stmt_const(expr_identifier::ptr lvalue, expr rvalue) : node(kind::stmt_const), lvalue(std::move(lvalue)), rvalue(std::move(rvalue)) {} +stmt_const::stmt_const(const location& loc, expr_identifier::ptr lvalue, expr rvalue) : node(kind::stmt_const, loc), lvalue(std::move(lvalue)), rvalue(std::move(rvalue)) {} + stmt_assign::stmt_assign(ast::expr expr) : node(kind::stmt_assign), expr(std::move(expr)) {} stmt_assign::stmt_assign(const location& loc, ast::expr expr) : node(kind::stmt_assign, loc), expr(std::move(expr)) {} @@ -492,9 +495,6 @@ stmt_prof_end::stmt_prof_end(const location& loc, expr_arguments::ptr args) : no decl_thread::decl_thread(expr_identifier::ptr name, expr_parameters::ptr params, stmt_list::ptr stmt, export_flags flags) : node(kind::decl_thread), name(std::move(name)), params(std::move(params)), stmt(std::move(stmt)), flags(flags) {} decl_thread::decl_thread(const location& loc, expr_identifier::ptr name, expr_parameters::ptr params, stmt_list::ptr stmt, export_flags flags) : node(kind::decl_thread, loc), name(std::move(name)), params(std::move(params)), stmt(std::move(stmt)), flags(flags) {} -decl_constant::decl_constant(expr_identifier::ptr name, expr value) : node(kind::decl_constant), name(std::move(name)), value(std::move(value)) {} -decl_constant::decl_constant(const location& loc, expr_identifier::ptr name, expr value) : node(kind::decl_constant, loc), name(std::move(name)), value(std::move(value)) {} - decl_usingtree::decl_usingtree(expr_string::ptr name) : node(kind::decl_usingtree), name(std::move(name)) {} decl_usingtree::decl_usingtree(const location& loc, expr_string::ptr name) : node(kind::decl_usingtree, loc), name(std::move(name)) {} @@ -1086,6 +1086,11 @@ auto stmt_call::print() const -> std::string return expr.print() + ";"; }; +auto stmt_const::print() const -> std::string +{ + return "const "s + lvalue->print() + " = " + rvalue.print() + ";"; +}; + auto stmt_assign::print() const -> std::string { return expr.print() + ";"; @@ -1382,11 +1387,6 @@ auto decl_thread::print() const -> std::string return data; } -auto decl_constant::print() const -> std::string -{ - return name->print() + " = "s + value.print() + ";\n"; -} - auto decl_usingtree::print() const -> std::string { return "#using_animtree"s + "(" + name->print() + ");\n"; @@ -1846,6 +1846,7 @@ stmt::~stmt() case kind::stmt_dev: as_dev.~unique_ptr(); return; case kind::stmt_expr: as_expr.~unique_ptr(); return; case kind::stmt_call: as_call.~unique_ptr(); return; + case kind::stmt_const: as_const.~unique_ptr(); return; case kind::stmt_assign: as_assign.~unique_ptr(); return; case kind::stmt_endon: as_endon.~unique_ptr(); return; case kind::stmt_notify: as_notify.~unique_ptr(); return; @@ -1929,7 +1930,6 @@ decl::~decl() case kind::decl_dev_begin: as_dev_begin.~unique_ptr(); return; case kind::decl_dev_end: as_dev_end.~unique_ptr(); return; case kind::decl_thread: as_thread.~unique_ptr(); return; - case kind::decl_constant: as_constant.~unique_ptr(); return; case kind::decl_usingtree: as_usingtree.~unique_ptr(); return; default: return; } diff --git a/src/utils/xsk/arc/nodetree.hpp b/src/utils/xsk/arc/nodetree.hpp index 4a4863da..285cd59b 100644 --- a/src/utils/xsk/arc/nodetree.hpp +++ b/src/utils/xsk/arc/nodetree.hpp @@ -98,6 +98,7 @@ enum class kind stmt_dev, stmt_expr, stmt_call, + stmt_const, stmt_assign, stmt_endon, stmt_notify, @@ -122,7 +123,6 @@ enum class kind stmt_prof_begin, stmt_prof_end, decl_thread, - decl_constant, decl_usingtree, decl_dev_begin, decl_dev_end, @@ -232,6 +232,7 @@ struct stmt_list; struct stmt_dev; struct stmt_expr; struct stmt_call; +struct stmt_const; struct stmt_assign; struct stmt_endon; struct stmt_notify; @@ -256,7 +257,6 @@ struct stmt_breakpoint; struct stmt_prof_begin; struct stmt_prof_end; struct decl_thread; -struct decl_constant; struct decl_usingtree; struct decl_dev_begin; struct decl_dev_end; @@ -405,6 +405,7 @@ union stmt std::unique_ptr as_dev; std::unique_ptr as_expr; std::unique_ptr as_call; + std::unique_ptr as_const; std::unique_ptr as_assign; std::unique_ptr as_endon; std::unique_ptr as_notify; @@ -459,7 +460,6 @@ union decl std::unique_ptr as_dev_begin; std::unique_ptr as_dev_end; std::unique_ptr as_usingtree; - std::unique_ptr as_constant; std::unique_ptr as_thread; decl(); @@ -1457,6 +1457,18 @@ struct stmt_call : public node auto print() const -> std::string override; }; +struct stmt_const : public node +{ + using ptr = std::unique_ptr; + + expr_identifier::ptr lvalue; + expr rvalue; + + stmt_const(expr_identifier::ptr lvalue, expr rvalue); + stmt_const(const location& loc, expr_identifier::ptr lvalue, expr rvalue); + auto print() const -> std::string override; +}; + struct stmt_assign : public node { using ptr = std::unique_ptr; @@ -1763,18 +1775,6 @@ struct decl_thread : public node auto print() const -> std::string override; }; -struct decl_constant : public node -{ - using ptr = std::unique_ptr; - - expr_identifier::ptr name; - expr value; - - decl_constant(expr_identifier::ptr name, expr value); - decl_constant(const location& loc, expr_identifier::ptr name, expr value); - auto print() const -> std::string override; -}; - struct decl_usingtree : public node { using ptr = std::unique_ptr;