From e5d6196da194457ba01cc94674a83da802b769ca Mon Sep 17 00:00:00 2001 From: xensik Date: Sat, 15 Oct 2022 16:20:48 +0200 Subject: [PATCH] add treyarch visibility flags --- gen/t6/parser.ypp | 8 +- src/t6/xsk/compiler.cpp | 5 +- src/t6/xsk/decompiler.cpp | 3 +- src/t6/xsk/lexer.cpp | 2 + src/t6/xsk/parser.cpp | 3541 ++++++++++++++++---------------- src/t6/xsk/parser.hpp | 686 ++++--- src/utils/xsk/arc/nodetree.cpp | 15 +- src/utils/xsk/arc/nodetree.hpp | 5 +- 8 files changed, 2170 insertions(+), 2095 deletions(-) diff --git a/gen/t6/parser.ypp b/gen/t6/parser.ypp index 4b6bd033..b4e4256f 100644 --- a/gen/t6/parser.ypp +++ b/gen/t6/parser.ypp @@ -57,6 +57,8 @@ xsk::arc::t6::parser::symbol_type T6lex(xsk::arc::t6::lexer& lexer); %token INCLUDE "#include" %token USINGTREE "#using_animtree" %token ANIMTREE "#animtree" +%token AUTOEXEC "autoexec" +%token PRIVATE "private" %token ENDON "endon" %token NOTIFY "notify" %token WAIT "wait" @@ -337,7 +339,11 @@ decl_constant 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)); } + { lexer.ban_header(@$); $$ = std::make_unique(@$, std::move($1), std::move($3), std::move($5), export_flags::none); } + | AUTOEXEC expr_identifier LPAREN expr_parameters RPAREN stmt_block + { lexer.ban_header(@$); $$ = std::make_unique(@$, std::move($2), std::move($4), std::move($6), export_flags::vis_autoexec); } + | PRIVATE expr_identifier LPAREN expr_parameters RPAREN stmt_block + { lexer.ban_header(@$); $$ = std::make_unique(@$, std::move($2), std::move($4), std::move($6), export_flags::vis_private); } ; stmt diff --git a/src/t6/xsk/compiler.cpp b/src/t6/xsk/compiler.cpp index 3f881f2c..aeed8f2c 100644 --- a/src/t6/xsk/compiler.cpp +++ b/src/t6/xsk/compiler.cpp @@ -169,7 +169,7 @@ void compiler::emit_decl_thread(const ast::decl_thread::ptr& thread) function_->index = index_; function_->name = thread->name->value; function_->params = static_cast(thread->params->list.size()); - function_->flags = 0; + function_->flags = static_cast(thread->flags); stack_idx_ = 0; label_idx_ = 0; @@ -1236,7 +1236,6 @@ void compiler::emit_expr_call_function(const ast::expr_function::ptr& expr, bool } } - // TODO: resolve import calls path bool as_dev = false; std::string end; @@ -1334,8 +1333,6 @@ void compiler::emit_expr_method_function(const ast::expr_function::ptr& expr, co } } - // TODO: resolve import calls path - emit_opcode(opcode::OP_PreScriptCall); emit_expr_arguments(expr->args); emit_expr(obj); diff --git a/src/t6/xsk/decompiler.cpp b/src/t6/xsk/decompiler.cpp index 12f6c13e..432579fe 100644 --- a/src/t6/xsk/decompiler.cpp +++ b/src/t6/xsk/decompiler.cpp @@ -42,7 +42,8 @@ void decompiler::decompile(const std::string& file, const assembly::ptr& data) auto name = std::make_unique(func->name); auto params = std::make_unique(); auto block = std::make_unique(); - func_ = std::make_unique(std::move(name), std::move(params), std::move(block)); + auto flags = static_cast(func->flags); + func_ = std::make_unique(std::move(name), std::move(params), std::move(block), flags); stack_ = std::stack(); labels_ = func->labels; diff --git a/src/t6/xsk/lexer.cpp b/src/t6/xsk/lexer.cpp index 8dd494aa..8fd13f17 100644 --- a/src/t6/xsk/lexer.cpp +++ b/src/t6/xsk/lexer.cpp @@ -30,6 +30,8 @@ const std::unordered_map keywo { "#include", parser::token::INCLUDE }, { "#using_animtree", parser::token::USINGTREE }, { "#animtree", parser::token::ANIMTREE }, + { "autoexec", parser::token::AUTOEXEC }, + { "private", parser::token::PRIVATE }, { "endon", parser::token::ENDON }, { "notify", parser::token::NOTIFY }, { "wait", parser::token::WAIT }, diff --git a/src/t6/xsk/parser.cpp b/src/t6/xsk/parser.cpp index ee7826f7..7cffdc5e 100644 --- a/src/t6/xsk/parser.cpp +++ b/src/t6/xsk/parser.cpp @@ -2339,1609 +2339,1621 @@ namespace xsk { namespace arc { namespace t6 { switch (yyn) { case 2: // root: program -#line 292 "parser.ypp" +#line 294 "parser.ypp" { ast = std::move(yystack_[0].value.as < ast::program::ptr > ()); } #line 2345 "parser.cpp" break; case 3: // root: %empty -#line 293 "parser.ypp" +#line 295 "parser.ypp" { ast = std::make_unique(yylhs.location); } #line 2351 "parser.cpp" break; case 4: // program: program inline -#line 298 "parser.ypp" +#line 300 "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 300 "parser.ypp" +#line 302 "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 302 "parser.ypp" +#line 304 "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 304 "parser.ypp" +#line 306 "parser.ypp" { yylhs.value.as < ast::program::ptr > () = std::make_unique(yylhs.location); } #line 2375 "parser.cpp" break; case 8: // program: include -#line 306 "parser.ypp" +#line 308 "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 308 "parser.ypp" +#line 310 "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 312 "parser.ypp" +#line 314 "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 317 "parser.ypp" +#line 319 "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 321 "parser.ypp" +#line 323 "parser.ypp" { yylhs.value.as < ast::decl > ().as_dev_begin = std::make_unique(yylhs.location); } #line 2405 "parser.cpp" break; case 13: // declaration: "#/" -#line 322 "parser.ypp" +#line 324 "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 323 "parser.ypp" +#line 325 "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 324 "parser.ypp" +#line 326 "parser.ypp" { yylhs.value.as < ast::decl > ().as_constant = std::move(yystack_[0].value.as < ast::decl_constant::ptr > ()); } #line 2423 "parser.cpp" break; case 16: // declaration: decl_thread -#line 325 "parser.ypp" +#line 327 "parser.ypp" { yylhs.value.as < ast::decl > ().as_thread = std::move(yystack_[0].value.as < ast::decl_thread::ptr > ()); } #line 2429 "parser.cpp" break; case 17: // decl_usingtree: "#using_animtree" "(" expr_string ")" ";" -#line 330 "parser.ypp" +#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 2435 "parser.cpp" break; case 18: // decl_constant: expr_identifier "=" expr ";" -#line 335 "parser.ypp" +#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 > ())); } #line 2441 "parser.cpp" break; case 19: // decl_thread: expr_identifier "(" expr_parameters ")" stmt_block -#line 340 "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 > ())); } +#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); } #line 2447 "parser.cpp" break; - case 20: // stmt: stmt_block + case 20: // decl_thread: "autoexec" expr_identifier "(" expr_parameters ")" stmt_block #line 344 "parser.ypp" - { yylhs.value.as < ast::stmt > ().as_list = std::move(yystack_[0].value.as < ast::stmt_list::ptr > ()); } + { 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 2453 "parser.cpp" break; - case 21: // stmt: stmt_call -#line 345 "parser.ypp" - { yylhs.value.as < ast::stmt > ().as_call = std::move(yystack_[0].value.as < ast::stmt_call::ptr > ()); } + case 21: // decl_thread: "private" expr_identifier "(" expr_parameters ")" stmt_block +#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); } #line 2459 "parser.cpp" break; - case 22: // stmt: stmt_assign -#line 346 "parser.ypp" - { yylhs.value.as < ast::stmt > ().as_assign = std::move(yystack_[0].value.as < ast::stmt_assign::ptr > ()); } + 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 > ()); } #line 2465 "parser.cpp" break; - case 23: // stmt: stmt_endon -#line 347 "parser.ypp" - { yylhs.value.as < ast::stmt > ().as_endon = std::move(yystack_[0].value.as < ast::stmt_endon::ptr > ()); } + 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 > ()); } #line 2471 "parser.cpp" break; - case 24: // stmt: stmt_notify -#line 348 "parser.ypp" - { yylhs.value.as < ast::stmt > ().as_notify = std::move(yystack_[0].value.as < ast::stmt_notify::ptr > ()); } + 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 > ()); } #line 2477 "parser.cpp" break; - case 25: // stmt: stmt_wait -#line 349 "parser.ypp" - { yylhs.value.as < ast::stmt > ().as_wait = std::move(yystack_[0].value.as < ast::stmt_wait::ptr > ()); } + 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 > ()); } #line 2483 "parser.cpp" break; - case 26: // stmt: stmt_waittill -#line 350 "parser.ypp" - { yylhs.value.as < ast::stmt > ().as_waittill = std::move(yystack_[0].value.as < ast::stmt_waittill::ptr > ()); } + 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 > ()); } #line 2489 "parser.cpp" break; - case 27: // stmt: stmt_waittillmatch -#line 351 "parser.ypp" - { yylhs.value.as < ast::stmt > ().as_waittillmatch = std::move(yystack_[0].value.as < ast::stmt_waittillmatch::ptr > ()); } + 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 > ()); } #line 2495 "parser.cpp" break; - case 28: // stmt: stmt_waittillframeend -#line 352 "parser.ypp" - { yylhs.value.as < ast::stmt > ().as_waittillframeend = std::move(yystack_[0].value.as < ast::stmt_waittillframeend::ptr > ()); } + 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 > ()); } #line 2501 "parser.cpp" break; - case 29: // stmt: stmt_if -#line 353 "parser.ypp" - { yylhs.value.as < ast::stmt > ().as_if = std::move(yystack_[0].value.as < ast::stmt_if::ptr > ()); } + 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 > ()); } #line 2507 "parser.cpp" break; - case 30: // stmt: stmt_ifelse -#line 354 "parser.ypp" - { yylhs.value.as < ast::stmt > ().as_ifelse = std::move(yystack_[0].value.as < ast::stmt_ifelse::ptr > ()); } + 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 > ()); } #line 2513 "parser.cpp" break; - case 31: // stmt: stmt_while -#line 355 "parser.ypp" - { yylhs.value.as < ast::stmt > ().as_while = std::move(yystack_[0].value.as < ast::stmt_while::ptr > ()); } + 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 > ()); } #line 2519 "parser.cpp" break; - case 32: // stmt: stmt_dowhile -#line 356 "parser.ypp" - { yylhs.value.as < ast::stmt > ().as_dowhile = std::move(yystack_[0].value.as < ast::stmt_dowhile::ptr > ()); } + 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 > ()); } #line 2525 "parser.cpp" break; - case 33: // stmt: stmt_for -#line 357 "parser.ypp" - { yylhs.value.as < ast::stmt > ().as_for = std::move(yystack_[0].value.as < ast::stmt_for::ptr > ()); } + 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 > ()); } #line 2531 "parser.cpp" break; - case 34: // stmt: stmt_foreach -#line 358 "parser.ypp" - { yylhs.value.as < ast::stmt > ().as_foreach = std::move(yystack_[0].value.as < ast::stmt_foreach::ptr > ()); } + 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 > ()); } #line 2537 "parser.cpp" break; - case 35: // stmt: stmt_switch -#line 359 "parser.ypp" - { yylhs.value.as < ast::stmt > ().as_switch = std::move(yystack_[0].value.as < ast::stmt_switch::ptr > ()); } + 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 > ()); } #line 2543 "parser.cpp" break; - case 36: // stmt: stmt_case -#line 360 "parser.ypp" - { yylhs.value.as < ast::stmt > ().as_case = std::move(yystack_[0].value.as < ast::stmt_case::ptr > ()); } + 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 > ()); } #line 2549 "parser.cpp" break; - case 37: // stmt: stmt_default -#line 361 "parser.ypp" - { yylhs.value.as < ast::stmt > ().as_default = std::move(yystack_[0].value.as < ast::stmt_default::ptr > ()); } + 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 > ()); } #line 2555 "parser.cpp" break; - case 38: // stmt: stmt_break -#line 362 "parser.ypp" - { yylhs.value.as < ast::stmt > ().as_break = std::move(yystack_[0].value.as < ast::stmt_break::ptr > ()); } + 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 > ()); } #line 2561 "parser.cpp" break; - case 39: // stmt: stmt_continue -#line 363 "parser.ypp" - { yylhs.value.as < ast::stmt > ().as_continue = std::move(yystack_[0].value.as < ast::stmt_continue::ptr > ()); } + 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 > ()); } #line 2567 "parser.cpp" break; - case 40: // stmt: stmt_return -#line 364 "parser.ypp" - { yylhs.value.as < ast::stmt > ().as_return = std::move(yystack_[0].value.as < ast::stmt_return::ptr > ()); } + 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 > ()); } #line 2573 "parser.cpp" break; - case 41: // stmt: stmt_prof_begin -#line 365 "parser.ypp" - { yylhs.value.as < ast::stmt > ().as_prof_begin = std::move(yystack_[0].value.as < ast::stmt_prof_begin::ptr > ()); } + 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 > ()); } #line 2579 "parser.cpp" break; - case 42: // stmt: stmt_prof_end -#line 366 "parser.ypp" - { yylhs.value.as < ast::stmt > ().as_prof_end = std::move(yystack_[0].value.as < ast::stmt_prof_end::ptr > ()); } + 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 > ()); } #line 2585 "parser.cpp" break; - case 43: // stmt_or_dev: stmt -#line 370 "parser.ypp" - { yylhs.value.as < ast::stmt > () = std::move(yystack_[0].value.as < ast::stmt > ()); } + 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 > ()); } #line 2591 "parser.cpp" break; - case 44: // stmt_or_dev: stmt_dev -#line 371 "parser.ypp" - { yylhs.value.as < ast::stmt > ().as_dev = std::move(yystack_[0].value.as < ast::stmt_dev::ptr > ()); } + case 44: // stmt: stmt_prof_end +#line 372 "parser.ypp" + { yylhs.value.as < ast::stmt > ().as_prof_end = std::move(yystack_[0].value.as < ast::stmt_prof_end::ptr > ()); } #line 2597 "parser.cpp" break; - case 45: // stmt_list: stmt_list stmt + case 45: // stmt_or_dev: stmt #line 376 "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 > ())); } + { yylhs.value.as < ast::stmt > () = std::move(yystack_[0].value.as < ast::stmt > ()); } #line 2603 "parser.cpp" break; - case 46: // stmt_list: stmt -#line 378 "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 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 > ()); } #line 2609 "parser.cpp" break; - case 47: // stmt_or_dev_list: stmt_or_dev_list stmt_or_dev -#line 383 "parser.ypp" + 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 > ())); } #line 2615 "parser.cpp" break; - case 48: // stmt_or_dev_list: stmt_or_dev -#line 385 "parser.ypp" + 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 > ())); } #line 2621 "parser.cpp" break; - case 49: // stmt_dev: "/#" stmt_list "#/" + case 49: // stmt_or_dev_list: stmt_or_dev_list stmt_or_dev #line 389 "parser.ypp" - { yylhs.value.as < ast::stmt_dev::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[1].value.as < ast::stmt_list::ptr > ())); } + { 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 2627 "parser.cpp" break; - case 50: // stmt_dev: "/#" "#/" -#line 390 "parser.ypp" - { yylhs.value.as < ast::stmt_dev::ptr > () = std::make_unique(yylhs.location, std::make_unique(yylhs.location)); } + case 50: // stmt_or_dev_list: stmt_or_dev +#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 > ())); } #line 2633 "parser.cpp" break; - case 51: // stmt_block: "{" stmt_or_dev_list "}" -#line 394 "parser.ypp" - { yylhs.value.as < ast::stmt_list::ptr > () = std::move(yystack_[1].value.as < ast::stmt_list::ptr > ()); } + 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 > ())); } #line 2639 "parser.cpp" break; - case 52: // stmt_block: "{" "}" -#line 395 "parser.ypp" - { yylhs.value.as < ast::stmt_list::ptr > () = std::make_unique(yylhs.location); } + case 52: // stmt_dev: "/#" "#/" +#line 396 "parser.ypp" + { yylhs.value.as < ast::stmt_dev::ptr > () = std::make_unique(yylhs.location, std::make_unique(yylhs.location)); } #line 2645 "parser.cpp" break; - case 53: // stmt_expr: expr_assign + case 53: // stmt_block: "{" stmt_or_dev_list "}" #line 400 "parser.ypp" - { yylhs.value.as < ast::stmt_expr::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[0].value.as < ast::expr > ())); } + { yylhs.value.as < ast::stmt_list::ptr > () = std::move(yystack_[1].value.as < ast::stmt_list::ptr > ()); } #line 2651 "parser.cpp" break; - case 54: // stmt_expr: expr_increment -#line 402 "parser.ypp" - { yylhs.value.as < ast::stmt_expr::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[0].value.as < ast::expr > ())); } + case 54: // stmt_block: "{" "}" +#line 401 "parser.ypp" + { yylhs.value.as < ast::stmt_list::ptr > () = std::make_unique(yylhs.location); } #line 2657 "parser.cpp" break; - case 55: // stmt_expr: expr_decrement -#line 404 "parser.ypp" + case 55: // stmt_expr: expr_assign +#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 2663 "parser.cpp" break; - case 56: // stmt_expr: %empty -#line 406 "parser.ypp" - { yylhs.value.as < ast::stmt_expr::ptr > () = std::make_unique(yylhs.location, std::make_unique(yylhs.location)); } + case 56: // stmt_expr: expr_increment +#line 408 "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_call: expr_call ";" -#line 411 "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 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 > ())); } #line 2675 "parser.cpp" break; - case 58: // stmt_call: expr_method ";" -#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_method::ptr > ()))); } + 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)); } #line 2681 "parser.cpp" break; - case 59: // stmt_assign: expr_assign ";" -#line 418 "parser.ypp" - { yylhs.value.as < ast::stmt_assign::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[1].value.as < ast::expr > ())); } + 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 > ()))); } #line 2687 "parser.cpp" break; - case 60: // stmt_assign: expr_increment ";" -#line 420 "parser.ypp" - { yylhs.value.as < ast::stmt_assign::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[1].value.as < ast::expr > ())); } + 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 > ()))); } #line 2693 "parser.cpp" break; - case 61: // stmt_assign: expr_decrement ";" -#line 422 "parser.ypp" + case 61: // stmt_assign: expr_assign ";" +#line 424 "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_endon: expr_object "endon" "(" expr ")" ";" -#line 427 "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 > ())); } + case 62: // stmt_assign: expr_increment ";" +#line 426 "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_notify: expr_object "notify" "(" expr "," expr_arguments_no_empty ")" ";" -#line 432 "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 > ())); } + case 63: // stmt_assign: expr_decrement ";" +#line 428 "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_notify: expr_object "notify" "(" expr ")" ";" -#line 434 "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)); } + case 64: // stmt_endon: expr_object "endon" "(" expr ")" ";" +#line 433 "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_wait: "wait" expr ";" -#line 439 "parser.ypp" - { yylhs.value.as < ast::stmt_wait::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[1].value.as < ast::expr > ())); } + case 65: // stmt_notify: expr_object "notify" "(" expr "," expr_arguments_no_empty ")" ";" +#line 438 "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_waittill: expr_object "waittill" "(" expr "," expr_arguments_no_empty ")" ";" -#line 444 "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 > ())); } + case 66: // stmt_notify: expr_object "notify" "(" expr ")" ";" +#line 440 "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_waittill: expr_object "waittill" "(" expr ")" ";" -#line 446 "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)); } + case 67: // stmt_wait: "wait" expr ";" +#line 445 "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_waittillmatch: expr_object "waittillmatch" "(" expr "," expr_arguments_no_empty ")" ";" -#line 451 "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 > ())); } + case 68: // stmt_waittill: expr_object "waittill" "(" expr "," expr_arguments_no_empty ")" ";" +#line 450 "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_waittillmatch: expr_object "waittillmatch" "(" expr ")" ";" -#line 453 "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)); } + case 69: // stmt_waittill: expr_object "waittill" "(" expr ")" ";" +#line 452 "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_waittillframeend: "waittillframeend" ";" -#line 458 "parser.ypp" - { yylhs.value.as < ast::stmt_waittillframeend::ptr > () = std::make_unique(yylhs.location); } + case 70: // stmt_waittillmatch: expr_object "waittillmatch" "(" expr "," expr_arguments_no_empty ")" ";" +#line 457 "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_if: "if" "(" expr ")" stmt -#line 463 "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 > ())); } + case 71: // stmt_waittillmatch: expr_object "waittillmatch" "(" expr ")" ";" +#line 459 "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_ifelse: "if" "(" expr ")" stmt "else" stmt -#line 468 "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 > ())); } + case 72: // stmt_waittillframeend: "waittillframeend" ";" +#line 464 "parser.ypp" + { yylhs.value.as < ast::stmt_waittillframeend::ptr > () = std::make_unique(yylhs.location); } #line 2765 "parser.cpp" break; - case 73: // stmt_while: "while" "(" expr ")" stmt -#line 473 "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 > ())); } + case 73: // stmt_if: "if" "(" expr ")" stmt +#line 469 "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_dowhile: "do" stmt "while" "(" expr ")" ";" -#line 478 "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 > ())); } + case 74: // stmt_ifelse: "if" "(" expr ")" stmt "else" stmt +#line 474 "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_for: "for" "(" stmt_expr ";" expr_or_empty ";" stmt_expr ")" stmt -#line 483 "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 > ())); } + case 75: // stmt_while: "while" "(" expr ")" stmt +#line 479 "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_foreach: "foreach" "(" expr_identifier "in" expr ")" stmt -#line 488 "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 > ())); } + case 76: // stmt_dowhile: "do" stmt "while" "(" expr ")" ";" +#line 484 "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_foreach: "foreach" "(" expr_identifier "," expr_identifier "in" expr ")" stmt -#line 490 "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 > ())); } + case 77: // stmt_for: "for" "(" stmt_expr ";" expr_or_empty ";" stmt_expr ")" stmt +#line 489 "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_switch: "switch" "(" expr ")" stmt_block -#line 495 "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 > ())); } + case 78: // stmt_foreach: "foreach" "(" expr_identifier "in" expr ")" stmt +#line 494 "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_case: "case" expr_integer ":" -#line 500 "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)); } + case 79: // stmt_foreach: "foreach" "(" expr_identifier "," expr_identifier "in" expr ")" stmt +#line 496 "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_case: "case" expr_string ":" -#line 502 "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)); } + case 80: // stmt_switch: "switch" "(" expr ")" stmt_block +#line 501 "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_default: "default" ":" -#line 507 "parser.ypp" - { yylhs.value.as < ast::stmt_default::ptr > () = std::make_unique(yylhs.location, std::make_unique(yylhs.location)); } + case 81: // stmt_case: "case" expr_integer ":" +#line 506 "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_break: "break" ";" -#line 512 "parser.ypp" - { yylhs.value.as < ast::stmt_break::ptr > () = std::make_unique(yylhs.location); } + case 82: // stmt_case: "case" expr_string ":" +#line 508 "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_continue: "continue" ";" -#line 517 "parser.ypp" - { yylhs.value.as < ast::stmt_continue::ptr > () = std::make_unique(yylhs.location); } + case 83: // stmt_default: "default" ":" +#line 513 "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_return: "return" expr ";" -#line 522 "parser.ypp" - { yylhs.value.as < ast::stmt_return::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[1].value.as < ast::expr > ())); } + case 84: // stmt_break: "break" ";" +#line 518 "parser.ypp" + { yylhs.value.as < ast::stmt_break::ptr > () = std::make_unique(yylhs.location); } #line 2837 "parser.cpp" break; - case 85: // stmt_return: "return" ";" -#line 524 "parser.ypp" - { yylhs.value.as < ast::stmt_return::ptr > () = std::make_unique(yylhs.location, std::make_unique(yylhs.location)); } + case 85: // stmt_continue: "continue" ";" +#line 523 "parser.ypp" + { yylhs.value.as < ast::stmt_continue::ptr > () = std::make_unique(yylhs.location); } #line 2843 "parser.cpp" break; - case 86: // stmt_prof_begin: "prof_begin" "(" expr_arguments ")" ";" -#line 529 "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 > ())); } + case 86: // stmt_return: "return" expr ";" +#line 528 "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_prof_end: "prof_end" "(" expr_arguments ")" ";" -#line 534 "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 > ())); } + case 87: // stmt_return: "return" ";" +#line 530 "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: // expr: expr_ternary -#line 538 "parser.ypp" - { yylhs.value.as < ast::expr > () = std::move(yystack_[0].value.as < ast::expr > ()); } + case 88: // stmt_prof_begin: "prof_begin" "(" expr_arguments ")" ";" +#line 535 "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: // expr: expr_binary -#line 539 "parser.ypp" - { yylhs.value.as < ast::expr > () = std::move(yystack_[0].value.as < ast::expr > ()); } + case 89: // stmt_prof_end: "prof_end" "(" expr_arguments ")" ";" +#line 540 "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_primitive -#line 540 "parser.ypp" + case 90: // expr: expr_ternary +#line 544 "parser.ypp" { yylhs.value.as < ast::expr > () = std::move(yystack_[0].value.as < ast::expr > ()); } #line 2873 "parser.cpp" break; - case 91: // expr_or_empty: expr -#line 544 "parser.ypp" + case 91: // expr: expr_binary +#line 545 "parser.ypp" { yylhs.value.as < ast::expr > () = std::move(yystack_[0].value.as < ast::expr > ()); } #line 2879 "parser.cpp" break; - case 92: // expr_or_empty: %empty -#line 545 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::make_unique(yylhs.location); } + case 92: // expr: expr_primitive +#line 546 "parser.ypp" + { yylhs.value.as < ast::expr > () = std::move(yystack_[0].value.as < ast::expr > ()); } #line 2885 "parser.cpp" break; - case 93: // expr_assign: expr_object "=" expr + case 93: // expr_or_empty: expr #line 550 "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 > ())); } + { yylhs.value.as < ast::expr > () = std::move(yystack_[0].value.as < ast::expr > ()); } #line 2891 "parser.cpp" break; - case 94: // expr_assign: expr_object "|=" expr -#line 552 "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 > ())); } + case 94: // expr_or_empty: %empty +#line 551 "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 554 "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 > ())); } + case 95: // expr_assign: expr_object "=" expr +#line 556 "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 556 "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 > ())); } + case 96: // expr_assign: expr_object "|=" expr +#line 558 "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 558 "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 > ())); } + case 97: // expr_assign: expr_object "&=" expr +#line 560 "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 560 "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 > ())); } + case 98: // expr_assign: expr_object "^=" expr +#line 562 "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 562 "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 > ())); } + case 99: // expr_assign: expr_object "<<=" expr +#line 564 "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 564 "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 > ())); } + case 100: // expr_assign: expr_object ">>=" expr +#line 566 "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 566 "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 > ())); } + case 101: // expr_assign: expr_object "+=" expr +#line 568 "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 568 "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 > ())); } + case 102: // expr_assign: expr_object "-=" expr +#line 570 "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 570 "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 > ())); } + case 103: // expr_assign: expr_object "*=" expr +#line 572 "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_increment: "++" expr_object -#line 575 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::make_unique(yylhs.location, std::move(yystack_[0].value.as < ast::expr > ()), true); } + case 104: // expr_assign: expr_object "/=" expr +#line 574 "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_increment: expr_object "++" -#line 577 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::make_unique(yylhs.location, std::move(yystack_[1].value.as < ast::expr > ()), false); } + case 105: // expr_assign: expr_object "%=" expr +#line 576 "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_decrement: "--" expr_object -#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); } + case 106: // expr_increment: "++" expr_object +#line 581 "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_decrement: expr_object "--" -#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); } + case 107: // expr_increment: expr_object "++" +#line 583 "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_ternary: expr "?" expr ":" expr -#line 589 "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 > ())); } + case 108: // expr_decrement: "--" expr_object +#line 588 "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_binary: expr "||" expr -#line 594 "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 > ())); } + case 109: // expr_decrement: expr_object "--" +#line 590 "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_binary: expr "&&" expr -#line 596 "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 > ())); } + case 110: // expr_ternary: expr "?" expr ":" expr +#line 595 "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 598 "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 > ())); } + case 111: // expr_binary: expr "||" expr +#line 600 "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 600 "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 > ())); } + case 112: // expr_binary: expr "&&" expr +#line 602 "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 602 "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 > ())); } + case 113: // expr_binary: expr "==" expr +#line 604 "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 604 "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 > ())); } + case 114: // expr_binary: expr "!=" expr +#line 606 "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 606 "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 > ())); } + case 115: // expr_binary: expr "<=" expr +#line 608 "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 608 "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 > ())); } + case 116: // expr_binary: expr ">=" expr +#line 610 "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 610 "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 > ())); } + case 117: // expr_binary: expr "<" expr +#line 612 "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 612 "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 > ())); } + case 118: // expr_binary: expr ">" expr +#line 614 "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 614 "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 > ())); } + case 119: // expr_binary: expr "|" expr +#line 616 "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 616 "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 > ())); } + case 120: // expr_binary: expr "&" expr +#line 618 "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 618 "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 > ())); } + case 121: // expr_binary: expr "^" expr +#line 620 "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 620 "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 > ())); } + case 122: // expr_binary: expr "<<" expr +#line 622 "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 622 "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 > ())); } + case 123: // expr_binary: expr ">>" expr +#line 624 "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 624 "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 > ())); } + case 124: // expr_binary: expr "+" expr +#line 626 "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 626 "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 > ())); } + case 125: // expr_binary: expr "-" expr +#line 628 "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 628 "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 > ())); } + case 126: // expr_binary: expr "*" expr +#line 630 "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_primitive: expr_complement + case 127: // expr_binary: expr "/" expr #line 632 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_complement::ptr > ()); } + { 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_primitive: expr_negate -#line 633 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_negate::ptr > ()); } + case 128: // expr_binary: expr "%" expr +#line 634 "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_not -#line 634 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_not::ptr > ()); } + case 129: // expr_primitive: expr_complement +#line 638 "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_call -#line 635 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_call::ptr > ()); } + case 130: // expr_primitive: expr_negate +#line 639 "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_method -#line 636 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_method::ptr > ()); } + case 131: // expr_primitive: expr_not +#line 640 "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_getnextarraykey -#line 637 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_getnextarraykey::ptr > ()); } + case 132: // expr_primitive: expr_call +#line 641 "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_getfirstarraykey -#line 638 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_getfirstarraykey::ptr > ()); } + case 133: // expr_primitive: expr_method +#line 642 "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_getdvarcoloralpha -#line 639 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_getdvarcoloralpha::ptr > ()); } + case 134: // expr_primitive: expr_getnextarraykey +#line 643 "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_getdvarcolorblue -#line 640 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_getdvarcolorblue::ptr > ()); } + case 135: // expr_primitive: expr_getfirstarraykey +#line 644 "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_getdvarcolorgreen -#line 641 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_getdvarcolorgreen::ptr > ()); } + case 136: // expr_primitive: expr_getdvarcoloralpha +#line 645 "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_getdvarcolorred -#line 642 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_getdvarcolorred::ptr > ()); } + case 137: // expr_primitive: expr_getdvarcolorblue +#line 646 "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_getdvarvector -#line 643 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_getdvarvector::ptr > ()); } + case 138: // expr_primitive: expr_getdvarcolorgreen +#line 647 "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_getdvarfloat -#line 644 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_getdvarfloat::ptr > ()); } + case 139: // expr_primitive: expr_getdvarcolorred +#line 648 "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_getdvarint -#line 645 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_getdvarint::ptr > ()); } + case 140: // expr_primitive: expr_getdvarvector +#line 649 "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_getdvar -#line 646 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_getdvar::ptr > ()); } + case 141: // expr_primitive: expr_getdvarfloat +#line 650 "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_gettime -#line 647 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_gettime::ptr > ()); } + case 142: // expr_primitive: expr_getdvarint +#line 651 "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_abs -#line 648 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_abs::ptr > ()); } + case 143: // expr_primitive: expr_getdvar +#line 652 "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_vectortoangles -#line 649 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_vectortoangles::ptr > ()); } + case 144: // expr_primitive: expr_gettime +#line 653 "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_angleclamp180 -#line 650 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_angleclamp180::ptr > ()); } + case 145: // expr_primitive: expr_abs +#line 654 "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_anglestoforward -#line 651 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_anglestoforward::ptr > ()); } + case 146: // expr_primitive: expr_vectortoangles +#line 655 "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_anglestoright -#line 652 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_anglestoright::ptr > ()); } + case 147: // expr_primitive: expr_angleclamp180 +#line 656 "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_anglestoup -#line 653 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_anglestoup::ptr > ()); } + case 148: // expr_primitive: expr_anglestoforward +#line 657 "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_vectorscale -#line 654 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_vectorscale::ptr > ()); } + case 149: // expr_primitive: expr_anglestoright +#line 658 "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_isdefined -#line 655 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_isdefined::ptr > ()); } + case 150: // expr_primitive: expr_anglestoup +#line 659 "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_reference -#line 656 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_reference::ptr > ()); } + case 151: // expr_primitive: expr_vectorscale +#line 660 "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_array -#line 657 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_array::ptr > ()); } + case 152: // expr_primitive: expr_isdefined +#line 661 "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_field -#line 658 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_field::ptr > ()); } + case 153: // expr_primitive: expr_reference +#line 662 "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_size -#line 659 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_size::ptr > ()); } + case 154: // expr_primitive: expr_array +#line 663 "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_paren -#line 660 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_paren::ptr > ()); } + case 155: // expr_primitive: expr_field +#line 664 "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_empty_array -#line 661 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_empty_array::ptr > ()); } + case 156: // expr_primitive: expr_size +#line 665 "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_undefined -#line 662 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_undefined::ptr > ()); } + case 157: // expr_primitive: expr_paren +#line 666 "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_game -#line 663 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_game::ptr > ()); } + case 158: // expr_primitive: expr_empty_array +#line 667 "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_self -#line 664 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_self::ptr > ()); } + case 159: // expr_primitive: expr_undefined +#line 668 "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_anim -#line 665 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_anim::ptr > ()); } + case 160: // expr_primitive: expr_game +#line 669 "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_level -#line 666 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_level::ptr > ()); } + case 161: // expr_primitive: expr_self +#line 670 "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_animation -#line 667 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_animation::ptr > ()); } + case 162: // expr_primitive: expr_anim +#line 671 "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_animtree -#line 668 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_animtree::ptr > ()); } + case 163: // expr_primitive: expr_level +#line 672 "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_identifier -#line 669 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_identifier::ptr > ()); } + case 164: // expr_primitive: expr_animation +#line 673 "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_istring -#line 670 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_istring::ptr > ()); } + case 165: // expr_primitive: expr_animtree +#line 674 "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_string -#line 671 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_string::ptr > ()); } + case 166: // expr_primitive: expr_identifier +#line 675 "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_vector -#line 672 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_vector::ptr > ()); } + case 167: // expr_primitive: expr_istring +#line 676 "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_hash -#line 673 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_hash::ptr > ()); } + case 168: // expr_primitive: expr_string +#line 677 "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_float -#line 674 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_float::ptr > ()); } + case 169: // expr_primitive: expr_vector +#line 678 "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_integer -#line 675 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_integer::ptr > ()); } + case 170: // expr_primitive: expr_hash +#line 679 "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_false -#line 676 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_false::ptr > ()); } + case 171: // expr_primitive: expr_float +#line 680 "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_true -#line 677 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_true::ptr > ()); } + case 172: // expr_primitive: expr_integer +#line 681 "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_complement: "~" expr + case 173: // expr_primitive: expr_false #line 682 "parser.ypp" - { yylhs.value.as < ast::expr_complement::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[0].value.as < ast::expr > ())); } + { 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_negate: "-" expr_identifier -#line 687 "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 > ()))); } + case 174: // expr_primitive: expr_true +#line 683 "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_negate: "-" expr_paren -#line 689 "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 > ()))); } + case 175: // expr_complement: "~" expr +#line 688 "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_array -#line 691 "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 > ()))); } + case 176: // expr_negate: "-" expr_identifier +#line 693 "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_field -#line 693 "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 > ()))); } + case 177: // expr_negate: "-" expr_paren +#line 695 "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_not: "!" expr -#line 698 "parser.ypp" - { yylhs.value.as < ast::expr_not::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[0].value.as < ast::expr > ())); } + case 178: // expr_negate: "-" expr_array +#line 697 "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_call: expr_function -#line 702 "parser.ypp" - { yylhs.value.as < ast::expr_call::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[0].value.as < ast::call > ())); } + case 179: // expr_negate: "-" expr_field +#line 699 "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_call: expr_pointer -#line 703 "parser.ypp" - { yylhs.value.as < ast::expr_call::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[0].value.as < ast::call > ())); } + case 180: // expr_not: "!" expr +#line 704 "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_method: expr_object expr_function -#line 706 "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 > ())); } + case 181: // expr_call: expr_function +#line 708 "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_method: expr_object expr_pointer -#line 707 "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 > ())); } + case 182: // expr_call: expr_pointer +#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 3425 "parser.cpp" break; - case 183: // expr_function: expr_identifier "(" expr_arguments ")" + case 183: // expr_method: expr_object expr_function #line 712 "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); } + { 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_function: expr_path "::" expr_identifier "(" expr_arguments ")" -#line 714 "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); } + case 184: // expr_method: expr_object expr_pointer +#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 3437 "parser.cpp" break; - case 185: // expr_function: "thread" expr_identifier "(" expr_arguments ")" -#line 716 "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); } + case 185: // expr_function: expr_identifier "(" expr_arguments ")" +#line 718 "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: "thread" expr_path "::" expr_identifier "(" expr_arguments ")" -#line 718 "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); } + case 186: // expr_function: expr_path "::" expr_identifier "(" expr_arguments ")" +#line 720 "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_pointer: "[" "[" expr "]" "]" "(" expr_arguments ")" -#line 723 "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); } + case 187: // expr_function: "thread" expr_identifier "(" expr_arguments ")" +#line 722 "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_pointer: "thread" "[" "[" expr "]" "]" "(" expr_arguments ")" -#line 725 "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); } + case 188: // expr_function: "thread" expr_path "::" expr_identifier "(" expr_arguments ")" +#line 724 "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_parameters: expr_parameters "," expr_parameters_default -#line 730 "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 > ())); } + case 189: // expr_pointer: "[" "[" expr "]" "]" "(" expr_arguments ")" +#line 729 "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_parameters: expr_parameters "," expr_identifier -#line 732 "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 > ()))); } + case 190: // expr_pointer: "thread" "[" "[" expr "]" "]" "(" expr_arguments ")" +#line 731 "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_default -#line 734 "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 > ())); } + case 191: // expr_parameters: expr_parameters "," expr_parameters_default +#line 736 "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_identifier -#line 736 "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 > ()))); } + case 192: // expr_parameters: expr_parameters "," expr_identifier +#line 738 "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: %empty -#line 738 "parser.ypp" - { yylhs.value.as < ast::expr_parameters::ptr > () = std::make_unique(yylhs.location); } + case 193: // expr_parameters: expr_parameters_default +#line 740 "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_default: expr_identifier "=" expr_literal -#line 743 "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 > ())); } + case 194: // expr_parameters: expr_identifier +#line 742 "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_literal: expr_istring -#line 747 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_istring::ptr > ()); } + case 195: // expr_parameters: %empty +#line 744 "parser.ypp" + { yylhs.value.as < ast::expr_parameters::ptr > () = std::make_unique(yylhs.location); } #line 3503 "parser.cpp" break; - case 196: // expr_literal: expr_string -#line 748 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_string::ptr > ()); } + case 196: // expr_parameters_default: expr_identifier "=" expr_literal +#line 749 "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_float -#line 749 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_float::ptr > ()); } + case 197: // expr_literal: expr_istring +#line 753 "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_integer -#line 750 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_integer::ptr > ()); } + case 198: // expr_literal: expr_string +#line 754 "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_false -#line 751 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_false::ptr > ()); } + case 199: // expr_literal: expr_float +#line 755 "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_true -#line 752 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_true::ptr > ()); } + case 200: // expr_literal: expr_integer +#line 756 "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_arguments: expr_arguments_no_empty + case 201: // expr_literal: expr_false #line 757 "parser.ypp" - { yylhs.value.as < ast::expr_arguments::ptr > () = std::move(yystack_[0].value.as < ast::expr_arguments::ptr > ()); } + { 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_arguments: %empty -#line 759 "parser.ypp" - { yylhs.value.as < ast::expr_arguments::ptr > () = std::make_unique(yylhs.location); } + case 202: // expr_literal: expr_true +#line 758 "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_no_empty: expr_arguments "," expr -#line 764 "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 > ())); } + case 203: // expr_arguments: expr_arguments_no_empty +#line 763 "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_no_empty: expr -#line 766 "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 > ())); } + case 204: // expr_arguments: %empty +#line 765 "parser.ypp" + { yylhs.value.as < ast::expr_arguments::ptr > () = std::make_unique(yylhs.location); } #line 3557 "parser.cpp" break; - case 205: // expr_getnextarraykey: "getnextarraykey" "(" expr "," expr ")" -#line 771 "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 > ())); } + case 205: // expr_arguments_no_empty: expr_arguments "," expr +#line 770 "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_getfirstarraykey: "getfirstarraykey" "(" expr ")" -#line 776 "parser.ypp" - { yylhs.value.as < ast::expr_getfirstarraykey::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[1].value.as < ast::expr > ())); } + case 206: // expr_arguments_no_empty: expr +#line 772 "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_getdvarcoloralpha: "getdvarcoloralpha" "(" expr ")" -#line 781 "parser.ypp" - { yylhs.value.as < ast::expr_getdvarcoloralpha::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[1].value.as < ast::expr > ())); } + case 207: // expr_getnextarraykey: "getnextarraykey" "(" expr "," expr ")" +#line 777 "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_getdvarcolorblue: "getdvarcolorblue" "(" expr ")" -#line 786 "parser.ypp" - { yylhs.value.as < ast::expr_getdvarcolorblue::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[1].value.as < ast::expr > ())); } + case 208: // expr_getfirstarraykey: "getfirstarraykey" "(" expr ")" +#line 782 "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_getdvarcolorgreen: "getdvarcolorgreen" "(" expr ")" -#line 791 "parser.ypp" - { yylhs.value.as < ast::expr_getdvarcolorgreen::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[1].value.as < ast::expr > ())); } + case 209: // expr_getdvarcoloralpha: "getdvarcoloralpha" "(" expr ")" +#line 787 "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_getdvarcolorred: "getdvarcolorred" "(" expr ")" -#line 796 "parser.ypp" - { yylhs.value.as < ast::expr_getdvarcolorred::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[1].value.as < ast::expr > ())); } + case 210: // expr_getdvarcolorblue: "getdvarcolorblue" "(" expr ")" +#line 792 "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_getdvarvector: "getdvarvector" "(" expr ")" -#line 801 "parser.ypp" - { yylhs.value.as < ast::expr_getdvarvector::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[1].value.as < ast::expr > ())); } + case 211: // expr_getdvarcolorgreen: "getdvarcolorgreen" "(" expr ")" +#line 797 "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_getdvarfloat: "getdvarfloat" "(" expr ")" -#line 806 "parser.ypp" - { yylhs.value.as < ast::expr_getdvarfloat::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[1].value.as < ast::expr > ())); } + case 212: // expr_getdvarcolorred: "getdvarcolorred" "(" expr ")" +#line 802 "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_getdvarint: "getdvarint" "(" expr ")" -#line 811 "parser.ypp" - { yylhs.value.as < ast::expr_getdvarint::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[1].value.as < ast::expr > ())); } + case 213: // expr_getdvarvector: "getdvarvector" "(" expr ")" +#line 807 "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_getdvar: "getdvar" "(" expr ")" -#line 816 "parser.ypp" - { yylhs.value.as < ast::expr_getdvar::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[1].value.as < ast::expr > ())); } + case 214: // expr_getdvarfloat: "getdvarfloat" "(" expr ")" +#line 812 "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_gettime: "gettime" "(" ")" -#line 821 "parser.ypp" - { yylhs.value.as < ast::expr_gettime::ptr > () = std::make_unique(yylhs.location); } + case 215: // expr_getdvarint: "getdvarint" "(" expr ")" +#line 817 "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_abs: "abs" "(" expr ")" -#line 826 "parser.ypp" - { yylhs.value.as < ast::expr_abs::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[1].value.as < ast::expr > ())); } + case 216: // expr_getdvar: "getdvar" "(" expr ")" +#line 822 "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_vectortoangles: "vectortoangles" "(" expr ")" -#line 831 "parser.ypp" - { yylhs.value.as < ast::expr_vectortoangles::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[1].value.as < ast::expr > ())); } + case 217: // expr_gettime: "gettime" "(" ")" +#line 827 "parser.ypp" + { yylhs.value.as < ast::expr_gettime::ptr > () = std::make_unique(yylhs.location); } #line 3635 "parser.cpp" break; - case 218: // expr_angleclamp180: "angleclamp180" "(" expr ")" -#line 836 "parser.ypp" - { yylhs.value.as < ast::expr_angleclamp180::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[1].value.as < ast::expr > ())); } + case 218: // expr_abs: "abs" "(" expr ")" +#line 832 "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_anglestoforward: "anglestoforward" "(" expr ")" -#line 841 "parser.ypp" - { yylhs.value.as < ast::expr_anglestoforward::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[1].value.as < ast::expr > ())); } + case 219: // expr_vectortoangles: "vectortoangles" "(" expr ")" +#line 837 "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_anglestoright: "anglestoright" "(" expr ")" -#line 846 "parser.ypp" - { yylhs.value.as < ast::expr_anglestoright::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[1].value.as < ast::expr > ())); } + case 220: // expr_angleclamp180: "angleclamp180" "(" expr ")" +#line 842 "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_anglestoup: "anglestoup" "(" expr ")" -#line 851 "parser.ypp" - { yylhs.value.as < ast::expr_anglestoup::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[1].value.as < ast::expr > ())); } + case 221: // expr_anglestoforward: "anglestoforward" "(" expr ")" +#line 847 "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_vectorscale: "vectorscale" "(" expr "," expr ")" -#line 856 "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 > ())); } + case 222: // expr_anglestoright: "anglestoright" "(" expr ")" +#line 852 "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_isdefined: "isdefined" "(" expr ")" -#line 861 "parser.ypp" - { yylhs.value.as < ast::expr_isdefined::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[1].value.as < ast::expr > ())); } + case 223: // expr_anglestoup: "anglestoup" "(" expr ")" +#line 857 "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_reference: "::" expr_identifier -#line 866 "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 > ())); } + case 224: // expr_vectorscale: "vectorscale" "(" expr "," expr ")" +#line 862 "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_reference: expr_path "::" expr_identifier -#line 868 "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 > ())); } + case 225: // expr_isdefined: "isdefined" "(" expr ")" +#line 867 "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_array: expr_object "[" expr "]" -#line 873 "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 > ())); } + case 226: // expr_reference: "::" expr_identifier +#line 872 "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_array: expr_getdvarvector "[" expr "]" -#line 875 "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 > ())); } + case 227: // expr_reference: expr_path "::" expr_identifier +#line 874 "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_vectortoangles "[" expr "]" -#line 877 "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 > ())); } + case 228: // expr_array: expr_object "[" expr "]" +#line 879 "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_angleclamp180 "[" expr "]" -#line 879 "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 > ())); } + case 229: // expr_array: expr_getdvarvector "[" expr "]" +#line 881 "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_anglestoforward "[" expr "]" -#line 881 "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 > ())); } + case 230: // expr_array: expr_vectortoangles "[" expr "]" +#line 883 "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_anglestoright "[" expr "]" -#line 883 "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 > ())); } + case 231: // expr_array: expr_angleclamp180 "[" expr "]" +#line 885 "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_anglestoup "[" expr "]" -#line 885 "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 > ())); } + case 232: // expr_array: expr_anglestoforward "[" expr "]" +#line 887 "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_vectorscale "[" expr "]" -#line 887 "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 > ())); } + case 233: // expr_array: expr_anglestoright "[" expr "]" +#line 889 "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_field: expr_object "." expr_identifier_nosize -#line 892 "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 > ())); } + case 234: // expr_array: expr_anglestoup "[" expr "]" +#line 891 "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_size: expr_object "." "size" -#line 897 "parser.ypp" - { yylhs.value.as < ast::expr_size::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[2].value.as < ast::expr > ())); } + case 235: // expr_array: expr_vectorscale "[" expr "]" +#line 893 "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_paren: "(" expr ")" -#line 902 "parser.ypp" - { yylhs.value.as < ast::expr_paren::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[1].value.as < ast::expr > ())); } + case 236: // expr_field: expr_object "." expr_identifier_nosize +#line 898 "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_object: expr_call -#line 906 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_call::ptr > ()); } + case 237: // expr_size: expr_object "." "size" +#line 903 "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_object: expr_method -#line 907 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_method::ptr > ()); } + case 238: // expr_paren: "(" expr ")" +#line 908 "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_array -#line 908 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_array::ptr > ()); } + case 239: // expr_object: expr_call +#line 912 "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_field -#line 909 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_field::ptr > ()); } + case 240: // expr_object: expr_method +#line 913 "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_game -#line 910 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_game::ptr > ()); } + case 241: // expr_object: expr_array +#line 914 "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_self -#line 911 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_self::ptr > ()); } + case 242: // expr_object: expr_field +#line 915 "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_anim -#line 912 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_anim::ptr > ()); } + case 243: // expr_object: expr_game +#line 916 "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_level -#line 913 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_level::ptr > ()); } + case 244: // expr_object: expr_self +#line 917 "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_identifier -#line 914 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_identifier::ptr > ()); } + case 245: // expr_object: expr_anim +#line 918 "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_empty_array: "[" "]" + case 246: // expr_object: expr_level #line 919 "parser.ypp" - { yylhs.value.as < ast::expr_empty_array::ptr > () = std::make_unique(yylhs.location); } + { 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_undefined: "undefined" -#line 924 "parser.ypp" - { yylhs.value.as < ast::expr_undefined::ptr > () = std::make_unique(yylhs.location); } + case 247: // expr_object: expr_identifier +#line 920 "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_game: "game" -#line 929 "parser.ypp" - { yylhs.value.as < ast::expr_game::ptr > () = std::make_unique(yylhs.location); } + case 248: // expr_empty_array: "[" "]" +#line 925 "parser.ypp" + { yylhs.value.as < ast::expr_empty_array::ptr > () = std::make_unique(yylhs.location); } #line 3821 "parser.cpp" break; - case 249: // expr_self: "self" -#line 934 "parser.ypp" - { yylhs.value.as < ast::expr_self::ptr > () = std::make_unique(yylhs.location); } + case 249: // expr_undefined: "undefined" +#line 930 "parser.ypp" + { yylhs.value.as < ast::expr_undefined::ptr > () = std::make_unique(yylhs.location); } #line 3827 "parser.cpp" break; - case 250: // expr_anim: "anim" -#line 939 "parser.ypp" - { yylhs.value.as < ast::expr_anim::ptr > () = std::make_unique(yylhs.location); } + case 250: // expr_game: "game" +#line 935 "parser.ypp" + { yylhs.value.as < ast::expr_game::ptr > () = std::make_unique(yylhs.location); } #line 3833 "parser.cpp" break; - case 251: // expr_level: "level" -#line 944 "parser.ypp" - { yylhs.value.as < ast::expr_level::ptr > () = std::make_unique(yylhs.location); } + case 251: // expr_self: "self" +#line 940 "parser.ypp" + { yylhs.value.as < ast::expr_self::ptr > () = std::make_unique(yylhs.location); } #line 3839 "parser.cpp" break; - case 252: // expr_animation: "%" "identifier" -#line 949 "parser.ypp" - { yylhs.value.as < ast::expr_animation::ptr > () = std::make_unique(yylhs.location, yystack_[0].value.as < std::string > ()); } + case 252: // expr_anim: "anim" +#line 945 "parser.ypp" + { yylhs.value.as < ast::expr_anim::ptr > () = std::make_unique(yylhs.location); } #line 3845 "parser.cpp" break; - case 253: // expr_animtree: "#animtree" -#line 954 "parser.ypp" - { yylhs.value.as < ast::expr_animtree::ptr > () = std::make_unique(yylhs.location); } + case 253: // expr_level: "level" +#line 950 "parser.ypp" + { yylhs.value.as < ast::expr_level::ptr > () = std::make_unique(yylhs.location); } #line 3851 "parser.cpp" break; - case 254: // expr_identifier_nosize: "identifier" -#line 959 "parser.ypp" - { yylhs.value.as < ast::expr_identifier::ptr > () = std::make_unique(yylhs.location, yystack_[0].value.as < std::string > ()); } + case 254: // expr_animation: "%" "identifier" +#line 955 "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_identifier: "identifier" -#line 964 "parser.ypp" - { yylhs.value.as < ast::expr_identifier::ptr > () = std::make_unique(yylhs.location, yystack_[0].value.as < std::string > ()); } + case 255: // expr_animtree: "#animtree" +#line 960 "parser.ypp" + { yylhs.value.as < ast::expr_animtree::ptr > () = std::make_unique(yylhs.location); } #line 3863 "parser.cpp" break; - case 256: // expr_identifier: "size" -#line 966 "parser.ypp" - { yylhs.value.as < ast::expr_identifier::ptr > () = std::make_unique(yylhs.location, "size"); } + case 256: // expr_identifier_nosize: "identifier" +#line 965 "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_path: "identifier" -#line 971 "parser.ypp" - { yylhs.value.as < ast::expr_path::ptr > () = std::make_unique(yylhs.location, yystack_[0].value.as < std::string > ()); } + case 257: // expr_identifier: "identifier" +#line 970 "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_path: "path" -#line 973 "parser.ypp" - { yylhs.value.as < ast::expr_path::ptr > () = std::make_unique(yylhs.location, yystack_[0].value.as < std::string > ()); } + case 258: // expr_identifier: "size" +#line 972 "parser.ypp" + { yylhs.value.as < ast::expr_identifier::ptr > () = std::make_unique(yylhs.location, "size"); } #line 3881 "parser.cpp" break; - case 259: // expr_istring: "localized string" -#line 978 "parser.ypp" - { yylhs.value.as < ast::expr_istring::ptr > () = std::make_unique(yylhs.location, yystack_[0].value.as < std::string > ()); } + case 259: // expr_path: "identifier" +#line 977 "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_string: "string literal" -#line 983 "parser.ypp" - { yylhs.value.as < ast::expr_string::ptr > () = std::make_unique(yylhs.location, yystack_[0].value.as < std::string > ()); } + case 260: // expr_path: "path" +#line 979 "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_vector: "(" expr "," expr "," expr ")" -#line 988 "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 > ())); } + case 261: // expr_istring: "localized string" +#line 984 "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_hash: "hash" -#line 993 "parser.ypp" - { yylhs.value.as < ast::expr_hash::ptr > () = std::make_unique(yylhs.location, yystack_[0].value.as < std::string > ()); } + case 262: // expr_string: "string literal" +#line 989 "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_float: "-" "float" -#line 998 "parser.ypp" - { yylhs.value.as < ast::expr_float::ptr > () = std::make_unique(yylhs.location, "-" + yystack_[0].value.as < std::string > ()); } + case 263: // expr_vector: "(" expr "," expr "," expr ")" +#line 994 "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_float: "float" -#line 1000 "parser.ypp" - { yylhs.value.as < ast::expr_float::ptr > () = std::make_unique(yylhs.location, yystack_[0].value.as < std::string > ()); } + case 264: // expr_hash: "hash" +#line 999 "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_integer: "-" "integer" -#line 1005 "parser.ypp" - { yylhs.value.as < ast::expr_integer::ptr > () = std::make_unique(yylhs.location, "-" + yystack_[0].value.as < std::string > ()); } + case 265: // expr_float: "-" "float" +#line 1004 "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_integer: "integer" -#line 1007 "parser.ypp" - { yylhs.value.as < ast::expr_integer::ptr > () = std::make_unique(yylhs.location, yystack_[0].value.as < std::string > ()); } + case 266: // expr_float: "float" +#line 1006 "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_false: "false" -#line 1012 "parser.ypp" - { yylhs.value.as < ast::expr_false::ptr > () = std::make_unique(yylhs.location); } + case 267: // expr_integer: "-" "integer" +#line 1011 "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_true: "true" -#line 1017 "parser.ypp" - { yylhs.value.as < ast::expr_true::ptr > () = std::make_unique(yylhs.location); } + case 268: // expr_integer: "integer" +#line 1013 "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" + { yylhs.value.as < ast::expr_false::ptr > () = std::make_unique(yylhs.location); } +#line 3947 "parser.cpp" + break; -#line 3945 "parser.cpp" + case 270: // expr_true: "true" +#line 1023 "parser.ypp" + { yylhs.value.as < ast::expr_true::ptr > () = std::make_unique(yylhs.location); } +#line 3953 "parser.cpp" + break; + + +#line 3957 "parser.cpp" default: break; @@ -4127,48 +4139,49 @@ namespace xsk { namespace arc { namespace t6 { { "end of file", "error", "invalid token", "#define", "#undef", "#ifdef", "#ifndef", "#if", "#elif", "#else", "#endif", "/#", "#/", "#inline", - "#include", "#using_animtree", "#animtree", "endon", "notify", "wait", - "waittill", "waittillmatch", "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", "getdvarcoloralpha", - "getdvarcolorblue", "getdvarcolorgreen", "getdvarcolorred", - "getdvarvector", "getdvarfloat", "getdvarint", "getdvar", "gettime", - "abs", "vectortoangles", "angleclamp180", "anglestoforward", - "anglestoright", "anglestoup", "vectorscale", "isdefined", "(", ")", "{", - "}", "[", "]", ",", ".", "::", ":", ";", "?", "++", "--", "<<", ">>", - "||", "&&", "==", "!=", "<=", ">=", "<", ">", "!", "~", "=", "+=", "-=", - "*=", "/=", "%=", "|=", "&=", "^=", ">>=", "<<=", "|", "&", "^", "+", - "-", "*", "/", "%", "path", "identifier", "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", "stmt_wait", "stmt_waittill", - "stmt_waittillmatch", "stmt_waittillframeend", "stmt_if", "stmt_ifelse", - "stmt_while", "stmt_dowhile", "stmt_for", "stmt_foreach", "stmt_switch", - "stmt_case", "stmt_default", "stmt_break", "stmt_continue", - "stmt_return", "stmt_prof_begin", "stmt_prof_end", "expr", - "expr_or_empty", "expr_assign", "expr_increment", "expr_decrement", - "expr_ternary", "expr_binary", "expr_primitive", "expr_complement", - "expr_negate", "expr_not", "expr_call", "expr_method", "expr_function", - "expr_pointer", "expr_parameters", "expr_parameters_default", - "expr_literal", "expr_arguments", "expr_arguments_no_empty", - "expr_getnextarraykey", "expr_getfirstarraykey", - "expr_getdvarcoloralpha", "expr_getdvarcolorblue", - "expr_getdvarcolorgreen", "expr_getdvarcolorred", "expr_getdvarvector", - "expr_getdvarfloat", "expr_getdvarint", "expr_getdvar", "expr_gettime", - "expr_abs", "expr_vectortoangles", "expr_angleclamp180", - "expr_anglestoforward", "expr_anglestoright", "expr_anglestoup", - "expr_vectorscale", "expr_isdefined", "expr_reference", "expr_array", - "expr_field", "expr_size", "expr_paren", "expr_object", - "expr_empty_array", "expr_undefined", "expr_game", "expr_self", - "expr_anim", "expr_level", "expr_animation", "expr_animtree", - "expr_identifier_nosize", "expr_identifier", "expr_path", "expr_istring", - "expr_string", "expr_vector", "expr_hash", "expr_float", "expr_integer", - "expr_false", "expr_true", YY_NULLPTR + "#include", "#using_animtree", "#animtree", "autoexec", "private", + "endon", "notify", "wait", "waittill", "waittillmatch", + "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", + "getdvarcoloralpha", "getdvarcolorblue", "getdvarcolorgreen", + "getdvarcolorred", "getdvarvector", "getdvarfloat", "getdvarint", + "getdvar", "gettime", "abs", "vectortoangles", "angleclamp180", + "anglestoforward", "anglestoright", "anglestoup", "vectorscale", + "isdefined", "(", ")", "{", "}", "[", "]", ",", ".", "::", ":", ";", "?", + "++", "--", "<<", ">>", "||", "&&", "==", "!=", "<=", ">=", "<", ">", + "!", "~", "=", "+=", "-=", "*=", "/=", "%=", "|=", "&=", "^=", ">>=", + "<<=", "|", "&", "^", "+", "-", "*", "/", "%", "path", "identifier", + "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", + "stmt_wait", "stmt_waittill", "stmt_waittillmatch", + "stmt_waittillframeend", "stmt_if", "stmt_ifelse", "stmt_while", + "stmt_dowhile", "stmt_for", "stmt_foreach", "stmt_switch", "stmt_case", + "stmt_default", "stmt_break", "stmt_continue", "stmt_return", + "stmt_prof_begin", "stmt_prof_end", "expr", "expr_or_empty", + "expr_assign", "expr_increment", "expr_decrement", "expr_ternary", + "expr_binary", "expr_primitive", "expr_complement", "expr_negate", + "expr_not", "expr_call", "expr_method", "expr_function", "expr_pointer", + "expr_parameters", "expr_parameters_default", "expr_literal", + "expr_arguments", "expr_arguments_no_empty", "expr_getnextarraykey", + "expr_getfirstarraykey", "expr_getdvarcoloralpha", + "expr_getdvarcolorblue", "expr_getdvarcolorgreen", + "expr_getdvarcolorred", "expr_getdvarvector", "expr_getdvarfloat", + "expr_getdvarint", "expr_getdvar", "expr_gettime", "expr_abs", + "expr_vectortoangles", "expr_angleclamp180", "expr_anglestoforward", + "expr_anglestoright", "expr_anglestoup", "expr_vectorscale", + "expr_isdefined", "expr_reference", "expr_array", "expr_field", + "expr_size", "expr_paren", "expr_object", "expr_empty_array", + "expr_undefined", "expr_game", "expr_self", "expr_anim", "expr_level", + "expr_animation", "expr_animtree", "expr_identifier_nosize", + "expr_identifier", "expr_path", "expr_istring", "expr_string", + "expr_vector", "expr_hash", "expr_float", "expr_integer", "expr_false", + "expr_true", YY_NULLPTR }; return yy_sname[yysymbol]; } @@ -4437,990 +4450,1000 @@ namespace xsk { namespace arc { namespace t6 { } - const short parser::yypact_ninf_ = -464; + const short parser::yypact_ninf_ = -399; - const short parser::yytable_ninf_ = -258; + const short parser::yytable_ninf_ = -260; const short parser::yypact_[] = { - 3, -464, -464, -72, -72, -42, -464, -464, 28, 3, - -464, -464, -464, -464, -464, -464, -44, -464, -464, -46, - -13, -43, -464, -464, -464, -464, -22, 1421, -464, -464, - -464, 18, -40, -464, -21, -464, 30, -464, -464, -464, - -464, -464, -464, -464, 1, 17, 25, 27, 41, 48, - 54, 55, 64, 70, 77, 79, 93, 96, 98, 100, - 103, 108, 112, 1421, 33, -22, 1421, 1421, 35, 5, - 32, -464, -464, -464, -464, 3359, -464, -464, -464, -464, - -464, -464, 14, 97, -464, -464, -464, -464, -464, -464, - -464, -464, 53, -464, -464, -464, -464, -464, 109, 113, - 114, 123, 135, 137, -464, -464, 168, 258, -464, -464, - 272, -464, -464, 292, 302, 359, 467, -464, -464, 16, - 89, -464, -464, -464, -464, -464, -464, -464, -464, 92, - 143, -22, -5, 142, 116, 141, 1421, 1421, 1421, 1421, - 1421, 1421, 1421, 1421, 1421, 1421, 149, 1421, 1421, 1421, - 1421, 1421, 1421, 1421, 1421, 1763, 1421, -464, -464, -464, - -464, 1421, 152, -464, -464, -464, -464, 53, 109, 113, - 114, 123, 135, 137, 168, 258, -464, 475, -464, -464, - -464, -464, 16, 150, -464, -464, 1421, 1421, 1421, 1421, - 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, - 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, - 1421, 1421, 1501, 4, -464, -464, 157, 1421, -22, -464, - 1058, -464, -464, -21, -56, -464, -464, -464, -464, -464, - -464, -464, 1421, 1421, -22, 3210, 2007, 2041, 2075, 2109, - 2143, 2177, 2211, 2245, 2279, -464, 2313, 2347, 2381, 2415, - 2449, 2483, 3249, 2517, -464, 1421, 1257, 2551, 115, -22, - 3324, 47, 47, 3473, 3483, 1043, 1043, 80, 80, 80, - 80, 1138, 3524, 3514, 40, 40, -464, -464, -464, 1417, - 1497, 2931, 2971, 3011, 3051, 3091, 1261, 3131, -464, -464, - -464, 3442, -29, -464, 159, 1669, 1421, 153, 160, 1875, - 164, 165, 166, 169, -76, 161, 163, 167, 1341, 176, - 179, -464, 1120, 1120, -464, -464, 1608, -464, -464, -464, - -464, -464, -464, -464, -464, -464, -464, -464, -464, -464, - -464, -464, -464, -464, -464, -464, -464, -464, -464, -464, - -464, 171, 173, 184, 186, 188, -464, -464, 1784, 157, - 3171, -25, 189, 1421, -464, -464, -464, -464, -464, -464, - -464, -464, -464, -464, -464, -464, -464, -464, -464, 1421, - -464, 3288, 197, 159, 1421, -464, -464, -464, -464, -464, - -464, -464, -464, -464, 1421, 1421, -464, -464, 1730, 3394, - -464, 1421, 244, 1421, 964, -22, 1421, 155, 198, 199, - -464, -464, -464, -464, 3429, 1421, 1421, 475, 475, -464, - -464, -464, -464, -464, -464, -464, 211, 212, 215, 217, - -464, -464, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, - 1421, 1421, 1421, 213, -464, 1421, 2585, 2619, 1421, 220, - 3442, 3442, -17, -464, -464, -464, 2653, 221, 2687, 214, - -464, -464, -464, 102, -6, 2721, -464, -464, -464, -10, - -8, 1421, 1421, 1421, 1421, 3442, 3442, 3442, 3442, 3442, - 3442, 3442, 3442, 3442, 3442, 3442, 222, 2, -464, -464, - 2755, 1421, -464, 1875, 1421, 1875, 1421, 1421, -22, 143, - 216, 218, 2789, 1885, 1929, 1973, 1421, -464, -464, 57, - 265, 2823, -464, 3442, 225, 2857, 262, -464, -464, -464, - 226, 228, 1421, 232, 1421, 233, 1421, 66, -464, 1875, - 235, 964, 1875, 1421, -464, -464, 243, 230, -464, 231, - -464, 250, -464, -464, -464, 251, -464, 2891, 249, 253, - 259, 1875, 1875, -464, -464, -464, -464, -464 + 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 }; const short parser::yydefact_[] = { - 3, 12, 13, 0, 0, 0, 256, 255, 0, 2, - 7, 8, 9, 14, 15, 16, 0, 258, 257, 0, - 0, 0, 1, 4, 5, 6, 193, 0, 10, 11, - 260, 0, 0, 191, 192, 253, 0, 268, 267, 247, - 248, 249, 250, 251, 0, 0, 0, 0, 0, 0, + 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, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 255, 259, 262, 264, 266, 0, 88, 89, 90, 127, - 128, 129, 130, 131, 179, 180, 132, 133, 134, 135, - 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, - 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, - 0, 156, 157, 158, 159, 160, 161, 162, 163, 164, - 0, 165, 166, 167, 168, 169, 170, 171, 172, 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, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 246, 224, 178, - 173, 0, 0, 263, 265, 237, 238, 0, 0, 0, - 0, 0, 0, 0, 176, 177, 175, 0, 241, 242, - 243, 244, 174, 0, 252, 18, 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, 0, 0, 181, 182, 0, 202, 0, 17, - 0, 19, 189, 190, 0, 194, 195, 196, 197, 198, - 199, 200, 0, 202, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 215, 0, 0, 0, 0, - 0, 0, 0, 0, 236, 0, 0, 0, 0, 0, - 0, 120, 121, 109, 110, 111, 112, 113, 114, 115, - 116, 117, 118, 119, 122, 123, 124, 125, 126, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 235, 254, - 234, 204, 0, 201, 225, 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, 52, 0, 0, 43, 48, 0, 44, 20, 21, + 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, 0, 0, 0, 237, 238, 239, 240, 0, 245, - 0, 0, 0, 0, 206, 207, 208, 209, 210, 211, - 212, 213, 214, 216, 217, 218, 219, 220, 221, 0, - 223, 0, 0, 0, 0, 227, 228, 229, 230, 231, - 232, 233, 226, 183, 0, 202, 50, 46, 0, 0, - 70, 0, 0, 0, 56, 0, 0, 0, 0, 0, - 81, 82, 83, 85, 0, 202, 202, 104, 106, 51, - 47, 59, 60, 61, 57, 58, 0, 0, 0, 0, - 105, 107, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 185, 202, 0, 0, 0, 0, - 108, 203, 0, 49, 45, 65, 0, 0, 0, 0, - 53, 54, 55, 0, 0, 0, 80, 79, 84, 0, - 0, 0, 0, 0, 0, 93, 99, 100, 101, 102, - 103, 94, 95, 96, 98, 97, 0, 0, 205, 222, - 0, 202, 184, 0, 0, 0, 92, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 202, 186, 261, 0, - 71, 0, 73, 91, 0, 0, 0, 78, 86, 87, - 0, 0, 202, 0, 202, 0, 202, 0, 187, 0, - 0, 56, 0, 0, 62, 64, 0, 201, 67, 201, - 69, 201, 188, 72, 74, 0, 76, 0, 0, 0, - 0, 0, 0, 63, 66, 68, 75, 77 + 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 }; const short parser::yypgoto_[] = { - -464, -464, -464, 284, 310, 318, -464, -464, -464, -266, - 20, -464, -464, -464, -129, -184, -464, -464, -464, -464, - -464, -464, -464, -464, -464, -464, -464, -464, -464, -464, - -464, -464, -464, -464, -464, -464, -464, -464, 415, -464, - -389, -387, -384, -464, -464, -464, -464, -464, -464, -62, - -55, -102, -85, -464, 207, -464, -214, -463, -464, -464, - -464, -464, -464, -464, -47, -464, -464, -464, -464, -464, - 51, 341, 365, 376, 408, 439, -464, -464, 463, 470, - -464, 275, 479, -464, -464, 674, 719, 745, 754, -464, - -464, -464, 0, 8, 223, -19, -464, -464, 227, -128, - 229, 234 + -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 }; const short parser::yydefgoto_[] = { - 0, 8, 9, 10, 11, 12, 13, 14, 15, 314, - 315, 388, 316, 317, 318, 449, 319, 320, 321, 322, - 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, - 333, 334, 335, 336, 337, 338, 339, 340, 291, 504, - 341, 342, 343, 76, 77, 78, 79, 80, 81, 82, - 83, 84, 85, 32, 33, 225, 526, 293, 86, 87, - 88, 89, 90, 91, 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, 290, 119, 120, 121, 122, 123, 124, 125, 126, - 127, 128 + 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 }; const short parser::yytable_[] = { - 16, 221, 31, 292, 229, 450, 165, 451, 214, 16, - 452, 19, 20, 166, 1, 2, 3, 4, 5, 351, - 6, 167, 26, 487, 21, 215, 34, 130, 22, 387, - 28, 397, 131, 392, 37, 38, 134, 30, 383, 17, - 18, 74, 434, 384, 135, 6, 288, 384, 27, 527, - 482, 529, -237, 531, -245, 384, -237, 490, -245, 491, - 163, 164, 384, 29, 384, 158, 488, 136, 182, 497, - 30, 132, 6, 36, 384, 214, 183, 6, 40, 41, - 42, 43, 217, 137, -237, 129, -245, -237, 50, -245, - 7, 138, 215, 139, 56, 57, 58, 59, 60, 61, - 133, 161, 224, 156, 157, 162, -257, 140, 30, 71, - 216, 73, 74, 227, 141, 7, 289, 184, 183, 168, - 142, 143, 444, 205, 518, -237, -237, -245, -245, 384, - 144, 223, 450, 532, 451, -238, 145, 452, 384, -238, - 36, 17, 70, 146, 6, 147, 17, 70, 202, 203, - 204, 163, 164, 200, 201, 202, 203, 204, 344, 148, - 187, 188, 149, 218, 150, 345, 151, -238, 219, 152, - -238, 442, 212, 167, 153, 258, 399, 216, 154, 206, - 420, 421, 233, 207, 208, 183, 200, 201, 202, 203, - 204, 459, 460, 209, 422, 423, 424, 425, 426, 427, - 428, 429, 430, 431, 432, 210, -239, 211, -238, -238, - -239, 220, 232, 17, 70, 234, 245, 500, 294, 502, - 349, 477, 156, 217, 259, 385, 391, 289, 183, 390, - 393, 394, 395, 344, 352, 396, 400, 344, -239, 401, - 345, -239, 405, 402, 345, 406, 214, 411, 167, 412, - 165, 165, 167, 533, 344, 435, 536, 166, 166, 373, - 413, 345, 414, 215, 415, 167, 167, 499, 439, 167, - 447, 168, 164, 456, 457, 546, 547, 461, 462, -239, - -239, 463, 517, 464, 476, 398, 481, 484, 496, 519, - 486, 523, 508, 23, 509, 349, -240, 538, 539, 349, - -240, 521, 524, 183, 525, 214, 214, 183, 528, 530, - 36, 534, 349, 349, 6, 384, 349, 540, 541, 24, - 183, 183, 215, 215, 183, 543, 344, 25, -240, 544, - -241, -240, 165, 345, -241, 545, 410, 535, 222, 166, - -242, 167, 212, 176, -242, 213, 168, 167, 216, 0, - 168, 214, 0, 0, 0, 226, 183, 0, 0, 228, - 507, 230, -241, 168, 168, -241, 231, 168, 215, -240, - -240, 0, -242, 0, 0, -242, 0, 0, 0, 0, - 0, 0, 0, 17, 70, 0, 0, 0, 349, 0, - 0, 0, 0, 0, 349, 454, 183, -243, 0, 0, - 0, -243, 183, -241, -241, 0, 0, 216, 216, 169, - 0, 0, 0, -242, -242, 183, 183, 0, 0, 0, - 0, 344, 0, 344, 0, 0, 0, 0, 345, -243, - 345, 0, -243, 170, 0, 0, 167, 0, 167, 168, - 0, 0, 75, 0, 171, 168, 0, 0, 0, 0, - 0, 0, 0, 216, 0, 0, 0, 344, 0, 165, - 344, 183, 0, 0, 345, 0, 166, 345, 0, 0, - -243, -243, 167, 0, 167, 167, 172, 0, 155, 344, - 344, 159, 160, 349, 0, 349, 345, 345, 506, 0, - 0, 183, 0, 183, 167, 167, 0, 0, 0, 0, - 0, 0, 0, 0, 0, -244, 0, 173, 0, -244, - 0, 0, 0, 36, 0, 0, 0, 6, 0, 349, - 0, 349, 349, 0, 0, 0, 0, 183, 0, 183, - 183, 174, 0, 0, 168, 0, 168, -244, 175, 0, - -244, 349, 349, 0, 0, 212, 0, 177, 258, 183, - 183, 235, 236, 237, 238, 239, 240, 241, 242, 243, - 244, 169, 246, 247, 248, 249, 250, 251, 252, 253, - 168, 256, 168, 168, 0, 0, 257, 0, -244, -244, - 0, 0, 0, 0, 0, 170, 17, 70, 0, 0, - 0, 0, 168, 168, 0, 0, 171, 0, 0, 0, - 0, 260, 261, 262, 263, 264, 265, 266, 267, 268, - 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, - 279, 280, 281, 282, 283, 284, 285, 287, 172, 0, - 0, 0, 0, 0, 0, 0, 169, 0, 0, 0, - 169, 0, 0, 0, 0, 0, 0, 350, 0, 0, - 0, 0, 0, 169, 169, 0, 0, 169, 0, 173, - 170, 0, 0, 0, 170, 0, 0, 0, 0, 0, - 371, 171, 0, 0, 0, 171, 0, 170, 170, 0, - 0, 170, 0, 346, 0, 0, 0, 0, 171, 171, - 347, 0, 171, 0, 0, 0, 0, 0, 0, 348, - 0, 256, 0, 172, 0, 0, 0, 172, 0, 0, - 0, 389, 0, 0, 0, 0, 0, 0, 0, 0, - 172, 172, 0, 404, 172, 0, 0, 0, 0, 169, - 0, 0, 0, 0, 173, 169, 0, 0, 173, 0, - 0, 0, 178, 0, 0, 0, 0, 0, 0, 0, - 0, 173, 173, 170, 0, 173, 0, 0, 346, 170, - 0, 0, 346, 0, 171, 347, 0, 0, 436, 347, - 171, 0, 0, 0, 348, 346, 346, 0, 348, 346, - 0, 0, 347, 347, 437, 0, 347, 179, 0, 440, - 0, 407, 408, 0, 0, 348, 172, 0, 0, 441, - 0, 0, 172, 0, 0, 0, 446, 0, 448, 0, - 0, 455, 0, 180, 0, 0, 0, 0, 0, 0, - 0, 0, 181, 0, 169, 0, 169, 173, 0, 0, - 0, 0, 0, 173, 0, 0, 0, 465, 466, 467, - 468, 469, 470, 471, 472, 473, 474, 475, 170, 0, - 170, 346, 0, 480, 0, 0, 0, 346, 347, 171, - 169, 171, 169, 169, 347, 0, 0, 348, 0, 0, - 0, 0, 0, 453, 0, 0, 492, 493, 494, 495, - 0, 0, 169, 169, 170, 0, 170, 170, 0, 0, - 0, 172, 0, 172, 178, 171, 0, 171, 171, 501, - 0, 503, 505, 0, 0, 0, 170, 170, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 171, 171, 0, - 0, 0, 173, 0, 173, 0, 0, 172, 0, 172, - 172, 0, 0, 0, 0, 0, 0, 0, 537, 179, - 0, 0, 0, 0, 0, 0, 346, 0, 346, 172, - 172, 0, 0, 347, 0, 347, 0, 0, 173, 0, - 173, 173, 348, 0, 348, 180, 0, 0, 0, 178, - 0, 0, 0, 178, 181, 0, 0, 0, 0, 0, - 173, 173, 346, 0, 346, 346, 178, 178, 0, 347, - 178, 347, 347, 0, 0, 0, 0, 0, 348, 0, - 453, 348, 36, 0, 346, 346, 6, 40, 41, 42, - 43, 347, 347, 0, 179, 0, 0, 50, 179, 0, - 348, 348, 0, 56, 57, 58, 59, 60, 61, 0, - 0, 179, 179, 0, 162, 179, 0, 0, 0, 0, - 180, 0, 312, 313, 180, 0, 0, 0, 0, 181, - 0, 0, 0, 181, 0, 0, 0, 180, 180, 0, - 0, 180, 178, 0, 0, 0, 181, 181, 178, 295, - 181, 0, 0, 0, 0, 17, 70, 296, 0, 0, - 297, 298, 0, 299, 300, 301, 302, 0, 303, 304, - 305, 306, 307, 308, 309, 310, 36, 0, 0, 0, - 6, 40, 41, 42, 43, 0, 0, 179, 0, 0, - 0, 50, 0, 179, 0, 0, 0, 56, 57, 58, - 59, 60, 61, 187, 188, 0, 220, 311, 162, 193, - 194, 195, 196, 180, 0, 0, 312, 313, 0, 180, - 0, 0, 181, 0, 0, 0, 0, 0, 181, 200, - 201, 202, 203, 204, 0, 0, 0, 178, 36, 178, - 0, 0, 6, 40, 41, 42, 43, 0, 0, 17, - 70, 0, 0, 50, 0, 0, 0, 0, 0, 56, - 57, 58, 59, 60, 61, 0, 0, 0, 0, 0, - 162, 0, 0, 178, 0, 178, 178, 0, 0, 0, - 0, 0, 179, 0, 179, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 178, 178, 0, 187, 188, - 0, 0, 191, 192, 193, 194, 195, 196, 180, 0, - 180, 17, 70, 0, 0, 0, 0, 181, 179, 181, - 179, 179, 198, 199, 200, 201, 202, 203, 204, 0, + 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, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 179, 179, 0, 0, 180, 0, 180, 180, 0, 0, - 0, 0, 0, 181, 0, 181, 181, 35, 0, 0, - 0, 0, 0, 0, 0, 0, 180, 180, 0, 0, - 0, 0, 0, 0, 0, 181, 181, 0, 0, 36, - 37, 38, 39, 6, 40, 41, 42, 43, 44, 45, + 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, 372, 0, - 0, 286, 157, 0, 186, 65, 0, 187, 188, 189, - 190, 191, 192, 193, 194, 195, 196, 0, 0, 0, - 0, 66, 67, 0, 0, 0, 0, 35, 0, 0, - 197, 198, 199, 200, 201, 202, 203, 204, 68, 0, - 0, 69, 17, 70, 30, 71, 72, 73, 74, 36, - 37, 38, 39, 6, 40, 41, 42, 43, 44, 45, + 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, 0, 0, - 0, 64, 0, 0, 0, 65, 0, 403, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 66, 67, 0, 0, 0, 0, 35, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 68, 0, - 0, 69, 17, 70, 30, 71, 72, 73, 74, 36, - 37, 38, 39, 6, 40, 41, 42, 43, 44, 45, + 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, 375, 0, - 0, 64, 0, 0, 186, 65, 0, 187, 188, 189, - 190, 191, 192, 193, 194, 195, 196, 0, 0, 0, - 0, 66, 67, 0, 0, 0, 0, 35, 0, 0, - 197, 198, 199, 200, 201, 202, 203, 204, 68, 0, - 0, 69, 17, 70, 30, 71, 72, 73, 74, 36, - 37, 38, 39, 6, 40, 41, 42, 43, 44, 45, + 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, 376, 0, - 0, 286, 0, 0, 186, 65, 0, 187, 188, 189, - 190, 191, 192, 193, 194, 195, 196, 0, 0, 0, - 0, 66, 67, 0, 0, 0, 0, 0, 0, 0, - 197, 198, 199, 200, 201, 202, 203, 204, 68, 0, - 0, 69, 17, 70, 30, 71, 72, 73, 74, 295, - 0, 0, 0, 0, 0, 0, 0, 296, 0, 0, - 297, 298, 0, 299, 300, 301, 302, 0, 303, 304, - 305, 306, 307, 308, 309, 310, 36, 0, 0, 0, - 6, 40, 41, 42, 43, 0, 0, 0, 0, 0, - 0, 50, 0, 0, 0, 0, 0, 56, 57, 58, - 59, 60, 61, 0, 0, 0, 220, 409, 162, 0, - 0, 386, 0, 0, 0, 0, 312, 313, 296, 0, - 0, 297, 298, 0, 299, 300, 301, 302, 0, 303, - 304, 305, 306, 307, 308, 309, 310, 36, 0, 0, - 0, 6, 40, 41, 42, 43, 0, 0, 0, 17, - 70, 0, 50, 0, 0, 0, 0, 0, 56, 57, - 58, 59, 60, 61, 0, 0, 0, 220, 0, 162, - 0, 0, 443, 0, 0, 0, 0, 312, 313, 296, - 0, 0, 297, 298, 0, 299, 300, 301, 302, 0, - 303, 304, 305, 306, 307, 308, 309, 310, 36, 0, - 0, 0, 6, 40, 41, 42, 43, 0, 0, 0, - 17, 70, 0, 50, 0, 0, 0, 0, 0, 56, - 57, 58, 59, 60, 61, 0, 0, 0, 220, 0, - 162, 416, 417, 0, 418, 419, 0, 0, 312, 313, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 36, 0, 0, 0, 6, 0, 0, 0, - 254, 0, 0, 0, 0, 255, 0, 0, 0, 0, - 186, 17, 70, 187, 188, 189, 190, 191, 192, 193, - 194, 195, 196, 0, 212, 0, 0, 258, 0, 0, - 0, 0, 420, 421, 0, 0, 197, 198, 199, 200, - 201, 202, 203, 204, 0, 0, 422, 423, 424, 425, - 426, 427, 428, 429, 430, 431, 432, 0, 0, 0, - 0, 0, 0, 0, 296, 17, 70, 297, 298, 0, - 299, 300, 301, 302, 0, 303, 304, 305, 306, 307, - 308, 309, 310, 36, 0, 0, 0, 6, 40, 41, - 42, 43, 0, 0, 0, 0, 0, 0, 50, 0, - 0, 0, 0, 0, 56, 57, 58, 59, 60, 61, - 0, 0, 0, 220, 0, 162, 0, 0, 0, 0, - 0, 0, 511, 312, 313, 0, 0, 512, 0, 0, - 0, 0, 186, 0, 0, 187, 188, 189, 190, 191, - 192, 193, 194, 195, 196, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 17, 70, 197, 198, - 199, 200, 201, 202, 203, 204, 513, 0, 0, 0, - 0, 514, 0, 0, 0, 0, 186, 0, 0, 187, - 188, 189, 190, 191, 192, 193, 194, 195, 196, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 197, 198, 199, 200, 201, 202, 203, 204, - 515, 0, 0, 0, 0, 516, 0, 0, 0, 0, - 186, 0, 0, 187, 188, 189, 190, 191, 192, 193, - 194, 195, 196, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 354, 0, 197, 198, 199, 200, - 201, 202, 203, 204, 186, 0, 0, 187, 188, 189, - 190, 191, 192, 193, 194, 195, 196, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 355, 0, - 197, 198, 199, 200, 201, 202, 203, 204, 186, 0, - 0, 187, 188, 189, 190, 191, 192, 193, 194, 195, - 196, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 356, 0, 197, 198, 199, 200, 201, 202, - 203, 204, 186, 0, 0, 187, 188, 189, 190, 191, - 192, 193, 194, 195, 196, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 357, 0, 197, 198, - 199, 200, 201, 202, 203, 204, 186, 0, 0, 187, - 188, 189, 190, 191, 192, 193, 194, 195, 196, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 358, 0, 197, 198, 199, 200, 201, 202, 203, 204, - 186, 0, 0, 187, 188, 189, 190, 191, 192, 193, - 194, 195, 196, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 359, 0, 197, 198, 199, 200, - 201, 202, 203, 204, 186, 0, 0, 187, 188, 189, - 190, 191, 192, 193, 194, 195, 196, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 360, 0, - 197, 198, 199, 200, 201, 202, 203, 204, 186, 0, - 0, 187, 188, 189, 190, 191, 192, 193, 194, 195, - 196, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 361, 0, 197, 198, 199, 200, 201, 202, - 203, 204, 186, 0, 0, 187, 188, 189, 190, 191, - 192, 193, 194, 195, 196, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 362, 0, 197, 198, - 199, 200, 201, 202, 203, 204, 186, 0, 0, 187, - 188, 189, 190, 191, 192, 193, 194, 195, 196, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 363, 0, 197, 198, 199, 200, 201, 202, 203, 204, - 186, 0, 0, 187, 188, 189, 190, 191, 192, 193, - 194, 195, 196, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 364, 0, 197, 198, 199, 200, - 201, 202, 203, 204, 186, 0, 0, 187, 188, 189, - 190, 191, 192, 193, 194, 195, 196, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 365, 0, - 197, 198, 199, 200, 201, 202, 203, 204, 186, 0, - 0, 187, 188, 189, 190, 191, 192, 193, 194, 195, - 196, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 366, 0, 197, 198, 199, 200, 201, 202, - 203, 204, 186, 0, 0, 187, 188, 189, 190, 191, - 192, 193, 194, 195, 196, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 367, 0, 197, 198, - 199, 200, 201, 202, 203, 204, 186, 0, 0, 187, - 188, 189, 190, 191, 192, 193, 194, 195, 196, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 368, 0, 197, 198, 199, 200, 201, 202, 203, 204, - 186, 0, 0, 187, 188, 189, 190, 191, 192, 193, - 194, 195, 196, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 370, 0, 197, 198, 199, 200, - 201, 202, 203, 204, 186, 0, 0, 187, 188, 189, - 190, 191, 192, 193, 194, 195, 196, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 254, 0, - 197, 198, 199, 200, 201, 202, 203, 204, 186, 0, - 0, 187, 188, 189, 190, 191, 192, 193, 194, 195, - 196, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 478, 0, 197, 198, 199, 200, 201, 202, - 203, 204, 186, 0, 0, 187, 188, 189, 190, 191, - 192, 193, 194, 195, 196, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 479, 0, 197, 198, - 199, 200, 201, 202, 203, 204, 186, 0, 0, 187, - 188, 189, 190, 191, 192, 193, 194, 195, 196, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 483, 0, 197, 198, 199, 200, 201, 202, 203, 204, - 186, 0, 0, 187, 188, 189, 190, 191, 192, 193, - 194, 195, 196, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 485, 0, 197, 198, 199, 200, - 201, 202, 203, 204, 186, 0, 0, 187, 188, 189, - 190, 191, 192, 193, 194, 195, 196, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 489, 0, - 197, 198, 199, 200, 201, 202, 203, 204, 186, 0, - 0, 187, 188, 189, 190, 191, 192, 193, 194, 195, - 196, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 498, 0, 197, 198, 199, 200, 201, 202, - 203, 204, 186, 0, 0, 187, 188, 189, 190, 191, - 192, 193, 194, 195, 196, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 510, 0, 197, 198, - 199, 200, 201, 202, 203, 204, 186, 0, 0, 187, - 188, 189, 190, 191, 192, 193, 194, 195, 196, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 520, 0, 197, 198, 199, 200, 201, 202, 203, 204, - 186, 0, 0, 187, 188, 189, 190, 191, 192, 193, - 194, 195, 196, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 522, 0, 197, 198, 199, 200, - 201, 202, 203, 204, 186, 0, 0, 187, 188, 189, - 190, 191, 192, 193, 194, 195, 196, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 542, 0, - 197, 198, 199, 200, 201, 202, 203, 204, 186, 0, - 0, 187, 188, 189, 190, 191, 192, 193, 194, 195, - 196, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 197, 198, 199, 200, 201, 202, - 203, 204, 377, 0, 0, 0, 0, 0, 186, 0, - 0, 187, 188, 189, 190, 191, 192, 193, 194, 195, - 196, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 197, 198, 199, 200, 201, 202, - 203, 204, 378, 0, 0, 0, 0, 0, 186, 0, - 0, 187, 188, 189, 190, 191, 192, 193, 194, 195, - 196, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 197, 198, 199, 200, 201, 202, - 203, 204, 379, 0, 0, 0, 0, 0, 186, 0, - 0, 187, 188, 189, 190, 191, 192, 193, 194, 195, - 196, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 197, 198, 199, 200, 201, 202, - 203, 204, 380, 0, 0, 0, 0, 0, 186, 0, - 0, 187, 188, 189, 190, 191, 192, 193, 194, 195, - 196, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 197, 198, 199, 200, 201, 202, - 203, 204, 381, 0, 0, 0, 0, 0, 186, 0, - 0, 187, 188, 189, 190, 191, 192, 193, 194, 195, - 196, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 197, 198, 199, 200, 201, 202, - 203, 204, 382, 0, 0, 0, 0, 0, 186, 0, - 0, 187, 188, 189, 190, 191, 192, 193, 194, 195, - 196, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 197, 198, 199, 200, 201, 202, - 203, 204, 433, 0, 0, 0, 0, 0, 186, 0, - 0, 187, 188, 189, 190, 191, 192, 193, 194, 195, - 196, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 197, 198, 199, 200, 201, 202, - 203, 204, 353, 0, 0, 0, 0, 186, 0, 0, - 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 197, 198, 199, 200, 201, 202, 203, - 204, 369, 0, 0, 0, 0, 186, 0, 0, 187, - 188, 189, 190, 191, 192, 193, 194, 195, 196, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 197, 198, 199, 200, 201, 202, 203, 204, - 438, 0, 0, 0, 0, 186, 0, 0, 187, 188, - 189, 190, 191, 192, 193, 194, 195, 196, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 197, 198, 199, 200, 201, 202, 203, 204, 374, - 0, 186, 0, 0, 187, 188, 189, 190, 191, 192, - 193, 194, 195, 196, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 197, 198, 199, - 200, 201, 202, 203, 204, 185, 186, 0, 0, 187, - 188, 189, 190, 191, 192, 193, 194, 195, 196, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 197, 198, 199, 200, 201, 202, 203, 204, - 445, 186, 0, 0, 187, 188, 189, 190, 191, 192, - 193, 194, 195, 196, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 197, 198, 199, - 200, 201, 202, 203, 204, 458, 186, 0, 0, 187, - 188, 189, 190, 191, 192, 193, 194, 195, 196, 186, - 0, 0, 187, 188, 189, 190, 191, 192, 193, 194, - 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, - 0, 0, 0, 0, 0, 197, 198, 199, 200, 201, - 202, 203, 204, 187, 188, 0, 190, 191, 192, 193, - 194, 195, 196, 187, 188, 0, 0, 191, 192, 193, - 194, 195, 196, 0, 0, 0, 197, 198, 199, 200, - 201, 202, 203, 204, 0, 0, 197, 198, 199, 200, - 201, 202, 203, 204, 187, 188, 0, 0, 191, 192, - 193, 194, 195, 196, 187, 188, 0, 0, 191, 192, - 193, 194, 195, 196, 0, 0, 0, 0, 198, 0, + 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, - 200, 201, 202, 203, 204 + 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, + 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, + 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, + 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, + 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, + 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, + 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, + 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, 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, 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, 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 }; const short parser::yycheck_[] = { - 0, 130, 21, 217, 132, 394, 68, 394, 110, 9, - 394, 3, 4, 68, 11, 12, 13, 14, 15, 233, - 42, 68, 66, 29, 66, 110, 26, 67, 0, 295, - 76, 107, 72, 299, 39, 40, 36, 113, 67, 111, - 112, 117, 67, 72, 36, 42, 42, 72, 92, 512, - 67, 514, 38, 516, 38, 72, 42, 67, 42, 67, - 116, 117, 72, 76, 72, 65, 72, 66, 68, 67, - 113, 92, 42, 38, 72, 177, 68, 42, 43, 44, - 45, 46, 66, 66, 70, 67, 70, 73, 53, 73, - 112, 66, 177, 66, 59, 60, 61, 62, 63, 64, - 70, 66, 107, 70, 71, 70, 74, 66, 113, 114, - 110, 116, 117, 132, 66, 112, 112, 112, 110, 68, - 66, 66, 388, 70, 67, 111, 112, 111, 112, 72, - 66, 131, 521, 67, 521, 38, 66, 521, 72, 42, - 38, 111, 112, 66, 42, 66, 111, 112, 108, 109, - 110, 116, 117, 106, 107, 108, 109, 110, 220, 66, - 80, 81, 66, 74, 66, 220, 66, 70, 76, 66, - 73, 385, 70, 220, 66, 73, 304, 177, 66, 70, - 78, 79, 66, 70, 70, 177, 106, 107, 108, 109, - 110, 405, 406, 70, 92, 93, 94, 95, 96, 97, - 98, 99, 100, 101, 102, 70, 38, 70, 111, 112, - 42, 68, 70, 111, 112, 74, 67, 483, 218, 485, - 220, 435, 70, 66, 74, 66, 66, 112, 220, 76, - 66, 66, 66, 295, 234, 66, 75, 299, 70, 76, - 295, 73, 66, 76, 299, 66, 348, 76, 295, 76, - 312, 313, 299, 519, 316, 66, 522, 312, 313, 259, - 76, 316, 76, 348, 76, 312, 313, 481, 71, 316, - 26, 220, 117, 75, 75, 541, 542, 66, 66, 111, - 112, 66, 496, 66, 71, 304, 66, 66, 66, 24, - 76, 29, 76, 9, 76, 295, 38, 67, 67, 299, - 42, 76, 76, 295, 76, 407, 408, 299, 76, 76, - 38, 76, 312, 313, 42, 72, 316, 67, 67, 9, - 312, 313, 407, 408, 316, 76, 388, 9, 70, 76, - 38, 73, 394, 388, 42, 76, 316, 521, 131, 394, - 38, 388, 70, 68, 42, 73, 295, 394, 348, -1, - 299, 453, -1, -1, -1, 132, 348, -1, -1, 132, - 489, 132, 70, 312, 313, 73, 132, 316, 453, 111, - 112, -1, 70, -1, -1, 73, -1, -1, -1, -1, - -1, -1, -1, 111, 112, -1, -1, -1, 388, -1, - -1, -1, -1, -1, 394, 395, 388, 38, -1, -1, - -1, 42, 394, 111, 112, -1, -1, 407, 408, 68, - -1, -1, -1, 111, 112, 407, 408, -1, -1, -1, - -1, 483, -1, 485, -1, -1, -1, -1, 483, 70, - 485, -1, 73, 68, -1, -1, 483, -1, 485, 388, - -1, -1, 27, -1, 68, 394, -1, -1, -1, -1, - -1, -1, -1, 453, -1, -1, -1, 519, -1, 521, - 522, 453, -1, -1, 519, -1, 521, 522, -1, -1, - 111, 112, 519, -1, 521, 522, 68, -1, 63, 541, - 542, 66, 67, 483, -1, 485, 541, 542, 488, -1, - -1, 483, -1, 485, 541, 542, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 38, -1, 68, -1, 42, - -1, -1, -1, 38, -1, -1, -1, 42, -1, 519, - -1, 521, 522, -1, -1, -1, -1, 519, -1, 521, - 522, 68, -1, -1, 483, -1, 485, 70, 68, -1, - 73, 541, 542, -1, -1, 70, -1, 68, 73, 541, - 542, 136, 137, 138, 139, 140, 141, 142, 143, 144, - 145, 220, 147, 148, 149, 150, 151, 152, 153, 154, - 519, 156, 521, 522, -1, -1, 161, -1, 111, 112, - -1, -1, -1, -1, -1, 220, 111, 112, -1, -1, - -1, -1, 541, 542, -1, -1, 220, -1, -1, -1, - -1, 186, 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, 220, -1, - -1, -1, -1, -1, -1, -1, 295, -1, -1, -1, - 299, -1, -1, -1, -1, -1, -1, 232, -1, -1, - -1, -1, -1, 312, 313, -1, -1, 316, -1, 220, - 295, -1, -1, -1, 299, -1, -1, -1, -1, -1, - 255, 295, -1, -1, -1, 299, -1, 312, 313, -1, - -1, 316, -1, 220, -1, -1, -1, -1, 312, 313, - 220, -1, 316, -1, -1, -1, -1, -1, -1, 220, - -1, 286, -1, 295, -1, -1, -1, 299, -1, -1, - -1, 296, -1, -1, -1, -1, -1, -1, -1, -1, - 312, 313, -1, 308, 316, -1, -1, -1, -1, 388, - -1, -1, -1, -1, 295, 394, -1, -1, 299, -1, - -1, -1, 68, -1, -1, -1, -1, -1, -1, -1, - -1, 312, 313, 388, -1, 316, -1, -1, 295, 394, - -1, -1, 299, -1, 388, 295, -1, -1, 353, 299, - 394, -1, -1, -1, 295, 312, 313, -1, 299, 316, - -1, -1, 312, 313, 369, -1, 316, 68, -1, 374, - -1, 312, 313, -1, -1, 316, 388, -1, -1, 384, - -1, -1, 394, -1, -1, -1, 391, -1, 393, -1, - -1, 396, -1, 68, -1, -1, -1, -1, -1, -1, - -1, -1, 68, -1, 483, -1, 485, 388, -1, -1, - -1, -1, -1, 394, -1, -1, -1, 422, 423, 424, - 425, 426, 427, 428, 429, 430, 431, 432, 483, -1, - 485, 388, -1, 438, -1, -1, -1, 394, 388, 483, - 519, 485, 521, 522, 394, -1, -1, 388, -1, -1, - -1, -1, -1, 394, -1, -1, 461, 462, 463, 464, - -1, -1, 541, 542, 519, -1, 521, 522, -1, -1, - -1, 483, -1, 485, 220, 519, -1, 521, 522, 484, - -1, 486, 487, -1, -1, -1, 541, 542, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 541, 542, -1, - -1, -1, 483, -1, 485, -1, -1, 519, -1, 521, - 522, -1, -1, -1, -1, -1, -1, -1, 523, 220, - -1, -1, -1, -1, -1, -1, 483, -1, 485, 541, - 542, -1, -1, 483, -1, 485, -1, -1, 519, -1, - 521, 522, 483, -1, 485, 220, -1, -1, -1, 295, - -1, -1, -1, 299, 220, -1, -1, -1, -1, -1, - 541, 542, 519, -1, 521, 522, 312, 313, -1, 519, - 316, 521, 522, -1, -1, -1, -1, -1, 519, -1, - 521, 522, 38, -1, 541, 542, 42, 43, 44, 45, - 46, 541, 542, -1, 295, -1, -1, 53, 299, -1, - 541, 542, -1, 59, 60, 61, 62, 63, 64, -1, - -1, 312, 313, -1, 70, 316, -1, -1, -1, -1, - 295, -1, 78, 79, 299, -1, -1, -1, -1, 295, - -1, -1, -1, 299, -1, -1, -1, 312, 313, -1, - -1, 316, 388, -1, -1, -1, 312, 313, 394, 11, - 316, -1, -1, -1, -1, 111, 112, 19, -1, -1, - 22, 23, -1, 25, 26, 27, 28, -1, 30, 31, - 32, 33, 34, 35, 36, 37, 38, -1, -1, -1, - 42, 43, 44, 45, 46, -1, -1, 388, -1, -1, - -1, 53, -1, 394, -1, -1, -1, 59, 60, 61, - 62, 63, 64, 80, 81, -1, 68, 69, 70, 86, - 87, 88, 89, 388, -1, -1, 78, 79, -1, 394, - -1, -1, 388, -1, -1, -1, -1, -1, 394, 106, - 107, 108, 109, 110, -1, -1, -1, 483, 38, 485, - -1, -1, 42, 43, 44, 45, 46, -1, -1, 111, - 112, -1, -1, 53, -1, -1, -1, -1, -1, 59, - 60, 61, 62, 63, 64, -1, -1, -1, -1, -1, - 70, -1, -1, 519, -1, 521, 522, -1, -1, -1, - -1, -1, 483, -1, 485, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 541, 542, -1, 80, 81, - -1, -1, 84, 85, 86, 87, 88, 89, 483, -1, - 485, 111, 112, -1, -1, -1, -1, 483, 519, 485, - 521, 522, 104, 105, 106, 107, 108, 109, 110, -1, + 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, - 541, 542, -1, -1, 519, -1, 521, 522, -1, -1, - -1, -1, -1, 519, -1, 521, 522, 16, -1, -1, - -1, -1, -1, -1, -1, -1, 541, 542, -1, -1, - -1, -1, -1, -1, -1, 541, 542, -1, -1, 38, - 39, 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, 71, -1, - -1, 70, 71, -1, 77, 74, -1, 80, 81, 82, - 83, 84, 85, 86, 87, 88, 89, -1, -1, -1, - -1, 90, 91, -1, -1, -1, -1, 16, -1, -1, - 103, 104, 105, 106, 107, 108, 109, 110, 107, -1, - -1, 110, 111, 112, 113, 114, 115, 116, 117, 38, - 39, 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, -1, -1, - -1, 70, -1, -1, -1, 74, -1, 76, -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, + -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, + 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, + -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, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 90, 91, -1, -1, -1, -1, 16, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, 107, -1, - -1, 110, 111, 112, 113, 114, 115, 116, 117, 38, - 39, 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, 71, -1, - -1, 70, -1, -1, 77, 74, -1, 80, 81, 82, - 83, 84, 85, 86, 87, 88, 89, -1, -1, -1, - -1, 90, 91, -1, -1, -1, -1, 16, -1, -1, - 103, 104, 105, 106, 107, 108, 109, 110, 107, -1, - -1, 110, 111, 112, 113, 114, 115, 116, 117, 38, - 39, 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, 71, -1, - -1, 70, -1, -1, 77, 74, -1, 80, 81, 82, - 83, 84, 85, 86, 87, 88, 89, -1, -1, -1, - -1, 90, 91, -1, -1, -1, -1, -1, -1, -1, - 103, 104, 105, 106, 107, 108, 109, 110, 107, -1, - -1, 110, 111, 112, 113, 114, 115, 116, 117, 11, - -1, -1, -1, -1, -1, -1, -1, 19, -1, -1, - 22, 23, -1, 25, 26, 27, 28, -1, 30, 31, - 32, 33, 34, 35, 36, 37, 38, -1, -1, -1, - 42, 43, 44, 45, 46, -1, -1, -1, -1, -1, - -1, 53, -1, -1, -1, -1, -1, 59, 60, 61, - 62, 63, 64, -1, -1, -1, 68, 69, 70, -1, - -1, 12, -1, -1, -1, -1, 78, 79, 19, -1, - -1, 22, 23, -1, 25, 26, 27, 28, -1, 30, - 31, 32, 33, 34, 35, 36, 37, 38, -1, -1, - -1, 42, 43, 44, 45, 46, -1, -1, -1, 111, - 112, -1, 53, -1, -1, -1, -1, -1, 59, 60, - 61, 62, 63, 64, -1, -1, -1, 68, -1, 70, - -1, -1, 12, -1, -1, -1, -1, 78, 79, 19, - -1, -1, 22, 23, -1, 25, 26, 27, 28, -1, - 30, 31, 32, 33, 34, 35, 36, 37, 38, -1, - -1, -1, 42, 43, 44, 45, 46, -1, -1, -1, - 111, 112, -1, 53, -1, -1, -1, -1, -1, 59, - 60, 61, 62, 63, 64, -1, -1, -1, 68, -1, - 70, 17, 18, -1, 20, 21, -1, -1, 78, 79, + -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, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 38, -1, -1, -1, 42, -1, -1, -1, - 67, -1, -1, -1, -1, 72, -1, -1, -1, -1, - 77, 111, 112, 80, 81, 82, 83, 84, 85, 86, - 87, 88, 89, -1, 70, -1, -1, 73, -1, -1, - -1, -1, 78, 79, -1, -1, 103, 104, 105, 106, - 107, 108, 109, 110, -1, -1, 92, 93, 94, 95, - 96, 97, 98, 99, 100, 101, 102, -1, -1, -1, - -1, -1, -1, -1, 19, 111, 112, 22, 23, -1, - 25, 26, 27, 28, -1, 30, 31, 32, 33, 34, - 35, 36, 37, 38, -1, -1, -1, 42, 43, 44, - 45, 46, -1, -1, -1, -1, -1, -1, 53, -1, - -1, -1, -1, -1, 59, 60, 61, 62, 63, 64, - -1, -1, -1, 68, -1, 70, -1, -1, -1, -1, - -1, -1, 67, 78, 79, -1, -1, 72, -1, -1, - -1, -1, 77, -1, -1, 80, 81, 82, 83, 84, - 85, 86, 87, 88, 89, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, 111, 112, 103, 104, - 105, 106, 107, 108, 109, 110, 67, -1, -1, -1, - -1, 72, -1, -1, -1, -1, 77, -1, -1, 80, - 81, 82, 83, 84, 85, 86, 87, 88, 89, -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, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 103, 104, 105, 106, 107, 108, 109, 110, - 67, -1, -1, -1, -1, 72, -1, -1, -1, -1, - 77, -1, -1, 80, 81, 82, 83, 84, 85, 86, - 87, 88, 89, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 67, -1, 103, 104, 105, 106, - 107, 108, 109, 110, 77, -1, -1, 80, 81, 82, - 83, 84, 85, 86, 87, 88, 89, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, - 103, 104, 105, 106, 107, 108, 109, 110, 77, -1, - -1, 80, 81, 82, 83, 84, 85, 86, 87, 88, - 89, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 67, -1, 103, 104, 105, 106, 107, 108, - 109, 110, 77, -1, -1, 80, 81, 82, 83, 84, - 85, 86, 87, 88, 89, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, 67, -1, 103, 104, - 105, 106, 107, 108, 109, 110, 77, -1, -1, 80, - 81, 82, 83, 84, 85, 86, 87, 88, 89, -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, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 67, -1, 103, 104, 105, 106, 107, 108, 109, 110, - 77, -1, -1, 80, 81, 82, 83, 84, 85, 86, - 87, 88, 89, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 67, -1, 103, 104, 105, 106, - 107, 108, 109, 110, 77, -1, -1, 80, 81, 82, - 83, 84, 85, 86, 87, 88, 89, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, - 103, 104, 105, 106, 107, 108, 109, 110, 77, -1, - -1, 80, 81, 82, 83, 84, 85, 86, 87, 88, - 89, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 67, -1, 103, 104, 105, 106, 107, 108, - 109, 110, 77, -1, -1, 80, 81, 82, 83, 84, - 85, 86, 87, 88, 89, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, 67, -1, 103, 104, - 105, 106, 107, 108, 109, 110, 77, -1, -1, 80, - 81, 82, 83, 84, 85, 86, 87, 88, 89, -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, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 67, -1, 103, 104, 105, 106, 107, 108, 109, 110, - 77, -1, -1, 80, 81, 82, 83, 84, 85, 86, - 87, 88, 89, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 67, -1, 103, 104, 105, 106, - 107, 108, 109, 110, 77, -1, -1, 80, 81, 82, - 83, 84, 85, 86, 87, 88, 89, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, - 103, 104, 105, 106, 107, 108, 109, 110, 77, -1, - -1, 80, 81, 82, 83, 84, 85, 86, 87, 88, - 89, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 67, -1, 103, 104, 105, 106, 107, 108, - 109, 110, 77, -1, -1, 80, 81, 82, 83, 84, - 85, 86, 87, 88, 89, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, 67, -1, 103, 104, - 105, 106, 107, 108, 109, 110, 77, -1, -1, 80, - 81, 82, 83, 84, 85, 86, 87, 88, 89, -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, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 67, -1, 103, 104, 105, 106, 107, 108, 109, 110, - 77, -1, -1, 80, 81, 82, 83, 84, 85, 86, - 87, 88, 89, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 67, -1, 103, 104, 105, 106, - 107, 108, 109, 110, 77, -1, -1, 80, 81, 82, - 83, 84, 85, 86, 87, 88, 89, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, - 103, 104, 105, 106, 107, 108, 109, 110, 77, -1, - -1, 80, 81, 82, 83, 84, 85, 86, 87, 88, - 89, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 67, -1, 103, 104, 105, 106, 107, 108, - 109, 110, 77, -1, -1, 80, 81, 82, 83, 84, - 85, 86, 87, 88, 89, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, 67, -1, 103, 104, - 105, 106, 107, 108, 109, 110, 77, -1, -1, 80, - 81, 82, 83, 84, 85, 86, 87, 88, 89, -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, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 67, -1, 103, 104, 105, 106, 107, 108, 109, 110, - 77, -1, -1, 80, 81, 82, 83, 84, 85, 86, - 87, 88, 89, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 67, -1, 103, 104, 105, 106, - 107, 108, 109, 110, 77, -1, -1, 80, 81, 82, - 83, 84, 85, 86, 87, 88, 89, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, - 103, 104, 105, 106, 107, 108, 109, 110, 77, -1, - -1, 80, 81, 82, 83, 84, 85, 86, 87, 88, - 89, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 67, -1, 103, 104, 105, 106, 107, 108, - 109, 110, 77, -1, -1, 80, 81, 82, 83, 84, - 85, 86, 87, 88, 89, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, 67, -1, 103, 104, - 105, 106, 107, 108, 109, 110, 77, -1, -1, 80, - 81, 82, 83, 84, 85, 86, 87, 88, 89, -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, -1, -1, -1, -1, -1, -1, -1, - 67, -1, 103, 104, 105, 106, 107, 108, 109, 110, - 77, -1, -1, 80, 81, 82, 83, 84, 85, 86, - 87, 88, 89, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 67, -1, 103, 104, 105, 106, - 107, 108, 109, 110, 77, -1, -1, 80, 81, 82, - 83, 84, 85, 86, 87, 88, 89, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, - 103, 104, 105, 106, 107, 108, 109, 110, 77, -1, - -1, 80, 81, 82, 83, 84, 85, 86, 87, 88, - 89, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 103, 104, 105, 106, 107, 108, - 109, 110, 71, -1, -1, -1, -1, -1, 77, -1, - -1, 80, 81, 82, 83, 84, 85, 86, 87, 88, - 89, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 103, 104, 105, 106, 107, 108, - 109, 110, 71, -1, -1, -1, -1, -1, 77, -1, - -1, 80, 81, 82, 83, 84, 85, 86, 87, 88, - 89, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 103, 104, 105, 106, 107, 108, - 109, 110, 71, -1, -1, -1, -1, -1, 77, -1, - -1, 80, 81, 82, 83, 84, 85, 86, 87, 88, - 89, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 103, 104, 105, 106, 107, 108, - 109, 110, 71, -1, -1, -1, -1, -1, 77, -1, - -1, 80, 81, 82, 83, 84, 85, 86, 87, 88, - 89, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 103, 104, 105, 106, 107, 108, - 109, 110, 71, -1, -1, -1, -1, -1, 77, -1, - -1, 80, 81, 82, 83, 84, 85, 86, 87, 88, - 89, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 103, 104, 105, 106, 107, 108, - 109, 110, 71, -1, -1, -1, -1, -1, 77, -1, - -1, 80, 81, 82, 83, 84, 85, 86, 87, 88, - 89, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 103, 104, 105, 106, 107, 108, - 109, 110, 71, -1, -1, -1, -1, -1, 77, -1, - -1, 80, 81, 82, 83, 84, 85, 86, 87, 88, - 89, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 103, 104, 105, 106, 107, 108, - 109, 110, 72, -1, -1, -1, -1, 77, -1, -1, - 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, + -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, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, 103, 104, 105, 106, 107, 108, 109, - 110, 72, -1, -1, -1, -1, 77, -1, -1, 80, - 81, 82, 83, 84, 85, 86, 87, 88, 89, -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, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 103, 104, 105, 106, 107, 108, 109, 110, - 72, -1, -1, -1, -1, 77, -1, -1, 80, 81, - 82, 83, 84, 85, 86, 87, 88, 89, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 103, 104, 105, 106, 107, 108, 109, 110, 75, - -1, 77, -1, -1, 80, 81, 82, 83, 84, 85, - 86, 87, 88, 89, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 103, 104, 105, - 106, 107, 108, 109, 110, 76, 77, -1, -1, 80, - 81, 82, 83, 84, 85, 86, 87, 88, 89, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 103, 104, 105, 106, 107, 108, 109, 110, - 76, 77, -1, -1, 80, 81, 82, 83, 84, 85, - 86, 87, 88, 89, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 103, 104, 105, - 106, 107, 108, 109, 110, 76, 77, -1, -1, 80, - 81, 82, 83, 84, 85, 86, 87, 88, 89, 77, - -1, -1, 80, 81, 82, 83, 84, 85, 86, 87, - 88, 89, 103, 104, 105, 106, 107, 108, 109, 110, - -1, -1, -1, -1, -1, 103, 104, 105, 106, 107, - 108, 109, 110, 80, 81, -1, 83, 84, 85, 86, - 87, 88, 89, 80, 81, -1, -1, 84, 85, 86, - 87, 88, 89, -1, -1, -1, 103, 104, 105, 106, - 107, 108, 109, 110, -1, -1, 103, 104, 105, 106, - 107, 108, 109, 110, 80, 81, -1, -1, 84, 85, - 86, 87, 88, 89, 80, 81, -1, -1, 84, 85, - 86, 87, 88, 89, -1, -1, -1, -1, 104, -1, - 106, 107, 108, 109, 110, -1, -1, -1, -1, -1, - 106, 107, 108, 109, 110 + -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 }; const unsigned char parser::yystos_[] = { - 0, 11, 12, 13, 14, 15, 42, 112, 128, 129, - 130, 131, 132, 133, 134, 135, 219, 111, 112, 220, - 220, 66, 0, 130, 131, 132, 66, 92, 76, 76, - 113, 222, 180, 181, 219, 16, 38, 39, 40, 41, - 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, - 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, - 63, 64, 65, 66, 70, 74, 90, 91, 107, 110, - 112, 114, 115, 116, 117, 165, 170, 171, 172, 173, - 174, 175, 176, 177, 178, 179, 185, 186, 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, 219, - 220, 221, 222, 223, 224, 225, 226, 227, 228, 67, - 67, 72, 92, 70, 219, 220, 66, 66, 66, 66, - 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, - 66, 66, 66, 66, 66, 165, 70, 71, 219, 165, - 165, 66, 70, 116, 117, 176, 177, 191, 197, 198, - 199, 200, 201, 202, 205, 206, 208, 209, 212, 213, - 214, 215, 219, 220, 112, 76, 77, 80, 81, 82, - 83, 84, 85, 86, 87, 88, 89, 103, 104, 105, - 106, 107, 108, 109, 110, 70, 70, 70, 70, 70, - 70, 70, 70, 73, 178, 179, 219, 66, 74, 76, - 68, 141, 181, 219, 107, 182, 221, 222, 225, 226, - 227, 228, 70, 66, 74, 165, 165, 165, 165, 165, - 165, 165, 165, 165, 165, 67, 165, 165, 165, 165, - 165, 165, 165, 165, 67, 72, 165, 165, 73, 74, - 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, - 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, - 165, 165, 165, 165, 165, 165, 70, 165, 42, 112, - 218, 165, 183, 184, 219, 11, 19, 22, 23, 25, - 26, 27, 28, 30, 31, 32, 33, 34, 35, 36, - 37, 69, 78, 79, 136, 137, 139, 140, 141, 143, - 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, + 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, + 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, 167, 168, 169, 176, 177, 205, 206, 209, 219, - 165, 183, 219, 72, 67, 67, 67, 67, 67, 67, - 67, 67, 67, 67, 67, 67, 67, 67, 67, 72, - 67, 165, 71, 219, 75, 71, 71, 71, 71, 71, - 71, 71, 71, 67, 72, 66, 12, 136, 138, 165, - 76, 66, 136, 66, 66, 66, 66, 107, 222, 226, - 75, 76, 76, 76, 165, 66, 66, 209, 209, 69, - 137, 76, 76, 76, 76, 76, 17, 18, 20, 21, - 78, 79, 92, 93, 94, 95, 96, 97, 98, 99, - 100, 101, 102, 71, 67, 66, 165, 165, 72, 71, - 165, 165, 183, 12, 136, 76, 165, 26, 165, 142, - 167, 168, 169, 209, 219, 165, 75, 75, 76, 183, - 183, 66, 66, 66, 66, 165, 165, 165, 165, 165, - 165, 165, 165, 165, 165, 165, 71, 183, 67, 67, - 165, 66, 67, 67, 66, 67, 76, 29, 72, 67, - 67, 67, 165, 165, 165, 165, 66, 67, 67, 183, - 136, 165, 136, 165, 166, 165, 219, 141, 76, 76, - 67, 67, 72, 67, 72, 67, 72, 183, 67, 24, - 67, 76, 67, 29, 76, 76, 183, 184, 76, 184, - 76, 184, 67, 136, 76, 142, 136, 165, 67, 67, - 67, 67, 67, 76, 76, 76, 136, 136 + 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 }; const unsigned char parser::yyr1_[] = { - 0, 127, 128, 128, 129, 129, 129, 129, 129, 129, - 130, 131, 132, 132, 132, 132, 132, 133, 134, 135, - 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, - 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, - 136, 136, 136, 137, 137, 138, 138, 139, 139, 140, - 140, 141, 141, 142, 142, 142, 142, 143, 143, 144, - 144, 144, 145, 146, 146, 147, 148, 148, 149, 149, - 150, 151, 152, 153, 154, 155, 156, 156, 157, 158, - 158, 159, 160, 161, 162, 162, 163, 164, 165, 165, - 165, 166, 166, 167, 167, 167, 167, 167, 167, 167, - 167, 167, 167, 167, 168, 168, 169, 169, 170, 171, - 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, - 171, 171, 171, 171, 171, 171, 171, 172, 172, 172, - 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, - 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, - 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, - 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, - 172, 172, 172, 173, 174, 174, 174, 174, 175, 176, - 176, 177, 177, 178, 178, 178, 178, 179, 179, 180, - 180, 180, 180, 180, 181, 182, 182, 182, 182, 182, - 182, 183, 183, 184, 184, 185, 186, 187, 188, 189, + 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, + 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, 204, 205, 205, 205, 205, - 205, 205, 205, 205, 206, 207, 208, 209, 209, 209, - 209, 209, 209, 209, 209, 209, 210, 211, 212, 213, - 214, 215, 216, 217, 218, 219, 219, 220, 220, 221, - 222, 223, 224, 225, 225, 226, 226, 227, 228 + 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 }; const signed char @@ -5428,31 +5451,32 @@ namespace xsk { namespace arc { namespace t6 { { 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, 1, 1, 1, 1, 1, 1, 1, 1, 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, 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, 3, 3, - 3, 3, 3, 3, 2, 2, 2, 2, 5, 3, - 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, - 3, 3, 3, 3, 3, 3, 3, 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, + 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, + 3, 3, 3, 3, 3, 3, 2, 2, 2, 2, + 5, 3, 3, 3, 3, 3, 3, 3, 3, 3, + 3, 3, 3, 3, 3, 3, 3, 3, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, - 1, 1, 1, 2, 2, 2, 2, 2, 2, 1, - 1, 2, 2, 4, 6, 5, 7, 8, 9, 3, - 3, 1, 1, 0, 3, 1, 1, 1, 1, 1, - 1, 1, 0, 3, 1, 6, 4, 4, 4, 4, - 4, 4, 4, 4, 4, 3, 4, 4, 4, 4, - 4, 4, 6, 4, 2, 3, 4, 4, 4, 4, - 4, 4, 4, 4, 3, 3, 3, 1, 1, 1, - 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, - 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, - 1, 7, 1, 2, 1, 2, 1, 1, 1 + 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, + 2, 1, 1, 2, 2, 4, 6, 5, 7, 8, + 9, 3, 3, 1, 1, 0, 3, 1, 1, 1, + 1, 1, 1, 1, 0, 3, 1, 6, 4, 4, + 4, 4, 4, 4, 4, 4, 4, 3, 4, 4, + 4, 4, 4, 4, 6, 4, 2, 3, 4, 4, + 4, 4, 4, 4, 4, 4, 3, 3, 3, 1, + 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, + 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, + 1, 1, 1, 7, 1, 2, 1, 2, 1, 1, + 1 }; @@ -5462,33 +5486,34 @@ namespace xsk { namespace arc { namespace t6 { const short parser::yyrline_[] = { - 0, 292, 292, 293, 297, 299, 301, 303, 305, 307, - 312, 316, 321, 322, 323, 324, 325, 329, 334, 339, - 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, - 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, - 364, 365, 366, 370, 371, 375, 377, 382, 384, 389, - 390, 394, 395, 399, 401, 403, 406, 410, 412, 417, - 419, 421, 426, 431, 433, 438, 443, 445, 450, 452, - 457, 462, 467, 472, 477, 482, 487, 489, 494, 499, - 501, 506, 511, 516, 521, 523, 528, 533, 538, 539, - 540, 544, 545, 549, 551, 553, 555, 557, 559, 561, - 563, 565, 567, 569, 574, 576, 581, 583, 588, 593, - 595, 597, 599, 601, 603, 605, 607, 609, 611, 613, - 615, 617, 619, 621, 623, 625, 627, 632, 633, 634, - 635, 636, 637, 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, 681, 686, 688, 690, 692, 697, 702, - 703, 706, 707, 711, 713, 715, 717, 722, 724, 729, - 731, 733, 735, 738, 742, 747, 748, 749, 750, 751, - 752, 756, 759, 763, 765, 770, 775, 780, 785, 790, - 795, 800, 805, 810, 815, 820, 825, 830, 835, 840, - 845, 850, 855, 860, 865, 867, 872, 874, 876, 878, - 880, 882, 884, 886, 891, 896, 901, 906, 907, 908, - 909, 910, 911, 912, 913, 914, 918, 923, 928, 933, - 938, 943, 948, 953, 958, 963, 965, 970, 972, 977, - 982, 987, 992, 997, 999, 1004, 1006, 1011, 1016 + 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 }; void @@ -5521,9 +5546,9 @@ namespace xsk { namespace arc { namespace t6 { #line 13 "parser.ypp" } } } // xsk::arc::t6 -#line 5525 "parser.cpp" +#line 5550 "parser.cpp" -#line 1020 "parser.ypp" +#line 1026 "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 111b310f..83230503 100644 --- a/src/t6/xsk/parser.hpp +++ b/src/t6/xsk/parser.hpp @@ -761,116 +761,118 @@ namespace xsk { namespace arc { namespace t6 { INCLUDE = 14, // "#include" USINGTREE = 15, // "#using_animtree" ANIMTREE = 16, // "#animtree" - ENDON = 17, // "endon" - NOTIFY = 18, // "notify" - WAIT = 19, // "wait" - WAITTILL = 20, // "waittill" - WAITTILLMATCH = 21, // "waittillmatch" - WAITTILLFRAMEEND = 22, // "waittillframeend" - IF = 23, // "if" - ELSE = 24, // "else" - DO = 25, // "do" - WHILE = 26, // "while" - FOR = 27, // "for" - FOREACH = 28, // "foreach" - IN = 29, // "in" - SWITCH = 30, // "switch" - CASE = 31, // "case" - DEFAULT = 32, // "default" - BREAK = 33, // "break" - CONTINUE = 34, // "continue" - RETURN = 35, // "return" - PROFBEGIN = 36, // "prof_begin" - PROFEND = 37, // "prof_end" - THREAD = 38, // "thread" - TRUE = 39, // "true" - FALSE = 40, // "false" - UNDEFINED = 41, // "undefined" - SIZE = 42, // "size" - GAME = 43, // "game" - SELF = 44, // "self" - ANIM = 45, // "anim" - LEVEL = 46, // "level" - GETNEXTARRAYKEY = 47, // "getnextarraykey" - GETFIRSTARRAYKEY = 48, // "getfirstarraykey" - GETDVARCOLORALPHA = 49, // "getdvarcoloralpha" - GETDVARCOLORBLUE = 50, // "getdvarcolorblue" - GETDVARCOLORGREEN = 51, // "getdvarcolorgreen" - GETDVARCOLORRED = 52, // "getdvarcolorred" - GETDVARVECTOR = 53, // "getdvarvector" - GETDVARFLOAT = 54, // "getdvarfloat" - GETDVARINT = 55, // "getdvarint" - GETDVAR = 56, // "getdvar" - GETTIME = 57, // "gettime" - ABS = 58, // "abs" - VECTORTOANGLES = 59, // "vectortoangles" - ANGLECLAMP180 = 60, // "angleclamp180" - ANGLESTOFORWARD = 61, // "anglestoforward" - ANGLESTORIGHT = 62, // "anglestoright" - ANGLESTOUP = 63, // "anglestoup" - VECTORSCALE = 64, // "vectorscale" - ISDEFINED = 65, // "isdefined" - LPAREN = 66, // "(" - RPAREN = 67, // ")" - LBRACE = 68, // "{" - RBRACE = 69, // "}" - LBRACKET = 70, // "[" - RBRACKET = 71, // "]" - COMMA = 72, // "," - DOT = 73, // "." - DOUBLECOLON = 74, // "::" - COLON = 75, // ":" - SEMICOLON = 76, // ";" - QMARK = 77, // "?" - INCREMENT = 78, // "++" - DECREMENT = 79, // "--" - LSHIFT = 80, // "<<" - RSHIFT = 81, // ">>" - OR = 82, // "||" - AND = 83, // "&&" - EQUALITY = 84, // "==" - INEQUALITY = 85, // "!=" - LESS_EQUAL = 86, // "<=" - GREATER_EQUAL = 87, // ">=" - LESS = 88, // "<" - GREATER = 89, // ">" - NOT = 90, // "!" - COMPLEMENT = 91, // "~" - ASSIGN = 92, // "=" - ASSIGN_ADD = 93, // "+=" - ASSIGN_SUB = 94, // "-=" - ASSIGN_MUL = 95, // "*=" - ASSIGN_DIV = 96, // "/=" - ASSIGN_MOD = 97, // "%=" - ASSIGN_BW_OR = 98, // "|=" - ASSIGN_BW_AND = 99, // "&=" - ASSIGN_BW_EXOR = 100, // "^=" - ASSIGN_RSHIFT = 101, // ">>=" - ASSIGN_LSHIFT = 102, // "<<=" - BITWISE_OR = 103, // "|" - BITWISE_AND = 104, // "&" - BITWISE_EXOR = 105, // "^" - ADD = 106, // "+" - SUB = 107, // "-" - MUL = 108, // "*" - DIV = 109, // "/" - MOD = 110, // "%" - PATH = 111, // "path" - IDENTIFIER = 112, // "identifier" - STRING = 113, // "string literal" - ISTRING = 114, // "localized string" - HASH = 115, // "hash" - FLOAT = 116, // "float" - INTEGER = 117, // "integer" - SIZEOF = 118, // SIZEOF - THEN = 119, // THEN - TERN = 120, // TERN - NEG = 121, // NEG - ANIMREF = 122, // ANIMREF - PREINC = 123, // PREINC - PREDEC = 124, // PREDEC - POSTINC = 125, // POSTINC - POSTDEC = 126 // POSTDEC + AUTOEXEC = 17, // "autoexec" + PRIVATE = 18, // "private" + ENDON = 19, // "endon" + NOTIFY = 20, // "notify" + WAIT = 21, // "wait" + WAITTILL = 22, // "waittill" + WAITTILLMATCH = 23, // "waittillmatch" + WAITTILLFRAMEEND = 24, // "waittillframeend" + IF = 25, // "if" + ELSE = 26, // "else" + DO = 27, // "do" + WHILE = 28, // "while" + FOR = 29, // "for" + FOREACH = 30, // "foreach" + IN = 31, // "in" + SWITCH = 32, // "switch" + CASE = 33, // "case" + DEFAULT = 34, // "default" + BREAK = 35, // "break" + CONTINUE = 36, // "continue" + RETURN = 37, // "return" + PROFBEGIN = 38, // "prof_begin" + PROFEND = 39, // "prof_end" + THREAD = 40, // "thread" + TRUE = 41, // "true" + FALSE = 42, // "false" + UNDEFINED = 43, // "undefined" + SIZE = 44, // "size" + GAME = 45, // "game" + 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 }; /// Backward compatibility alias (Bison 3.6). typedef token_kind_type yytokentype; @@ -887,7 +889,7 @@ namespace xsk { namespace arc { namespace t6 { { enum symbol_kind_type { - YYNTOKENS = 127, ///< Number of tokens. + YYNTOKENS = 129, ///< Number of tokens. S_YYEMPTY = -2, S_YYEOF = 0, // "end of file" S_YYerror = 1, // error @@ -906,218 +908,220 @@ namespace xsk { namespace arc { namespace t6 { S_INCLUDE = 14, // "#include" S_USINGTREE = 15, // "#using_animtree" S_ANIMTREE = 16, // "#animtree" - S_ENDON = 17, // "endon" - S_NOTIFY = 18, // "notify" - S_WAIT = 19, // "wait" - S_WAITTILL = 20, // "waittill" - S_WAITTILLMATCH = 21, // "waittillmatch" - S_WAITTILLFRAMEEND = 22, // "waittillframeend" - S_IF = 23, // "if" - S_ELSE = 24, // "else" - S_DO = 25, // "do" - S_WHILE = 26, // "while" - S_FOR = 27, // "for" - S_FOREACH = 28, // "foreach" - S_IN = 29, // "in" - S_SWITCH = 30, // "switch" - S_CASE = 31, // "case" - S_DEFAULT = 32, // "default" - S_BREAK = 33, // "break" - S_CONTINUE = 34, // "continue" - S_RETURN = 35, // "return" - S_PROFBEGIN = 36, // "prof_begin" - S_PROFEND = 37, // "prof_end" - S_THREAD = 38, // "thread" - S_TRUE = 39, // "true" - S_FALSE = 40, // "false" - S_UNDEFINED = 41, // "undefined" - S_SIZE = 42, // "size" - S_GAME = 43, // "game" - S_SELF = 44, // "self" - S_ANIM = 45, // "anim" - S_LEVEL = 46, // "level" - S_GETNEXTARRAYKEY = 47, // "getnextarraykey" - S_GETFIRSTARRAYKEY = 48, // "getfirstarraykey" - S_GETDVARCOLORALPHA = 49, // "getdvarcoloralpha" - S_GETDVARCOLORBLUE = 50, // "getdvarcolorblue" - S_GETDVARCOLORGREEN = 51, // "getdvarcolorgreen" - S_GETDVARCOLORRED = 52, // "getdvarcolorred" - S_GETDVARVECTOR = 53, // "getdvarvector" - S_GETDVARFLOAT = 54, // "getdvarfloat" - S_GETDVARINT = 55, // "getdvarint" - S_GETDVAR = 56, // "getdvar" - S_GETTIME = 57, // "gettime" - S_ABS = 58, // "abs" - S_VECTORTOANGLES = 59, // "vectortoangles" - S_ANGLECLAMP180 = 60, // "angleclamp180" - S_ANGLESTOFORWARD = 61, // "anglestoforward" - S_ANGLESTORIGHT = 62, // "anglestoright" - S_ANGLESTOUP = 63, // "anglestoup" - S_VECTORSCALE = 64, // "vectorscale" - S_ISDEFINED = 65, // "isdefined" - S_LPAREN = 66, // "(" - S_RPAREN = 67, // ")" - S_LBRACE = 68, // "{" - S_RBRACE = 69, // "}" - S_LBRACKET = 70, // "[" - S_RBRACKET = 71, // "]" - S_COMMA = 72, // "," - S_DOT = 73, // "." - S_DOUBLECOLON = 74, // "::" - S_COLON = 75, // ":" - S_SEMICOLON = 76, // ";" - S_QMARK = 77, // "?" - S_INCREMENT = 78, // "++" - S_DECREMENT = 79, // "--" - S_LSHIFT = 80, // "<<" - S_RSHIFT = 81, // ">>" - S_OR = 82, // "||" - S_AND = 83, // "&&" - S_EQUALITY = 84, // "==" - S_INEQUALITY = 85, // "!=" - S_LESS_EQUAL = 86, // "<=" - S_GREATER_EQUAL = 87, // ">=" - S_LESS = 88, // "<" - S_GREATER = 89, // ">" - S_NOT = 90, // "!" - S_COMPLEMENT = 91, // "~" - S_ASSIGN = 92, // "=" - S_ASSIGN_ADD = 93, // "+=" - S_ASSIGN_SUB = 94, // "-=" - S_ASSIGN_MUL = 95, // "*=" - S_ASSIGN_DIV = 96, // "/=" - S_ASSIGN_MOD = 97, // "%=" - S_ASSIGN_BW_OR = 98, // "|=" - S_ASSIGN_BW_AND = 99, // "&=" - S_ASSIGN_BW_EXOR = 100, // "^=" - S_ASSIGN_RSHIFT = 101, // ">>=" - S_ASSIGN_LSHIFT = 102, // "<<=" - S_BITWISE_OR = 103, // "|" - S_BITWISE_AND = 104, // "&" - S_BITWISE_EXOR = 105, // "^" - S_ADD = 106, // "+" - S_SUB = 107, // "-" - S_MUL = 108, // "*" - S_DIV = 109, // "/" - S_MOD = 110, // "%" - S_PATH = 111, // "path" - S_IDENTIFIER = 112, // "identifier" - S_STRING = 113, // "string literal" - S_ISTRING = 114, // "localized string" - S_HASH = 115, // "hash" - S_FLOAT = 116, // "float" - S_INTEGER = 117, // "integer" - S_SIZEOF = 118, // SIZEOF - S_THEN = 119, // THEN - S_TERN = 120, // TERN - S_NEG = 121, // NEG - S_ANIMREF = 122, // ANIMREF - S_PREINC = 123, // PREINC - S_PREDEC = 124, // PREDEC - S_POSTINC = 125, // POSTINC - S_POSTDEC = 126, // POSTDEC - S_YYACCEPT = 127, // $accept - S_root = 128, // root - S_program = 129, // program - S_inline = 130, // inline - S_include = 131, // include - S_declaration = 132, // declaration - S_decl_usingtree = 133, // decl_usingtree - S_decl_constant = 134, // decl_constant - S_decl_thread = 135, // decl_thread - S_stmt = 136, // stmt - S_stmt_or_dev = 137, // stmt_or_dev - S_stmt_list = 138, // stmt_list - S_stmt_or_dev_list = 139, // stmt_or_dev_list - S_stmt_dev = 140, // stmt_dev - S_stmt_block = 141, // stmt_block - S_stmt_expr = 142, // stmt_expr - S_stmt_call = 143, // stmt_call - S_stmt_assign = 144, // stmt_assign - S_stmt_endon = 145, // stmt_endon - S_stmt_notify = 146, // stmt_notify - S_stmt_wait = 147, // stmt_wait - S_stmt_waittill = 148, // stmt_waittill - S_stmt_waittillmatch = 149, // stmt_waittillmatch - S_stmt_waittillframeend = 150, // stmt_waittillframeend - S_stmt_if = 151, // stmt_if - S_stmt_ifelse = 152, // stmt_ifelse - S_stmt_while = 153, // stmt_while - S_stmt_dowhile = 154, // stmt_dowhile - S_stmt_for = 155, // stmt_for - S_stmt_foreach = 156, // stmt_foreach - S_stmt_switch = 157, // stmt_switch - S_stmt_case = 158, // stmt_case - S_stmt_default = 159, // stmt_default - S_stmt_break = 160, // stmt_break - S_stmt_continue = 161, // stmt_continue - S_stmt_return = 162, // stmt_return - S_stmt_prof_begin = 163, // stmt_prof_begin - S_stmt_prof_end = 164, // stmt_prof_end - S_expr = 165, // expr - S_expr_or_empty = 166, // expr_or_empty - S_expr_assign = 167, // expr_assign - S_expr_increment = 168, // expr_increment - S_expr_decrement = 169, // expr_decrement - S_expr_ternary = 170, // expr_ternary - S_expr_binary = 171, // expr_binary - S_expr_primitive = 172, // expr_primitive - S_expr_complement = 173, // expr_complement - S_expr_negate = 174, // expr_negate - S_expr_not = 175, // expr_not - S_expr_call = 176, // expr_call - S_expr_method = 177, // expr_method - S_expr_function = 178, // expr_function - S_expr_pointer = 179, // expr_pointer - S_expr_parameters = 180, // expr_parameters - S_expr_parameters_default = 181, // expr_parameters_default - S_expr_literal = 182, // expr_literal - S_expr_arguments = 183, // expr_arguments - S_expr_arguments_no_empty = 184, // expr_arguments_no_empty - S_expr_getnextarraykey = 185, // expr_getnextarraykey - S_expr_getfirstarraykey = 186, // expr_getfirstarraykey - S_expr_getdvarcoloralpha = 187, // expr_getdvarcoloralpha - S_expr_getdvarcolorblue = 188, // expr_getdvarcolorblue - S_expr_getdvarcolorgreen = 189, // expr_getdvarcolorgreen - S_expr_getdvarcolorred = 190, // expr_getdvarcolorred - S_expr_getdvarvector = 191, // expr_getdvarvector - S_expr_getdvarfloat = 192, // expr_getdvarfloat - S_expr_getdvarint = 193, // expr_getdvarint - S_expr_getdvar = 194, // expr_getdvar - S_expr_gettime = 195, // expr_gettime - S_expr_abs = 196, // expr_abs - S_expr_vectortoangles = 197, // expr_vectortoangles - S_expr_angleclamp180 = 198, // expr_angleclamp180 - S_expr_anglestoforward = 199, // expr_anglestoforward - S_expr_anglestoright = 200, // expr_anglestoright - S_expr_anglestoup = 201, // expr_anglestoup - S_expr_vectorscale = 202, // expr_vectorscale - S_expr_isdefined = 203, // expr_isdefined - S_expr_reference = 204, // expr_reference - S_expr_array = 205, // expr_array - S_expr_field = 206, // expr_field - S_expr_size = 207, // expr_size - S_expr_paren = 208, // expr_paren - S_expr_object = 209, // expr_object - S_expr_empty_array = 210, // expr_empty_array - S_expr_undefined = 211, // expr_undefined - S_expr_game = 212, // expr_game - S_expr_self = 213, // expr_self - S_expr_anim = 214, // expr_anim - S_expr_level = 215, // expr_level - S_expr_animation = 216, // expr_animation - S_expr_animtree = 217, // expr_animtree - S_expr_identifier_nosize = 218, // expr_identifier_nosize - S_expr_identifier = 219, // expr_identifier - S_expr_path = 220, // expr_path - S_expr_istring = 221, // expr_istring - S_expr_string = 222, // expr_string - S_expr_vector = 223, // expr_vector - S_expr_hash = 224, // expr_hash - S_expr_float = 225, // expr_float - S_expr_integer = 226, // expr_integer - S_expr_false = 227, // expr_false - S_expr_true = 228 // expr_true + S_AUTOEXEC = 17, // "autoexec" + S_PRIVATE = 18, // "private" + S_ENDON = 19, // "endon" + S_NOTIFY = 20, // "notify" + S_WAIT = 21, // "wait" + S_WAITTILL = 22, // "waittill" + S_WAITTILLMATCH = 23, // "waittillmatch" + S_WAITTILLFRAMEEND = 24, // "waittillframeend" + S_IF = 25, // "if" + S_ELSE = 26, // "else" + S_DO = 27, // "do" + S_WHILE = 28, // "while" + S_FOR = 29, // "for" + S_FOREACH = 30, // "foreach" + S_IN = 31, // "in" + S_SWITCH = 32, // "switch" + S_CASE = 33, // "case" + S_DEFAULT = 34, // "default" + S_BREAK = 35, // "break" + S_CONTINUE = 36, // "continue" + S_RETURN = 37, // "return" + S_PROFBEGIN = 38, // "prof_begin" + S_PROFEND = 39, // "prof_end" + S_THREAD = 40, // "thread" + S_TRUE = 41, // "true" + S_FALSE = 42, // "false" + S_UNDEFINED = 43, // "undefined" + S_SIZE = 44, // "size" + S_GAME = 45, // "game" + 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_decl_thread = 137, // decl_thread + S_stmt = 138, // stmt + S_stmt_or_dev = 139, // stmt_or_dev + S_stmt_list = 140, // stmt_list + S_stmt_or_dev_list = 141, // stmt_or_dev_list + S_stmt_dev = 142, // stmt_dev + 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 }; }; @@ -3510,6 +3514,36 @@ switch (yykind) return symbol_type (token::ANIMTREE, l); } #endif +#if 201103L <= YY_CPLUSPLUS + static + symbol_type + make_AUTOEXEC (location_type l) + { + return symbol_type (token::AUTOEXEC, std::move (l)); + } +#else + static + symbol_type + make_AUTOEXEC (const location_type& l) + { + return symbol_type (token::AUTOEXEC, l); + } +#endif +#if 201103L <= YY_CPLUSPLUS + static + symbol_type + make_PRIVATE (location_type l) + { + return symbol_type (token::PRIVATE, std::move (l)); + } +#else + static + symbol_type + make_PRIVATE (const location_type& l) + { + return symbol_type (token::PRIVATE, l); + } +#endif #if 201103L <= YY_CPLUSPLUS static symbol_type @@ -5504,9 +5538,9 @@ switch (yykind) /// Constants. enum { - yylast_ = 3634, ///< Last index in yytable_. + yylast_ = 3663, ///< Last index in yytable_. yynnts_ = 102, ///< Number of nonterminal symbols. - yyfinal_ = 22 ///< Termination state number. + yyfinal_ = 26 ///< Termination state number. }; @@ -6346,7 +6380,7 @@ switch (yykind) #line 13 "parser.ypp" } } } // xsk::arc::t6 -#line 6350 "parser.hpp" +#line 6384 "parser.hpp" diff --git a/src/utils/xsk/arc/nodetree.cpp b/src/utils/xsk/arc/nodetree.cpp index 500473a4..7e39ebe3 100644 --- a/src/utils/xsk/arc/nodetree.cpp +++ b/src/utils/xsk/arc/nodetree.cpp @@ -489,8 +489,8 @@ stmt_prof_begin::stmt_prof_begin(const location& loc, expr_arguments::ptr args) stmt_prof_end::stmt_prof_end(expr_arguments::ptr args) : node(kind::stmt_prof_end), args(std::move(args)) {} stmt_prof_end::stmt_prof_end(const location& loc, expr_arguments::ptr args) : node(kind::stmt_prof_end, loc), args(std::move(args)) {} -decl_thread::decl_thread(expr_identifier::ptr name, expr_parameters::ptr params, stmt_list::ptr stmt) : node(kind::decl_thread), name(std::move(name)), params(std::move(params)), stmt(std::move(stmt)) {} -decl_thread::decl_thread(const location& loc, expr_identifier::ptr name, expr_parameters::ptr params, stmt_list::ptr stmt) : node(kind::decl_thread, loc), name(std::move(name)), params(std::move(params)), stmt(std::move(stmt)) {} +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)) {} @@ -1370,7 +1370,16 @@ auto stmt_prof_end::print() const -> std::string auto decl_thread::print() const -> std::string { - return name->print() + "(" + params->print() + ")" + "\n" + stmt->print() + "\n"; + std::string data; + + if (flags == export_flags::vis_autoexec) + data += "autoexec "; + else if (flags == export_flags::vis_private) + data += "private "; + + data += name->print() + "(" + params->print() + ")" + "\n" + stmt->print() + "\n"; + + return data; } auto decl_constant::print() const -> std::string diff --git a/src/utils/xsk/arc/nodetree.hpp b/src/utils/xsk/arc/nodetree.hpp index ba3653e3..4a4863da 100644 --- a/src/utils/xsk/arc/nodetree.hpp +++ b/src/utils/xsk/arc/nodetree.hpp @@ -1756,9 +1756,10 @@ struct decl_thread : public node expr_identifier::ptr name; expr_parameters::ptr params; stmt_list::ptr stmt; + export_flags flags; - decl_thread(expr_identifier::ptr name, expr_parameters::ptr params, stmt_list::ptr stmt); - decl_thread(const location& loc, expr_identifier::ptr name, expr_parameters::ptr params, stmt_list::ptr stmt); + decl_thread(expr_identifier::ptr name, expr_parameters::ptr params, stmt_list::ptr stmt, export_flags flags); + decl_thread(const location& loc, expr_identifier::ptr name, expr_parameters::ptr params, stmt_list::ptr stmt, export_flags flags); auto print() const -> std::string override; };