diff --git a/gen/t6/parser.ypp b/gen/t6/parser.ypp index 5d2268a4..ca60cf85 100644 --- a/gen/t6/parser.ypp +++ b/gen/t6/parser.ypp @@ -58,6 +58,7 @@ xsk::arc::t6::parser::symbol_type T6lex(xsk::arc::t6::lexer& lexer); %token USINGTREE "#using_animtree" %token ANIMTREE "#animtree" %token AUTOEXEC "autoexec" +%token CODECALL "codecall" %token PRIVATE "private" %token ENDON "endon" %token NOTIFY "notify" @@ -334,11 +335,13 @@ decl_usingtree decl_thread : expr_identifier LPAREN expr_parameters RPAREN stmt_block - { lexer.ban_header(@$); $$ = std::make_unique(@$, std::move($1), std::move($3), std::move($5), export_flags::none); } + { lexer.ban_header(@$); $$ = std::make_unique(@$, std::move($1), std::move($3), std::move($5), export_flags::export_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); } + { lexer.ban_header(@$); $$ = std::make_unique(@$, std::move($2), std::move($4), std::move($6), export_flags::export_autoexec); } + | CODECALL 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::export_codecall); } | 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); } + { lexer.ban_header(@$); $$ = std::make_unique(@$, std::move($2), std::move($4), std::move($6), export_flags::export_private2); } ; stmt diff --git a/src/t6/xsk/lexer.cpp b/src/t6/xsk/lexer.cpp index d40eb610..7967aa0d 100644 --- a/src/t6/xsk/lexer.cpp +++ b/src/t6/xsk/lexer.cpp @@ -31,6 +31,7 @@ const std::unordered_map keywo { "#using_animtree", parser::token::USINGTREE }, { "#animtree", parser::token::ANIMTREE }, { "autoexec", parser::token::AUTOEXEC }, + { "codecall", parser::token::CODECALL }, { "private", parser::token::PRIVATE }, { "endon", parser::token::ENDON }, { "notify", parser::token::NOTIFY }, diff --git a/src/t6/xsk/parser.cpp b/src/t6/xsk/parser.cpp index 4d03717d..5492b12c 100644 --- a/src/t6/xsk/parser.cpp +++ b/src/t6/xsk/parser.cpp @@ -2339,1621 +2339,1627 @@ namespace xsk { namespace arc { namespace t6 { switch (yyn) { case 2: // root: program -#line 295 "parser.ypp" +#line 296 "parser.ypp" { ast = std::move(yystack_[0].value.as < ast::program::ptr > ()); } #line 2345 "parser.cpp" break; case 3: // root: %empty -#line 296 "parser.ypp" +#line 297 "parser.ypp" { ast = std::make_unique(yylhs.location); } #line 2351 "parser.cpp" break; case 4: // program: program inline -#line 301 "parser.ypp" +#line 302 "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 303 "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 > ()->includes.push_back(std::move(yystack_[0].value.as < ast::include::ptr > ())); } #line 2363 "parser.cpp" break; case 6: // program: program declaration -#line 305 "parser.ypp" +#line 306 "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 307 "parser.ypp" +#line 308 "parser.ypp" { yylhs.value.as < ast::program::ptr > () = std::make_unique(yylhs.location); } #line 2375 "parser.cpp" break; case 8: // program: include -#line 309 "parser.ypp" +#line 310 "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 311 "parser.ypp" +#line 312 "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 315 "parser.ypp" +#line 316 "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 320 "parser.ypp" +#line 321 "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 324 "parser.ypp" +#line 325 "parser.ypp" { yylhs.value.as < ast::decl > ().as_dev_begin = std::make_unique(yylhs.location); } #line 2405 "parser.cpp" break; case 13: // declaration: "#/" -#line 325 "parser.ypp" +#line 326 "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 326 "parser.ypp" +#line 327 "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_thread -#line 327 "parser.ypp" +#line 328 "parser.ypp" { yylhs.value.as < ast::decl > ().as_thread = std::move(yystack_[0].value.as < ast::decl_thread::ptr > ()); } #line 2423 "parser.cpp" break; case 16: // decl_usingtree: "#using_animtree" "(" expr_string ")" ";" -#line 332 "parser.ypp" +#line 333 "parser.ypp" { lexer.ban_header(yylhs.location); yylhs.value.as < ast::decl_usingtree::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[2].value.as < ast::expr_string::ptr > ())); } #line 2429 "parser.cpp" break; case 17: // decl_thread: expr_identifier "(" expr_parameters ")" stmt_block -#line 337 "parser.ypp" - { lexer.ban_header(yylhs.location); yylhs.value.as < ast::decl_thread::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[4].value.as < ast::expr_identifier::ptr > ()), std::move(yystack_[2].value.as < ast::expr_parameters::ptr > ()), std::move(yystack_[0].value.as < ast::stmt_list::ptr > ()), export_flags::none); } +#line 338 "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::export_none); } #line 2435 "parser.cpp" break; case 18: // decl_thread: "autoexec" expr_identifier "(" expr_parameters ")" stmt_block -#line 339 "parser.ypp" - { lexer.ban_header(yylhs.location); yylhs.value.as < ast::decl_thread::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[4].value.as < ast::expr_identifier::ptr > ()), std::move(yystack_[2].value.as < ast::expr_parameters::ptr > ()), std::move(yystack_[0].value.as < ast::stmt_list::ptr > ()), export_flags::vis_autoexec); } +#line 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 > ()), export_flags::export_autoexec); } #line 2441 "parser.cpp" break; - case 19: // decl_thread: "private" expr_identifier "(" expr_parameters ")" stmt_block -#line 341 "parser.ypp" - { lexer.ban_header(yylhs.location); yylhs.value.as < ast::decl_thread::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[4].value.as < ast::expr_identifier::ptr > ()), std::move(yystack_[2].value.as < ast::expr_parameters::ptr > ()), std::move(yystack_[0].value.as < ast::stmt_list::ptr > ()), export_flags::vis_private); } + case 19: // decl_thread: "codecall" expr_identifier "(" expr_parameters ")" stmt_block +#line 342 "parser.ypp" + { lexer.ban_header(yylhs.location); yylhs.value.as < ast::decl_thread::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[4].value.as < ast::expr_identifier::ptr > ()), std::move(yystack_[2].value.as < ast::expr_parameters::ptr > ()), std::move(yystack_[0].value.as < ast::stmt_list::ptr > ()), export_flags::export_codecall); } #line 2447 "parser.cpp" break; - case 20: // stmt: stmt_block -#line 345 "parser.ypp" - { yylhs.value.as < ast::stmt > ().as_list = std::move(yystack_[0].value.as < ast::stmt_list::ptr > ()); } + case 20: // decl_thread: "private" expr_identifier "(" expr_parameters ")" stmt_block +#line 344 "parser.ypp" + { lexer.ban_header(yylhs.location); yylhs.value.as < ast::decl_thread::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[4].value.as < ast::expr_identifier::ptr > ()), std::move(yystack_[2].value.as < ast::expr_parameters::ptr > ()), std::move(yystack_[0].value.as < ast::stmt_list::ptr > ()), export_flags::export_private2); } #line 2453 "parser.cpp" break; - case 21: // stmt: stmt_call -#line 346 "parser.ypp" - { yylhs.value.as < ast::stmt > ().as_call = std::move(yystack_[0].value.as < ast::stmt_call::ptr > ()); } + case 21: // stmt: stmt_block +#line 348 "parser.ypp" + { yylhs.value.as < ast::stmt > ().as_list = std::move(yystack_[0].value.as < ast::stmt_list::ptr > ()); } #line 2459 "parser.cpp" break; - case 22: // stmt: stmt_const -#line 347 "parser.ypp" - { yylhs.value.as < ast::stmt > ().as_const = std::move(yystack_[0].value.as < ast::stmt_const::ptr > ()); } + case 22: // stmt: stmt_call +#line 349 "parser.ypp" + { yylhs.value.as < ast::stmt > ().as_call = std::move(yystack_[0].value.as < ast::stmt_call::ptr > ()); } #line 2465 "parser.cpp" break; - case 23: // stmt: stmt_assign -#line 348 "parser.ypp" - { yylhs.value.as < ast::stmt > ().as_assign = std::move(yystack_[0].value.as < ast::stmt_assign::ptr > ()); } + case 23: // stmt: stmt_const +#line 350 "parser.ypp" + { yylhs.value.as < ast::stmt > ().as_const = std::move(yystack_[0].value.as < ast::stmt_const::ptr > ()); } #line 2471 "parser.cpp" break; - case 24: // stmt: stmt_endon -#line 349 "parser.ypp" - { yylhs.value.as < ast::stmt > ().as_endon = std::move(yystack_[0].value.as < ast::stmt_endon::ptr > ()); } + case 24: // stmt: stmt_assign +#line 351 "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_notify -#line 350 "parser.ypp" - { yylhs.value.as < ast::stmt > ().as_notify = std::move(yystack_[0].value.as < ast::stmt_notify::ptr > ()); } + case 25: // stmt: stmt_endon +#line 352 "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_wait -#line 351 "parser.ypp" - { yylhs.value.as < ast::stmt > ().as_wait = std::move(yystack_[0].value.as < ast::stmt_wait::ptr > ()); } + case 26: // stmt: stmt_notify +#line 353 "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_waittill -#line 352 "parser.ypp" - { yylhs.value.as < ast::stmt > ().as_waittill = std::move(yystack_[0].value.as < ast::stmt_waittill::ptr > ()); } + case 27: // stmt: stmt_wait +#line 354 "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_waittillmatch -#line 353 "parser.ypp" - { yylhs.value.as < ast::stmt > ().as_waittillmatch = std::move(yystack_[0].value.as < ast::stmt_waittillmatch::ptr > ()); } + case 28: // stmt: stmt_waittill +#line 355 "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_waittillframeend -#line 354 "parser.ypp" - { yylhs.value.as < ast::stmt > ().as_waittillframeend = std::move(yystack_[0].value.as < ast::stmt_waittillframeend::ptr > ()); } + case 29: // stmt: stmt_waittillmatch +#line 356 "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_if -#line 355 "parser.ypp" - { yylhs.value.as < ast::stmt > ().as_if = std::move(yystack_[0].value.as < ast::stmt_if::ptr > ()); } + case 30: // stmt: stmt_waittillframeend +#line 357 "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_ifelse -#line 356 "parser.ypp" - { yylhs.value.as < ast::stmt > ().as_ifelse = std::move(yystack_[0].value.as < ast::stmt_ifelse::ptr > ()); } + case 31: // stmt: stmt_if +#line 358 "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_while -#line 357 "parser.ypp" - { yylhs.value.as < ast::stmt > ().as_while = std::move(yystack_[0].value.as < ast::stmt_while::ptr > ()); } + case 32: // stmt: stmt_ifelse +#line 359 "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_dowhile -#line 358 "parser.ypp" - { yylhs.value.as < ast::stmt > ().as_dowhile = std::move(yystack_[0].value.as < ast::stmt_dowhile::ptr > ()); } + case 33: // stmt: stmt_while +#line 360 "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_for -#line 359 "parser.ypp" - { yylhs.value.as < ast::stmt > ().as_for = std::move(yystack_[0].value.as < ast::stmt_for::ptr > ()); } + case 34: // stmt: stmt_dowhile +#line 361 "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_foreach -#line 360 "parser.ypp" - { yylhs.value.as < ast::stmt > ().as_foreach = std::move(yystack_[0].value.as < ast::stmt_foreach::ptr > ()); } + case 35: // stmt: stmt_for +#line 362 "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_switch -#line 361 "parser.ypp" - { yylhs.value.as < ast::stmt > ().as_switch = std::move(yystack_[0].value.as < ast::stmt_switch::ptr > ()); } + case 36: // stmt: stmt_foreach +#line 363 "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_case -#line 362 "parser.ypp" - { yylhs.value.as < ast::stmt > ().as_case = std::move(yystack_[0].value.as < ast::stmt_case::ptr > ()); } + case 37: // stmt: stmt_switch +#line 364 "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_default -#line 363 "parser.ypp" - { yylhs.value.as < ast::stmt > ().as_default = std::move(yystack_[0].value.as < ast::stmt_default::ptr > ()); } + case 38: // stmt: stmt_case +#line 365 "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_break -#line 364 "parser.ypp" - { yylhs.value.as < ast::stmt > ().as_break = std::move(yystack_[0].value.as < ast::stmt_break::ptr > ()); } + case 39: // stmt: stmt_default +#line 366 "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_continue -#line 365 "parser.ypp" - { yylhs.value.as < ast::stmt > ().as_continue = std::move(yystack_[0].value.as < ast::stmt_continue::ptr > ()); } + case 40: // stmt: stmt_break +#line 367 "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_return -#line 366 "parser.ypp" - { yylhs.value.as < ast::stmt > ().as_return = std::move(yystack_[0].value.as < ast::stmt_return::ptr > ()); } + case 41: // stmt: stmt_continue +#line 368 "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_begin -#line 367 "parser.ypp" - { yylhs.value.as < ast::stmt > ().as_prof_begin = std::move(yystack_[0].value.as < ast::stmt_prof_begin::ptr > ()); } + case 42: // stmt: stmt_return +#line 369 "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: stmt_prof_end -#line 368 "parser.ypp" - { yylhs.value.as < ast::stmt > ().as_prof_end = std::move(yystack_[0].value.as < ast::stmt_prof_end::ptr > ()); } + case 43: // stmt: stmt_prof_begin +#line 370 "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 -#line 372 "parser.ypp" - { yylhs.value.as < ast::stmt > () = std::move(yystack_[0].value.as < ast::stmt > ()); } + case 44: // stmt: stmt_prof_end +#line 371 "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_or_dev: stmt_dev -#line 373 "parser.ypp" - { yylhs.value.as < ast::stmt > ().as_dev = std::move(yystack_[0].value.as < ast::stmt_dev::ptr > ()); } + case 45: // stmt_or_dev: stmt +#line 375 "parser.ypp" + { yylhs.value.as < ast::stmt > () = std::move(yystack_[0].value.as < ast::stmt > ()); } #line 2603 "parser.cpp" break; - case 46: // stmt_list: stmt_list stmt -#line 378 "parser.ypp" - { yylhs.value.as < ast::stmt_list::ptr > () = std::move(yystack_[1].value.as < ast::stmt_list::ptr > ()); yylhs.value.as < ast::stmt_list::ptr > ()->list.push_back(std::move(yystack_[0].value.as < ast::stmt > ())); } + case 46: // stmt_or_dev: stmt_dev +#line 376 "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_list: stmt -#line 380 "parser.ypp" - { yylhs.value.as < ast::stmt_list::ptr > () = std::make_unique(yylhs.location); yylhs.value.as < ast::stmt_list::ptr > ()->list.push_back(std::move(yystack_[0].value.as < ast::stmt > ())); } + case 47: // stmt_list: stmt_list stmt +#line 381 "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_list stmt_or_dev -#line 385 "parser.ypp" - { yylhs.value.as < ast::stmt_list::ptr > () = std::move(yystack_[1].value.as < ast::stmt_list::ptr > ()); yylhs.value.as < ast::stmt_list::ptr > ()->list.push_back(std::move(yystack_[0].value.as < ast::stmt > ())); } + case 48: // stmt_list: stmt +#line 383 "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_or_dev_list: stmt_or_dev -#line 387 "parser.ypp" - { yylhs.value.as < ast::stmt_list::ptr > () = std::make_unique(yylhs.location); yylhs.value.as < ast::stmt_list::ptr > ()->list.push_back(std::move(yystack_[0].value.as < ast::stmt > ())); } + case 49: // stmt_or_dev_list: stmt_or_dev_list stmt_or_dev +#line 388 "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 2627 "parser.cpp" break; - case 50: // stmt_dev: "/#" stmt_list "#/" -#line 391 "parser.ypp" - { yylhs.value.as < ast::stmt_dev::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[1].value.as < ast::stmt_list::ptr > ())); } + case 50: // stmt_or_dev_list: stmt_or_dev +#line 390 "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_dev: "/#" "#/" -#line 392 "parser.ypp" - { yylhs.value.as < ast::stmt_dev::ptr > () = std::make_unique(yylhs.location, std::make_unique(yylhs.location)); } + case 51: // stmt_dev: "/#" stmt_list "#/" +#line 394 "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: "{" stmt_or_dev_list "}" -#line 396 "parser.ypp" - { yylhs.value.as < ast::stmt_list::ptr > () = std::move(yystack_[1].value.as < ast::stmt_list::ptr > ()); } + case 52: // stmt_dev: "/#" "#/" +#line 395 "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_block: "{" "}" -#line 397 "parser.ypp" - { yylhs.value.as < ast::stmt_list::ptr > () = std::make_unique(yylhs.location); } + case 53: // stmt_block: "{" stmt_or_dev_list "}" +#line 399 "parser.ypp" + { 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_assign -#line 402 "parser.ypp" - { yylhs.value.as < ast::stmt_expr::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[0].value.as < ast::expr > ())); } + case 54: // stmt_block: "{" "}" +#line 400 "parser.ypp" + { yylhs.value.as < ast::stmt_list::ptr > () = std::make_unique(yylhs.location); } #line 2657 "parser.cpp" break; - case 55: // stmt_expr: expr_increment -#line 404 "parser.ypp" + case 55: // stmt_expr: expr_assign +#line 405 "parser.ypp" { yylhs.value.as < ast::stmt_expr::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[0].value.as < ast::expr > ())); } #line 2663 "parser.cpp" break; - case 56: // stmt_expr: expr_decrement -#line 406 "parser.ypp" + case 56: // stmt_expr: expr_increment +#line 407 "parser.ypp" { yylhs.value.as < ast::stmt_expr::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[0].value.as < ast::expr > ())); } #line 2669 "parser.cpp" break; - case 57: // stmt_expr: %empty -#line 408 "parser.ypp" - { yylhs.value.as < ast::stmt_expr::ptr > () = std::make_unique(yylhs.location, std::make_unique(yylhs.location)); } + case 57: // stmt_expr: expr_decrement +#line 409 "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_call ";" -#line 413 "parser.ypp" - { yylhs.value.as < ast::stmt_call::ptr > () = std::make_unique(yylhs.location, ast::expr(std::move(yystack_[1].value.as < ast::expr_call::ptr > ()))); } + case 58: // stmt_expr: %empty +#line 411 "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_call: expr_method ";" -#line 415 "parser.ypp" - { yylhs.value.as < ast::stmt_call::ptr > () = std::make_unique(yylhs.location, ast::expr(std::move(yystack_[1].value.as < ast::expr_method::ptr > ()))); } + case 59: // stmt_call: expr_call ";" +#line 416 "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_const: "const" expr_identifier "=" expr ";" -#line 420 "parser.ypp" - { yylhs.value.as < ast::stmt_const::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[3].value.as < ast::expr_identifier::ptr > ()), std::move(yystack_[1].value.as < ast::expr > ())); } + case 60: // stmt_call: expr_method ";" +#line 418 "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_assign ";" -#line 425 "parser.ypp" - { yylhs.value.as < ast::stmt_assign::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[1].value.as < ast::expr > ())); } + case 61: // stmt_const: "const" expr_identifier "=" expr ";" +#line 423 "parser.ypp" + { yylhs.value.as < ast::stmt_const::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[3].value.as < ast::expr_identifier::ptr > ()), std::move(yystack_[1].value.as < ast::expr > ())); } #line 2699 "parser.cpp" break; - case 62: // stmt_assign: expr_increment ";" -#line 427 "parser.ypp" + case 62: // stmt_assign: expr_assign ";" +#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 2705 "parser.cpp" break; - case 63: // stmt_assign: expr_decrement ";" -#line 429 "parser.ypp" + case 63: // stmt_assign: expr_increment ";" +#line 430 "parser.ypp" { yylhs.value.as < ast::stmt_assign::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[1].value.as < ast::expr > ())); } #line 2711 "parser.cpp" break; - case 64: // stmt_endon: expr_object "endon" "(" expr ")" ";" -#line 434 "parser.ypp" - { yylhs.value.as < ast::stmt_endon::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[5].value.as < ast::expr > ()), std::move(yystack_[2].value.as < ast::expr > ())); } + case 64: // stmt_assign: expr_decrement ";" +#line 432 "parser.ypp" + { yylhs.value.as < ast::stmt_assign::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[1].value.as < ast::expr > ())); } #line 2717 "parser.cpp" break; - case 65: // stmt_notify: expr_object "notify" "(" expr "," expr_arguments_no_empty ")" ";" -#line 439 "parser.ypp" - { yylhs.value.as < ast::stmt_notify::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[7].value.as < ast::expr > ()), std::move(yystack_[4].value.as < ast::expr > ()), std::move(yystack_[2].value.as < ast::expr_arguments::ptr > ())); } + case 65: // stmt_endon: expr_object "endon" "(" expr ")" ";" +#line 437 "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 2723 "parser.cpp" break; - case 66: // stmt_notify: expr_object "notify" "(" expr ")" ";" -#line 441 "parser.ypp" - { yylhs.value.as < ast::stmt_notify::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[5].value.as < ast::expr > ()), std::move(yystack_[2].value.as < ast::expr > ()), std::make_unique(yylhs.location)); } + case 66: // stmt_notify: expr_object "notify" "(" expr "," expr_arguments_no_empty ")" ";" +#line 442 "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 2729 "parser.cpp" break; - case 67: // stmt_wait: "wait" expr ";" -#line 446 "parser.ypp" - { yylhs.value.as < ast::stmt_wait::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[1].value.as < ast::expr > ())); } + case 67: // stmt_notify: expr_object "notify" "(" expr ")" ";" +#line 444 "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 2735 "parser.cpp" break; - case 68: // stmt_waittill: expr_object "waittill" "(" expr "," expr_arguments_no_empty ")" ";" -#line 451 "parser.ypp" - { yylhs.value.as < ast::stmt_waittill::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[7].value.as < ast::expr > ()), std::move(yystack_[4].value.as < ast::expr > ()), std::move(yystack_[2].value.as < ast::expr_arguments::ptr > ())); } + case 68: // stmt_wait: "wait" expr ";" +#line 449 "parser.ypp" + { yylhs.value.as < ast::stmt_wait::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[1].value.as < ast::expr > ())); } #line 2741 "parser.cpp" break; - case 69: // stmt_waittill: expr_object "waittill" "(" expr ")" ";" -#line 453 "parser.ypp" - { yylhs.value.as < ast::stmt_waittill::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[5].value.as < ast::expr > ()), std::move(yystack_[2].value.as < ast::expr > ()), std::make_unique(yylhs.location)); } + case 69: // stmt_waittill: expr_object "waittill" "(" expr "," expr_arguments_no_empty ")" ";" +#line 454 "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 2747 "parser.cpp" break; - case 70: // stmt_waittillmatch: expr_object "waittillmatch" "(" expr "," expr_arguments_no_empty ")" ";" -#line 458 "parser.ypp" - { yylhs.value.as < ast::stmt_waittillmatch::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[7].value.as < ast::expr > ()), std::move(yystack_[4].value.as < ast::expr > ()), std::move(yystack_[2].value.as < ast::expr_arguments::ptr > ())); } + case 70: // stmt_waittill: expr_object "waittill" "(" expr ")" ";" +#line 456 "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 2753 "parser.cpp" break; - case 71: // stmt_waittillmatch: expr_object "waittillmatch" "(" expr ")" ";" -#line 460 "parser.ypp" - { yylhs.value.as < ast::stmt_waittillmatch::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[5].value.as < ast::expr > ()), std::move(yystack_[2].value.as < ast::expr > ()), std::make_unique(yylhs.location)); } + case 71: // stmt_waittillmatch: expr_object "waittillmatch" "(" expr "," expr_arguments_no_empty ")" ";" +#line 461 "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 2759 "parser.cpp" break; - case 72: // stmt_waittillframeend: "waittillframeend" ";" -#line 465 "parser.ypp" - { yylhs.value.as < ast::stmt_waittillframeend::ptr > () = std::make_unique(yylhs.location); } + case 72: // stmt_waittillmatch: expr_object "waittillmatch" "(" expr ")" ";" +#line 463 "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 2765 "parser.cpp" break; - case 73: // stmt_if: "if" "(" expr ")" stmt -#line 470 "parser.ypp" - { yylhs.value.as < ast::stmt_if::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[2].value.as < ast::expr > ()), std::move(yystack_[0].value.as < ast::stmt > ())); } + case 73: // stmt_waittillframeend: "waittillframeend" ";" +#line 468 "parser.ypp" + { yylhs.value.as < ast::stmt_waittillframeend::ptr > () = std::make_unique(yylhs.location); } #line 2771 "parser.cpp" break; - case 74: // stmt_ifelse: "if" "(" expr ")" stmt "else" stmt -#line 475 "parser.ypp" - { yylhs.value.as < ast::stmt_ifelse::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[4].value.as < ast::expr > ()), std::move(yystack_[2].value.as < ast::stmt > ()), std::move(yystack_[0].value.as < ast::stmt > ())); } + case 74: // stmt_if: "if" "(" expr ")" stmt +#line 473 "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 2777 "parser.cpp" break; - case 75: // stmt_while: "while" "(" expr ")" stmt -#line 480 "parser.ypp" - { yylhs.value.as < ast::stmt_while::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[2].value.as < ast::expr > ()), std::move(yystack_[0].value.as < ast::stmt > ())); } + case 75: // stmt_ifelse: "if" "(" expr ")" stmt "else" stmt +#line 478 "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 2783 "parser.cpp" break; - case 76: // stmt_dowhile: "do" stmt "while" "(" expr ")" ";" -#line 485 "parser.ypp" - { yylhs.value.as < ast::stmt_dowhile::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[2].value.as < ast::expr > ()), std::move(yystack_[5].value.as < ast::stmt > ())); } + case 76: // stmt_while: "while" "(" expr ")" stmt +#line 483 "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 2789 "parser.cpp" break; - case 77: // stmt_for: "for" "(" stmt_expr ";" expr_or_empty ";" stmt_expr ")" stmt -#line 490 "parser.ypp" - { yylhs.value.as < ast::stmt_for::ptr > () = std::make_unique(yylhs.location, ast::stmt(std::move(yystack_[6].value.as < ast::stmt_expr::ptr > ())), std::move(yystack_[4].value.as < ast::expr > ()), ast::stmt(std::move(yystack_[2].value.as < ast::stmt_expr::ptr > ())), std::move(yystack_[0].value.as < ast::stmt > ())); } + case 77: // stmt_dowhile: "do" stmt "while" "(" expr ")" ";" +#line 488 "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 2795 "parser.cpp" break; - case 78: // stmt_foreach: "foreach" "(" expr_identifier "in" expr ")" stmt -#line 495 "parser.ypp" - { yylhs.value.as < ast::stmt_foreach::ptr > () = std::make_unique(yylhs.location, ast::expr(std::move(yystack_[4].value.as < ast::expr_identifier::ptr > ())), std::move(yystack_[2].value.as < ast::expr > ()), std::move(yystack_[0].value.as < ast::stmt > ())); } + case 78: // stmt_for: "for" "(" stmt_expr ";" expr_or_empty ";" stmt_expr ")" stmt +#line 493 "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 2801 "parser.cpp" break; - case 79: // stmt_foreach: "foreach" "(" expr_identifier "," expr_identifier "in" expr ")" stmt -#line 497 "parser.ypp" - { yylhs.value.as < ast::stmt_foreach::ptr > () = std::make_unique(yylhs.location, ast::expr(std::move(yystack_[6].value.as < ast::expr_identifier::ptr > ())), ast::expr(std::move(yystack_[4].value.as < ast::expr_identifier::ptr > ())), std::move(yystack_[2].value.as < ast::expr > ()), std::move(yystack_[0].value.as < ast::stmt > ())); } + case 79: // stmt_foreach: "foreach" "(" expr_identifier "in" expr ")" stmt +#line 498 "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 2807 "parser.cpp" break; - case 80: // stmt_switch: "switch" "(" expr ")" stmt_block -#line 502 "parser.ypp" - { yylhs.value.as < ast::stmt_switch::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[2].value.as < ast::expr > ()), std::move(yystack_[0].value.as < ast::stmt_list::ptr > ())); } + case 80: // stmt_foreach: "foreach" "(" expr_identifier "," expr_identifier "in" expr ")" stmt +#line 500 "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 2813 "parser.cpp" break; - case 81: // stmt_case: "case" expr_integer ":" -#line 507 "parser.ypp" - { yylhs.value.as < ast::stmt_case::ptr > () = std::make_unique(yylhs.location, ast::expr(std::move(yystack_[1].value.as < ast::expr_integer::ptr > ())), std::make_unique(yylhs.location)); } + case 81: // stmt_switch: "switch" "(" expr ")" stmt_block +#line 505 "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 2819 "parser.cpp" break; - case 82: // stmt_case: "case" expr_string ":" -#line 509 "parser.ypp" - { yylhs.value.as < ast::stmt_case::ptr > () = std::make_unique(yylhs.location, ast::expr(std::move(yystack_[1].value.as < ast::expr_string::ptr > ())), std::make_unique(yylhs.location)); } + case 82: // stmt_case: "case" expr_integer ":" +#line 510 "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 2825 "parser.cpp" break; - case 83: // stmt_default: "default" ":" -#line 514 "parser.ypp" - { yylhs.value.as < ast::stmt_default::ptr > () = std::make_unique(yylhs.location, std::make_unique(yylhs.location)); } + case 83: // stmt_case: "case" expr_string ":" +#line 512 "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 2831 "parser.cpp" break; - case 84: // stmt_break: "break" ";" -#line 519 "parser.ypp" - { yylhs.value.as < ast::stmt_break::ptr > () = std::make_unique(yylhs.location); } + case 84: // stmt_default: "default" ":" +#line 517 "parser.ypp" + { yylhs.value.as < ast::stmt_default::ptr > () = std::make_unique(yylhs.location, std::make_unique(yylhs.location)); } #line 2837 "parser.cpp" break; - case 85: // stmt_continue: "continue" ";" -#line 524 "parser.ypp" - { yylhs.value.as < ast::stmt_continue::ptr > () = std::make_unique(yylhs.location); } + case 85: // stmt_break: "break" ";" +#line 522 "parser.ypp" + { yylhs.value.as < ast::stmt_break::ptr > () = std::make_unique(yylhs.location); } #line 2843 "parser.cpp" break; - case 86: // stmt_return: "return" expr ";" -#line 529 "parser.ypp" - { yylhs.value.as < ast::stmt_return::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[1].value.as < ast::expr > ())); } + case 86: // stmt_continue: "continue" ";" +#line 527 "parser.ypp" + { yylhs.value.as < ast::stmt_continue::ptr > () = std::make_unique(yylhs.location); } #line 2849 "parser.cpp" break; - case 87: // stmt_return: "return" ";" -#line 531 "parser.ypp" - { yylhs.value.as < ast::stmt_return::ptr > () = std::make_unique(yylhs.location, std::make_unique(yylhs.location)); } + case 87: // stmt_return: "return" expr ";" +#line 532 "parser.ypp" + { yylhs.value.as < ast::stmt_return::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[1].value.as < ast::expr > ())); } #line 2855 "parser.cpp" break; - case 88: // stmt_prof_begin: "prof_begin" "(" expr_arguments ")" ";" -#line 536 "parser.ypp" - { yylhs.value.as < ast::stmt_prof_begin::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[2].value.as < ast::expr_arguments::ptr > ())); } + case 88: // stmt_return: "return" ";" +#line 534 "parser.ypp" + { yylhs.value.as < ast::stmt_return::ptr > () = std::make_unique(yylhs.location, std::make_unique(yylhs.location)); } #line 2861 "parser.cpp" break; - case 89: // stmt_prof_end: "prof_end" "(" expr_arguments ")" ";" -#line 541 "parser.ypp" - { yylhs.value.as < ast::stmt_prof_end::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[2].value.as < ast::expr_arguments::ptr > ())); } + case 89: // stmt_prof_begin: "prof_begin" "(" expr_arguments ")" ";" +#line 539 "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 2867 "parser.cpp" break; - case 90: // expr: expr_ternary -#line 545 "parser.ypp" - { yylhs.value.as < ast::expr > () = std::move(yystack_[0].value.as < ast::expr > ()); } + case 90: // stmt_prof_end: "prof_end" "(" expr_arguments ")" ";" +#line 544 "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 2873 "parser.cpp" break; - case 91: // expr: expr_binary -#line 546 "parser.ypp" + case 91: // expr: expr_ternary +#line 548 "parser.ypp" { yylhs.value.as < ast::expr > () = std::move(yystack_[0].value.as < ast::expr > ()); } #line 2879 "parser.cpp" break; - case 92: // expr: expr_primitive -#line 547 "parser.ypp" + case 92: // expr: expr_binary +#line 549 "parser.ypp" { yylhs.value.as < ast::expr > () = std::move(yystack_[0].value.as < ast::expr > ()); } #line 2885 "parser.cpp" break; - case 93: // expr_or_empty: expr -#line 551 "parser.ypp" + case 93: // expr: expr_primitive +#line 550 "parser.ypp" { yylhs.value.as < ast::expr > () = std::move(yystack_[0].value.as < ast::expr > ()); } #line 2891 "parser.cpp" break; - case 94: // expr_or_empty: %empty -#line 552 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::make_unique(yylhs.location); } + case 94: // expr_or_empty: expr +#line 554 "parser.ypp" + { yylhs.value.as < ast::expr > () = std::move(yystack_[0].value.as < ast::expr > ()); } #line 2897 "parser.cpp" break; - case 95: // expr_assign: expr_object "=" expr -#line 557 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::make_unique(yylhs.location, std::move(yystack_[2].value.as < ast::expr > ()), std::move(yystack_[0].value.as < ast::expr > ())); } + case 95: // expr_or_empty: %empty +#line 555 "parser.ypp" + { yylhs.value.as < ast::expr > ().as_node = std::make_unique(yylhs.location); } #line 2903 "parser.cpp" break; - case 96: // expr_assign: expr_object "|=" expr -#line 559 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::make_unique(yylhs.location, std::move(yystack_[2].value.as < ast::expr > ()), std::move(yystack_[0].value.as < ast::expr > ())); } + case 96: // 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 2909 "parser.cpp" break; - case 97: // expr_assign: expr_object "&=" expr -#line 561 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::make_unique(yylhs.location, std::move(yystack_[2].value.as < ast::expr > ()), std::move(yystack_[0].value.as < ast::expr > ())); } + case 97: // 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 2915 "parser.cpp" break; - case 98: // expr_assign: expr_object "^=" expr -#line 563 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::make_unique(yylhs.location, std::move(yystack_[2].value.as < ast::expr > ()), std::move(yystack_[0].value.as < ast::expr > ())); } + case 98: // 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 2921 "parser.cpp" break; - case 99: // expr_assign: expr_object "<<=" expr -#line 565 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::make_unique(yylhs.location, std::move(yystack_[2].value.as < ast::expr > ()),std::move( yystack_[0].value.as < ast::expr > ())); } + case 99: // 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 2927 "parser.cpp" break; - case 100: // expr_assign: expr_object ">>=" expr -#line 567 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::make_unique(yylhs.location, std::move(yystack_[2].value.as < ast::expr > ()), std::move(yystack_[0].value.as < ast::expr > ())); } + case 100: // 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 2933 "parser.cpp" break; - case 101: // expr_assign: expr_object "+=" expr -#line 569 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::make_unique(yylhs.location, std::move(yystack_[2].value.as < ast::expr > ()), std::move(yystack_[0].value.as < ast::expr > ())); } + case 101: // 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 2939 "parser.cpp" break; - case 102: // expr_assign: expr_object "-=" expr -#line 571 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::make_unique(yylhs.location, std::move(yystack_[2].value.as < ast::expr > ()), std::move(yystack_[0].value.as < ast::expr > ())); } + case 102: // 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 2945 "parser.cpp" break; - case 103: // expr_assign: expr_object "*=" expr -#line 573 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::make_unique(yylhs.location, std::move(yystack_[2].value.as < ast::expr > ()), std::move(yystack_[0].value.as < ast::expr > ())); } + case 103: // 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 2951 "parser.cpp" break; - case 104: // expr_assign: expr_object "/=" expr -#line 575 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::make_unique(yylhs.location, std::move(yystack_[2].value.as < ast::expr > ()), std::move(yystack_[0].value.as < ast::expr > ())); } + case 104: // 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 2957 "parser.cpp" break; - case 105: // expr_assign: expr_object "%=" expr -#line 577 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::make_unique(yylhs.location, std::move(yystack_[2].value.as < ast::expr > ()), std::move(yystack_[0].value.as < ast::expr > ())); } + case 105: // expr_assign: expr_object "/=" expr +#line 578 "parser.ypp" + { yylhs.value.as < ast::expr > ().as_node = std::make_unique(yylhs.location, std::move(yystack_[2].value.as < ast::expr > ()), std::move(yystack_[0].value.as < ast::expr > ())); } #line 2963 "parser.cpp" break; - case 106: // expr_increment: "++" expr_object -#line 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_assign: expr_object "%=" expr +#line 580 "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 2969 "parser.cpp" break; - case 107: // expr_increment: 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 585 "parser.ypp" + { yylhs.value.as < ast::expr > ().as_node = std::make_unique(yylhs.location, std::move(yystack_[0].value.as < ast::expr > ()), true); } #line 2975 "parser.cpp" break; - case 108: // expr_decrement: "--" expr_object -#line 589 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::make_unique(yylhs.location, std::move(yystack_[0].value.as < ast::expr > ()), true); } + case 108: // expr_increment: expr_object "++" +#line 587 "parser.ypp" + { yylhs.value.as < ast::expr > ().as_node = std::make_unique(yylhs.location, std::move(yystack_[1].value.as < ast::expr > ()), false); } #line 2981 "parser.cpp" break; - case 109: // expr_decrement: expr_object "--" -#line 591 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::make_unique(yylhs.location, std::move(yystack_[1].value.as < ast::expr > ()), false); } + case 109: // expr_decrement: "--" expr_object +#line 592 "parser.ypp" + { yylhs.value.as < ast::expr > ().as_node = std::make_unique(yylhs.location, std::move(yystack_[0].value.as < ast::expr > ()), true); } #line 2987 "parser.cpp" break; - case 110: // expr_ternary: expr "?" expr ":" expr -#line 596 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::make_unique(yylhs.location, std::move(yystack_[4].value.as < ast::expr > ()), std::move(yystack_[2].value.as < ast::expr > ()), std::move(yystack_[0].value.as < ast::expr > ())); } + case 110: // expr_decrement: expr_object "--" +#line 594 "parser.ypp" + { yylhs.value.as < ast::expr > ().as_node = std::make_unique(yylhs.location, std::move(yystack_[1].value.as < ast::expr > ()), false); } #line 2993 "parser.cpp" break; - case 111: // expr_binary: expr "||" expr -#line 601 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::make_unique(yylhs.location, std::move(yystack_[2].value.as < ast::expr > ()), std::move(yystack_[0].value.as < ast::expr > ())); } + case 111: // expr_ternary: expr "?" expr ":" expr +#line 599 "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 2999 "parser.cpp" break; - case 112: // expr_binary: expr "&&" expr -#line 603 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::make_unique(yylhs.location, std::move(yystack_[2].value.as < ast::expr > ()), std::move(yystack_[0].value.as < ast::expr > ())); } + case 112: // 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 3005 "parser.cpp" break; - case 113: // expr_binary: expr "==" expr -#line 605 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::make_unique(yylhs.location, std::move(yystack_[2].value.as < ast::expr > ()), std::move(yystack_[0].value.as < ast::expr > ())); } + case 113: // 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 3011 "parser.cpp" break; - case 114: // expr_binary: expr "!=" expr -#line 607 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::make_unique(yylhs.location, std::move(yystack_[2].value.as < ast::expr > ()), std::move(yystack_[0].value.as < ast::expr > ())); } + case 114: // 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 3017 "parser.cpp" break; - case 115: // expr_binary: expr "<=" expr -#line 609 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::make_unique(yylhs.location, std::move(yystack_[2].value.as < ast::expr > ()), std::move(yystack_[0].value.as < ast::expr > ())); } + case 115: // 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 3023 "parser.cpp" break; - case 116: // expr_binary: expr ">=" expr -#line 611 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::make_unique(yylhs.location, std::move(yystack_[2].value.as < ast::expr > ()), std::move(yystack_[0].value.as < ast::expr > ())); } + case 116: // 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 3029 "parser.cpp" break; - case 117: // expr_binary: expr "<" expr -#line 613 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::make_unique(yylhs.location, std::move(yystack_[2].value.as < ast::expr > ()), std::move(yystack_[0].value.as < ast::expr > ())); } + case 117: // 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 3035 "parser.cpp" break; - case 118: // expr_binary: expr ">" expr -#line 615 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::make_unique(yylhs.location, std::move(yystack_[2].value.as < ast::expr > ()), std::move(yystack_[0].value.as < ast::expr > ())); } + case 118: // 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 3041 "parser.cpp" break; - case 119: // expr_binary: expr "|" expr -#line 617 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::make_unique(yylhs.location, std::move(yystack_[2].value.as < ast::expr > ()), std::move(yystack_[0].value.as < ast::expr > ())); } + case 119: // 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 3047 "parser.cpp" break; - case 120: // expr_binary: expr "&" expr -#line 619 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::make_unique(yylhs.location, std::move(yystack_[2].value.as < ast::expr > ()), std::move(yystack_[0].value.as < ast::expr > ())); } + case 120: // 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 3053 "parser.cpp" break; - case 121: // expr_binary: expr "^" expr -#line 621 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::make_unique(yylhs.location, std::move(yystack_[2].value.as < ast::expr > ()), std::move(yystack_[0].value.as < ast::expr > ())); } + case 121: // 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 3059 "parser.cpp" break; - case 122: // expr_binary: expr "<<" expr -#line 623 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::make_unique(yylhs.location, std::move(yystack_[2].value.as < ast::expr > ()), std::move(yystack_[0].value.as < ast::expr > ())); } + case 122: // 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 3065 "parser.cpp" break; - case 123: // expr_binary: expr ">>" expr -#line 625 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::make_unique(yylhs.location, std::move(yystack_[2].value.as < ast::expr > ()), std::move(yystack_[0].value.as < ast::expr > ())); } + case 123: // 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 3071 "parser.cpp" break; - case 124: // expr_binary: expr "+" expr -#line 627 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::make_unique(yylhs.location, std::move(yystack_[2].value.as < ast::expr > ()), std::move(yystack_[0].value.as < ast::expr > ())); } + case 124: // 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 3077 "parser.cpp" break; - case 125: // expr_binary: expr "-" expr -#line 629 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::make_unique(yylhs.location, std::move(yystack_[2].value.as < ast::expr > ()), std::move(yystack_[0].value.as < ast::expr > ())); } + case 125: // 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 3083 "parser.cpp" break; - case 126: // expr_binary: expr "*" expr -#line 631 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::make_unique(yylhs.location, std::move(yystack_[2].value.as < ast::expr > ()), std::move(yystack_[0].value.as < ast::expr > ())); } + case 126: // expr_binary: expr "-" expr +#line 632 "parser.ypp" + { yylhs.value.as < ast::expr > ().as_node = std::make_unique(yylhs.location, std::move(yystack_[2].value.as < ast::expr > ()), std::move(yystack_[0].value.as < ast::expr > ())); } #line 3089 "parser.cpp" break; - case 127: // expr_binary: expr "/" expr -#line 633 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::make_unique(yylhs.location, std::move(yystack_[2].value.as < ast::expr > ()), std::move(yystack_[0].value.as < ast::expr > ())); } + case 127: // 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 3095 "parser.cpp" break; - case 128: // expr_binary: expr "%" expr -#line 635 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::make_unique(yylhs.location, std::move(yystack_[2].value.as < ast::expr > ()), std::move(yystack_[0].value.as < ast::expr > ())); } + case 128: // expr_binary: expr "/" expr +#line 636 "parser.ypp" + { yylhs.value.as < ast::expr > ().as_node = std::make_unique(yylhs.location, std::move(yystack_[2].value.as < ast::expr > ()), std::move(yystack_[0].value.as < ast::expr > ())); } #line 3101 "parser.cpp" break; - case 129: // expr_primitive: expr_complement -#line 639 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_complement::ptr > ()); } + case 129: // expr_binary: expr "%" expr +#line 638 "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 3107 "parser.cpp" break; - case 130: // expr_primitive: expr_negate -#line 640 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_negate::ptr > ()); } + case 130: // expr_primitive: expr_complement +#line 642 "parser.ypp" + { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_complement::ptr > ()); } #line 3113 "parser.cpp" break; - case 131: // expr_primitive: expr_not -#line 641 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_not::ptr > ()); } + case 131: // expr_primitive: expr_negate +#line 643 "parser.ypp" + { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_negate::ptr > ()); } #line 3119 "parser.cpp" break; - case 132: // expr_primitive: expr_call -#line 642 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_call::ptr > ()); } + case 132: // expr_primitive: expr_not +#line 644 "parser.ypp" + { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_not::ptr > ()); } #line 3125 "parser.cpp" break; - case 133: // expr_primitive: expr_method -#line 643 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_method::ptr > ()); } + case 133: // expr_primitive: expr_call +#line 645 "parser.ypp" + { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_call::ptr > ()); } #line 3131 "parser.cpp" break; - case 134: // expr_primitive: expr_getnextarraykey -#line 644 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_getnextarraykey::ptr > ()); } + case 134: // expr_primitive: expr_method +#line 646 "parser.ypp" + { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_method::ptr > ()); } #line 3137 "parser.cpp" break; - case 135: // expr_primitive: expr_getfirstarraykey -#line 645 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_getfirstarraykey::ptr > ()); } + case 135: // expr_primitive: expr_getnextarraykey +#line 647 "parser.ypp" + { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_getnextarraykey::ptr > ()); } #line 3143 "parser.cpp" break; - case 136: // expr_primitive: expr_getdvarcoloralpha -#line 646 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_getdvarcoloralpha::ptr > ()); } + case 136: // expr_primitive: expr_getfirstarraykey +#line 648 "parser.ypp" + { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_getfirstarraykey::ptr > ()); } #line 3149 "parser.cpp" break; - case 137: // expr_primitive: expr_getdvarcolorblue -#line 647 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_getdvarcolorblue::ptr > ()); } + case 137: // expr_primitive: expr_getdvarcoloralpha +#line 649 "parser.ypp" + { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_getdvarcoloralpha::ptr > ()); } #line 3155 "parser.cpp" break; - case 138: // expr_primitive: expr_getdvarcolorgreen -#line 648 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_getdvarcolorgreen::ptr > ()); } + case 138: // expr_primitive: expr_getdvarcolorblue +#line 650 "parser.ypp" + { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_getdvarcolorblue::ptr > ()); } #line 3161 "parser.cpp" break; - case 139: // expr_primitive: expr_getdvarcolorred -#line 649 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_getdvarcolorred::ptr > ()); } + case 139: // expr_primitive: expr_getdvarcolorgreen +#line 651 "parser.ypp" + { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_getdvarcolorgreen::ptr > ()); } #line 3167 "parser.cpp" break; - case 140: // expr_primitive: expr_getdvarvector -#line 650 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_getdvarvector::ptr > ()); } + case 140: // expr_primitive: expr_getdvarcolorred +#line 652 "parser.ypp" + { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_getdvarcolorred::ptr > ()); } #line 3173 "parser.cpp" break; - case 141: // expr_primitive: expr_getdvarfloat -#line 651 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_getdvarfloat::ptr > ()); } + case 141: // expr_primitive: expr_getdvarvector +#line 653 "parser.ypp" + { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_getdvarvector::ptr > ()); } #line 3179 "parser.cpp" break; - case 142: // expr_primitive: expr_getdvarint -#line 652 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_getdvarint::ptr > ()); } + case 142: // expr_primitive: expr_getdvarfloat +#line 654 "parser.ypp" + { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_getdvarfloat::ptr > ()); } #line 3185 "parser.cpp" break; - case 143: // expr_primitive: expr_getdvar -#line 653 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_getdvar::ptr > ()); } + case 143: // expr_primitive: expr_getdvarint +#line 655 "parser.ypp" + { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_getdvarint::ptr > ()); } #line 3191 "parser.cpp" break; - case 144: // expr_primitive: expr_gettime -#line 654 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_gettime::ptr > ()); } + case 144: // expr_primitive: expr_getdvar +#line 656 "parser.ypp" + { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_getdvar::ptr > ()); } #line 3197 "parser.cpp" break; - case 145: // expr_primitive: expr_abs -#line 655 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_abs::ptr > ()); } + case 145: // expr_primitive: expr_gettime +#line 657 "parser.ypp" + { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_gettime::ptr > ()); } #line 3203 "parser.cpp" break; - case 146: // expr_primitive: expr_vectortoangles -#line 656 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_vectortoangles::ptr > ()); } + case 146: // expr_primitive: expr_abs +#line 658 "parser.ypp" + { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_abs::ptr > ()); } #line 3209 "parser.cpp" break; - case 147: // expr_primitive: expr_angleclamp180 -#line 657 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_angleclamp180::ptr > ()); } + case 147: // expr_primitive: expr_vectortoangles +#line 659 "parser.ypp" + { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_vectortoangles::ptr > ()); } #line 3215 "parser.cpp" break; - case 148: // expr_primitive: expr_anglestoforward -#line 658 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_anglestoforward::ptr > ()); } + case 148: // expr_primitive: expr_angleclamp180 +#line 660 "parser.ypp" + { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_angleclamp180::ptr > ()); } #line 3221 "parser.cpp" break; - case 149: // expr_primitive: expr_anglestoright -#line 659 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_anglestoright::ptr > ()); } + case 149: // expr_primitive: expr_anglestoforward +#line 661 "parser.ypp" + { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_anglestoforward::ptr > ()); } #line 3227 "parser.cpp" break; - case 150: // expr_primitive: expr_anglestoup -#line 660 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_anglestoup::ptr > ()); } + case 150: // expr_primitive: expr_anglestoright +#line 662 "parser.ypp" + { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_anglestoright::ptr > ()); } #line 3233 "parser.cpp" break; - case 151: // expr_primitive: expr_vectorscale -#line 661 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_vectorscale::ptr > ()); } + case 151: // expr_primitive: expr_anglestoup +#line 663 "parser.ypp" + { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_anglestoup::ptr > ()); } #line 3239 "parser.cpp" break; - case 152: // expr_primitive: expr_isdefined -#line 662 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_isdefined::ptr > ()); } + case 152: // expr_primitive: expr_vectorscale +#line 664 "parser.ypp" + { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_vectorscale::ptr > ()); } #line 3245 "parser.cpp" break; - case 153: // expr_primitive: expr_reference -#line 663 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_reference::ptr > ()); } + case 153: // expr_primitive: expr_isdefined +#line 665 "parser.ypp" + { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_isdefined::ptr > ()); } #line 3251 "parser.cpp" break; - case 154: // expr_primitive: expr_array -#line 664 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_array::ptr > ()); } + case 154: // expr_primitive: expr_reference +#line 666 "parser.ypp" + { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_reference::ptr > ()); } #line 3257 "parser.cpp" break; - case 155: // expr_primitive: expr_field -#line 665 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_field::ptr > ()); } + case 155: // expr_primitive: expr_array +#line 667 "parser.ypp" + { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_array::ptr > ()); } #line 3263 "parser.cpp" break; - case 156: // expr_primitive: expr_size -#line 666 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_size::ptr > ()); } + case 156: // expr_primitive: expr_field +#line 668 "parser.ypp" + { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_field::ptr > ()); } #line 3269 "parser.cpp" break; - case 157: // expr_primitive: expr_paren -#line 667 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_paren::ptr > ()); } + case 157: // expr_primitive: expr_size +#line 669 "parser.ypp" + { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_size::ptr > ()); } #line 3275 "parser.cpp" break; - case 158: // expr_primitive: expr_empty_array -#line 668 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_empty_array::ptr > ()); } + case 158: // expr_primitive: expr_paren +#line 670 "parser.ypp" + { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_paren::ptr > ()); } #line 3281 "parser.cpp" break; - case 159: // expr_primitive: expr_undefined -#line 669 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_undefined::ptr > ()); } + case 159: // expr_primitive: expr_empty_array +#line 671 "parser.ypp" + { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_empty_array::ptr > ()); } #line 3287 "parser.cpp" break; - case 160: // expr_primitive: expr_game -#line 670 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_game::ptr > ()); } + case 160: // expr_primitive: expr_undefined +#line 672 "parser.ypp" + { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_undefined::ptr > ()); } #line 3293 "parser.cpp" break; - case 161: // expr_primitive: expr_self -#line 671 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_self::ptr > ()); } + case 161: // expr_primitive: expr_game +#line 673 "parser.ypp" + { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_game::ptr > ()); } #line 3299 "parser.cpp" break; - case 162: // expr_primitive: expr_anim -#line 672 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_anim::ptr > ()); } + case 162: // expr_primitive: expr_self +#line 674 "parser.ypp" + { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_self::ptr > ()); } #line 3305 "parser.cpp" break; - case 163: // expr_primitive: expr_level -#line 673 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_level::ptr > ()); } + case 163: // expr_primitive: expr_anim +#line 675 "parser.ypp" + { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_anim::ptr > ()); } #line 3311 "parser.cpp" break; - case 164: // expr_primitive: expr_animation -#line 674 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_animation::ptr > ()); } + case 164: // expr_primitive: expr_level +#line 676 "parser.ypp" + { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_level::ptr > ()); } #line 3317 "parser.cpp" break; - case 165: // expr_primitive: expr_animtree -#line 675 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_animtree::ptr > ()); } + case 165: // expr_primitive: expr_animation +#line 677 "parser.ypp" + { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_animation::ptr > ()); } #line 3323 "parser.cpp" break; - case 166: // expr_primitive: expr_identifier -#line 676 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_identifier::ptr > ()); } + case 166: // expr_primitive: expr_animtree +#line 678 "parser.ypp" + { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_animtree::ptr > ()); } #line 3329 "parser.cpp" break; - case 167: // expr_primitive: expr_istring -#line 677 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_istring::ptr > ()); } + case 167: // expr_primitive: expr_identifier +#line 679 "parser.ypp" + { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_identifier::ptr > ()); } #line 3335 "parser.cpp" break; - case 168: // expr_primitive: expr_string -#line 678 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_string::ptr > ()); } + case 168: // expr_primitive: expr_istring +#line 680 "parser.ypp" + { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_istring::ptr > ()); } #line 3341 "parser.cpp" break; - case 169: // expr_primitive: expr_vector -#line 679 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_vector::ptr > ()); } + case 169: // expr_primitive: expr_string +#line 681 "parser.ypp" + { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_string::ptr > ()); } #line 3347 "parser.cpp" break; - case 170: // expr_primitive: expr_hash -#line 680 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_hash::ptr > ()); } + case 170: // expr_primitive: expr_vector +#line 682 "parser.ypp" + { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_vector::ptr > ()); } #line 3353 "parser.cpp" break; - case 171: // expr_primitive: expr_float -#line 681 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_float::ptr > ()); } + case 171: // expr_primitive: expr_hash +#line 683 "parser.ypp" + { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_hash::ptr > ()); } #line 3359 "parser.cpp" break; - case 172: // expr_primitive: expr_integer -#line 682 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_integer::ptr > ()); } + case 172: // expr_primitive: expr_float +#line 684 "parser.ypp" + { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_float::ptr > ()); } #line 3365 "parser.cpp" break; - case 173: // expr_primitive: expr_false -#line 683 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_false::ptr > ()); } + case 173: // expr_primitive: expr_integer +#line 685 "parser.ypp" + { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_integer::ptr > ()); } #line 3371 "parser.cpp" break; - case 174: // expr_primitive: expr_true -#line 684 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_true::ptr > ()); } + case 174: // expr_primitive: expr_false +#line 686 "parser.ypp" + { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_false::ptr > ()); } #line 3377 "parser.cpp" break; - case 175: // expr_complement: "~" expr -#line 689 "parser.ypp" - { yylhs.value.as < ast::expr_complement::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[0].value.as < ast::expr > ())); } + case 175: // expr_primitive: expr_true +#line 687 "parser.ypp" + { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_true::ptr > ()); } #line 3383 "parser.cpp" break; - case 176: // expr_negate: "-" expr_identifier -#line 694 "parser.ypp" - { yylhs.value.as < ast::expr_negate::ptr > () = std::make_unique(yylhs.location, ast::expr(std::move(yystack_[0].value.as < ast::expr_identifier::ptr > ()))); } + case 176: // expr_complement: "~" expr +#line 692 "parser.ypp" + { yylhs.value.as < ast::expr_complement::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[0].value.as < ast::expr > ())); } #line 3389 "parser.cpp" break; - case 177: // expr_negate: "-" expr_paren -#line 696 "parser.ypp" - { yylhs.value.as < ast::expr_negate::ptr > () = std::make_unique(yylhs.location, ast::expr(std::move(yystack_[0].value.as < ast::expr_paren::ptr > ()))); } + case 177: // expr_negate: "-" expr_identifier +#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_identifier::ptr > ()))); } #line 3395 "parser.cpp" break; - case 178: // expr_negate: "-" expr_array -#line 698 "parser.ypp" - { yylhs.value.as < ast::expr_negate::ptr > () = std::make_unique(yylhs.location, ast::expr(std::move(yystack_[0].value.as < ast::expr_array::ptr > ()))); } + case 178: // expr_negate: "-" expr_paren +#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_paren::ptr > ()))); } #line 3401 "parser.cpp" break; - case 179: // expr_negate: "-" expr_field -#line 700 "parser.ypp" - { yylhs.value.as < ast::expr_negate::ptr > () = std::make_unique(yylhs.location, ast::expr(std::move(yystack_[0].value.as < ast::expr_field::ptr > ()))); } + case 179: // expr_negate: "-" expr_array +#line 701 "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 3407 "parser.cpp" break; - case 180: // expr_not: "!" expr -#line 705 "parser.ypp" - { yylhs.value.as < ast::expr_not::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[0].value.as < ast::expr > ())); } + case 180: // expr_negate: "-" expr_field +#line 703 "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 3413 "parser.cpp" break; - case 181: // expr_call: expr_function -#line 709 "parser.ypp" - { yylhs.value.as < ast::expr_call::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[0].value.as < ast::call > ())); } + case 181: // expr_not: "!" expr +#line 708 "parser.ypp" + { yylhs.value.as < ast::expr_not::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[0].value.as < ast::expr > ())); } #line 3419 "parser.cpp" break; - case 182: // expr_call: expr_pointer -#line 710 "parser.ypp" + case 182: // expr_call: expr_function +#line 712 "parser.ypp" { yylhs.value.as < ast::expr_call::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[0].value.as < ast::call > ())); } #line 3425 "parser.cpp" break; - case 183: // expr_method: expr_object expr_function + case 183: // expr_call: 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 > ())); } + { yylhs.value.as < ast::expr_call::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[0].value.as < ast::call > ())); } #line 3431 "parser.cpp" break; - case 184: // expr_method: expr_object expr_pointer -#line 714 "parser.ypp" + case 184: // expr_method: expr_object expr_function +#line 716 "parser.ypp" { yylhs.value.as < ast::expr_method::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[1].value.as < ast::expr > ()), std::move(yystack_[0].value.as < ast::call > ())); } #line 3437 "parser.cpp" break; - case 185: // expr_function: expr_identifier "(" expr_arguments ")" -#line 719 "parser.ypp" - { yylhs.value.as < ast::call > ().as_function = std::make_unique(yylhs.location, std::make_unique(yylhs.location), std::move(yystack_[3].value.as < ast::expr_identifier::ptr > ()), std::move(yystack_[1].value.as < ast::expr_arguments::ptr > ()), ast::call::mode::normal); } + case 185: // expr_method: expr_object expr_pointer +#line 717 "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 3443 "parser.cpp" break; - case 186: // expr_function: expr_path "::" expr_identifier "(" expr_arguments ")" -#line 721 "parser.ypp" - { yylhs.value.as < ast::call > ().as_function = std::make_unique(yylhs.location, std::move(yystack_[5].value.as < ast::expr_path::ptr > ()), std::move(yystack_[3].value.as < ast::expr_identifier::ptr > ()), std::move(yystack_[1].value.as < ast::expr_arguments::ptr > ()), ast::call::mode::normal); } + case 186: // expr_function: 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::normal); } #line 3449 "parser.cpp" break; - case 187: // expr_function: "thread" expr_identifier "(" expr_arguments ")" -#line 723 "parser.ypp" - { yylhs.value.as < ast::call > ().as_function = std::make_unique(yylhs.location, std::make_unique(yylhs.location), std::move(yystack_[3].value.as < ast::expr_identifier::ptr > ()), std::move(yystack_[1].value.as < ast::expr_arguments::ptr > ()), ast::call::mode::thread); } + case 187: // expr_function: 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::normal); } #line 3455 "parser.cpp" break; - case 188: // expr_function: "thread" expr_path "::" expr_identifier "(" expr_arguments ")" -#line 725 "parser.ypp" - { yylhs.value.as < ast::call > ().as_function = std::make_unique(yylhs.location, std::move(yystack_[5].value.as < ast::expr_path::ptr > ()), std::move(yystack_[3].value.as < ast::expr_identifier::ptr > ()), std::move(yystack_[1].value.as < ast::expr_arguments::ptr > ()), ast::call::mode::thread); } + case 188: // expr_function: "thread" expr_identifier "(" expr_arguments ")" +#line 726 "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 3461 "parser.cpp" break; - case 189: // expr_pointer: "[" "[" expr "]" "]" "(" expr_arguments ")" -#line 730 "parser.ypp" - { yylhs.value.as < ast::call > ().as_pointer = std::make_unique(yylhs.location, std::move(yystack_[5].value.as < ast::expr > ()), std::move(yystack_[1].value.as < ast::expr_arguments::ptr > ()), ast::call::mode::normal); } + case 189: // expr_function: "thread" expr_path "::" expr_identifier "(" expr_arguments ")" +#line 728 "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 3467 "parser.cpp" break; - case 190: // expr_pointer: "thread" "[" "[" expr "]" "]" "(" expr_arguments ")" -#line 732 "parser.ypp" - { yylhs.value.as < ast::call > ().as_pointer = std::make_unique(yylhs.location, std::move(yystack_[5].value.as < ast::expr > ()), std::move(yystack_[1].value.as < ast::expr_arguments::ptr > ()), ast::call::mode::thread); } + case 190: // expr_pointer: "[" "[" expr "]" "]" "(" expr_arguments ")" +#line 733 "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 3473 "parser.cpp" break; - case 191: // expr_parameters: expr_parameters "," expr_parameters_default -#line 737 "parser.ypp" - { yylhs.value.as < ast::expr_parameters::ptr > () = std::move(yystack_[2].value.as < ast::expr_parameters::ptr > ()); yylhs.value.as < ast::expr_parameters::ptr > ()->list.push_back(std::move(yystack_[0].value.as < ast::expr > ())); } + case 191: // expr_pointer: "thread" "[" "[" expr "]" "]" "(" expr_arguments ")" +#line 735 "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 3479 "parser.cpp" break; - case 192: // expr_parameters: expr_parameters "," expr_identifier -#line 739 "parser.ypp" - { yylhs.value.as < ast::expr_parameters::ptr > () = std::move(yystack_[2].value.as < ast::expr_parameters::ptr > ()); yylhs.value.as < ast::expr_parameters::ptr > ()->list.push_back(ast::expr(std::move(yystack_[0].value.as < ast::expr_identifier::ptr > ()))); } + case 192: // expr_parameters: expr_parameters "," expr_parameters_default +#line 740 "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 3485 "parser.cpp" break; - case 193: // expr_parameters: expr_parameters_default -#line 741 "parser.ypp" - { yylhs.value.as < ast::expr_parameters::ptr > () = std::make_unique(yylhs.location); yylhs.value.as < ast::expr_parameters::ptr > ()->list.push_back(std::move(yystack_[0].value.as < ast::expr > ())); } + case 193: // expr_parameters: expr_parameters "," expr_identifier +#line 742 "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 3491 "parser.cpp" break; - case 194: // expr_parameters: expr_identifier -#line 743 "parser.ypp" - { yylhs.value.as < ast::expr_parameters::ptr > () = std::make_unique(yylhs.location); yylhs.value.as < ast::expr_parameters::ptr > ()->list.push_back(ast::expr(std::move(yystack_[0].value.as < ast::expr_identifier::ptr > ()))); } + case 194: // expr_parameters: expr_parameters_default +#line 744 "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 3497 "parser.cpp" break; - case 195: // expr_parameters: %empty -#line 745 "parser.ypp" - { yylhs.value.as < ast::expr_parameters::ptr > () = std::make_unique(yylhs.location); } + case 195: // expr_parameters: expr_identifier +#line 746 "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 3503 "parser.cpp" break; - case 196: // expr_parameters_default: expr_identifier "=" expr_literal -#line 750 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::make_unique(yylhs.location, ast::expr(std::move(yystack_[2].value.as < ast::expr_identifier::ptr > ())), std::move(yystack_[0].value.as < ast::expr > ())); } + case 196: // expr_parameters: %empty +#line 748 "parser.ypp" + { yylhs.value.as < ast::expr_parameters::ptr > () = std::make_unique(yylhs.location); } #line 3509 "parser.cpp" break; - case 197: // expr_literal: expr_istring -#line 754 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_istring::ptr > ()); } + case 197: // expr_parameters_default: expr_identifier "=" expr_literal +#line 753 "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 3515 "parser.cpp" break; - case 198: // expr_literal: expr_string -#line 755 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_string::ptr > ()); } + case 198: // expr_literal: expr_istring +#line 757 "parser.ypp" + { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_istring::ptr > ()); } #line 3521 "parser.cpp" break; - case 199: // expr_literal: expr_float -#line 756 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_float::ptr > ()); } + case 199: // expr_literal: expr_string +#line 758 "parser.ypp" + { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_string::ptr > ()); } #line 3527 "parser.cpp" break; - case 200: // expr_literal: expr_integer -#line 757 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_integer::ptr > ()); } + case 200: // expr_literal: expr_float +#line 759 "parser.ypp" + { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_float::ptr > ()); } #line 3533 "parser.cpp" break; - case 201: // expr_literal: expr_false -#line 758 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_false::ptr > ()); } + case 201: // expr_literal: expr_integer +#line 760 "parser.ypp" + { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_integer::ptr > ()); } #line 3539 "parser.cpp" break; - case 202: // expr_literal: expr_true -#line 759 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_true::ptr > ()); } + case 202: // expr_literal: expr_false +#line 761 "parser.ypp" + { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_false::ptr > ()); } #line 3545 "parser.cpp" break; - case 203: // expr_arguments: expr_arguments_no_empty -#line 764 "parser.ypp" - { yylhs.value.as < ast::expr_arguments::ptr > () = std::move(yystack_[0].value.as < ast::expr_arguments::ptr > ()); } + case 203: // expr_literal: expr_true +#line 762 "parser.ypp" + { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_true::ptr > ()); } #line 3551 "parser.cpp" break; - case 204: // expr_arguments: %empty -#line 766 "parser.ypp" - { yylhs.value.as < ast::expr_arguments::ptr > () = std::make_unique(yylhs.location); } + case 204: // expr_arguments: expr_arguments_no_empty +#line 767 "parser.ypp" + { yylhs.value.as < ast::expr_arguments::ptr > () = std::move(yystack_[0].value.as < ast::expr_arguments::ptr > ()); } #line 3557 "parser.cpp" break; - case 205: // expr_arguments_no_empty: expr_arguments "," expr -#line 771 "parser.ypp" - { yylhs.value.as < ast::expr_arguments::ptr > () = std::move(yystack_[2].value.as < ast::expr_arguments::ptr > ()); yylhs.value.as < ast::expr_arguments::ptr > ()->list.push_back(std::move(yystack_[0].value.as < ast::expr > ())); } + case 205: // expr_arguments: %empty +#line 769 "parser.ypp" + { yylhs.value.as < ast::expr_arguments::ptr > () = std::make_unique(yylhs.location); } #line 3563 "parser.cpp" break; - case 206: // expr_arguments_no_empty: expr -#line 773 "parser.ypp" - { yylhs.value.as < ast::expr_arguments::ptr > () = std::make_unique(yylhs.location); yylhs.value.as < ast::expr_arguments::ptr > ()->list.push_back(std::move(yystack_[0].value.as < ast::expr > ())); } + case 206: // expr_arguments_no_empty: expr_arguments "," expr +#line 774 "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 3569 "parser.cpp" break; - case 207: // expr_getnextarraykey: "getnextarraykey" "(" expr "," expr ")" -#line 778 "parser.ypp" - { yylhs.value.as < ast::expr_getnextarraykey::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[3].value.as < ast::expr > ()), std::move(yystack_[1].value.as < ast::expr > ())); } + case 207: // expr_arguments_no_empty: expr +#line 776 "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 3575 "parser.cpp" break; - case 208: // expr_getfirstarraykey: "getfirstarraykey" "(" expr ")" -#line 783 "parser.ypp" - { yylhs.value.as < ast::expr_getfirstarraykey::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[1].value.as < ast::expr > ())); } + case 208: // expr_getnextarraykey: "getnextarraykey" "(" expr "," expr ")" +#line 781 "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 3581 "parser.cpp" break; - case 209: // expr_getdvarcoloralpha: "getdvarcoloralpha" "(" expr ")" -#line 788 "parser.ypp" - { yylhs.value.as < ast::expr_getdvarcoloralpha::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[1].value.as < ast::expr > ())); } + case 209: // expr_getfirstarraykey: "getfirstarraykey" "(" expr ")" +#line 786 "parser.ypp" + { yylhs.value.as < ast::expr_getfirstarraykey::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[1].value.as < ast::expr > ())); } #line 3587 "parser.cpp" break; - case 210: // expr_getdvarcolorblue: "getdvarcolorblue" "(" expr ")" -#line 793 "parser.ypp" - { yylhs.value.as < ast::expr_getdvarcolorblue::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[1].value.as < ast::expr > ())); } + case 210: // expr_getdvarcoloralpha: "getdvarcoloralpha" "(" expr ")" +#line 791 "parser.ypp" + { yylhs.value.as < ast::expr_getdvarcoloralpha::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[1].value.as < ast::expr > ())); } #line 3593 "parser.cpp" break; - case 211: // expr_getdvarcolorgreen: "getdvarcolorgreen" "(" expr ")" -#line 798 "parser.ypp" - { yylhs.value.as < ast::expr_getdvarcolorgreen::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[1].value.as < ast::expr > ())); } + case 211: // expr_getdvarcolorblue: "getdvarcolorblue" "(" expr ")" +#line 796 "parser.ypp" + { yylhs.value.as < ast::expr_getdvarcolorblue::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[1].value.as < ast::expr > ())); } #line 3599 "parser.cpp" break; - case 212: // expr_getdvarcolorred: "getdvarcolorred" "(" expr ")" -#line 803 "parser.ypp" - { yylhs.value.as < ast::expr_getdvarcolorred::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[1].value.as < ast::expr > ())); } + case 212: // expr_getdvarcolorgreen: "getdvarcolorgreen" "(" expr ")" +#line 801 "parser.ypp" + { yylhs.value.as < ast::expr_getdvarcolorgreen::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[1].value.as < ast::expr > ())); } #line 3605 "parser.cpp" break; - case 213: // expr_getdvarvector: "getdvarvector" "(" expr ")" -#line 808 "parser.ypp" - { yylhs.value.as < ast::expr_getdvarvector::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[1].value.as < ast::expr > ())); } + case 213: // expr_getdvarcolorred: "getdvarcolorred" "(" expr ")" +#line 806 "parser.ypp" + { yylhs.value.as < ast::expr_getdvarcolorred::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[1].value.as < ast::expr > ())); } #line 3611 "parser.cpp" break; - case 214: // expr_getdvarfloat: "getdvarfloat" "(" expr ")" -#line 813 "parser.ypp" - { yylhs.value.as < ast::expr_getdvarfloat::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[1].value.as < ast::expr > ())); } + case 214: // expr_getdvarvector: "getdvarvector" "(" expr ")" +#line 811 "parser.ypp" + { yylhs.value.as < ast::expr_getdvarvector::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[1].value.as < ast::expr > ())); } #line 3617 "parser.cpp" break; - case 215: // expr_getdvarint: "getdvarint" "(" expr ")" -#line 818 "parser.ypp" - { yylhs.value.as < ast::expr_getdvarint::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[1].value.as < ast::expr > ())); } + case 215: // expr_getdvarfloat: "getdvarfloat" "(" expr ")" +#line 816 "parser.ypp" + { yylhs.value.as < ast::expr_getdvarfloat::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[1].value.as < ast::expr > ())); } #line 3623 "parser.cpp" break; - case 216: // expr_getdvar: "getdvar" "(" expr ")" -#line 823 "parser.ypp" - { yylhs.value.as < ast::expr_getdvar::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[1].value.as < ast::expr > ())); } + case 216: // expr_getdvarint: "getdvarint" "(" expr ")" +#line 821 "parser.ypp" + { yylhs.value.as < ast::expr_getdvarint::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[1].value.as < ast::expr > ())); } #line 3629 "parser.cpp" break; - case 217: // expr_gettime: "gettime" "(" ")" -#line 828 "parser.ypp" - { yylhs.value.as < ast::expr_gettime::ptr > () = std::make_unique(yylhs.location); } + case 217: // expr_getdvar: "getdvar" "(" expr ")" +#line 826 "parser.ypp" + { yylhs.value.as < ast::expr_getdvar::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[1].value.as < ast::expr > ())); } #line 3635 "parser.cpp" break; - case 218: // expr_abs: "abs" "(" expr ")" -#line 833 "parser.ypp" - { yylhs.value.as < ast::expr_abs::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[1].value.as < ast::expr > ())); } + case 218: // expr_gettime: "gettime" "(" ")" +#line 831 "parser.ypp" + { yylhs.value.as < ast::expr_gettime::ptr > () = std::make_unique(yylhs.location); } #line 3641 "parser.cpp" break; - case 219: // expr_vectortoangles: "vectortoangles" "(" expr ")" -#line 838 "parser.ypp" - { yylhs.value.as < ast::expr_vectortoangles::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[1].value.as < ast::expr > ())); } + case 219: // expr_abs: "abs" "(" expr ")" +#line 836 "parser.ypp" + { yylhs.value.as < ast::expr_abs::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[1].value.as < ast::expr > ())); } #line 3647 "parser.cpp" break; - case 220: // expr_angleclamp180: "angleclamp180" "(" expr ")" -#line 843 "parser.ypp" - { yylhs.value.as < ast::expr_angleclamp180::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[1].value.as < ast::expr > ())); } + case 220: // expr_vectortoangles: "vectortoangles" "(" expr ")" +#line 841 "parser.ypp" + { yylhs.value.as < ast::expr_vectortoangles::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[1].value.as < ast::expr > ())); } #line 3653 "parser.cpp" break; - case 221: // expr_anglestoforward: "anglestoforward" "(" expr ")" -#line 848 "parser.ypp" - { yylhs.value.as < ast::expr_anglestoforward::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[1].value.as < ast::expr > ())); } + case 221: // expr_angleclamp180: "angleclamp180" "(" expr ")" +#line 846 "parser.ypp" + { yylhs.value.as < ast::expr_angleclamp180::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[1].value.as < ast::expr > ())); } #line 3659 "parser.cpp" break; - case 222: // expr_anglestoright: "anglestoright" "(" expr ")" -#line 853 "parser.ypp" - { yylhs.value.as < ast::expr_anglestoright::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[1].value.as < ast::expr > ())); } + case 222: // expr_anglestoforward: "anglestoforward" "(" expr ")" +#line 851 "parser.ypp" + { yylhs.value.as < ast::expr_anglestoforward::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[1].value.as < ast::expr > ())); } #line 3665 "parser.cpp" break; - case 223: // expr_anglestoup: "anglestoup" "(" expr ")" -#line 858 "parser.ypp" - { yylhs.value.as < ast::expr_anglestoup::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[1].value.as < ast::expr > ())); } + case 223: // expr_anglestoright: "anglestoright" "(" expr ")" +#line 856 "parser.ypp" + { yylhs.value.as < ast::expr_anglestoright::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[1].value.as < ast::expr > ())); } #line 3671 "parser.cpp" break; - case 224: // expr_vectorscale: "vectorscale" "(" expr "," expr ")" -#line 863 "parser.ypp" - { yylhs.value.as < ast::expr_vectorscale::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[3].value.as < ast::expr > ()), std::move(yystack_[1].value.as < ast::expr > ())); } + case 224: // expr_anglestoup: "anglestoup" "(" expr ")" +#line 861 "parser.ypp" + { yylhs.value.as < ast::expr_anglestoup::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[1].value.as < ast::expr > ())); } #line 3677 "parser.cpp" break; - case 225: // expr_isdefined: "isdefined" "(" expr ")" -#line 868 "parser.ypp" - { yylhs.value.as < ast::expr_isdefined::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[1].value.as < ast::expr > ())); } + case 225: // expr_vectorscale: "vectorscale" "(" expr "," expr ")" +#line 866 "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 3683 "parser.cpp" break; - case 226: // expr_reference: "::" expr_identifier -#line 873 "parser.ypp" - { yylhs.value.as < ast::expr_reference::ptr > () = std::make_unique(yylhs.location, std::make_unique(yylhs.location), std::move(yystack_[0].value.as < ast::expr_identifier::ptr > ())); } + case 226: // expr_isdefined: "isdefined" "(" expr ")" +#line 871 "parser.ypp" + { yylhs.value.as < ast::expr_isdefined::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[1].value.as < ast::expr > ())); } #line 3689 "parser.cpp" break; - case 227: // expr_reference: expr_path "::" expr_identifier -#line 875 "parser.ypp" - { yylhs.value.as < ast::expr_reference::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[2].value.as < ast::expr_path::ptr > ()), std::move(yystack_[0].value.as < ast::expr_identifier::ptr > ())); } + case 227: // expr_reference: "::" expr_identifier +#line 876 "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 3695 "parser.cpp" break; - case 228: // expr_array: expr_object "[" expr "]" -#line 880 "parser.ypp" - { yylhs.value.as < ast::expr_array::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[3].value.as < ast::expr > ()), std::move(yystack_[1].value.as < ast::expr > ())); } + case 228: // expr_reference: expr_path "::" expr_identifier +#line 878 "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 3701 "parser.cpp" break; - case 229: // expr_array: expr_getdvarvector "[" expr "]" -#line 882 "parser.ypp" - { yylhs.value.as < ast::expr_array::ptr > () = std::make_unique(yylhs.location, ast::expr(std::move(yystack_[3].value.as < ast::expr_getdvarvector::ptr > ())), std::move(yystack_[1].value.as < ast::expr > ())); } + case 229: // expr_array: expr_object "[" expr "]" +#line 883 "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 3707 "parser.cpp" break; - case 230: // expr_array: expr_vectortoangles "[" expr "]" -#line 884 "parser.ypp" - { yylhs.value.as < ast::expr_array::ptr > () = std::make_unique(yylhs.location, ast::expr(std::move(yystack_[3].value.as < ast::expr_vectortoangles::ptr > ())), std::move(yystack_[1].value.as < ast::expr > ())); } + case 230: // expr_array: expr_getdvarvector "[" 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_getdvarvector::ptr > ())), std::move(yystack_[1].value.as < ast::expr > ())); } #line 3713 "parser.cpp" break; - case 231: // expr_array: expr_angleclamp180 "[" expr "]" -#line 886 "parser.ypp" - { yylhs.value.as < ast::expr_array::ptr > () = std::make_unique(yylhs.location, ast::expr(std::move(yystack_[3].value.as < ast::expr_angleclamp180::ptr > ())), std::move(yystack_[1].value.as < ast::expr > ())); } + case 231: // expr_array: expr_vectortoangles "[" 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_vectortoangles::ptr > ())), std::move(yystack_[1].value.as < ast::expr > ())); } #line 3719 "parser.cpp" break; - case 232: // expr_array: expr_anglestoforward "[" expr "]" -#line 888 "parser.ypp" - { yylhs.value.as < ast::expr_array::ptr > () = std::make_unique(yylhs.location, ast::expr(std::move(yystack_[3].value.as < ast::expr_anglestoforward::ptr > ())), std::move(yystack_[1].value.as < ast::expr > ())); } + case 232: // expr_array: expr_angleclamp180 "[" 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_angleclamp180::ptr > ())), std::move(yystack_[1].value.as < ast::expr > ())); } #line 3725 "parser.cpp" break; - case 233: // expr_array: expr_anglestoright "[" expr "]" -#line 890 "parser.ypp" - { yylhs.value.as < ast::expr_array::ptr > () = std::make_unique(yylhs.location, ast::expr(std::move(yystack_[3].value.as < ast::expr_anglestoright::ptr > ())), std::move(yystack_[1].value.as < ast::expr > ())); } + case 233: // expr_array: expr_anglestoforward "[" 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_anglestoforward::ptr > ())), std::move(yystack_[1].value.as < ast::expr > ())); } #line 3731 "parser.cpp" break; - case 234: // expr_array: expr_anglestoup "[" expr "]" -#line 892 "parser.ypp" - { yylhs.value.as < ast::expr_array::ptr > () = std::make_unique(yylhs.location, ast::expr(std::move(yystack_[3].value.as < ast::expr_anglestoup::ptr > ())), std::move(yystack_[1].value.as < ast::expr > ())); } + case 234: // expr_array: expr_anglestoright "[" 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_anglestoright::ptr > ())), std::move(yystack_[1].value.as < ast::expr > ())); } #line 3737 "parser.cpp" break; - case 235: // expr_array: expr_vectorscale "[" expr "]" -#line 894 "parser.ypp" - { yylhs.value.as < ast::expr_array::ptr > () = std::make_unique(yylhs.location, ast::expr(std::move(yystack_[3].value.as < ast::expr_vectorscale::ptr > ())), std::move(yystack_[1].value.as < ast::expr > ())); } + case 235: // expr_array: expr_anglestoup "[" expr "]" +#line 895 "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 3743 "parser.cpp" break; - case 236: // expr_field: expr_object "." expr_identifier_nosize -#line 899 "parser.ypp" - { yylhs.value.as < ast::expr_field::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[2].value.as < ast::expr > ()), std::move(yystack_[0].value.as < ast::expr_identifier::ptr > ())); } + case 236: // expr_array: expr_vectorscale "[" expr "]" +#line 897 "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 3749 "parser.cpp" break; - case 237: // expr_size: expr_object "." "size" -#line 904 "parser.ypp" - { yylhs.value.as < ast::expr_size::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[2].value.as < ast::expr > ())); } + case 237: // expr_field: expr_object "." expr_identifier_nosize +#line 902 "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 3755 "parser.cpp" break; - case 238: // expr_paren: "(" expr ")" -#line 909 "parser.ypp" - { yylhs.value.as < ast::expr_paren::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[1].value.as < ast::expr > ())); } + case 238: // expr_size: expr_object "." "size" +#line 907 "parser.ypp" + { yylhs.value.as < ast::expr_size::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[2].value.as < ast::expr > ())); } #line 3761 "parser.cpp" break; - case 239: // expr_object: expr_call -#line 913 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_call::ptr > ()); } + case 239: // expr_paren: "(" expr ")" +#line 912 "parser.ypp" + { yylhs.value.as < ast::expr_paren::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[1].value.as < ast::expr > ())); } #line 3767 "parser.cpp" break; - case 240: // expr_object: expr_method -#line 914 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_method::ptr > ()); } + case 240: // expr_object: expr_call +#line 916 "parser.ypp" + { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_call::ptr > ()); } #line 3773 "parser.cpp" break; - case 241: // expr_object: expr_array -#line 915 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_array::ptr > ()); } + case 241: // expr_object: expr_method +#line 917 "parser.ypp" + { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_method::ptr > ()); } #line 3779 "parser.cpp" break; - case 242: // expr_object: expr_field -#line 916 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_field::ptr > ()); } + case 242: // expr_object: expr_array +#line 918 "parser.ypp" + { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_array::ptr > ()); } #line 3785 "parser.cpp" break; - case 243: // expr_object: expr_game -#line 917 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_game::ptr > ()); } + case 243: // expr_object: expr_field +#line 919 "parser.ypp" + { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_field::ptr > ()); } #line 3791 "parser.cpp" break; - case 244: // expr_object: expr_self -#line 918 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_self::ptr > ()); } + case 244: // expr_object: expr_game +#line 920 "parser.ypp" + { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_game::ptr > ()); } #line 3797 "parser.cpp" break; - case 245: // expr_object: expr_anim -#line 919 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_anim::ptr > ()); } + case 245: // expr_object: expr_self +#line 921 "parser.ypp" + { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_self::ptr > ()); } #line 3803 "parser.cpp" break; - case 246: // expr_object: expr_level -#line 920 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_level::ptr > ()); } + case 246: // expr_object: expr_anim +#line 922 "parser.ypp" + { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_anim::ptr > ()); } #line 3809 "parser.cpp" break; - case 247: // expr_object: expr_identifier -#line 921 "parser.ypp" - { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_identifier::ptr > ()); } + case 247: // expr_object: expr_level +#line 923 "parser.ypp" + { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_level::ptr > ()); } #line 3815 "parser.cpp" break; - case 248: // expr_empty_array: "[" "]" -#line 926 "parser.ypp" - { yylhs.value.as < ast::expr_empty_array::ptr > () = std::make_unique(yylhs.location); } + case 248: // expr_object: expr_identifier +#line 924 "parser.ypp" + { yylhs.value.as < ast::expr > ().as_node = std::move(yystack_[0].value.as < ast::expr_identifier::ptr > ()); } #line 3821 "parser.cpp" break; - case 249: // expr_undefined: "undefined" -#line 931 "parser.ypp" - { yylhs.value.as < ast::expr_undefined::ptr > () = std::make_unique(yylhs.location); } + case 249: // expr_empty_array: "[" "]" +#line 929 "parser.ypp" + { yylhs.value.as < ast::expr_empty_array::ptr > () = std::make_unique(yylhs.location); } #line 3827 "parser.cpp" break; - case 250: // expr_game: "game" -#line 936 "parser.ypp" - { yylhs.value.as < ast::expr_game::ptr > () = std::make_unique(yylhs.location); } + case 250: // expr_undefined: "undefined" +#line 934 "parser.ypp" + { yylhs.value.as < ast::expr_undefined::ptr > () = std::make_unique(yylhs.location); } #line 3833 "parser.cpp" break; - case 251: // expr_self: "self" -#line 941 "parser.ypp" - { yylhs.value.as < ast::expr_self::ptr > () = std::make_unique(yylhs.location); } + case 251: // expr_game: "game" +#line 939 "parser.ypp" + { yylhs.value.as < ast::expr_game::ptr > () = std::make_unique(yylhs.location); } #line 3839 "parser.cpp" break; - case 252: // expr_anim: "anim" -#line 946 "parser.ypp" - { yylhs.value.as < ast::expr_anim::ptr > () = std::make_unique(yylhs.location); } + case 252: // expr_self: "self" +#line 944 "parser.ypp" + { yylhs.value.as < ast::expr_self::ptr > () = std::make_unique(yylhs.location); } #line 3845 "parser.cpp" break; - case 253: // expr_level: "level" -#line 951 "parser.ypp" - { yylhs.value.as < ast::expr_level::ptr > () = std::make_unique(yylhs.location); } + case 253: // expr_anim: "anim" +#line 949 "parser.ypp" + { yylhs.value.as < ast::expr_anim::ptr > () = std::make_unique(yylhs.location); } #line 3851 "parser.cpp" break; - case 254: // expr_animation: "%" "identifier" -#line 956 "parser.ypp" - { yylhs.value.as < ast::expr_animation::ptr > () = std::make_unique(yylhs.location, yystack_[0].value.as < std::string > ()); } + case 254: // expr_level: "level" +#line 954 "parser.ypp" + { yylhs.value.as < ast::expr_level::ptr > () = std::make_unique(yylhs.location); } #line 3857 "parser.cpp" break; - case 255: // expr_animtree: "#animtree" -#line 961 "parser.ypp" - { yylhs.value.as < ast::expr_animtree::ptr > () = std::make_unique(yylhs.location); } + case 255: // expr_animation: "%" "identifier" +#line 959 "parser.ypp" + { yylhs.value.as < ast::expr_animation::ptr > () = std::make_unique(yylhs.location, yystack_[0].value.as < std::string > ()); } #line 3863 "parser.cpp" break; - case 256: // expr_identifier_nosize: "identifier" -#line 966 "parser.ypp" - { yylhs.value.as < ast::expr_identifier::ptr > () = std::make_unique(yylhs.location, yystack_[0].value.as < std::string > ()); } + case 256: // expr_animtree: "#animtree" +#line 964 "parser.ypp" + { yylhs.value.as < ast::expr_animtree::ptr > () = std::make_unique(yylhs.location); } #line 3869 "parser.cpp" break; - case 257: // expr_identifier: "identifier" -#line 971 "parser.ypp" + case 257: // expr_identifier_nosize: "identifier" +#line 969 "parser.ypp" { yylhs.value.as < ast::expr_identifier::ptr > () = std::make_unique(yylhs.location, yystack_[0].value.as < std::string > ()); } #line 3875 "parser.cpp" break; - case 258: // expr_identifier: "size" -#line 973 "parser.ypp" - { yylhs.value.as < ast::expr_identifier::ptr > () = std::make_unique(yylhs.location, "size"); } + case 258: // expr_identifier: "identifier" +#line 974 "parser.ypp" + { yylhs.value.as < ast::expr_identifier::ptr > () = std::make_unique(yylhs.location, yystack_[0].value.as < std::string > ()); } #line 3881 "parser.cpp" break; - case 259: // expr_path: "identifier" -#line 978 "parser.ypp" - { yylhs.value.as < ast::expr_path::ptr > () = std::make_unique(yylhs.location, yystack_[0].value.as < std::string > ()); } + case 259: // expr_identifier: "size" +#line 976 "parser.ypp" + { yylhs.value.as < ast::expr_identifier::ptr > () = std::make_unique(yylhs.location, "size"); } #line 3887 "parser.cpp" break; - case 260: // expr_path: "path" -#line 980 "parser.ypp" + case 260: // expr_path: "identifier" +#line 981 "parser.ypp" { yylhs.value.as < ast::expr_path::ptr > () = std::make_unique(yylhs.location, yystack_[0].value.as < std::string > ()); } #line 3893 "parser.cpp" break; - case 261: // expr_istring: "localized string" -#line 985 "parser.ypp" - { yylhs.value.as < ast::expr_istring::ptr > () = std::make_unique(yylhs.location, yystack_[0].value.as < std::string > ()); } + case 261: // expr_path: "path" +#line 983 "parser.ypp" + { yylhs.value.as < ast::expr_path::ptr > () = std::make_unique(yylhs.location, yystack_[0].value.as < std::string > ()); } #line 3899 "parser.cpp" break; - case 262: // expr_string: "string literal" -#line 990 "parser.ypp" - { yylhs.value.as < ast::expr_string::ptr > () = std::make_unique(yylhs.location, yystack_[0].value.as < std::string > ()); } + case 262: // expr_istring: "localized string" +#line 988 "parser.ypp" + { yylhs.value.as < ast::expr_istring::ptr > () = std::make_unique(yylhs.location, yystack_[0].value.as < std::string > ()); } #line 3905 "parser.cpp" break; - case 263: // expr_vector: "(" expr "," expr "," expr ")" -#line 995 "parser.ypp" - { yylhs.value.as < ast::expr_vector::ptr > () = std::make_unique(yylhs.location, std::move(yystack_[5].value.as < ast::expr > ()), std::move(yystack_[3].value.as < ast::expr > ()), std::move(yystack_[1].value.as < ast::expr > ())); } + case 263: // expr_string: "string literal" +#line 993 "parser.ypp" + { yylhs.value.as < ast::expr_string::ptr > () = std::make_unique(yylhs.location, yystack_[0].value.as < std::string > ()); } #line 3911 "parser.cpp" break; - case 264: // expr_hash: "hash" -#line 1000 "parser.ypp" - { yylhs.value.as < ast::expr_hash::ptr > () = std::make_unique(yylhs.location, yystack_[0].value.as < std::string > ()); } + case 264: // expr_vector: "(" expr "," expr "," expr ")" +#line 998 "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 3917 "parser.cpp" break; - case 265: // expr_float: "-" "float" -#line 1005 "parser.ypp" - { yylhs.value.as < ast::expr_float::ptr > () = std::make_unique(yylhs.location, "-" + yystack_[0].value.as < std::string > ()); } + case 265: // expr_hash: "hash" +#line 1003 "parser.ypp" + { yylhs.value.as < ast::expr_hash::ptr > () = std::make_unique(yylhs.location, yystack_[0].value.as < std::string > ()); } #line 3923 "parser.cpp" break; - case 266: // expr_float: "float" -#line 1007 "parser.ypp" - { yylhs.value.as < ast::expr_float::ptr > () = std::make_unique(yylhs.location, yystack_[0].value.as < std::string > ()); } + case 266: // expr_float: "-" "float" +#line 1008 "parser.ypp" + { yylhs.value.as < ast::expr_float::ptr > () = std::make_unique(yylhs.location, "-" + yystack_[0].value.as < std::string > ()); } #line 3929 "parser.cpp" break; - case 267: // expr_integer: "-" "integer" -#line 1012 "parser.ypp" - { yylhs.value.as < ast::expr_integer::ptr > () = std::make_unique(yylhs.location, "-" + yystack_[0].value.as < std::string > ()); } + case 267: // expr_float: "float" +#line 1010 "parser.ypp" + { yylhs.value.as < ast::expr_float::ptr > () = std::make_unique(yylhs.location, yystack_[0].value.as < std::string > ()); } #line 3935 "parser.cpp" break; - case 268: // expr_integer: "integer" -#line 1014 "parser.ypp" - { yylhs.value.as < ast::expr_integer::ptr > () = std::make_unique(yylhs.location, yystack_[0].value.as < std::string > ()); } + case 268: // expr_integer: "-" "integer" +#line 1015 "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 1019 "parser.ypp" - { yylhs.value.as < ast::expr_false::ptr > () = std::make_unique(yylhs.location); } + case 269: // expr_integer: "integer" +#line 1017 "parser.ypp" + { yylhs.value.as < ast::expr_integer::ptr > () = std::make_unique(yylhs.location, yystack_[0].value.as < std::string > ()); } #line 3947 "parser.cpp" break; - case 270: // expr_true: "true" -#line 1024 "parser.ypp" - { yylhs.value.as < ast::expr_true::ptr > () = std::make_unique(yylhs.location); } + case 270: // expr_false: "false" +#line 1022 "parser.ypp" + { yylhs.value.as < ast::expr_false::ptr > () = std::make_unique(yylhs.location); } #line 3953 "parser.cpp" break; + case 271: // expr_true: "true" +#line 1027 "parser.ypp" + { yylhs.value.as < ast::expr_true::ptr > () = std::make_unique(yylhs.location); } +#line 3959 "parser.cpp" + break; -#line 3957 "parser.cpp" + +#line 3963 "parser.cpp" default: break; @@ -4139,8 +4145,8 @@ 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", "autoexec", "private", - "endon", "notify", "wait", "waittill", "waittillmatch", + "#include", "#using_animtree", "#animtree", "autoexec", "codecall", + "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", @@ -4450,969 +4456,971 @@ namespace xsk { namespace arc { namespace t6 { } - const short parser::yypact_ninf_ = -373; + const short parser::yypact_ninf_ = -318; - const short parser::yytable_ninf_ = -260; + const short parser::yytable_ninf_ = -261; const short parser::yypact_[] = { - 79, -373, -373, 32, 32, -65, -31, -31, -373, -373, - 20, 79, -373, -373, -373, -373, -373, -41, -373, -373, - -49, -43, -77, -25, -19, -373, -373, -373, -373, -31, - -373, -373, -373, -23, -31, -31, -24, -373, -17, 28, - -15, -9, 40, -31, 127, -373, 40, 40, 1407, -373, - -373, -17, -373, -373, 9, -373, -373, -373, -373, -373, - -373, -373, -373, -373, -373, -373, -373, 1532, 1226, 35, - 55, 1656, 64, 69, 71, 91, -78, 83, 84, 85, - 1064, 103, 106, 93, -373, -373, -373, -373, -31, 111, - 116, 118, 122, 123, 136, 140, -373, 62, 1030, 1030, - 109, -373, -373, 1470, -373, -373, -373, -373, -373, -373, - -373, -373, -373, -373, -373, -373, -373, -373, -373, -373, - -373, -373, -373, -373, -373, -373, -373, -373, -373, 125, - 132, 138, 143, 147, -373, -373, 141, 154, 155, 166, - 167, 169, 172, -373, -373, 727, -373, -373, -373, -373, - 183, 119, -373, -373, -373, -373, 1594, -373, -373, 195, - 197, 201, 203, 205, 206, 208, 209, 210, 211, 214, - 216, 1226, 76, -31, 1226, 1226, 669, 179, -373, 3184, - -373, -373, -373, -373, -373, -373, 402, 427, -373, -373, - -373, -373, -373, -373, 141, -373, -373, -373, -373, -373, - 154, 155, 166, 167, 169, 172, -373, -373, 510, 517, - -373, -373, 571, -373, -373, 737, 771, 777, 950, -373, - -373, 351, 218, -373, -373, -373, -373, -373, -373, -373, - -373, -373, 1226, 259, 1226, 973, -31, 1226, 176, 219, - 229, -373, -373, -373, -373, 3219, 1226, 1226, 237, 243, - 236, 222, 1226, 1226, 1226, 1226, 1226, 1226, 1226, 1226, - -373, -373, 984, 984, -373, -373, -373, -373, -373, -373, - -373, 1226, 1226, 1226, 1226, 1226, 1226, 1226, 245, 249, - 253, 257, 1307, 212, -373, -373, 1226, 1226, 1226, 1226, - 1226, 1226, 1226, 1226, 1226, 1226, 1226, -373, -373, 183, - 1226, -31, -373, -373, 1226, 1226, 1226, 1226, 1226, 1226, - 1226, 1226, 1226, 254, 1226, 1226, 1666, -373, -373, -373, - -373, 1226, 510, 517, -373, 984, 351, -373, -373, 1226, - 1226, 1226, 1226, 1226, 1226, 1226, 1226, 1226, 1226, 1226, - 1226, 1226, 1226, 1226, 1226, 1226, 1226, 1226, -29, -31, - 1832, 260, 1866, 251, -373, -373, -373, 900, -5, 1900, - -373, -373, -373, 3267, 4, -373, 5, 1226, 1226, -31, - 1226, 1934, 1968, 2002, 2036, 2070, 2104, 3035, 1141, 1222, - 1303, 2756, 2796, 2836, 2876, 2916, 1226, 1226, 1226, 1226, - 1145, 2956, -373, -373, 3267, 3267, 3267, 3267, 3267, 3267, - 3267, 3267, 3267, 3267, 3267, 12, 263, 3074, 2138, 2172, - 2206, 2240, 2274, 2308, 2342, 2376, -373, 2410, 2444, -373, - 1226, 2478, 3149, 383, 383, 3298, 3308, 3380, 3380, 148, - 148, 148, 148, 3339, 255, 3349, 66, 66, -373, -373, - -373, -373, 263, 1656, 1226, 1656, 1226, 1226, -31, 40, - 261, 1226, 269, 2996, 25, 264, 3254, -373, -373, -373, - -373, -373, -373, 1226, 279, -373, -373, -373, -373, -373, - -373, -373, 2512, 1710, 1754, 1798, -373, -373, 1226, 1226, - -373, -373, -373, -373, -373, -373, -373, -373, -373, -373, - 3113, 1226, 308, 2546, -373, 3267, 275, 2580, 327, -373, - -373, 3267, -373, 285, -373, 1226, -373, 2614, 291, 292, - 293, 1226, 295, 1226, 296, 1226, 31, 2648, 1226, 3267, - 1656, 298, 973, 1656, 1226, 309, 45, -373, 1226, -373, - -373, 304, 310, -373, 312, -373, 316, -373, -373, 2682, - -373, -373, 318, -373, 2716, 1226, -373, 56, 305, 311, - 313, -373, 1656, 1656, 57, -373, -373, -373, -373, -373, - -373, -373 + 124, -318, -318, -25, -25, -51, -44, -44, -44, -318, + -318, 29, 124, -318, -318, -318, -318, -318, -30, -318, + -318, -35, -29, -55, 18, 31, 38, -318, -318, -318, + -318, -44, -318, -318, -318, -1, -44, -44, -44, -53, + -318, -16, 19, -46, -8, -7, 68, -44, 208, -318, + 68, 68, 68, 1402, -318, -318, -16, -318, -318, 10, + -318, -318, -318, -318, -318, -318, -318, -318, -318, -318, + -318, -318, -318, 1529, 1220, 66, 86, 1654, 89, 91, + 102, 103, -95, 98, 100, 106, 1058, 113, 114, -31, + -318, -318, -318, -318, -44, 117, 119, 120, 126, 127, + 131, 142, -318, 136, 1024, 1024, 116, -318, -318, 1466, + -318, -318, -318, -318, -318, -318, -318, -318, -318, -318, + -318, -318, -318, -318, -318, -318, -318, -318, -318, -318, + -318, -318, -318, -318, -318, 134, 141, 145, 148, 154, + -318, -318, 159, 163, 169, 172, 174, 180, 181, -318, + -318, 721, -318, -318, -318, -318, 146, 158, -318, -318, + -318, -318, 1592, -318, -318, 189, 190, 193, 195, 202, + 206, 209, 211, 212, 215, 216, 217, 1220, 46, -44, + 1220, 1220, 925, 175, -318, 3182, -318, -318, -318, -318, + -318, -318, 1, 272, -318, -318, -318, -318, -318, -318, + 159, -318, -318, -318, -318, -318, 163, 169, 172, 174, + 180, 181, -318, -318, 332, 390, -318, -318, 415, -318, + -318, 441, 509, 571, 598, -318, -318, 104, 219, -318, + -318, -318, -318, -318, -318, -318, -318, -318, 1220, 249, + 1220, 968, -44, 1220, 173, 220, 222, -318, -318, -318, + -318, 3217, 1220, 1220, 221, 233, 228, 214, 1220, 1220, + 1220, 1220, 1220, 1220, 1220, 1220, -318, -318, 648, 648, + -318, -318, -318, -318, -318, -318, -318, 1220, 1220, 1220, + 1220, 1220, 1220, 1220, 238, 244, 248, 251, 1301, 207, + -318, -318, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, + 1220, 1220, 1220, -318, -318, 146, 1220, -44, -318, -318, + 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 256, + 1220, 1220, 1664, -318, -318, -318, -318, 1220, 332, 390, + -318, 648, 104, -318, -318, 1220, 1220, 1220, 1220, 1220, + 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, + 1220, 1220, 1220, 1220, -42, -44, 1830, 260, 1864, 252, + -318, -318, -318, 558, -19, 1898, -318, -318, -318, 3265, + 11, -318, 27, 1220, 1220, -44, 1220, 1932, 1966, 2000, + 2034, 2068, 2102, 3033, 1135, 1216, 1297, 2754, 2794, 2834, + 2874, 2914, 1220, 1220, 1220, 1220, 1139, 2954, -318, -318, + 3265, 3265, 3265, 3265, 3265, 3265, 3265, 3265, 3265, 3265, + 3265, 36, 263, 3072, 2136, 2170, 2204, 2238, 2272, 2306, + 2340, 2374, -318, 2408, 2442, -318, 1220, 2476, 3147, 53, + 53, 3296, 3306, 3388, 3388, 663, 663, 663, 663, 3337, + 3378, 3347, -80, -80, -318, -318, -318, -318, 263, 1654, + 1220, 1654, 1220, 1220, -44, 68, 258, 1220, 259, 2994, + 43, 266, 3252, -318, -318, -318, -318, -318, -318, 1220, + 265, -318, -318, -318, -318, -318, -318, -318, 2510, 1708, + 1752, 1796, -318, -318, 1220, 1220, -318, -318, -318, -318, + -318, -318, -318, -318, -318, -318, 3111, 1220, 315, 2544, + -318, 3265, 270, 2578, 311, -318, -318, 3265, -318, 276, + -318, 1220, -318, 2612, 275, 273, 277, 1220, 280, 1220, + 284, 1220, 47, 2646, 1220, 3265, 1654, 286, 968, 1654, + 1220, 297, 58, -318, 1220, -318, -318, 292, 299, -318, + 300, -318, 307, -318, -318, 2680, -318, -318, 308, -318, + 2714, 1220, -318, 76, 294, 304, 309, -318, 1654, 1654, + 84, -318, -318, -318, -318, -318, -318, -318 }; const short parser::yydefact_[] = { - 3, 12, 13, 0, 0, 0, 0, 0, 258, 257, - 0, 2, 7, 8, 9, 14, 15, 0, 260, 259, - 0, 0, 0, 0, 0, 1, 4, 5, 6, 195, - 10, 11, 262, 0, 195, 195, 0, 193, 194, 0, - 0, 0, 0, 0, 0, 16, 0, 0, 0, 17, - 191, 192, 270, 269, 0, 261, 266, 268, 196, 197, - 198, 199, 200, 201, 202, 18, 19, 0, 0, 0, + 3, 12, 13, 0, 0, 0, 0, 0, 0, 259, + 258, 0, 2, 7, 8, 9, 14, 15, 0, 261, + 260, 0, 0, 0, 0, 0, 0, 1, 4, 5, + 6, 196, 10, 11, 263, 0, 196, 196, 196, 0, + 194, 195, 0, 0, 0, 0, 0, 0, 0, 16, + 0, 0, 0, 0, 17, 192, 193, 271, 270, 0, + 262, 267, 269, 197, 198, 199, 200, 201, 202, 203, + 18, 19, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 250, 251, 252, 253, 0, 0, - 0, 0, 0, 0, 0, 0, 53, 0, 0, 0, - 257, 44, 49, 0, 45, 20, 21, 22, 23, 24, - 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, - 35, 36, 37, 38, 39, 40, 41, 42, 43, 0, - 0, 0, 239, 240, 181, 182, 0, 0, 0, 0, - 0, 0, 0, 241, 242, 0, 243, 244, 245, 246, - 247, 0, 265, 267, 51, 47, 0, 255, 249, 0, + 251, 252, 253, 254, 0, 0, 0, 0, 0, 0, + 0, 0, 54, 0, 0, 0, 258, 45, 50, 0, + 46, 21, 22, 23, 24, 25, 26, 27, 28, 29, + 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, + 40, 41, 42, 43, 44, 0, 0, 0, 240, 241, + 182, 183, 0, 0, 0, 0, 0, 0, 0, 242, + 243, 0, 244, 245, 246, 247, 248, 0, 266, 268, + 52, 48, 0, 256, 250, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 264, 0, - 90, 91, 92, 129, 130, 131, 132, 133, 134, 135, - 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, - 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, - 156, 157, 0, 158, 159, 160, 161, 162, 163, 164, - 165, 166, 0, 167, 168, 169, 170, 171, 172, 173, - 174, 72, 0, 0, 0, 57, 0, 0, 0, 0, - 0, 83, 84, 85, 87, 0, 204, 204, 0, 0, + 0, 0, 0, 0, 265, 0, 91, 92, 93, 130, + 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, + 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, + 151, 152, 153, 154, 155, 156, 157, 158, 0, 159, + 160, 161, 162, 163, 164, 165, 166, 167, 0, 168, + 169, 170, 171, 172, 173, 174, 175, 73, 0, 0, + 0, 58, 0, 0, 0, 0, 0, 84, 85, 86, + 88, 0, 205, 205, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 240, 241, 107, 109, + 53, 49, 62, 63, 64, 59, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 239, 240, 106, 108, 52, 48, 61, 62, 63, 58, - 59, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 107, 109, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 183, 184, 0, - 204, 0, 50, 46, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 248, 226, 180, - 175, 0, 178, 179, 177, 0, 176, 254, 67, 0, + 108, 110, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 184, 185, 0, 205, 0, 51, 47, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 249, 227, 181, 176, 0, 179, 180, + 178, 0, 177, 255, 68, 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, 54, 55, 56, 0, 0, 0, - 82, 81, 86, 206, 0, 203, 0, 0, 204, 0, + 55, 56, 57, 0, 0, 0, 83, 82, 87, 207, + 0, 204, 0, 0, 205, 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, 256, 236, 95, 101, 102, 103, 104, 105, - 96, 97, 98, 100, 99, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 217, 0, 0, 238, - 0, 0, 0, 122, 123, 111, 112, 113, 114, 115, - 116, 117, 118, 119, 120, 121, 124, 125, 126, 127, - 128, 237, 227, 0, 0, 0, 94, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 213, 219, 220, - 221, 222, 223, 0, 0, 229, 230, 231, 232, 233, - 234, 235, 0, 0, 0, 0, 228, 185, 204, 0, - 208, 209, 210, 211, 212, 214, 215, 216, 218, 225, - 0, 0, 73, 0, 75, 93, 0, 0, 0, 80, - 88, 205, 89, 0, 187, 204, 60, 0, 0, 0, - 0, 204, 0, 204, 0, 204, 0, 0, 0, 110, - 0, 0, 57, 0, 0, 0, 0, 224, 204, 64, - 66, 0, 203, 69, 203, 71, 203, 186, 207, 0, - 74, 76, 0, 78, 0, 204, 188, 0, 0, 0, - 0, 263, 0, 0, 0, 189, 65, 68, 70, 77, - 79, 190 + 0, 0, 0, 0, 0, 0, 0, 0, 257, 237, + 96, 102, 103, 104, 105, 106, 97, 98, 99, 101, + 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 218, 0, 0, 239, 0, 0, 0, 123, + 124, 112, 113, 114, 115, 116, 117, 118, 119, 120, + 121, 122, 125, 126, 127, 128, 129, 238, 228, 0, + 0, 0, 95, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 214, 220, 221, 222, 223, 224, 0, + 0, 230, 231, 232, 233, 234, 235, 236, 0, 0, + 0, 0, 229, 186, 205, 0, 209, 210, 211, 212, + 213, 215, 216, 217, 219, 226, 0, 0, 74, 0, + 76, 94, 0, 0, 0, 81, 89, 206, 90, 0, + 188, 205, 61, 0, 0, 0, 0, 205, 0, 205, + 0, 205, 0, 0, 0, 111, 0, 0, 58, 0, + 0, 0, 0, 225, 205, 65, 67, 0, 204, 70, + 204, 72, 204, 187, 208, 0, 75, 77, 0, 79, + 0, 205, 189, 0, 0, 0, 0, 264, 0, 0, + 0, 190, 66, 69, 71, 78, 80, 191 }; const short parser::yypgoto_[] = { - -373, -373, -373, 378, 385, 387, -373, -373, -22, 297, - -373, -373, -373, -30, -121, -373, -373, -373, -373, -373, - -373, -373, -373, -373, -373, -373, -373, -373, -373, -373, - -373, -373, -373, -373, -373, -373, -373, -373, 622, -373, - -232, -230, -216, -373, -373, -373, -373, -373, -373, -46, - -40, -144, -104, 120, 361, -373, -224, -372, -373, -373, - -373, -373, -373, -373, -34, -373, -373, -373, -373, -373, - 14, 54, 100, 117, 126, 135, -373, -373, 152, 200, - -373, 231, 217, -373, -373, 238, 252, 314, 335, -373, - -373, -373, 0, 6, 366, -4, -373, -373, 371, -20, - 372, 374 + -318, -318, -318, 371, 379, 385, -318, -318, -56, 289, + -318, -318, -318, -2, -129, -318, -318, -318, -318, -318, + -318, -318, -318, -318, -318, -318, -318, -318, -318, -318, + -318, -318, -318, -318, -318, -318, -318, -318, 611, -318, + -239, -236, -230, -318, -318, -318, -318, -318, -318, -49, + -38, -93, -70, 171, 354, -318, 59, -317, -318, -318, + -318, -318, -318, -318, -12, -318, -318, -318, -318, -318, + 23, 49, 118, 140, 153, 162, -318, -318, 179, 200, + -318, 232, 243, -318, -318, 281, 303, 319, 357, -318, + -318, -318, 0, 6, 356, 4, -318, -318, 367, -28, + 368, 369 }; const short parser::yydefgoto_[] = { - 0, 10, 11, 12, 13, 14, 15, 16, 101, 102, - 156, 103, 104, 105, 353, 106, 107, 108, 109, 110, - 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, - 121, 122, 123, 124, 125, 126, 127, 128, 363, 496, - 129, 130, 131, 180, 181, 182, 183, 184, 185, 186, - 187, 134, 135, 36, 37, 58, 531, 365, 188, 189, - 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, - 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, - 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, - 220, 393, 221, 222, 223, 224, 225, 226, 227, 228, - 229, 230 + 0, 11, 12, 13, 14, 15, 16, 17, 107, 108, + 162, 109, 110, 111, 359, 112, 113, 114, 115, 116, + 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, + 127, 128, 129, 130, 131, 132, 133, 134, 369, 502, + 135, 136, 137, 186, 187, 188, 189, 190, 191, 192, + 193, 140, 141, 39, 40, 63, 537, 371, 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, 221, 222, 223, 224, 225, + 226, 399, 227, 228, 229, 230, 231, 232, 233, 234, + 235, 236 }; const short parser::yytable_[] = { - 17, 297, 132, 354, 22, 355, 23, 24, 133, 20, - 21, 17, 49, 8, 136, 441, 65, 66, 33, 356, - 25, 132, 364, 366, 62, 132, 447, 133, 29, 38, - 30, 133, 238, 136, 38, 38, 31, 136, 32, 32, - 60, 298, 57, 51, 34, 155, 42, 39, 150, 233, - 35, 43, 260, 260, 151, 46, 240, 132, 261, 261, - 43, 47, 137, 133, 136, 136, 43, 150, 297, 136, - 448, 150, 239, 151, 450, 452, 405, 151, 44, 451, - 451, 137, 477, 249, 9, 137, 392, 451, 251, 250, - 1, 2, 3, 4, 5, 504, 6, 7, 150, 150, - 451, 537, 138, 150, 151, 151, 451, 45, 298, 151, - 132, 48, 137, 137, 231, 546, 133, 137, 297, 297, - 451, 138, 136, 8, 232, 138, 555, 561, 152, 153, - 260, 451, 451, 234, 303, 259, 261, 8, 235, 532, - 236, 534, 136, 536, 454, 299, 18, 19, 139, 259, - 317, 151, 138, 138, 40, 41, 150, 138, 298, 298, - 237, 241, 151, 242, 243, 140, 248, 139, 52, 53, - 137, 139, 246, 318, 141, 247, 326, 345, 346, 347, - 252, 297, 151, 142, 140, 253, -259, 254, 140, 260, - 137, 255, 256, 141, 9, 261, 301, 141, 139, 139, - 143, 136, 142, 139, 266, 257, 142, 18, 100, 258, - 138, 267, 299, 297, 271, 140, 140, 268, 151, 143, - 140, 298, 269, 143, 141, 141, 270, 272, 273, 141, - 138, 330, 331, 142, 142, 150, 358, 54, 142, 274, - 275, 151, 276, 32, 55, 277, 56, 57, 144, 137, - 143, 143, 300, 298, 516, 143, 139, 343, 344, 345, - 346, 347, 299, 299, 304, 145, 305, 144, 151, 151, - 306, 144, 307, 140, 308, 309, 139, 310, 311, 312, - 313, 526, 141, 314, 145, 315, 146, 351, 145, 138, - 354, 142, 355, 140, 327, 349, 153, 360, 144, 144, - 147, 406, 141, 144, 547, 146, 356, 361, 143, 146, - 367, 142, 368, 369, 386, 262, 263, 370, 387, 147, - 145, 554, 388, 147, 416, 299, 389, 392, 322, 444, - 446, 151, 478, 505, 520, 139, 146, 146, 330, 331, - 500, 146, 334, 335, 336, 337, 338, 339, 502, 442, - 147, 147, 140, 508, 522, 147, 144, 299, 524, 525, - 528, 141, 148, 151, 343, 344, 345, 346, 347, 455, - 142, 529, 530, 145, 533, 535, 323, 541, 545, 451, - 548, 148, 549, 149, 556, 148, 550, 143, 552, 26, - 557, -247, 558, 325, 146, -247, 27, 132, 28, 132, - 265, 542, 149, 133, 50, 133, 149, 324, 147, 136, - 59, 136, 148, 148, 146, 61, 63, 148, 64, 499, - 300, 492, 0, 494, -247, 0, 0, -247, 147, 0, - 0, 0, 0, 149, 149, 144, 0, 0, 149, 0, - 0, 0, -239, 150, 0, 150, -239, 0, 498, 151, - 0, 151, 357, 0, 0, 0, 0, 137, 0, 137, - 0, 0, 0, 0, 0, -247, -247, -240, 0, 0, - 148, -240, 0, 146, 132, -239, 260, 132, -239, 0, - 133, 0, 261, 133, 0, 0, 136, 147, 136, 136, - 148, 149, 343, 344, 345, 346, 347, 138, 540, 138, - -240, 543, 0, -240, 0, 0, 132, 132, 0, 0, - 0, 149, 133, 133, 0, 0, -239, -239, 136, 136, - 150, 0, 150, 150, 0, 0, 151, 0, 151, 151, - 559, 560, 0, 0, 137, 0, 137, 137, 0, 0, - 0, -240, -240, 139, 0, 139, 0, 0, 0, 148, - -241, 0, 150, 150, -241, 0, 0, -242, 151, 151, - 140, -242, 140, 0, 0, 0, 137, 137, 0, 141, - 149, 141, 0, 0, 138, 0, 138, 138, 142, 0, - 142, 0, 0, -241, 0, 0, -241, 0, 0, 0, - -242, 0, 0, -242, 0, 143, 0, 143, 0, 0, - 0, 0, 0, 0, 0, 0, 138, 138, 0, 0, - 0, 83, 0, 0, 0, 8, 0, 0, 0, 0, - 139, 0, 139, 139, -241, -241, 0, 0, 0, 0, - 0, -242, -242, 0, 0, 0, 0, 140, 0, 140, - 140, 0, 0, 144, 282, 144, 141, 348, 141, 141, - 0, 0, 139, 139, 0, 142, 0, 142, 142, 0, - 145, 0, 145, 0, 0, 0, 0, 0, 0, 140, - 140, 0, 143, 0, 143, 143, 0, 0, 141, 141, - 0, 146, 0, 146, 0, 18, 100, 142, 142, 0, - 179, 0, 0, 0, 0, 147, 0, 147, 0, 0, - 0, 0, 245, 0, 143, 143, 0, 0, 0, 83, - 0, 0, 0, 8, 84, 85, 86, 87, 0, 0, - 144, 0, 144, 144, 0, 89, 0, 0, 0, 0, - 0, 90, 91, 92, 93, 94, 95, 145, 321, 357, - 145, 0, 97, 0, 0, 0, 278, 279, 0, 280, - 281, 0, 144, 144, 0, 0, 0, 148, 146, 148, - 146, 146, 0, 0, 0, 0, 0, 83, 0, 145, - 145, 8, 147, 0, 147, 147, 0, -243, 149, 0, - 149, -243, 0, 18, 100, 0, 0, 0, 152, 153, - 146, 146, 0, 316, 0, 0, 319, 320, 0, 0, - 282, 0, 0, 283, 147, 147, 0, 0, 284, 285, - -243, -244, 0, -243, 0, -244, 0, -245, 0, 0, - 0, -245, 286, 287, 288, 289, 290, 291, 292, 293, - 294, 295, 296, 0, 148, 0, 148, 148, 0, 0, - 0, 18, 100, 0, -244, 0, 0, -244, 0, 0, - -245, -243, -243, -245, 350, 149, 352, 149, 149, 359, - 0, 0, 0, 0, 0, 0, 148, 148, 0, 0, - 0, 0, 0, 0, 371, 372, 373, 374, 375, 376, - 377, 378, 0, 0, 0, -244, -244, 149, 149, 0, - 0, -245, -245, 379, 380, 381, 382, 383, 384, 385, - 0, 0, 0, 0, 391, 0, 0, 0, 394, 395, - 396, 397, 398, 399, 400, 401, 402, 403, 404, 0, - 0, 0, 0, 0, 0, 0, 407, 408, 409, 410, - 411, 412, 413, 414, 415, 0, 417, 418, 0, 0, - 83, 0, 0, 421, 8, 0, 0, 0, 0, 0, - 0, 422, 423, 424, 425, 426, 427, 428, 429, 430, - 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, - 0, 0, 0, 282, 0, 0, 283, 0, 0, 0, - 0, 284, 285, 0, 0, 0, 0, 0, 0, 453, - -246, 0, 456, 0, -246, 286, 287, 288, 289, 290, - 291, 292, 293, 294, 295, 296, 0, 0, 472, 473, - 474, 475, 378, 83, 18, 100, 0, 8, 84, 85, - 86, 87, 0, -246, 83, 0, -246, 0, 8, 89, - 0, 0, 0, 0, 0, 90, 91, 92, 93, 94, - 95, 0, 490, 0, 0, 0, 97, 0, 0, 0, - 0, 0, 0, 0, 98, 99, 0, 282, 0, 0, - 283, 0, 0, 0, -246, -246, 493, 0, 495, 497, - 83, 0, 0, 501, 8, 84, 85, 86, 87, 0, - 157, 0, 0, 0, 0, 507, 89, 18, 100, 0, - 0, 0, 90, 91, 92, 93, 94, 95, 18, 100, - 0, 517, 0, 97, 83, 52, 53, 158, 8, 84, - 85, 86, 87, 519, 159, 160, 161, 162, 163, 164, - 89, 165, 166, 167, 168, 169, 90, 91, 92, 93, - 94, 95, 170, 171, 0, 0, 0, 172, 0, 0, - 539, 173, 0, 244, 18, 100, 544, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 174, 175, 0, - 0, 157, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 176, 0, 0, 177, 18, 100, - 32, 55, 178, 56, 57, 83, 52, 53, 158, 8, - 84, 85, 86, 87, 0, 159, 160, 161, 162, 163, - 164, 89, 165, 166, 167, 168, 169, 90, 91, 92, - 93, 94, 95, 170, 171, 464, 0, 0, 390, 317, - 0, 329, 173, 0, 330, 331, 332, 333, 334, 335, - 336, 337, 338, 339, 0, 0, 0, 0, 174, 175, - 0, 0, 157, 0, 0, 0, 0, 340, 341, 342, - 343, 344, 345, 346, 347, 176, 0, 0, 177, 18, - 100, 32, 55, 178, 56, 57, 83, 52, 53, 158, - 8, 84, 85, 86, 87, 0, 159, 160, 161, 162, - 163, 164, 89, 165, 166, 167, 168, 169, 90, 91, - 92, 93, 94, 95, 170, 171, 465, 0, 0, 172, - 0, 0, 329, 173, 0, 330, 331, 332, 333, 334, - 335, 336, 337, 338, 339, 0, 0, 0, 0, 174, - 175, 0, 0, 157, 0, 0, 0, 0, 340, 341, - 342, 343, 344, 345, 346, 347, 176, 0, 0, 177, - 18, 100, 32, 55, 178, 56, 57, 83, 52, 53, - 158, 8, 84, 85, 86, 87, 0, 159, 160, 161, - 162, 163, 164, 89, 165, 166, 167, 168, 169, 90, - 91, 92, 93, 94, 95, 170, 171, 466, 0, 0, - 390, 0, 0, 329, 173, 0, 330, 331, 332, 333, - 334, 335, 336, 337, 338, 339, 0, 0, 0, 0, - 174, 175, 0, 0, 0, 0, 0, 0, 0, 340, - 341, 342, 343, 344, 345, 346, 347, 176, 67, 0, - 177, 18, 100, 32, 55, 178, 56, 57, 68, 0, - 0, 69, 70, 0, 71, 72, 73, 74, 0, 75, - 76, 77, 78, 79, 80, 81, 82, 83, 0, 0, - 0, 8, 84, 85, 86, 87, 88, 0, 0, 0, - 0, 0, 0, 89, 0, 0, 0, 0, 0, 90, - 91, 92, 93, 94, 95, 0, 0, 0, 48, 96, - 97, 67, 0, 0, 0, 0, 0, 0, 98, 99, - 0, 68, 0, 0, 69, 70, 0, 71, 72, 73, - 74, 0, 75, 76, 77, 78, 79, 80, 81, 82, - 83, 0, 0, 0, 8, 84, 85, 86, 87, 88, - 0, 18, 100, 0, 0, 0, 89, 0, 0, 0, - 0, 0, 90, 91, 92, 93, 94, 95, 0, 0, - 0, 48, 264, 97, 154, 0, 0, 0, 0, 0, - 0, 98, 99, 68, 0, 0, 69, 70, 0, 71, - 72, 73, 74, 0, 75, 76, 77, 78, 79, 80, - 81, 82, 83, 0, 0, 0, 8, 84, 85, 86, - 87, 88, 0, 0, 18, 100, 0, 0, 89, 0, - 0, 0, 0, 0, 90, 91, 92, 93, 94, 95, - 0, 0, 0, 48, 0, 97, 302, 0, 0, 0, - 0, 0, 0, 98, 99, 68, 0, 0, 69, 70, - 0, 71, 72, 73, 74, 0, 75, 76, 77, 78, - 79, 80, 81, 82, 83, 0, 0, 0, 8, 84, - 85, 86, 87, 88, 0, 0, 18, 100, 0, 0, - 89, 0, 0, 0, 0, 0, 90, 91, 92, 93, - 94, 95, 0, 0, 0, 48, 0, 97, 0, 0, - 0, 0, 0, 0, 0, 98, 99, 68, 0, 0, - 69, 70, 0, 71, 72, 73, 74, 0, 75, 76, - 77, 78, 79, 80, 81, 82, 83, 0, 0, 0, - 8, 84, 85, 86, 87, 88, 0, 0, 18, 100, - 0, 0, 89, 0, 0, 0, 0, 0, 90, 91, - 92, 93, 94, 95, 0, 0, 0, 48, 0, 97, - 0, 0, 0, 0, 0, 0, 419, 98, 99, 0, - 0, 420, 0, 0, 0, 0, 329, 0, 0, 330, - 331, 332, 333, 334, 335, 336, 337, 338, 339, 0, + 18, 9, 360, 447, 138, 361, 24, 25, 26, 21, + 22, 362, 18, 453, 9, 139, 244, 161, 46, 23, + 67, 239, 34, 47, 138, 50, 62, 35, 138, 27, + 47, 41, 351, 352, 353, 139, 41, 41, 41, 139, + 31, 142, -240, 254, 54, 32, -240, 56, 70, 71, + 72, 33, 65, 156, 246, 266, 266, 454, 303, 157, + 138, 142, 34, 51, 52, 142, 267, 267, 47, 47, + 42, 139, 10, 156, 398, -240, 143, 156, -240, 157, + 48, 304, 456, 157, 19, 106, 245, 457, 36, 255, + 19, 20, 142, 142, 257, 256, 143, 142, 458, 49, + 143, 37, 144, 457, 156, 156, 309, 483, 38, 156, + 157, 157, 457, 138, 510, 157, -240, -240, 543, 457, + 265, 323, 144, 457, 139, 303, 144, 143, 143, 552, + 158, 159, 143, 266, 457, 1, 2, 3, 4, 5, + 53, 6, 7, 8, 267, -248, 237, 561, 304, -248, + 142, 305, 457, 144, 144, 567, 238, 157, 144, 240, + 457, 241, 156, 349, 350, 351, 352, 353, 157, 9, + 142, 145, 242, 243, 306, 303, 303, 247, -248, 324, + 248, -248, 332, 252, 253, 143, 249, 258, 157, 259, + 260, 145, 266, 146, -260, 145, 261, 262, 304, 304, + 538, 263, 540, 267, 542, 143, 147, 43, 44, 45, + 265, 144, 264, 146, 272, 148, 306, 146, 305, -248, + -248, 273, 145, 145, 157, 274, 147, 145, 275, 142, + 147, 144, 149, 277, 276, 148, 307, 278, 303, 148, + 10, 156, 364, 279, 146, 146, 280, 157, 281, 146, + 57, 58, 149, 150, 282, 283, 149, 147, 147, 310, + 311, 304, 147, 312, 143, 313, 148, 148, 305, 305, + 303, 148, 314, 150, 157, 157, 315, 150, 357, 316, + 145, 317, 318, 149, 149, 319, 320, 321, 149, 360, + 144, 333, 361, 304, 159, 373, 151, 355, 362, 366, + 145, 367, 146, 374, 150, 150, 375, 412, 392, 150, + 376, 370, 372, -241, 393, 147, 151, -241, 394, 59, + 151, 395, 146, 398, 148, 34, 60, 422, 61, 62, + 450, 305, 452, 484, 152, 147, 511, 157, 506, 508, + 514, 149, 526, 530, 148, 534, -241, 268, 269, -241, + 528, 531, 151, 535, 152, 448, 153, 536, 152, 145, + 539, 328, 150, 305, 541, 411, 547, 551, 457, 157, + 554, 555, 154, -242, 562, 461, 153, -242, 556, 558, + 153, 146, 329, 28, 563, 152, 152, -241, -241, 564, + 152, 29, 154, 498, 147, 500, 154, 30, 271, 548, + 138, 55, 138, 148, 64, 151, -242, 153, 153, -242, + 155, 139, 153, 139, 330, 66, 68, 69, 0, 0, + 149, 0, 0, 154, 154, 331, 0, 0, 154, 0, + 155, -243, 0, 460, 155, -243, 0, 142, 0, 142, + 0, 150, 0, 152, 0, 0, 0, -242, -242, 156, + 0, 156, 0, 505, 504, 157, 89, 157, 0, 0, + 9, 155, 155, 152, -243, 153, 155, -243, 0, 0, + 546, 0, 143, 549, 143, 0, 0, 138, 0, 266, + 138, 154, -244, 0, 363, 153, -244, 0, 139, 288, + 267, 139, 354, 0, 0, 0, 0, 0, 144, 0, + 144, 154, 565, 566, 0, -243, -243, 0, 0, 138, + 138, 0, 0, 0, 142, -244, 142, 142, -244, 155, + 139, 139, 152, 0, 0, 0, 156, 0, 156, 156, + 19, 106, 157, 0, 157, 157, 0, 0, 0, 155, + 0, 0, 0, 522, 153, 0, 142, 142, 0, 143, + -245, 143, 143, 0, -245, 0, -244, -244, 156, 156, + 154, 0, 0, 0, 157, 157, 0, 145, 0, 145, + 532, 0, 0, 0, 0, 144, 0, 144, 144, 0, + 0, 143, 143, -245, 0, 0, -245, 0, 0, 146, + 0, 146, 0, 553, 0, 0, 0, 0, 155, 89, + 0, 0, 147, 9, 147, 0, 0, 144, 144, 0, + 560, 148, -246, 148, 0, 0, -246, 0, 0, 0, + 0, 0, 0, 0, -245, -245, 0, 0, 149, 0, + 149, 0, 288, 0, 0, 289, 0, 0, 0, -247, + 290, 291, 0, -247, 145, -246, 145, 145, -246, 150, + 0, 150, 0, 0, 292, 293, 294, 295, 296, 297, + 298, 299, 300, 301, 302, 0, 146, 0, 146, 146, + 0, 0, -247, 19, 106, -247, 145, 145, 0, 147, + 0, 147, 147, 0, 0, 185, -246, -246, 148, 89, + 148, 148, 151, 9, 151, 0, 0, 251, 146, 146, + 0, 0, 0, 0, 0, 149, 0, 149, 149, 0, + 0, 147, 147, -247, -247, 0, 0, 0, 0, 0, + 148, 148, 288, 0, 0, 289, 150, 0, 150, 150, + 152, 0, 152, 0, 0, 0, 0, 149, 149, 0, + 0, 284, 285, 0, 286, 287, 0, 336, 337, 0, + 0, 0, 153, 0, 153, 0, 0, 0, 150, 150, + 0, 0, 89, 19, 106, 0, 9, 0, 154, 151, + 154, 363, 151, 349, 350, 351, 352, 353, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 322, 0, + 0, 325, 326, 0, 0, 288, 0, 0, 289, 0, + 0, 151, 151, 290, 291, 0, 155, 152, 155, 152, + 152, 0, 0, 0, 0, 0, 0, 292, 293, 294, + 295, 296, 297, 298, 299, 300, 301, 302, 0, 153, + 0, 153, 153, 0, 0, 0, 19, 106, 0, 152, + 152, 0, 0, 0, 0, 154, 0, 154, 154, 356, + 0, 358, 0, 0, 365, 0, 0, 0, 0, 0, + 0, 153, 153, 0, 0, 0, 0, 0, 0, 377, + 378, 379, 380, 381, 382, 383, 384, 154, 154, 0, + 0, 0, 0, 155, 0, 155, 155, 0, 385, 386, + 387, 388, 389, 390, 391, 0, 0, 0, 0, 397, + 0, 0, 0, 400, 401, 402, 403, 404, 405, 406, + 407, 408, 409, 410, 0, 155, 155, 0, 0, 0, + 0, 413, 414, 415, 416, 417, 418, 419, 420, 421, + 0, 423, 424, 0, 0, 0, 0, 0, 427, 0, + 0, 0, 0, 0, 0, 0, 428, 429, 430, 431, + 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, + 442, 443, 444, 445, 446, 0, 89, 0, 0, 0, + 9, 90, 91, 92, 93, 0, 0, 0, 0, 0, + 0, 0, 95, 0, 459, 0, 0, 462, 96, 97, + 98, 99, 100, 101, 0, 327, 0, 0, 0, 103, + 0, 0, 0, 478, 479, 480, 481, 384, 0, 89, + 0, 0, 0, 9, 90, 91, 92, 93, 0, 0, + 0, 0, 0, 0, 0, 95, 0, 0, 0, 0, + 0, 96, 97, 98, 99, 100, 101, 496, 0, 0, + 19, 106, 103, 0, 0, 158, 159, 0, 0, 0, + 104, 105, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 499, 0, 501, 503, 89, 0, 0, 507, 9, + 90, 91, 92, 93, 163, 0, 0, 0, 0, 0, + 513, 95, 0, 19, 106, 0, 0, 96, 97, 98, + 99, 100, 101, 0, 0, 0, 523, 0, 103, 89, + 57, 58, 164, 9, 90, 91, 92, 93, 525, 165, + 166, 167, 168, 169, 170, 95, 171, 172, 173, 174, + 175, 96, 97, 98, 99, 100, 101, 176, 177, 0, + 0, 0, 178, 0, 0, 545, 179, 0, 250, 19, + 106, 550, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 180, 181, 0, 163, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 182, + 0, 0, 183, 19, 106, 34, 60, 184, 61, 62, + 89, 57, 58, 164, 9, 90, 91, 92, 93, 0, + 165, 166, 167, 168, 169, 170, 95, 171, 172, 173, + 174, 175, 96, 97, 98, 99, 100, 101, 176, 177, + 470, 0, 0, 396, 323, 0, 335, 179, 0, 336, + 337, 338, 339, 340, 341, 342, 343, 344, 345, 0, + 0, 0, 0, 180, 181, 0, 163, 0, 0, 0, + 0, 0, 346, 347, 348, 349, 350, 351, 352, 353, + 182, 0, 0, 183, 19, 106, 34, 60, 184, 61, + 62, 89, 57, 58, 164, 9, 90, 91, 92, 93, + 0, 165, 166, 167, 168, 169, 170, 95, 171, 172, + 173, 174, 175, 96, 97, 98, 99, 100, 101, 176, + 177, 471, 0, 0, 178, 0, 0, 335, 179, 0, + 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, + 0, 0, 0, 0, 180, 181, 0, 163, 0, 0, + 0, 0, 0, 346, 347, 348, 349, 350, 351, 352, + 353, 182, 0, 0, 183, 19, 106, 34, 60, 184, + 61, 62, 89, 57, 58, 164, 9, 90, 91, 92, + 93, 0, 165, 166, 167, 168, 169, 170, 95, 171, + 172, 173, 174, 175, 96, 97, 98, 99, 100, 101, + 176, 177, 472, 0, 0, 396, 0, 0, 335, 179, + 0, 336, 337, 338, 339, 340, 341, 342, 343, 344, + 345, 0, 0, 0, 0, 180, 181, 0, 0, 0, + 0, 0, 0, 0, 346, 347, 348, 349, 350, 351, + 352, 353, 182, 73, 0, 183, 19, 106, 34, 60, + 184, 61, 62, 0, 74, 0, 0, 75, 76, 0, + 77, 78, 79, 80, 0, 81, 82, 83, 84, 85, + 86, 87, 88, 89, 0, 0, 0, 9, 90, 91, + 92, 93, 94, 0, 0, 0, 0, 0, 0, 95, + 0, 0, 0, 0, 0, 96, 97, 98, 99, 100, + 101, 0, 0, 0, 53, 102, 103, 73, 0, 0, + 0, 0, 0, 0, 104, 105, 0, 0, 74, 0, + 0, 75, 76, 0, 77, 78, 79, 80, 0, 81, + 82, 83, 84, 85, 86, 87, 88, 89, 0, 0, + 0, 9, 90, 91, 92, 93, 94, 19, 106, 0, + 0, 0, 0, 95, 0, 0, 0, 0, 0, 96, + 97, 98, 99, 100, 101, 0, 0, 0, 53, 270, + 103, 160, 0, 0, 0, 0, 0, 0, 104, 105, + 0, 74, 0, 0, 75, 76, 0, 77, 78, 79, + 80, 0, 81, 82, 83, 84, 85, 86, 87, 88, + 89, 0, 0, 0, 9, 90, 91, 92, 93, 94, + 0, 19, 106, 0, 0, 0, 95, 0, 0, 0, + 0, 0, 96, 97, 98, 99, 100, 101, 0, 0, + 0, 53, 0, 103, 308, 0, 0, 0, 0, 0, + 0, 104, 105, 0, 74, 0, 0, 75, 76, 0, + 77, 78, 79, 80, 0, 81, 82, 83, 84, 85, + 86, 87, 88, 89, 0, 0, 0, 9, 90, 91, + 92, 93, 94, 0, 19, 106, 0, 0, 0, 95, + 0, 0, 0, 0, 0, 96, 97, 98, 99, 100, + 101, 0, 0, 0, 53, 0, 103, 0, 0, 0, + 0, 0, 0, 0, 104, 105, 74, 0, 0, 75, + 76, 0, 77, 78, 79, 80, 0, 81, 82, 83, + 84, 85, 86, 87, 88, 89, 0, 0, 0, 9, + 90, 91, 92, 93, 94, 0, 0, 19, 106, 0, + 0, 95, 0, 0, 0, 0, 0, 96, 97, 98, + 99, 100, 101, 0, 0, 0, 53, 0, 103, 0, + 0, 0, 0, 0, 0, 425, 104, 105, 0, 0, + 426, 0, 0, 0, 0, 335, 0, 0, 336, 337, + 338, 339, 340, 341, 342, 343, 344, 345, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, + 106, 346, 347, 348, 349, 350, 351, 352, 353, 516, + 0, 0, 0, 0, 517, 0, 0, 0, 0, 335, + 0, 0, 336, 337, 338, 339, 340, 341, 342, 343, + 344, 345, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 346, 347, 348, 349, 350, + 351, 352, 353, 518, 0, 0, 0, 0, 519, 0, + 0, 0, 0, 335, 0, 0, 336, 337, 338, 339, + 340, 341, 342, 343, 344, 345, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 346, + 347, 348, 349, 350, 351, 352, 353, 520, 0, 0, + 0, 0, 521, 0, 0, 0, 0, 335, 0, 0, + 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 18, 100, 340, 341, 342, 343, 344, 345, 346, 347, - 510, 0, 0, 0, 0, 511, 0, 0, 0, 0, - 329, 0, 0, 330, 331, 332, 333, 334, 335, 336, - 337, 338, 339, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 340, 341, 342, 343, - 344, 345, 346, 347, 512, 0, 0, 0, 0, 513, - 0, 0, 0, 0, 329, 0, 0, 330, 331, 332, - 333, 334, 335, 336, 337, 338, 339, 0, 0, 0, + 0, 449, 0, 346, 347, 348, 349, 350, 351, 352, + 353, 335, 0, 0, 336, 337, 338, 339, 340, 341, + 342, 343, 344, 345, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 451, 0, 346, 347, 348, + 349, 350, 351, 352, 353, 335, 0, 0, 336, 337, + 338, 339, 340, 341, 342, 343, 344, 345, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 455, + 0, 346, 347, 348, 349, 350, 351, 352, 353, 335, + 0, 0, 336, 337, 338, 339, 340, 341, 342, 343, + 344, 345, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 463, 0, 346, 347, 348, 349, 350, + 351, 352, 353, 335, 0, 0, 336, 337, 338, 339, + 340, 341, 342, 343, 344, 345, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 464, 0, 346, + 347, 348, 349, 350, 351, 352, 353, 335, 0, 0, + 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 340, 341, 342, 343, 344, 345, 346, 347, 514, 0, - 0, 0, 0, 515, 0, 0, 0, 0, 329, 0, - 0, 330, 331, 332, 333, 334, 335, 336, 337, 338, - 339, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 443, 0, 340, 341, 342, 343, 344, 345, - 346, 347, 329, 0, 0, 330, 331, 332, 333, 334, - 335, 336, 337, 338, 339, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 445, 0, 340, 341, - 342, 343, 344, 345, 346, 347, 329, 0, 0, 330, - 331, 332, 333, 334, 335, 336, 337, 338, 339, 0, + 0, 465, 0, 346, 347, 348, 349, 350, 351, 352, + 353, 335, 0, 0, 336, 337, 338, 339, 340, 341, + 342, 343, 344, 345, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 466, 0, 346, 347, 348, + 349, 350, 351, 352, 353, 335, 0, 0, 336, 337, + 338, 339, 340, 341, 342, 343, 344, 345, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 467, + 0, 346, 347, 348, 349, 350, 351, 352, 353, 335, + 0, 0, 336, 337, 338, 339, 340, 341, 342, 343, + 344, 345, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 468, 0, 346, 347, 348, 349, 350, + 351, 352, 353, 335, 0, 0, 336, 337, 338, 339, + 340, 341, 342, 343, 344, 345, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 486, 0, 346, + 347, 348, 349, 350, 351, 352, 353, 335, 0, 0, + 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 449, 0, 340, 341, 342, 343, 344, 345, 346, 347, - 329, 0, 0, 330, 331, 332, 333, 334, 335, 336, - 337, 338, 339, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 457, 0, 340, 341, 342, 343, - 344, 345, 346, 347, 329, 0, 0, 330, 331, 332, - 333, 334, 335, 336, 337, 338, 339, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 458, 0, - 340, 341, 342, 343, 344, 345, 346, 347, 329, 0, - 0, 330, 331, 332, 333, 334, 335, 336, 337, 338, - 339, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 459, 0, 340, 341, 342, 343, 344, 345, - 346, 347, 329, 0, 0, 330, 331, 332, 333, 334, - 335, 336, 337, 338, 339, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 460, 0, 340, 341, - 342, 343, 344, 345, 346, 347, 329, 0, 0, 330, - 331, 332, 333, 334, 335, 336, 337, 338, 339, 0, + 0, 487, 0, 346, 347, 348, 349, 350, 351, 352, + 353, 335, 0, 0, 336, 337, 338, 339, 340, 341, + 342, 343, 344, 345, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 488, 0, 346, 347, 348, + 349, 350, 351, 352, 353, 335, 0, 0, 336, 337, + 338, 339, 340, 341, 342, 343, 344, 345, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 489, + 0, 346, 347, 348, 349, 350, 351, 352, 353, 335, + 0, 0, 336, 337, 338, 339, 340, 341, 342, 343, + 344, 345, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 490, 0, 346, 347, 348, 349, 350, + 351, 352, 353, 335, 0, 0, 336, 337, 338, 339, + 340, 341, 342, 343, 344, 345, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 491, 0, 346, + 347, 348, 349, 350, 351, 352, 353, 335, 0, 0, + 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 461, 0, 340, 341, 342, 343, 344, 345, 346, 347, - 329, 0, 0, 330, 331, 332, 333, 334, 335, 336, - 337, 338, 339, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 462, 0, 340, 341, 342, 343, - 344, 345, 346, 347, 329, 0, 0, 330, 331, 332, - 333, 334, 335, 336, 337, 338, 339, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 480, 0, - 340, 341, 342, 343, 344, 345, 346, 347, 329, 0, - 0, 330, 331, 332, 333, 334, 335, 336, 337, 338, - 339, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 481, 0, 340, 341, 342, 343, 344, 345, - 346, 347, 329, 0, 0, 330, 331, 332, 333, 334, - 335, 336, 337, 338, 339, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 482, 0, 340, 341, - 342, 343, 344, 345, 346, 347, 329, 0, 0, 330, - 331, 332, 333, 334, 335, 336, 337, 338, 339, 0, + 0, 492, 0, 346, 347, 348, 349, 350, 351, 352, + 353, 335, 0, 0, 336, 337, 338, 339, 340, 341, + 342, 343, 344, 345, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 493, 0, 346, 347, 348, + 349, 350, 351, 352, 353, 335, 0, 0, 336, 337, + 338, 339, 340, 341, 342, 343, 344, 345, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 494, + 0, 346, 347, 348, 349, 350, 351, 352, 353, 335, + 0, 0, 336, 337, 338, 339, 340, 341, 342, 343, + 344, 345, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 495, 0, 346, 347, 348, 349, 350, + 351, 352, 353, 335, 0, 0, 336, 337, 338, 339, + 340, 341, 342, 343, 344, 345, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 425, 0, 346, + 347, 348, 349, 350, 351, 352, 353, 335, 0, 0, + 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 483, 0, 340, 341, 342, 343, 344, 345, 346, 347, - 329, 0, 0, 330, 331, 332, 333, 334, 335, 336, - 337, 338, 339, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 484, 0, 340, 341, 342, 343, - 344, 345, 346, 347, 329, 0, 0, 330, 331, 332, - 333, 334, 335, 336, 337, 338, 339, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 485, 0, - 340, 341, 342, 343, 344, 345, 346, 347, 329, 0, - 0, 330, 331, 332, 333, 334, 335, 336, 337, 338, - 339, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 486, 0, 340, 341, 342, 343, 344, 345, - 346, 347, 329, 0, 0, 330, 331, 332, 333, 334, - 335, 336, 337, 338, 339, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 487, 0, 340, 341, - 342, 343, 344, 345, 346, 347, 329, 0, 0, 330, - 331, 332, 333, 334, 335, 336, 337, 338, 339, 0, + 0, 515, 0, 346, 347, 348, 349, 350, 351, 352, + 353, 335, 0, 0, 336, 337, 338, 339, 340, 341, + 342, 343, 344, 345, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 527, 0, 346, 347, 348, + 349, 350, 351, 352, 353, 335, 0, 0, 336, 337, + 338, 339, 340, 341, 342, 343, 344, 345, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 529, + 0, 346, 347, 348, 349, 350, 351, 352, 353, 335, + 0, 0, 336, 337, 338, 339, 340, 341, 342, 343, + 344, 345, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 533, 0, 346, 347, 348, 349, 350, + 351, 352, 353, 335, 0, 0, 336, 337, 338, 339, + 340, 341, 342, 343, 344, 345, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 544, 0, 346, + 347, 348, 349, 350, 351, 352, 353, 335, 0, 0, + 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 488, 0, 340, 341, 342, 343, 344, 345, 346, 347, - 329, 0, 0, 330, 331, 332, 333, 334, 335, 336, - 337, 338, 339, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 489, 0, 340, 341, 342, 343, - 344, 345, 346, 347, 329, 0, 0, 330, 331, 332, - 333, 334, 335, 336, 337, 338, 339, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 419, 0, - 340, 341, 342, 343, 344, 345, 346, 347, 329, 0, - 0, 330, 331, 332, 333, 334, 335, 336, 337, 338, - 339, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 509, 0, 340, 341, 342, 343, 344, 345, - 346, 347, 329, 0, 0, 330, 331, 332, 333, 334, - 335, 336, 337, 338, 339, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 521, 0, 340, 341, - 342, 343, 344, 345, 346, 347, 329, 0, 0, 330, - 331, 332, 333, 334, 335, 336, 337, 338, 339, 0, + 0, 557, 0, 346, 347, 348, 349, 350, 351, 352, + 353, 335, 0, 0, 336, 337, 338, 339, 340, 341, + 342, 343, 344, 345, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 559, 0, 346, 347, 348, + 349, 350, 351, 352, 353, 335, 0, 0, 336, 337, + 338, 339, 340, 341, 342, 343, 344, 345, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 523, 0, 340, 341, 342, 343, 344, 345, 346, 347, - 329, 0, 0, 330, 331, 332, 333, 334, 335, 336, - 337, 338, 339, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 527, 0, 340, 341, 342, 343, - 344, 345, 346, 347, 329, 0, 0, 330, 331, 332, - 333, 334, 335, 336, 337, 338, 339, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 538, 0, - 340, 341, 342, 343, 344, 345, 346, 347, 329, 0, - 0, 330, 331, 332, 333, 334, 335, 336, 337, 338, - 339, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 551, 0, 340, 341, 342, 343, 344, 345, - 346, 347, 329, 0, 0, 330, 331, 332, 333, 334, - 335, 336, 337, 338, 339, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 553, 0, 340, 341, - 342, 343, 344, 345, 346, 347, 329, 0, 0, 330, - 331, 332, 333, 334, 335, 336, 337, 338, 339, 0, + 0, 346, 347, 348, 349, 350, 351, 352, 353, 473, + 0, 0, 0, 0, 0, 335, 0, 0, 336, 337, + 338, 339, 340, 341, 342, 343, 344, 345, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 340, 341, 342, 343, 344, 345, 346, 347, - 467, 0, 0, 0, 0, 0, 329, 0, 0, 330, - 331, 332, 333, 334, 335, 336, 337, 338, 339, 0, + 0, 346, 347, 348, 349, 350, 351, 352, 353, 474, + 0, 0, 0, 0, 0, 335, 0, 0, 336, 337, + 338, 339, 340, 341, 342, 343, 344, 345, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 340, 341, 342, 343, 344, 345, 346, 347, - 468, 0, 0, 0, 0, 0, 329, 0, 0, 330, - 331, 332, 333, 334, 335, 336, 337, 338, 339, 0, + 0, 346, 347, 348, 349, 350, 351, 352, 353, 475, + 0, 0, 0, 0, 0, 335, 0, 0, 336, 337, + 338, 339, 340, 341, 342, 343, 344, 345, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 340, 341, 342, 343, 344, 345, 346, 347, - 469, 0, 0, 0, 0, 0, 329, 0, 0, 330, - 331, 332, 333, 334, 335, 336, 337, 338, 339, 0, + 0, 346, 347, 348, 349, 350, 351, 352, 353, 476, + 0, 0, 0, 0, 0, 335, 0, 0, 336, 337, + 338, 339, 340, 341, 342, 343, 344, 345, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 340, 341, 342, 343, 344, 345, 346, 347, - 470, 0, 0, 0, 0, 0, 329, 0, 0, 330, - 331, 332, 333, 334, 335, 336, 337, 338, 339, 0, + 0, 346, 347, 348, 349, 350, 351, 352, 353, 477, + 0, 0, 0, 0, 0, 335, 0, 0, 336, 337, + 338, 339, 340, 341, 342, 343, 344, 345, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 340, 341, 342, 343, 344, 345, 346, 347, - 471, 0, 0, 0, 0, 0, 329, 0, 0, 330, - 331, 332, 333, 334, 335, 336, 337, 338, 339, 0, + 0, 346, 347, 348, 349, 350, 351, 352, 353, 482, + 0, 0, 0, 0, 0, 335, 0, 0, 336, 337, + 338, 339, 340, 341, 342, 343, 344, 345, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 340, 341, 342, 343, 344, 345, 346, 347, - 476, 0, 0, 0, 0, 0, 329, 0, 0, 330, - 331, 332, 333, 334, 335, 336, 337, 338, 339, 0, + 0, 346, 347, 348, 349, 350, 351, 352, 353, 509, + 0, 0, 0, 0, 0, 335, 0, 0, 336, 337, + 338, 339, 340, 341, 342, 343, 344, 345, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 340, 341, 342, 343, 344, 345, 346, 347, - 503, 0, 0, 0, 0, 0, 329, 0, 0, 330, - 331, 332, 333, 334, 335, 336, 337, 338, 339, 0, + 0, 346, 347, 348, 349, 350, 351, 352, 353, 469, + 0, 0, 0, 0, 335, 0, 0, 336, 337, 338, + 339, 340, 341, 342, 343, 344, 345, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 340, 341, 342, 343, 344, 345, 346, 347, - 463, 0, 0, 0, 0, 329, 0, 0, 330, 331, - 332, 333, 334, 335, 336, 337, 338, 339, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 340, 341, 342, 343, 344, 345, 346, 347, 479, - 0, 0, 0, 0, 329, 0, 0, 330, 331, 332, - 333, 334, 335, 336, 337, 338, 339, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 340, 341, 342, 343, 344, 345, 346, 347, 518, 0, - 0, 0, 0, 329, 0, 0, 330, 331, 332, 333, - 334, 335, 336, 337, 338, 339, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 340, - 341, 342, 343, 344, 345, 346, 347, 491, 0, 329, - 0, 0, 330, 331, 332, 333, 334, 335, 336, 337, - 338, 339, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 340, 341, 342, 343, 344, - 345, 346, 347, 328, 329, 0, 0, 330, 331, 332, - 333, 334, 335, 336, 337, 338, 339, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 340, 341, 342, 343, 344, 345, 346, 347, 362, 329, - 0, 0, 330, 331, 332, 333, 334, 335, 336, 337, - 338, 339, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 340, 341, 342, 343, 344, - 345, 346, 347, 506, 329, 0, 0, 330, 331, 332, - 333, 334, 335, 336, 337, 338, 339, 329, 0, 0, - 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, - 340, 341, 342, 343, 344, 345, 346, 347, 0, 0, - 0, 0, 0, 340, 341, 342, 343, 344, 345, 346, - 347, 330, 331, 0, 333, 334, 335, 336, 337, 338, - 339, 330, 331, 0, 0, 334, 335, 336, 337, 338, - 339, 0, 0, 0, 340, 341, 342, 343, 344, 345, - 346, 347, 0, 0, 340, 341, 342, 343, 344, 345, - 346, 347, 330, 331, 0, 0, 334, 335, 336, 337, - 338, 339, 330, 331, 0, 0, 334, 335, 336, 337, - 338, 339, 0, 0, 0, 0, 341, 342, 343, 344, - 345, 346, 347, 0, 0, 0, 341, 0, 343, 344, - 345, 346, 347, 330, 331, 0, 0, 0, 0, 336, - 337, 338, 339, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 343, - 344, 345, 346, 347 + 346, 347, 348, 349, 350, 351, 352, 353, 485, 0, + 0, 0, 0, 335, 0, 0, 336, 337, 338, 339, + 340, 341, 342, 343, 344, 345, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 346, + 347, 348, 349, 350, 351, 352, 353, 524, 0, 0, + 0, 0, 335, 0, 0, 336, 337, 338, 339, 340, + 341, 342, 343, 344, 345, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 346, 347, + 348, 349, 350, 351, 352, 353, 497, 0, 335, 0, + 0, 336, 337, 338, 339, 340, 341, 342, 343, 344, + 345, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 346, 347, 348, 349, 350, 351, + 352, 353, 334, 335, 0, 0, 336, 337, 338, 339, + 340, 341, 342, 343, 344, 345, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 346, + 347, 348, 349, 350, 351, 352, 353, 368, 335, 0, + 0, 336, 337, 338, 339, 340, 341, 342, 343, 344, + 345, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 346, 347, 348, 349, 350, 351, + 352, 353, 512, 335, 0, 0, 336, 337, 338, 339, + 340, 341, 342, 343, 344, 345, 335, 0, 0, 336, + 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, + 347, 348, 349, 350, 351, 352, 353, 0, 0, 0, + 0, 0, 346, 347, 348, 349, 350, 351, 352, 353, + 336, 337, 0, 339, 340, 341, 342, 343, 344, 345, + 336, 337, 0, 0, 340, 341, 342, 343, 344, 345, + 0, 0, 0, 346, 347, 348, 349, 350, 351, 352, + 353, 0, 0, 346, 347, 348, 349, 350, 351, 352, + 353, 336, 337, 0, 0, 340, 341, 342, 343, 344, + 345, 336, 337, 0, 0, 340, 341, 342, 343, 344, + 345, 0, 0, 0, 0, 347, 348, 349, 350, 351, + 352, 353, 0, 0, 0, 347, 0, 349, 350, 351, + 352, 353, 336, 337, 0, 0, 340, 341, 342, 343, + 344, 345, 336, 337, 0, 0, 0, 0, 342, 343, + 344, 345, 0, 0, 0, 0, 0, 0, 349, 350, + 351, 352, 353, 0, 0, 0, 0, 0, 349, 350, + 351, 352, 353 }; const short parser::yycheck_[] = { - 0, 145, 48, 235, 69, 235, 6, 7, 48, 3, - 4, 11, 42, 44, 48, 44, 46, 47, 22, 235, - 0, 67, 246, 247, 44, 71, 31, 67, 69, 29, - 79, 71, 110, 67, 34, 35, 79, 71, 116, 116, - 44, 145, 120, 43, 69, 67, 70, 70, 48, 71, - 69, 75, 98, 99, 48, 70, 76, 103, 98, 99, - 75, 70, 48, 103, 98, 99, 75, 67, 212, 103, - 75, 71, 76, 67, 70, 70, 300, 71, 95, 75, - 75, 67, 70, 83, 115, 71, 115, 75, 88, 83, - 11, 12, 13, 14, 15, 70, 17, 18, 98, 99, - 75, 70, 48, 103, 98, 99, 75, 79, 212, 103, - 156, 71, 98, 99, 79, 70, 156, 103, 262, 263, - 75, 67, 156, 44, 69, 71, 70, 70, 119, 120, - 176, 75, 75, 69, 156, 73, 176, 44, 69, 511, - 69, 513, 176, 515, 368, 145, 114, 115, 48, 73, - 74, 145, 98, 99, 34, 35, 156, 103, 262, 263, - 69, 78, 156, 79, 79, 48, 73, 67, 41, 42, - 156, 71, 69, 173, 48, 69, 176, 111, 112, 113, - 69, 325, 176, 48, 67, 69, 77, 69, 71, 235, - 176, 69, 69, 67, 115, 235, 77, 71, 98, 99, - 48, 235, 67, 103, 79, 69, 71, 114, 115, 69, - 156, 79, 212, 357, 73, 98, 99, 79, 212, 67, - 103, 325, 79, 71, 98, 99, 79, 73, 73, 103, - 176, 83, 84, 98, 99, 235, 236, 110, 103, 73, - 73, 235, 73, 116, 117, 73, 119, 120, 48, 235, - 98, 99, 69, 357, 478, 103, 156, 109, 110, 111, - 112, 113, 262, 263, 69, 48, 69, 67, 262, 263, - 69, 71, 69, 156, 69, 69, 176, 69, 69, 69, - 69, 505, 156, 69, 67, 69, 48, 28, 71, 235, - 522, 156, 522, 176, 115, 77, 120, 78, 98, 99, - 48, 301, 176, 103, 528, 67, 522, 78, 156, 71, - 73, 176, 69, 77, 69, 98, 99, 95, 69, 67, - 103, 545, 69, 71, 70, 325, 69, 115, 176, 69, - 79, 325, 69, 69, 26, 235, 98, 99, 83, 84, - 79, 103, 87, 88, 89, 90, 91, 92, 79, 349, - 98, 99, 235, 74, 79, 103, 156, 357, 31, 74, - 69, 235, 48, 357, 109, 110, 111, 112, 113, 369, - 235, 79, 79, 156, 79, 79, 176, 79, 69, 75, - 70, 67, 70, 48, 79, 71, 70, 235, 70, 11, - 79, 40, 79, 176, 156, 44, 11, 443, 11, 445, - 103, 522, 67, 443, 43, 445, 71, 176, 156, 443, - 44, 445, 98, 99, 176, 44, 44, 103, 44, 449, - 69, 443, -1, 445, 73, -1, -1, 76, 176, -1, - -1, -1, -1, 98, 99, 235, -1, -1, 103, -1, - -1, -1, 40, 443, -1, 445, 44, -1, 448, 443, - -1, 445, 235, -1, -1, -1, -1, 443, -1, 445, - -1, -1, -1, -1, -1, 114, 115, 40, -1, -1, - 156, 44, -1, 235, 520, 73, 522, 523, 76, -1, - 520, -1, 522, 523, -1, -1, 520, 235, 522, 523, - 176, 156, 109, 110, 111, 112, 113, 443, 520, 445, - 73, 523, -1, 76, -1, -1, 552, 553, -1, -1, - -1, 176, 552, 553, -1, -1, 114, 115, 552, 553, - 520, -1, 522, 523, -1, -1, 520, -1, 522, 523, - 552, 553, -1, -1, 520, -1, 522, 523, -1, -1, - -1, 114, 115, 443, -1, 445, -1, -1, -1, 235, - 40, -1, 552, 553, 44, -1, -1, 40, 552, 553, - 443, 44, 445, -1, -1, -1, 552, 553, -1, 443, - 235, 445, -1, -1, 520, -1, 522, 523, 443, -1, - 445, -1, -1, 73, -1, -1, 76, -1, -1, -1, - 73, -1, -1, 76, -1, 443, -1, 445, -1, -1, - -1, -1, -1, -1, -1, -1, 552, 553, -1, -1, - -1, 40, -1, -1, -1, 44, -1, -1, -1, -1, - 520, -1, 522, 523, 114, 115, -1, -1, -1, -1, - -1, 114, 115, -1, -1, -1, -1, 520, -1, 522, - 523, -1, -1, 443, 73, 445, 520, 76, 522, 523, - -1, -1, 552, 553, -1, 520, -1, 522, 523, -1, - 443, -1, 445, -1, -1, -1, -1, -1, -1, 552, - 553, -1, 520, -1, 522, 523, -1, -1, 552, 553, - -1, 443, -1, 445, -1, 114, 115, 552, 553, -1, - 68, -1, -1, -1, -1, 443, -1, 445, -1, -1, - -1, -1, 80, -1, 552, 553, -1, -1, -1, 40, - -1, -1, -1, 44, 45, 46, 47, 48, -1, -1, - 520, -1, 522, 523, -1, 56, -1, -1, -1, -1, - -1, 62, 63, 64, 65, 66, 67, 520, 69, 522, - 523, -1, 73, -1, -1, -1, 19, 20, -1, 22, - 23, -1, 552, 553, -1, -1, -1, 443, 520, 445, - 522, 523, -1, -1, -1, -1, -1, 40, -1, 552, - 553, 44, 520, -1, 522, 523, -1, 40, 443, -1, - 445, 44, -1, 114, 115, -1, -1, -1, 119, 120, - 552, 553, -1, 171, -1, -1, 174, 175, -1, -1, - 73, -1, -1, 76, 552, 553, -1, -1, 81, 82, - 73, 40, -1, 76, -1, 44, -1, 40, -1, -1, - -1, 44, 95, 96, 97, 98, 99, 100, 101, 102, - 103, 104, 105, -1, 520, -1, 522, 523, -1, -1, - -1, 114, 115, -1, 73, -1, -1, 76, -1, -1, - 73, 114, 115, 76, 232, 520, 234, 522, 523, 237, - -1, -1, -1, -1, -1, -1, 552, 553, -1, -1, - -1, -1, -1, -1, 252, 253, 254, 255, 256, 257, - 258, 259, -1, -1, -1, 114, 115, 552, 553, -1, - -1, 114, 115, 271, 272, 273, 274, 275, 276, 277, - -1, -1, -1, -1, 282, -1, -1, -1, 286, 287, - 288, 289, 290, 291, 292, 293, 294, 295, 296, -1, - -1, -1, -1, -1, -1, -1, 304, 305, 306, 307, - 308, 309, 310, 311, 312, -1, 314, 315, -1, -1, - 40, -1, -1, 321, 44, -1, -1, -1, -1, -1, - -1, 329, 330, 331, 332, 333, 334, 335, 336, 337, - 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, - -1, -1, -1, 73, -1, -1, 76, -1, -1, -1, - -1, 81, 82, -1, -1, -1, -1, -1, -1, 367, - 40, -1, 370, -1, 44, 95, 96, 97, 98, 99, - 100, 101, 102, 103, 104, 105, -1, -1, 386, 387, - 388, 389, 390, 40, 114, 115, -1, 44, 45, 46, - 47, 48, -1, 73, 40, -1, 76, -1, 44, 56, - -1, -1, -1, -1, -1, 62, 63, 64, 65, 66, - 67, -1, 420, -1, -1, -1, 73, -1, -1, -1, - -1, -1, -1, -1, 81, 82, -1, 73, -1, -1, - 76, -1, -1, -1, 114, 115, 444, -1, 446, 447, - 40, -1, -1, 451, 44, 45, 46, 47, 48, -1, - 16, -1, -1, -1, -1, 463, 56, 114, 115, -1, - -1, -1, 62, 63, 64, 65, 66, 67, 114, 115, - -1, 479, -1, 73, 40, 41, 42, 43, 44, 45, - 46, 47, 48, 491, 50, 51, 52, 53, 54, 55, - 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, - 66, 67, 68, 69, -1, -1, -1, 73, -1, -1, - 518, 77, -1, 79, 114, 115, 524, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 93, 94, -1, - -1, 16, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 110, -1, -1, 113, 114, 115, - 116, 117, 118, 119, 120, 40, 41, 42, 43, 44, - 45, 46, 47, 48, -1, 50, 51, 52, 53, 54, - 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, - 65, 66, 67, 68, 69, 74, -1, -1, 73, 74, - -1, 80, 77, -1, 83, 84, 85, 86, 87, 88, - 89, 90, 91, 92, -1, -1, -1, -1, 93, 94, - -1, -1, 16, -1, -1, -1, -1, 106, 107, 108, - 109, 110, 111, 112, 113, 110, -1, -1, 113, 114, - 115, 116, 117, 118, 119, 120, 40, 41, 42, 43, - 44, 45, 46, 47, 48, -1, 50, 51, 52, 53, - 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, - 64, 65, 66, 67, 68, 69, 74, -1, -1, 73, - -1, -1, 80, 77, -1, 83, 84, 85, 86, 87, - 88, 89, 90, 91, 92, -1, -1, -1, -1, 93, - 94, -1, -1, 16, -1, -1, -1, -1, 106, 107, - 108, 109, 110, 111, 112, 113, 110, -1, -1, 113, - 114, 115, 116, 117, 118, 119, 120, 40, 41, 42, - 43, 44, 45, 46, 47, 48, -1, 50, 51, 52, - 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, - 63, 64, 65, 66, 67, 68, 69, 74, -1, -1, - 73, -1, -1, 80, 77, -1, 83, 84, 85, 86, - 87, 88, 89, 90, 91, 92, -1, -1, -1, -1, - 93, 94, -1, -1, -1, -1, -1, -1, -1, 106, - 107, 108, 109, 110, 111, 112, 113, 110, 11, -1, - 113, 114, 115, 116, 117, 118, 119, 120, 21, -1, - -1, 24, 25, -1, 27, 28, 29, 30, -1, 32, - 33, 34, 35, 36, 37, 38, 39, 40, -1, -1, - -1, 44, 45, 46, 47, 48, 49, -1, -1, -1, - -1, -1, -1, 56, -1, -1, -1, -1, -1, 62, - 63, 64, 65, 66, 67, -1, -1, -1, 71, 72, - 73, 11, -1, -1, -1, -1, -1, -1, 81, 82, - -1, 21, -1, -1, 24, 25, -1, 27, 28, 29, - 30, -1, 32, 33, 34, 35, 36, 37, 38, 39, - 40, -1, -1, -1, 44, 45, 46, 47, 48, 49, - -1, 114, 115, -1, -1, -1, 56, -1, -1, -1, - -1, -1, 62, 63, 64, 65, 66, 67, -1, -1, - -1, 71, 72, 73, 12, -1, -1, -1, -1, -1, - -1, 81, 82, 21, -1, -1, 24, 25, -1, 27, - 28, 29, 30, -1, 32, 33, 34, 35, 36, 37, - 38, 39, 40, -1, -1, -1, 44, 45, 46, 47, - 48, 49, -1, -1, 114, 115, -1, -1, 56, -1, - -1, -1, -1, -1, 62, 63, 64, 65, 66, 67, - -1, -1, -1, 71, -1, 73, 12, -1, -1, -1, - -1, -1, -1, 81, 82, 21, -1, -1, 24, 25, - -1, 27, 28, 29, 30, -1, 32, 33, 34, 35, - 36, 37, 38, 39, 40, -1, -1, -1, 44, 45, - 46, 47, 48, 49, -1, -1, 114, 115, -1, -1, - 56, -1, -1, -1, -1, -1, 62, 63, 64, 65, - 66, 67, -1, -1, -1, 71, -1, 73, -1, -1, - -1, -1, -1, -1, -1, 81, 82, 21, -1, -1, - 24, 25, -1, 27, 28, 29, 30, -1, 32, 33, - 34, 35, 36, 37, 38, 39, 40, -1, -1, -1, - 44, 45, 46, 47, 48, 49, -1, -1, 114, 115, - -1, -1, 56, -1, -1, -1, -1, -1, 62, 63, - 64, 65, 66, 67, -1, -1, -1, 71, -1, 73, - -1, -1, -1, -1, -1, -1, 70, 81, 82, -1, - -1, 75, -1, -1, -1, -1, 80, -1, -1, 83, - 84, 85, 86, 87, 88, 89, 90, 91, 92, -1, + 0, 45, 241, 45, 53, 241, 6, 7, 8, 3, + 4, 241, 12, 32, 45, 53, 111, 73, 71, 70, + 48, 77, 117, 76, 73, 71, 121, 23, 77, 0, + 76, 31, 112, 113, 114, 73, 36, 37, 38, 77, + 70, 53, 41, 74, 46, 80, 45, 47, 50, 51, + 52, 80, 48, 53, 82, 104, 105, 76, 151, 53, + 109, 73, 117, 71, 71, 77, 104, 105, 76, 76, + 71, 109, 116, 73, 116, 74, 53, 77, 77, 73, + 96, 151, 71, 77, 115, 116, 82, 76, 70, 89, + 115, 116, 104, 105, 94, 89, 73, 109, 71, 80, + 77, 70, 53, 76, 104, 105, 162, 71, 70, 109, + 104, 105, 76, 162, 71, 109, 115, 116, 71, 76, + 74, 75, 73, 76, 162, 218, 77, 104, 105, 71, + 120, 121, 109, 182, 76, 11, 12, 13, 14, 15, + 72, 17, 18, 19, 182, 41, 80, 71, 218, 45, + 162, 151, 76, 104, 105, 71, 70, 151, 109, 70, + 76, 70, 162, 110, 111, 112, 113, 114, 162, 45, + 182, 53, 70, 70, 70, 268, 269, 79, 74, 179, + 80, 77, 182, 70, 70, 162, 80, 70, 182, 70, + 70, 73, 241, 53, 78, 77, 70, 70, 268, 269, + 517, 70, 519, 241, 521, 182, 53, 36, 37, 38, + 74, 162, 70, 73, 80, 53, 70, 77, 218, 115, + 116, 80, 104, 105, 218, 80, 73, 109, 80, 241, + 77, 182, 53, 74, 80, 73, 78, 74, 331, 77, + 116, 241, 242, 74, 104, 105, 74, 241, 74, 109, + 42, 43, 73, 53, 74, 74, 77, 104, 105, 70, + 70, 331, 109, 70, 241, 70, 104, 105, 268, 269, + 363, 109, 70, 73, 268, 269, 70, 77, 29, 70, + 162, 70, 70, 104, 105, 70, 70, 70, 109, 528, + 241, 116, 528, 363, 121, 74, 53, 78, 528, 79, + 182, 79, 162, 70, 104, 105, 78, 307, 70, 109, + 96, 252, 253, 41, 70, 162, 73, 45, 70, 111, + 77, 70, 182, 116, 162, 117, 118, 71, 120, 121, + 70, 331, 80, 70, 53, 182, 70, 331, 80, 80, + 75, 162, 27, 32, 182, 70, 74, 104, 105, 77, + 80, 75, 109, 80, 73, 355, 53, 80, 77, 241, + 80, 182, 162, 363, 80, 306, 80, 70, 76, 363, + 71, 71, 53, 41, 80, 375, 73, 45, 71, 71, + 77, 241, 182, 12, 80, 104, 105, 115, 116, 80, + 109, 12, 73, 449, 241, 451, 77, 12, 109, 528, + 449, 47, 451, 241, 48, 162, 74, 104, 105, 77, + 53, 449, 109, 451, 182, 48, 48, 48, -1, -1, + 241, -1, -1, 104, 105, 182, -1, -1, 109, -1, + 73, 41, -1, 374, 77, 45, -1, 449, -1, 451, + -1, 241, -1, 162, -1, -1, -1, 115, 116, 449, + -1, 451, -1, 455, 454, 449, 41, 451, -1, -1, + 45, 104, 105, 182, 74, 162, 109, 77, -1, -1, + 526, -1, 449, 529, 451, -1, -1, 526, -1, 528, + 529, 162, 41, -1, 241, 182, 45, -1, 526, 74, + 528, 529, 77, -1, -1, -1, -1, -1, 449, -1, + 451, 182, 558, 559, -1, 115, 116, -1, -1, 558, + 559, -1, -1, -1, 526, 74, 528, 529, 77, 162, + 558, 559, 241, -1, -1, -1, 526, -1, 528, 529, + 115, 116, 526, -1, 528, 529, -1, -1, -1, 182, + -1, -1, -1, 484, 241, -1, 558, 559, -1, 526, + 41, 528, 529, -1, 45, -1, 115, 116, 558, 559, + 241, -1, -1, -1, 558, 559, -1, 449, -1, 451, + 511, -1, -1, -1, -1, 526, -1, 528, 529, -1, + -1, 558, 559, 74, -1, -1, 77, -1, -1, 449, + -1, 451, -1, 534, -1, -1, -1, -1, 241, 41, + -1, -1, 449, 45, 451, -1, -1, 558, 559, -1, + 551, 449, 41, 451, -1, -1, 45, -1, -1, -1, + -1, -1, -1, -1, 115, 116, -1, -1, 449, -1, + 451, -1, 74, -1, -1, 77, -1, -1, -1, 41, + 82, 83, -1, 45, 526, 74, 528, 529, 77, 449, + -1, 451, -1, -1, 96, 97, 98, 99, 100, 101, + 102, 103, 104, 105, 106, -1, 526, -1, 528, 529, + -1, -1, 74, 115, 116, 77, 558, 559, -1, 526, + -1, 528, 529, -1, -1, 74, 115, 116, 526, 41, + 528, 529, 449, 45, 451, -1, -1, 86, 558, 559, + -1, -1, -1, -1, -1, 526, -1, 528, 529, -1, + -1, 558, 559, 115, 116, -1, -1, -1, -1, -1, + 558, 559, 74, -1, -1, 77, 526, -1, 528, 529, + 449, -1, 451, -1, -1, -1, -1, 558, 559, -1, + -1, 20, 21, -1, 23, 24, -1, 84, 85, -1, + -1, -1, 449, -1, 451, -1, -1, -1, 558, 559, + -1, -1, 41, 115, 116, -1, 45, -1, 449, 526, + 451, 528, 529, 110, 111, 112, 113, 114, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, 177, -1, + -1, 180, 181, -1, -1, 74, -1, -1, 77, -1, + -1, 558, 559, 82, 83, -1, 449, 526, 451, 528, + 529, -1, -1, -1, -1, -1, -1, 96, 97, 98, + 99, 100, 101, 102, 103, 104, 105, 106, -1, 526, + -1, 528, 529, -1, -1, -1, 115, 116, -1, 558, + 559, -1, -1, -1, -1, 526, -1, 528, 529, 238, + -1, 240, -1, -1, 243, -1, -1, -1, -1, -1, + -1, 558, 559, -1, -1, -1, -1, -1, -1, 258, + 259, 260, 261, 262, 263, 264, 265, 558, 559, -1, + -1, -1, -1, 526, -1, 528, 529, -1, 277, 278, + 279, 280, 281, 282, 283, -1, -1, -1, -1, 288, + -1, -1, -1, 292, 293, 294, 295, 296, 297, 298, + 299, 300, 301, 302, -1, 558, 559, -1, -1, -1, + -1, 310, 311, 312, 313, 314, 315, 316, 317, 318, + -1, 320, 321, -1, -1, -1, -1, -1, 327, -1, + -1, -1, -1, -1, -1, -1, 335, 336, 337, 338, + 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, + 349, 350, 351, 352, 353, -1, 41, -1, -1, -1, + 45, 46, 47, 48, 49, -1, -1, -1, -1, -1, + -1, -1, 57, -1, 373, -1, -1, 376, 63, 64, + 65, 66, 67, 68, -1, 70, -1, -1, -1, 74, + -1, -1, -1, 392, 393, 394, 395, 396, -1, 41, + -1, -1, -1, 45, 46, 47, 48, 49, -1, -1, + -1, -1, -1, -1, -1, 57, -1, -1, -1, -1, + -1, 63, 64, 65, 66, 67, 68, 426, -1, -1, + 115, 116, 74, -1, -1, 120, 121, -1, -1, -1, + 82, 83, -1, -1, -1, -1, -1, -1, -1, -1, + -1, 450, -1, 452, 453, 41, -1, -1, 457, 45, + 46, 47, 48, 49, 16, -1, -1, -1, -1, -1, + 469, 57, -1, 115, 116, -1, -1, 63, 64, 65, + 66, 67, 68, -1, -1, -1, 485, -1, 74, 41, + 42, 43, 44, 45, 46, 47, 48, 49, 497, 51, + 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, + 62, 63, 64, 65, 66, 67, 68, 69, 70, -1, + -1, -1, 74, -1, -1, 524, 78, -1, 80, 115, + 116, 530, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 94, 95, -1, 16, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, 111, + -1, -1, 114, 115, 116, 117, 118, 119, 120, 121, + 41, 42, 43, 44, 45, 46, 47, 48, 49, -1, + 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, + 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, + 75, -1, -1, 74, 75, -1, 81, 78, -1, 84, + 85, 86, 87, 88, 89, 90, 91, 92, 93, -1, + -1, -1, -1, 94, 95, -1, 16, -1, -1, -1, + -1, -1, 107, 108, 109, 110, 111, 112, 113, 114, + 111, -1, -1, 114, 115, 116, 117, 118, 119, 120, + 121, 41, 42, 43, 44, 45, 46, 47, 48, 49, + -1, 51, 52, 53, 54, 55, 56, 57, 58, 59, + 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, + 70, 75, -1, -1, 74, -1, -1, 81, 78, -1, + 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, + -1, -1, -1, -1, 94, 95, -1, 16, -1, -1, + -1, -1, -1, 107, 108, 109, 110, 111, 112, 113, + 114, 111, -1, -1, 114, 115, 116, 117, 118, 119, + 120, 121, 41, 42, 43, 44, 45, 46, 47, 48, + 49, -1, 51, 52, 53, 54, 55, 56, 57, 58, + 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, + 69, 70, 75, -1, -1, 74, -1, -1, 81, 78, + -1, 84, 85, 86, 87, 88, 89, 90, 91, 92, + 93, -1, -1, -1, -1, 94, 95, -1, -1, -1, + -1, -1, -1, -1, 107, 108, 109, 110, 111, 112, + 113, 114, 111, 11, -1, 114, 115, 116, 117, 118, + 119, 120, 121, -1, 22, -1, -1, 25, 26, -1, + 28, 29, 30, 31, -1, 33, 34, 35, 36, 37, + 38, 39, 40, 41, -1, -1, -1, 45, 46, 47, + 48, 49, 50, -1, -1, -1, -1, -1, -1, 57, + -1, -1, -1, -1, -1, 63, 64, 65, 66, 67, + 68, -1, -1, -1, 72, 73, 74, 11, -1, -1, + -1, -1, -1, -1, 82, 83, -1, -1, 22, -1, + -1, 25, 26, -1, 28, 29, 30, 31, -1, 33, + 34, 35, 36, 37, 38, 39, 40, 41, -1, -1, + -1, 45, 46, 47, 48, 49, 50, 115, 116, -1, + -1, -1, -1, 57, -1, -1, -1, -1, -1, 63, + 64, 65, 66, 67, 68, -1, -1, -1, 72, 73, + 74, 12, -1, -1, -1, -1, -1, -1, 82, 83, + -1, 22, -1, -1, 25, 26, -1, 28, 29, 30, + 31, -1, 33, 34, 35, 36, 37, 38, 39, 40, + 41, -1, -1, -1, 45, 46, 47, 48, 49, 50, + -1, 115, 116, -1, -1, -1, 57, -1, -1, -1, + -1, -1, 63, 64, 65, 66, 67, 68, -1, -1, + -1, 72, -1, 74, 12, -1, -1, -1, -1, -1, + -1, 82, 83, -1, 22, -1, -1, 25, 26, -1, + 28, 29, 30, 31, -1, 33, 34, 35, 36, 37, + 38, 39, 40, 41, -1, -1, -1, 45, 46, 47, + 48, 49, 50, -1, 115, 116, -1, -1, -1, 57, + -1, -1, -1, -1, -1, 63, 64, 65, 66, 67, + 68, -1, -1, -1, 72, -1, 74, -1, -1, -1, + -1, -1, -1, -1, 82, 83, 22, -1, -1, 25, + 26, -1, 28, 29, 30, 31, -1, 33, 34, 35, + 36, 37, 38, 39, 40, 41, -1, -1, -1, 45, + 46, 47, 48, 49, 50, -1, -1, 115, 116, -1, + -1, 57, -1, -1, -1, -1, -1, 63, 64, 65, + 66, 67, 68, -1, -1, -1, 72, -1, 74, -1, + -1, -1, -1, -1, -1, 71, 82, 83, -1, -1, + 76, -1, -1, -1, -1, 81, -1, -1, 84, 85, + 86, 87, 88, 89, 90, 91, 92, 93, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, 115, + 116, 107, 108, 109, 110, 111, 112, 113, 114, 71, + -1, -1, -1, -1, 76, -1, -1, -1, -1, 81, + -1, -1, 84, 85, 86, 87, 88, 89, 90, 91, + 92, 93, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 107, 108, 109, 110, 111, + 112, 113, 114, 71, -1, -1, -1, -1, 76, -1, + -1, -1, -1, 81, -1, -1, 84, 85, 86, 87, + 88, 89, 90, 91, 92, 93, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, 107, + 108, 109, 110, 111, 112, 113, 114, 71, -1, -1, + -1, -1, 76, -1, -1, -1, -1, 81, -1, -1, + 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 114, 115, 106, 107, 108, 109, 110, 111, 112, 113, - 70, -1, -1, -1, -1, 75, -1, -1, -1, -1, - 80, -1, -1, 83, 84, 85, 86, 87, 88, 89, - 90, 91, 92, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, 106, 107, 108, 109, - 110, 111, 112, 113, 70, -1, -1, -1, -1, 75, - -1, -1, -1, -1, 80, -1, -1, 83, 84, 85, - 86, 87, 88, 89, 90, 91, 92, -1, -1, -1, + -1, 71, -1, 107, 108, 109, 110, 111, 112, 113, + 114, 81, -1, -1, 84, 85, 86, 87, 88, 89, + 90, 91, 92, 93, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 71, -1, 107, 108, 109, + 110, 111, 112, 113, 114, 81, -1, -1, 84, 85, + 86, 87, 88, 89, 90, 91, 92, 93, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, 71, + -1, 107, 108, 109, 110, 111, 112, 113, 114, 81, + -1, -1, 84, 85, 86, 87, 88, 89, 90, 91, + 92, 93, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, 71, -1, 107, 108, 109, 110, 111, + 112, 113, 114, 81, -1, -1, 84, 85, 86, 87, + 88, 89, 90, 91, 92, 93, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 71, -1, 107, + 108, 109, 110, 111, 112, 113, 114, 81, -1, -1, + 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 106, 107, 108, 109, 110, 111, 112, 113, 70, -1, - -1, -1, -1, 75, -1, -1, -1, -1, 80, -1, - -1, 83, 84, 85, 86, 87, 88, 89, 90, 91, - 92, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 70, -1, 106, 107, 108, 109, 110, 111, - 112, 113, 80, -1, -1, 83, 84, 85, 86, 87, - 88, 89, 90, 91, 92, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, 70, -1, 106, 107, - 108, 109, 110, 111, 112, 113, 80, -1, -1, 83, - 84, 85, 86, 87, 88, 89, 90, 91, 92, -1, + -1, 71, -1, 107, 108, 109, 110, 111, 112, 113, + 114, 81, -1, -1, 84, 85, 86, 87, 88, 89, + 90, 91, 92, 93, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 71, -1, 107, 108, 109, + 110, 111, 112, 113, 114, 81, -1, -1, 84, 85, + 86, 87, 88, 89, 90, 91, 92, 93, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, 71, + -1, 107, 108, 109, 110, 111, 112, 113, 114, 81, + -1, -1, 84, 85, 86, 87, 88, 89, 90, 91, + 92, 93, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, 71, -1, 107, 108, 109, 110, 111, + 112, 113, 114, 81, -1, -1, 84, 85, 86, 87, + 88, 89, 90, 91, 92, 93, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 71, -1, 107, + 108, 109, 110, 111, 112, 113, 114, 81, -1, -1, + 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 70, -1, 106, 107, 108, 109, 110, 111, 112, 113, - 80, -1, -1, 83, 84, 85, 86, 87, 88, 89, - 90, 91, 92, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 70, -1, 106, 107, 108, 109, - 110, 111, 112, 113, 80, -1, -1, 83, 84, 85, - 86, 87, 88, 89, 90, 91, 92, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, 70, -1, - 106, 107, 108, 109, 110, 111, 112, 113, 80, -1, - -1, 83, 84, 85, 86, 87, 88, 89, 90, 91, - 92, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 70, -1, 106, 107, 108, 109, 110, 111, - 112, 113, 80, -1, -1, 83, 84, 85, 86, 87, - 88, 89, 90, 91, 92, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, 70, -1, 106, 107, - 108, 109, 110, 111, 112, 113, 80, -1, -1, 83, - 84, 85, 86, 87, 88, 89, 90, 91, 92, -1, + -1, 71, -1, 107, 108, 109, 110, 111, 112, 113, + 114, 81, -1, -1, 84, 85, 86, 87, 88, 89, + 90, 91, 92, 93, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 71, -1, 107, 108, 109, + 110, 111, 112, 113, 114, 81, -1, -1, 84, 85, + 86, 87, 88, 89, 90, 91, 92, 93, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, 71, + -1, 107, 108, 109, 110, 111, 112, 113, 114, 81, + -1, -1, 84, 85, 86, 87, 88, 89, 90, 91, + 92, 93, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, 71, -1, 107, 108, 109, 110, 111, + 112, 113, 114, 81, -1, -1, 84, 85, 86, 87, + 88, 89, 90, 91, 92, 93, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 71, -1, 107, + 108, 109, 110, 111, 112, 113, 114, 81, -1, -1, + 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 70, -1, 106, 107, 108, 109, 110, 111, 112, 113, - 80, -1, -1, 83, 84, 85, 86, 87, 88, 89, - 90, 91, 92, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 70, -1, 106, 107, 108, 109, - 110, 111, 112, 113, 80, -1, -1, 83, 84, 85, - 86, 87, 88, 89, 90, 91, 92, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, 70, -1, - 106, 107, 108, 109, 110, 111, 112, 113, 80, -1, - -1, 83, 84, 85, 86, 87, 88, 89, 90, 91, - 92, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 70, -1, 106, 107, 108, 109, 110, 111, - 112, 113, 80, -1, -1, 83, 84, 85, 86, 87, - 88, 89, 90, 91, 92, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, 70, -1, 106, 107, - 108, 109, 110, 111, 112, 113, 80, -1, -1, 83, - 84, 85, 86, 87, 88, 89, 90, 91, 92, -1, + -1, 71, -1, 107, 108, 109, 110, 111, 112, 113, + 114, 81, -1, -1, 84, 85, 86, 87, 88, 89, + 90, 91, 92, 93, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 71, -1, 107, 108, 109, + 110, 111, 112, 113, 114, 81, -1, -1, 84, 85, + 86, 87, 88, 89, 90, 91, 92, 93, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, 71, + -1, 107, 108, 109, 110, 111, 112, 113, 114, 81, + -1, -1, 84, 85, 86, 87, 88, 89, 90, 91, + 92, 93, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, 71, -1, 107, 108, 109, 110, 111, + 112, 113, 114, 81, -1, -1, 84, 85, 86, 87, + 88, 89, 90, 91, 92, 93, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 71, -1, 107, + 108, 109, 110, 111, 112, 113, 114, 81, -1, -1, + 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 70, -1, 106, 107, 108, 109, 110, 111, 112, 113, - 80, -1, -1, 83, 84, 85, 86, 87, 88, 89, - 90, 91, 92, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 70, -1, 106, 107, 108, 109, - 110, 111, 112, 113, 80, -1, -1, 83, 84, 85, - 86, 87, 88, 89, 90, 91, 92, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, 70, -1, - 106, 107, 108, 109, 110, 111, 112, 113, 80, -1, - -1, 83, 84, 85, 86, 87, 88, 89, 90, 91, - 92, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 70, -1, 106, 107, 108, 109, 110, 111, - 112, 113, 80, -1, -1, 83, 84, 85, 86, 87, - 88, 89, 90, 91, 92, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, 70, -1, 106, 107, - 108, 109, 110, 111, 112, 113, 80, -1, -1, 83, - 84, 85, 86, 87, 88, 89, 90, 91, 92, -1, + -1, 71, -1, 107, 108, 109, 110, 111, 112, 113, + 114, 81, -1, -1, 84, 85, 86, 87, 88, 89, + 90, 91, 92, 93, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 71, -1, 107, 108, 109, + 110, 111, 112, 113, 114, 81, -1, -1, 84, 85, + 86, 87, 88, 89, 90, 91, 92, 93, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, 71, + -1, 107, 108, 109, 110, 111, 112, 113, 114, 81, + -1, -1, 84, 85, 86, 87, 88, 89, 90, 91, + 92, 93, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, 71, -1, 107, 108, 109, 110, 111, + 112, 113, 114, 81, -1, -1, 84, 85, 86, 87, + 88, 89, 90, 91, 92, 93, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 71, -1, 107, + 108, 109, 110, 111, 112, 113, 114, 81, -1, -1, + 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 70, -1, 106, 107, 108, 109, 110, 111, 112, 113, - 80, -1, -1, 83, 84, 85, 86, 87, 88, 89, - 90, 91, 92, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 70, -1, 106, 107, 108, 109, - 110, 111, 112, 113, 80, -1, -1, 83, 84, 85, - 86, 87, 88, 89, 90, 91, 92, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, 70, -1, - 106, 107, 108, 109, 110, 111, 112, 113, 80, -1, - -1, 83, 84, 85, 86, 87, 88, 89, 90, 91, - 92, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 70, -1, 106, 107, 108, 109, 110, 111, - 112, 113, 80, -1, -1, 83, 84, 85, 86, 87, - 88, 89, 90, 91, 92, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, 70, -1, 106, 107, - 108, 109, 110, 111, 112, 113, 80, -1, -1, 83, - 84, 85, 86, 87, 88, 89, 90, 91, 92, -1, + -1, 71, -1, 107, 108, 109, 110, 111, 112, 113, + 114, 81, -1, -1, 84, 85, 86, 87, 88, 89, + 90, 91, 92, 93, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 71, -1, 107, 108, 109, + 110, 111, 112, 113, 114, 81, -1, -1, 84, 85, + 86, 87, 88, 89, 90, 91, 92, 93, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 70, -1, 106, 107, 108, 109, 110, 111, 112, 113, - 80, -1, -1, 83, 84, 85, 86, 87, 88, 89, - 90, 91, 92, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 70, -1, 106, 107, 108, 109, - 110, 111, 112, 113, 80, -1, -1, 83, 84, 85, - 86, 87, 88, 89, 90, 91, 92, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, 70, -1, - 106, 107, 108, 109, 110, 111, 112, 113, 80, -1, - -1, 83, 84, 85, 86, 87, 88, 89, 90, 91, - 92, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 70, -1, 106, 107, 108, 109, 110, 111, - 112, 113, 80, -1, -1, 83, 84, 85, 86, 87, - 88, 89, 90, 91, 92, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, 70, -1, 106, 107, - 108, 109, 110, 111, 112, 113, 80, -1, -1, 83, - 84, 85, 86, 87, 88, 89, 90, 91, 92, -1, + -1, 107, 108, 109, 110, 111, 112, 113, 114, 75, + -1, -1, -1, -1, -1, 81, -1, -1, 84, 85, + 86, 87, 88, 89, 90, 91, 92, 93, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 106, 107, 108, 109, 110, 111, 112, 113, - 74, -1, -1, -1, -1, -1, 80, -1, -1, 83, - 84, 85, 86, 87, 88, 89, 90, 91, 92, -1, + -1, 107, 108, 109, 110, 111, 112, 113, 114, 75, + -1, -1, -1, -1, -1, 81, -1, -1, 84, 85, + 86, 87, 88, 89, 90, 91, 92, 93, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 106, 107, 108, 109, 110, 111, 112, 113, - 74, -1, -1, -1, -1, -1, 80, -1, -1, 83, - 84, 85, 86, 87, 88, 89, 90, 91, 92, -1, + -1, 107, 108, 109, 110, 111, 112, 113, 114, 75, + -1, -1, -1, -1, -1, 81, -1, -1, 84, 85, + 86, 87, 88, 89, 90, 91, 92, 93, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 106, 107, 108, 109, 110, 111, 112, 113, - 74, -1, -1, -1, -1, -1, 80, -1, -1, 83, - 84, 85, 86, 87, 88, 89, 90, 91, 92, -1, + -1, 107, 108, 109, 110, 111, 112, 113, 114, 75, + -1, -1, -1, -1, -1, 81, -1, -1, 84, 85, + 86, 87, 88, 89, 90, 91, 92, 93, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 106, 107, 108, 109, 110, 111, 112, 113, - 74, -1, -1, -1, -1, -1, 80, -1, -1, 83, - 84, 85, 86, 87, 88, 89, 90, 91, 92, -1, + -1, 107, 108, 109, 110, 111, 112, 113, 114, 75, + -1, -1, -1, -1, -1, 81, -1, -1, 84, 85, + 86, 87, 88, 89, 90, 91, 92, 93, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 106, 107, 108, 109, 110, 111, 112, 113, - 74, -1, -1, -1, -1, -1, 80, -1, -1, 83, - 84, 85, 86, 87, 88, 89, 90, 91, 92, -1, + -1, 107, 108, 109, 110, 111, 112, 113, 114, 75, + -1, -1, -1, -1, -1, 81, -1, -1, 84, 85, + 86, 87, 88, 89, 90, 91, 92, 93, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 106, 107, 108, 109, 110, 111, 112, 113, - 74, -1, -1, -1, -1, -1, 80, -1, -1, 83, - 84, 85, 86, 87, 88, 89, 90, 91, 92, -1, + -1, 107, 108, 109, 110, 111, 112, 113, 114, 75, + -1, -1, -1, -1, -1, 81, -1, -1, 84, 85, + 86, 87, 88, 89, 90, 91, 92, 93, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 106, 107, 108, 109, 110, 111, 112, 113, - 74, -1, -1, -1, -1, -1, 80, -1, -1, 83, - 84, 85, 86, 87, 88, 89, 90, 91, 92, -1, + -1, 107, 108, 109, 110, 111, 112, 113, 114, 76, + -1, -1, -1, -1, 81, -1, -1, 84, 85, 86, + 87, 88, 89, 90, 91, 92, 93, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 106, 107, 108, 109, 110, 111, 112, 113, - 75, -1, -1, -1, -1, 80, -1, -1, 83, 84, - 85, 86, 87, 88, 89, 90, 91, 92, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 106, 107, 108, 109, 110, 111, 112, 113, 75, - -1, -1, -1, -1, 80, -1, -1, 83, 84, 85, - 86, 87, 88, 89, 90, 91, 92, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 106, 107, 108, 109, 110, 111, 112, 113, 75, -1, - -1, -1, -1, 80, -1, -1, 83, 84, 85, 86, - 87, 88, 89, 90, 91, 92, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, 106, - 107, 108, 109, 110, 111, 112, 113, 78, -1, 80, - -1, -1, 83, 84, 85, 86, 87, 88, 89, 90, - 91, 92, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 106, 107, 108, 109, 110, - 111, 112, 113, 79, 80, -1, -1, 83, 84, 85, - 86, 87, 88, 89, 90, 91, 92, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 106, 107, 108, 109, 110, 111, 112, 113, 79, 80, - -1, -1, 83, 84, 85, 86, 87, 88, 89, 90, - 91, 92, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 106, 107, 108, 109, 110, - 111, 112, 113, 79, 80, -1, -1, 83, 84, 85, - 86, 87, 88, 89, 90, 91, 92, 80, -1, -1, - 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, - 106, 107, 108, 109, 110, 111, 112, 113, -1, -1, - -1, -1, -1, 106, 107, 108, 109, 110, 111, 112, - 113, 83, 84, -1, 86, 87, 88, 89, 90, 91, - 92, 83, 84, -1, -1, 87, 88, 89, 90, 91, - 92, -1, -1, -1, 106, 107, 108, 109, 110, 111, - 112, 113, -1, -1, 106, 107, 108, 109, 110, 111, - 112, 113, 83, 84, -1, -1, 87, 88, 89, 90, - 91, 92, 83, 84, -1, -1, 87, 88, 89, 90, - 91, 92, -1, -1, -1, -1, 107, 108, 109, 110, - 111, 112, 113, -1, -1, -1, 107, -1, 109, 110, - 111, 112, 113, 83, 84, -1, -1, -1, -1, 89, - 90, 91, 92, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, - 110, 111, 112, 113 + 107, 108, 109, 110, 111, 112, 113, 114, 76, -1, + -1, -1, -1, 81, -1, -1, 84, 85, 86, 87, + 88, 89, 90, 91, 92, 93, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, 107, + 108, 109, 110, 111, 112, 113, 114, 76, -1, -1, + -1, -1, 81, -1, -1, 84, 85, 86, 87, 88, + 89, 90, 91, 92, 93, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, 107, 108, + 109, 110, 111, 112, 113, 114, 79, -1, 81, -1, + -1, 84, 85, 86, 87, 88, 89, 90, 91, 92, + 93, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, 107, 108, 109, 110, 111, 112, + 113, 114, 80, 81, -1, -1, 84, 85, 86, 87, + 88, 89, 90, 91, 92, 93, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, 107, + 108, 109, 110, 111, 112, 113, 114, 80, 81, -1, + -1, 84, 85, 86, 87, 88, 89, 90, 91, 92, + 93, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, 107, 108, 109, 110, 111, 112, + 113, 114, 80, 81, -1, -1, 84, 85, 86, 87, + 88, 89, 90, 91, 92, 93, 81, -1, -1, 84, + 85, 86, 87, 88, 89, 90, 91, 92, 93, 107, + 108, 109, 110, 111, 112, 113, 114, -1, -1, -1, + -1, -1, 107, 108, 109, 110, 111, 112, 113, 114, + 84, 85, -1, 87, 88, 89, 90, 91, 92, 93, + 84, 85, -1, -1, 88, 89, 90, 91, 92, 93, + -1, -1, -1, 107, 108, 109, 110, 111, 112, 113, + 114, -1, -1, 107, 108, 109, 110, 111, 112, 113, + 114, 84, 85, -1, -1, 88, 89, 90, 91, 92, + 93, 84, 85, -1, -1, 88, 89, 90, 91, 92, + 93, -1, -1, -1, -1, 108, 109, 110, 111, 112, + 113, 114, -1, -1, -1, 108, -1, 110, 111, 112, + 113, 114, 84, 85, -1, -1, 88, 89, 90, 91, + 92, 93, 84, 85, -1, -1, -1, -1, 90, 91, + 92, 93, -1, -1, -1, -1, -1, -1, 110, 111, + 112, 113, 114, -1, -1, -1, -1, -1, 110, 111, + 112, 113, 114 }; const unsigned char parser::yystos_[] = { - 0, 11, 12, 13, 14, 15, 17, 18, 44, 115, - 131, 132, 133, 134, 135, 136, 137, 222, 114, 115, - 223, 223, 69, 222, 222, 0, 133, 134, 135, 69, - 79, 79, 116, 225, 69, 69, 183, 184, 222, 70, - 183, 183, 70, 75, 95, 79, 70, 70, 71, 143, - 184, 222, 41, 42, 110, 117, 119, 120, 185, 224, - 225, 228, 229, 230, 231, 143, 143, 11, 21, 24, - 25, 27, 28, 29, 30, 32, 33, 34, 35, 36, - 37, 38, 39, 40, 45, 46, 47, 48, 49, 56, - 62, 63, 64, 65, 66, 67, 72, 73, 81, 82, - 115, 138, 139, 141, 142, 143, 145, 146, 147, 148, - 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, - 159, 160, 161, 162, 163, 164, 165, 166, 167, 170, - 171, 172, 179, 180, 181, 182, 194, 200, 201, 202, - 203, 204, 205, 208, 209, 212, 215, 216, 217, 218, - 222, 223, 119, 120, 12, 138, 140, 16, 43, 50, - 51, 52, 53, 54, 55, 57, 58, 59, 60, 61, - 68, 69, 73, 77, 93, 94, 110, 113, 118, 168, - 173, 174, 175, 176, 177, 178, 179, 180, 188, 189, - 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, - 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, - 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, - 220, 222, 223, 224, 225, 226, 227, 228, 229, 230, - 231, 79, 69, 138, 69, 69, 69, 69, 110, 225, - 229, 78, 79, 79, 79, 168, 69, 69, 73, 222, - 223, 222, 69, 69, 69, 69, 69, 69, 69, 73, - 179, 180, 212, 212, 72, 139, 79, 79, 79, 79, - 79, 73, 73, 73, 73, 73, 73, 73, 19, 20, - 22, 23, 73, 76, 81, 82, 95, 96, 97, 98, - 99, 100, 101, 102, 103, 104, 105, 181, 182, 222, - 69, 77, 12, 138, 69, 69, 69, 69, 69, 69, - 69, 69, 69, 69, 69, 69, 168, 74, 222, 168, - 168, 69, 208, 209, 211, 212, 222, 115, 79, 80, - 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, - 106, 107, 108, 109, 110, 111, 112, 113, 76, 77, - 168, 28, 168, 144, 170, 171, 172, 212, 222, 168, - 78, 78, 79, 168, 186, 187, 186, 73, 69, 77, - 95, 168, 168, 168, 168, 168, 168, 168, 168, 168, - 168, 168, 168, 168, 168, 168, 69, 69, 69, 69, - 73, 168, 115, 221, 168, 168, 168, 168, 168, 168, - 168, 168, 168, 168, 168, 186, 222, 168, 168, 168, - 168, 168, 168, 168, 168, 168, 70, 168, 168, 70, - 75, 168, 168, 168, 168, 168, 168, 168, 168, 168, - 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, - 168, 44, 222, 70, 69, 70, 79, 31, 75, 70, - 70, 75, 70, 168, 186, 222, 168, 70, 70, 70, - 70, 70, 70, 75, 74, 74, 74, 74, 74, 74, - 74, 74, 168, 168, 168, 168, 74, 70, 69, 75, + 0, 11, 12, 13, 14, 15, 17, 18, 19, 45, + 116, 132, 133, 134, 135, 136, 137, 138, 223, 115, + 116, 224, 224, 70, 223, 223, 223, 0, 134, 135, + 136, 70, 80, 80, 117, 226, 70, 70, 70, 184, + 185, 223, 71, 184, 184, 184, 71, 76, 96, 80, + 71, 71, 71, 72, 144, 185, 223, 42, 43, 111, + 118, 120, 121, 186, 225, 226, 229, 230, 231, 232, + 144, 144, 144, 11, 22, 25, 26, 28, 29, 30, + 31, 33, 34, 35, 36, 37, 38, 39, 40, 41, + 46, 47, 48, 49, 50, 57, 63, 64, 65, 66, + 67, 68, 73, 74, 82, 83, 116, 139, 140, 142, + 143, 144, 146, 147, 148, 149, 150, 151, 152, 153, + 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, + 164, 165, 166, 167, 168, 171, 172, 173, 180, 181, + 182, 183, 195, 201, 202, 203, 204, 205, 206, 209, + 210, 213, 216, 217, 218, 219, 223, 224, 120, 121, + 12, 139, 141, 16, 44, 51, 52, 53, 54, 55, + 56, 58, 59, 60, 61, 62, 69, 70, 74, 78, + 94, 95, 111, 114, 119, 169, 174, 175, 176, 177, + 178, 179, 180, 181, 189, 190, 191, 192, 193, 194, + 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, + 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, + 215, 216, 217, 218, 219, 220, 221, 223, 224, 225, + 226, 227, 228, 229, 230, 231, 232, 80, 70, 139, + 70, 70, 70, 70, 111, 226, 230, 79, 80, 80, + 80, 169, 70, 70, 74, 223, 224, 223, 70, 70, + 70, 70, 70, 70, 70, 74, 180, 181, 213, 213, + 73, 140, 80, 80, 80, 80, 80, 74, 74, 74, + 74, 74, 74, 74, 20, 21, 23, 24, 74, 77, + 82, 83, 96, 97, 98, 99, 100, 101, 102, 103, + 104, 105, 106, 182, 183, 223, 70, 78, 12, 139, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, - 168, 78, 138, 168, 138, 168, 169, 168, 222, 143, - 79, 168, 79, 74, 70, 69, 79, 168, 74, 70, - 70, 75, 70, 75, 70, 75, 186, 168, 75, 168, - 26, 70, 79, 70, 31, 74, 186, 70, 69, 79, - 79, 186, 187, 79, 187, 79, 187, 70, 70, 168, - 138, 79, 144, 138, 168, 69, 70, 186, 70, 70, - 70, 70, 70, 70, 186, 70, 79, 79, 79, 138, - 138, 70 + 70, 70, 169, 75, 223, 169, 169, 70, 209, 210, + 212, 213, 223, 116, 80, 81, 84, 85, 86, 87, + 88, 89, 90, 91, 92, 93, 107, 108, 109, 110, + 111, 112, 113, 114, 77, 78, 169, 29, 169, 145, + 171, 172, 173, 213, 223, 169, 79, 79, 80, 169, + 187, 188, 187, 74, 70, 78, 96, 169, 169, 169, + 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, + 169, 169, 70, 70, 70, 70, 74, 169, 116, 222, + 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, + 169, 187, 223, 169, 169, 169, 169, 169, 169, 169, + 169, 169, 71, 169, 169, 71, 76, 169, 169, 169, + 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, + 169, 169, 169, 169, 169, 169, 169, 45, 223, 71, + 70, 71, 80, 32, 76, 71, 71, 76, 71, 169, + 187, 223, 169, 71, 71, 71, 71, 71, 71, 76, + 75, 75, 75, 75, 75, 75, 75, 75, 169, 169, + 169, 169, 75, 71, 70, 76, 71, 71, 71, 71, + 71, 71, 71, 71, 71, 71, 169, 79, 139, 169, + 139, 169, 170, 169, 223, 144, 80, 169, 80, 75, + 71, 70, 80, 169, 75, 71, 71, 76, 71, 76, + 71, 76, 187, 169, 76, 169, 27, 71, 80, 71, + 32, 75, 187, 71, 70, 80, 80, 187, 188, 80, + 188, 80, 188, 71, 71, 169, 139, 80, 145, 139, + 169, 70, 71, 187, 71, 71, 71, 71, 71, 71, + 187, 71, 80, 80, 80, 139, 139, 71 }; const unsigned char parser::yyr1_[] = { - 0, 130, 131, 131, 132, 132, 132, 132, 132, 132, - 133, 134, 135, 135, 135, 135, 136, 137, 137, 137, - 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, - 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, - 138, 138, 138, 138, 139, 139, 140, 140, 141, 141, - 142, 142, 143, 143, 144, 144, 144, 144, 145, 145, - 146, 147, 147, 147, 148, 149, 149, 150, 151, 151, - 152, 152, 153, 154, 155, 156, 157, 158, 159, 159, - 160, 161, 161, 162, 163, 164, 165, 165, 166, 167, - 168, 168, 168, 169, 169, 170, 170, 170, 170, 170, - 170, 170, 170, 170, 170, 170, 171, 171, 172, 172, - 173, 174, 174, 174, 174, 174, 174, 174, 174, 174, - 174, 174, 174, 174, 174, 174, 174, 174, 174, 175, + 0, 131, 132, 132, 133, 133, 133, 133, 133, 133, + 134, 135, 136, 136, 136, 136, 137, 138, 138, 138, + 138, 139, 139, 139, 139, 139, 139, 139, 139, 139, + 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, + 139, 139, 139, 139, 139, 140, 140, 141, 141, 142, + 142, 143, 143, 144, 144, 145, 145, 145, 145, 146, + 146, 147, 148, 148, 148, 149, 150, 150, 151, 152, + 152, 153, 153, 154, 155, 156, 157, 158, 159, 160, + 160, 161, 162, 162, 163, 164, 165, 166, 166, 167, + 168, 169, 169, 169, 170, 170, 171, 171, 171, 171, + 171, 171, 171, 171, 171, 171, 171, 172, 172, 173, + 173, 174, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, - 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, - 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, - 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, - 175, 175, 175, 175, 175, 176, 177, 177, 177, 177, - 178, 179, 179, 180, 180, 181, 181, 181, 181, 182, - 182, 183, 183, 183, 183, 183, 184, 185, 185, 185, - 185, 185, 185, 186, 186, 187, 187, 188, 189, 190, + 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, + 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, + 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, + 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, + 176, 176, 176, 176, 176, 176, 177, 178, 178, 178, + 178, 179, 180, 180, 181, 181, 182, 182, 182, 182, + 183, 183, 184, 184, 184, 184, 184, 185, 186, 186, + 186, 186, 186, 186, 187, 187, 188, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, - 201, 202, 203, 204, 205, 206, 207, 207, 208, 208, - 208, 208, 208, 208, 208, 208, 209, 210, 211, 212, - 212, 212, 212, 212, 212, 212, 212, 212, 213, 214, - 215, 216, 217, 218, 219, 220, 221, 222, 222, 223, - 223, 224, 225, 226, 227, 228, 228, 229, 229, 230, - 231 + 201, 202, 203, 204, 205, 206, 207, 208, 208, 209, + 209, 209, 209, 209, 209, 209, 209, 210, 211, 212, + 213, 213, 213, 213, 213, 213, 213, 213, 213, 214, + 215, 216, 217, 218, 219, 220, 221, 222, 223, 223, + 224, 224, 225, 226, 227, 228, 229, 229, 230, 230, + 231, 232 }; const signed char @@ -5420,32 +5428,32 @@ namespace xsk { namespace arc { namespace t6 { { 0, 2, 1, 0, 2, 2, 2, 1, 1, 1, 3, 3, 1, 1, 1, 1, 5, 5, 6, 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, 1, 1, 2, 1, 2, 1, - 3, 2, 3, 2, 1, 1, 1, 0, 2, 2, - 5, 2, 2, 2, 6, 8, 6, 3, 8, 6, - 8, 6, 2, 5, 7, 5, 7, 9, 7, 9, - 5, 3, 3, 2, 2, 2, 3, 2, 5, 5, - 1, 1, 1, 1, 0, 3, 3, 3, 3, 3, - 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, 2, 1, 2, + 1, 3, 2, 3, 2, 1, 1, 1, 0, 2, + 2, 5, 2, 2, 2, 6, 8, 6, 3, 8, + 6, 8, 6, 2, 5, 7, 5, 7, 9, 7, + 9, 5, 3, 3, 2, 2, 2, 3, 2, 5, + 5, 1, 1, 1, 1, 0, 3, 3, 3, 3, + 3, 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, 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, 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 }; @@ -5455,34 +5463,34 @@ namespace xsk { namespace arc { namespace t6 { const short parser::yyrline_[] = { - 0, 295, 295, 296, 300, 302, 304, 306, 308, 310, - 315, 319, 324, 325, 326, 327, 331, 336, 338, 340, - 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, - 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, - 365, 366, 367, 368, 372, 373, 377, 379, 384, 386, - 391, 392, 396, 397, 401, 403, 405, 408, 412, 414, - 419, 424, 426, 428, 433, 438, 440, 445, 450, 452, - 457, 459, 464, 469, 474, 479, 484, 489, 494, 496, - 501, 506, 508, 513, 518, 523, 528, 530, 535, 540, - 545, 546, 547, 551, 552, 556, 558, 560, 562, 564, - 566, 568, 570, 572, 574, 576, 581, 583, 588, 590, - 595, 600, 602, 604, 606, 608, 610, 612, 614, 616, - 618, 620, 622, 624, 626, 628, 630, 632, 634, 639, - 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, - 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, - 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, - 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, - 680, 681, 682, 683, 684, 688, 693, 695, 697, 699, - 704, 709, 710, 713, 714, 718, 720, 722, 724, 729, - 731, 736, 738, 740, 742, 745, 749, 754, 755, 756, - 757, 758, 759, 763, 766, 770, 772, 777, 782, 787, - 792, 797, 802, 807, 812, 817, 822, 827, 832, 837, - 842, 847, 852, 857, 862, 867, 872, 874, 879, 881, - 883, 885, 887, 889, 891, 893, 898, 903, 908, 913, - 914, 915, 916, 917, 918, 919, 920, 921, 925, 930, - 935, 940, 945, 950, 955, 960, 965, 970, 972, 977, - 979, 984, 989, 994, 999, 1004, 1006, 1011, 1013, 1018, - 1023 + 0, 296, 296, 297, 301, 303, 305, 307, 309, 311, + 316, 320, 325, 326, 327, 328, 332, 337, 339, 341, + 343, 348, 349, 350, 351, 352, 353, 354, 355, 356, + 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, + 367, 368, 369, 370, 371, 375, 376, 380, 382, 387, + 389, 394, 395, 399, 400, 404, 406, 408, 411, 415, + 417, 422, 427, 429, 431, 436, 441, 443, 448, 453, + 455, 460, 462, 467, 472, 477, 482, 487, 492, 497, + 499, 504, 509, 511, 516, 521, 526, 531, 533, 538, + 543, 548, 549, 550, 554, 555, 559, 561, 563, 565, + 567, 569, 571, 573, 575, 577, 579, 584, 586, 591, + 593, 598, 603, 605, 607, 609, 611, 613, 615, 617, + 619, 621, 623, 625, 627, 629, 631, 633, 635, 637, + 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, + 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, + 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, + 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, + 682, 683, 684, 685, 686, 687, 691, 696, 698, 700, + 702, 707, 712, 713, 716, 717, 721, 723, 725, 727, + 732, 734, 739, 741, 743, 745, 748, 752, 757, 758, + 759, 760, 761, 762, 766, 769, 773, 775, 780, 785, + 790, 795, 800, 805, 810, 815, 820, 825, 830, 835, + 840, 845, 850, 855, 860, 865, 870, 875, 877, 882, + 884, 886, 888, 890, 892, 894, 896, 901, 906, 911, + 916, 917, 918, 919, 920, 921, 922, 923, 924, 928, + 933, 938, 943, 948, 953, 958, 963, 968, 973, 975, + 980, 982, 987, 992, 997, 1002, 1007, 1009, 1014, 1016, + 1021, 1026 }; void @@ -5515,9 +5523,9 @@ namespace xsk { namespace arc { namespace t6 { #line 13 "parser.ypp" } } } // xsk::arc::t6 -#line 5519 "parser.cpp" +#line 5527 "parser.cpp" -#line 1027 "parser.ypp" +#line 1030 "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 93d4a071..6d08ee4d 100644 --- a/src/t6/xsk/parser.hpp +++ b/src/t6/xsk/parser.hpp @@ -762,118 +762,119 @@ namespace xsk { namespace arc { namespace t6 { USINGTREE = 15, // "#using_animtree" ANIMTREE = 16, // "#animtree" 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" - CONST = 49, // "const" - GETNEXTARRAYKEY = 50, // "getnextarraykey" - GETFIRSTARRAYKEY = 51, // "getfirstarraykey" - GETDVARCOLORALPHA = 52, // "getdvarcoloralpha" - GETDVARCOLORBLUE = 53, // "getdvarcolorblue" - GETDVARCOLORGREEN = 54, // "getdvarcolorgreen" - GETDVARCOLORRED = 55, // "getdvarcolorred" - GETDVARVECTOR = 56, // "getdvarvector" - GETDVARFLOAT = 57, // "getdvarfloat" - GETDVARINT = 58, // "getdvarint" - GETDVAR = 59, // "getdvar" - GETTIME = 60, // "gettime" - ABS = 61, // "abs" - VECTORTOANGLES = 62, // "vectortoangles" - ANGLECLAMP180 = 63, // "angleclamp180" - ANGLESTOFORWARD = 64, // "anglestoforward" - ANGLESTORIGHT = 65, // "anglestoright" - ANGLESTOUP = 66, // "anglestoup" - VECTORSCALE = 67, // "vectorscale" - ISDEFINED = 68, // "isdefined" - LPAREN = 69, // "(" - RPAREN = 70, // ")" - LBRACE = 71, // "{" - RBRACE = 72, // "}" - LBRACKET = 73, // "[" - RBRACKET = 74, // "]" - COMMA = 75, // "," - DOT = 76, // "." - DOUBLECOLON = 77, // "::" - COLON = 78, // ":" - SEMICOLON = 79, // ";" - QMARK = 80, // "?" - INCREMENT = 81, // "++" - DECREMENT = 82, // "--" - LSHIFT = 83, // "<<" - RSHIFT = 84, // ">>" - OR = 85, // "||" - AND = 86, // "&&" - EQUALITY = 87, // "==" - INEQUALITY = 88, // "!=" - LESS_EQUAL = 89, // "<=" - GREATER_EQUAL = 90, // ">=" - LESS = 91, // "<" - GREATER = 92, // ">" - NOT = 93, // "!" - COMPLEMENT = 94, // "~" - ASSIGN = 95, // "=" - ASSIGN_ADD = 96, // "+=" - ASSIGN_SUB = 97, // "-=" - ASSIGN_MUL = 98, // "*=" - ASSIGN_DIV = 99, // "/=" - ASSIGN_MOD = 100, // "%=" - ASSIGN_BW_OR = 101, // "|=" - ASSIGN_BW_AND = 102, // "&=" - ASSIGN_BW_EXOR = 103, // "^=" - ASSIGN_RSHIFT = 104, // ">>=" - ASSIGN_LSHIFT = 105, // "<<=" - BITWISE_OR = 106, // "|" - BITWISE_AND = 107, // "&" - BITWISE_EXOR = 108, // "^" - ADD = 109, // "+" - SUB = 110, // "-" - MUL = 111, // "*" - DIV = 112, // "/" - MOD = 113, // "%" - PATH = 114, // "path" - IDENTIFIER = 115, // "identifier" - STRING = 116, // "string literal" - ISTRING = 117, // "localized string" - HASH = 118, // "hash" - FLOAT = 119, // "float" - INTEGER = 120, // "integer" - SIZEOF = 121, // SIZEOF - THEN = 122, // THEN - TERN = 123, // TERN - NEG = 124, // NEG - ANIMREF = 125, // ANIMREF - PREINC = 126, // PREINC - PREDEC = 127, // PREDEC - POSTINC = 128, // POSTINC - POSTDEC = 129 // POSTDEC + CODECALL = 18, // "codecall" + PRIVATE = 19, // "private" + ENDON = 20, // "endon" + NOTIFY = 21, // "notify" + WAIT = 22, // "wait" + WAITTILL = 23, // "waittill" + WAITTILLMATCH = 24, // "waittillmatch" + WAITTILLFRAMEEND = 25, // "waittillframeend" + IF = 26, // "if" + ELSE = 27, // "else" + DO = 28, // "do" + WHILE = 29, // "while" + FOR = 30, // "for" + FOREACH = 31, // "foreach" + IN = 32, // "in" + SWITCH = 33, // "switch" + CASE = 34, // "case" + DEFAULT = 35, // "default" + BREAK = 36, // "break" + CONTINUE = 37, // "continue" + RETURN = 38, // "return" + PROFBEGIN = 39, // "prof_begin" + PROFEND = 40, // "prof_end" + THREAD = 41, // "thread" + TRUE = 42, // "true" + FALSE = 43, // "false" + UNDEFINED = 44, // "undefined" + SIZE = 45, // "size" + GAME = 46, // "game" + SELF = 47, // "self" + ANIM = 48, // "anim" + LEVEL = 49, // "level" + CONST = 50, // "const" + GETNEXTARRAYKEY = 51, // "getnextarraykey" + GETFIRSTARRAYKEY = 52, // "getfirstarraykey" + GETDVARCOLORALPHA = 53, // "getdvarcoloralpha" + GETDVARCOLORBLUE = 54, // "getdvarcolorblue" + GETDVARCOLORGREEN = 55, // "getdvarcolorgreen" + GETDVARCOLORRED = 56, // "getdvarcolorred" + GETDVARVECTOR = 57, // "getdvarvector" + GETDVARFLOAT = 58, // "getdvarfloat" + GETDVARINT = 59, // "getdvarint" + GETDVAR = 60, // "getdvar" + GETTIME = 61, // "gettime" + ABS = 62, // "abs" + VECTORTOANGLES = 63, // "vectortoangles" + ANGLECLAMP180 = 64, // "angleclamp180" + ANGLESTOFORWARD = 65, // "anglestoforward" + ANGLESTORIGHT = 66, // "anglestoright" + ANGLESTOUP = 67, // "anglestoup" + VECTORSCALE = 68, // "vectorscale" + ISDEFINED = 69, // "isdefined" + LPAREN = 70, // "(" + RPAREN = 71, // ")" + LBRACE = 72, // "{" + RBRACE = 73, // "}" + LBRACKET = 74, // "[" + RBRACKET = 75, // "]" + COMMA = 76, // "," + DOT = 77, // "." + DOUBLECOLON = 78, // "::" + COLON = 79, // ":" + SEMICOLON = 80, // ";" + QMARK = 81, // "?" + INCREMENT = 82, // "++" + DECREMENT = 83, // "--" + LSHIFT = 84, // "<<" + RSHIFT = 85, // ">>" + OR = 86, // "||" + AND = 87, // "&&" + EQUALITY = 88, // "==" + INEQUALITY = 89, // "!=" + LESS_EQUAL = 90, // "<=" + GREATER_EQUAL = 91, // ">=" + LESS = 92, // "<" + GREATER = 93, // ">" + NOT = 94, // "!" + COMPLEMENT = 95, // "~" + ASSIGN = 96, // "=" + ASSIGN_ADD = 97, // "+=" + ASSIGN_SUB = 98, // "-=" + ASSIGN_MUL = 99, // "*=" + ASSIGN_DIV = 100, // "/=" + ASSIGN_MOD = 101, // "%=" + ASSIGN_BW_OR = 102, // "|=" + ASSIGN_BW_AND = 103, // "&=" + ASSIGN_BW_EXOR = 104, // "^=" + ASSIGN_RSHIFT = 105, // ">>=" + ASSIGN_LSHIFT = 106, // "<<=" + BITWISE_OR = 107, // "|" + BITWISE_AND = 108, // "&" + BITWISE_EXOR = 109, // "^" + ADD = 110, // "+" + SUB = 111, // "-" + MUL = 112, // "*" + DIV = 113, // "/" + MOD = 114, // "%" + PATH = 115, // "path" + IDENTIFIER = 116, // "identifier" + STRING = 117, // "string literal" + ISTRING = 118, // "localized string" + HASH = 119, // "hash" + FLOAT = 120, // "float" + INTEGER = 121, // "integer" + SIZEOF = 122, // SIZEOF + THEN = 123, // THEN + TERN = 124, // TERN + NEG = 125, // NEG + ANIMREF = 126, // ANIMREF + PREINC = 127, // PREINC + PREDEC = 128, // PREDEC + POSTINC = 129, // POSTINC + POSTDEC = 130 // POSTDEC }; /// Backward compatibility alias (Bison 3.6). typedef token_kind_type yytokentype; @@ -890,7 +891,7 @@ namespace xsk { namespace arc { namespace t6 { { enum symbol_kind_type { - YYNTOKENS = 130, ///< Number of tokens. + YYNTOKENS = 131, ///< Number of tokens. S_YYEMPTY = -2, S_YYEOF = 0, // "end of file" S_YYerror = 1, // error @@ -910,220 +911,221 @@ namespace xsk { namespace arc { namespace t6 { S_USINGTREE = 15, // "#using_animtree" S_ANIMTREE = 16, // "#animtree" 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_CONST = 49, // "const" - S_GETNEXTARRAYKEY = 50, // "getnextarraykey" - S_GETFIRSTARRAYKEY = 51, // "getfirstarraykey" - S_GETDVARCOLORALPHA = 52, // "getdvarcoloralpha" - S_GETDVARCOLORBLUE = 53, // "getdvarcolorblue" - S_GETDVARCOLORGREEN = 54, // "getdvarcolorgreen" - S_GETDVARCOLORRED = 55, // "getdvarcolorred" - S_GETDVARVECTOR = 56, // "getdvarvector" - S_GETDVARFLOAT = 57, // "getdvarfloat" - S_GETDVARINT = 58, // "getdvarint" - S_GETDVAR = 59, // "getdvar" - S_GETTIME = 60, // "gettime" - S_ABS = 61, // "abs" - S_VECTORTOANGLES = 62, // "vectortoangles" - S_ANGLECLAMP180 = 63, // "angleclamp180" - S_ANGLESTOFORWARD = 64, // "anglestoforward" - S_ANGLESTORIGHT = 65, // "anglestoright" - S_ANGLESTOUP = 66, // "anglestoup" - S_VECTORSCALE = 67, // "vectorscale" - S_ISDEFINED = 68, // "isdefined" - S_LPAREN = 69, // "(" - S_RPAREN = 70, // ")" - S_LBRACE = 71, // "{" - S_RBRACE = 72, // "}" - S_LBRACKET = 73, // "[" - S_RBRACKET = 74, // "]" - S_COMMA = 75, // "," - S_DOT = 76, // "." - S_DOUBLECOLON = 77, // "::" - S_COLON = 78, // ":" - S_SEMICOLON = 79, // ";" - S_QMARK = 80, // "?" - S_INCREMENT = 81, // "++" - S_DECREMENT = 82, // "--" - S_LSHIFT = 83, // "<<" - S_RSHIFT = 84, // ">>" - S_OR = 85, // "||" - S_AND = 86, // "&&" - S_EQUALITY = 87, // "==" - S_INEQUALITY = 88, // "!=" - S_LESS_EQUAL = 89, // "<=" - S_GREATER_EQUAL = 90, // ">=" - S_LESS = 91, // "<" - S_GREATER = 92, // ">" - S_NOT = 93, // "!" - S_COMPLEMENT = 94, // "~" - S_ASSIGN = 95, // "=" - S_ASSIGN_ADD = 96, // "+=" - S_ASSIGN_SUB = 97, // "-=" - S_ASSIGN_MUL = 98, // "*=" - S_ASSIGN_DIV = 99, // "/=" - S_ASSIGN_MOD = 100, // "%=" - S_ASSIGN_BW_OR = 101, // "|=" - S_ASSIGN_BW_AND = 102, // "&=" - S_ASSIGN_BW_EXOR = 103, // "^=" - S_ASSIGN_RSHIFT = 104, // ">>=" - S_ASSIGN_LSHIFT = 105, // "<<=" - S_BITWISE_OR = 106, // "|" - S_BITWISE_AND = 107, // "&" - S_BITWISE_EXOR = 108, // "^" - S_ADD = 109, // "+" - S_SUB = 110, // "-" - S_MUL = 111, // "*" - S_DIV = 112, // "/" - S_MOD = 113, // "%" - S_PATH = 114, // "path" - S_IDENTIFIER = 115, // "identifier" - S_STRING = 116, // "string literal" - S_ISTRING = 117, // "localized string" - S_HASH = 118, // "hash" - S_FLOAT = 119, // "float" - S_INTEGER = 120, // "integer" - S_SIZEOF = 121, // SIZEOF - S_THEN = 122, // THEN - S_TERN = 123, // TERN - S_NEG = 124, // NEG - S_ANIMREF = 125, // ANIMREF - S_PREINC = 126, // PREINC - S_PREDEC = 127, // PREDEC - S_POSTINC = 128, // POSTINC - S_POSTDEC = 129, // POSTDEC - S_YYACCEPT = 130, // $accept - S_root = 131, // root - S_program = 132, // program - S_inline = 133, // inline - S_include = 134, // include - S_declaration = 135, // declaration - S_decl_usingtree = 136, // decl_usingtree - S_decl_thread = 137, // decl_thread - S_stmt = 138, // stmt - S_stmt_or_dev = 139, // stmt_or_dev - 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_const = 146, // stmt_const - S_stmt_assign = 147, // stmt_assign - S_stmt_endon = 148, // stmt_endon - S_stmt_notify = 149, // stmt_notify - S_stmt_wait = 150, // stmt_wait - S_stmt_waittill = 151, // stmt_waittill - S_stmt_waittillmatch = 152, // stmt_waittillmatch - S_stmt_waittillframeend = 153, // stmt_waittillframeend - S_stmt_if = 154, // stmt_if - S_stmt_ifelse = 155, // stmt_ifelse - S_stmt_while = 156, // stmt_while - S_stmt_dowhile = 157, // stmt_dowhile - S_stmt_for = 158, // stmt_for - S_stmt_foreach = 159, // stmt_foreach - S_stmt_switch = 160, // stmt_switch - S_stmt_case = 161, // stmt_case - S_stmt_default = 162, // stmt_default - S_stmt_break = 163, // stmt_break - S_stmt_continue = 164, // stmt_continue - S_stmt_return = 165, // stmt_return - S_stmt_prof_begin = 166, // stmt_prof_begin - S_stmt_prof_end = 167, // stmt_prof_end - S_expr = 168, // expr - S_expr_or_empty = 169, // expr_or_empty - S_expr_assign = 170, // expr_assign - S_expr_increment = 171, // expr_increment - S_expr_decrement = 172, // expr_decrement - S_expr_ternary = 173, // expr_ternary - S_expr_binary = 174, // expr_binary - S_expr_primitive = 175, // expr_primitive - S_expr_complement = 176, // expr_complement - S_expr_negate = 177, // expr_negate - S_expr_not = 178, // expr_not - S_expr_call = 179, // expr_call - S_expr_method = 180, // expr_method - S_expr_function = 181, // expr_function - S_expr_pointer = 182, // expr_pointer - S_expr_parameters = 183, // expr_parameters - S_expr_parameters_default = 184, // expr_parameters_default - S_expr_literal = 185, // expr_literal - S_expr_arguments = 186, // expr_arguments - S_expr_arguments_no_empty = 187, // expr_arguments_no_empty - S_expr_getnextarraykey = 188, // expr_getnextarraykey - S_expr_getfirstarraykey = 189, // expr_getfirstarraykey - S_expr_getdvarcoloralpha = 190, // expr_getdvarcoloralpha - S_expr_getdvarcolorblue = 191, // expr_getdvarcolorblue - S_expr_getdvarcolorgreen = 192, // expr_getdvarcolorgreen - S_expr_getdvarcolorred = 193, // expr_getdvarcolorred - S_expr_getdvarvector = 194, // expr_getdvarvector - S_expr_getdvarfloat = 195, // expr_getdvarfloat - S_expr_getdvarint = 196, // expr_getdvarint - S_expr_getdvar = 197, // expr_getdvar - S_expr_gettime = 198, // expr_gettime - S_expr_abs = 199, // expr_abs - S_expr_vectortoangles = 200, // expr_vectortoangles - S_expr_angleclamp180 = 201, // expr_angleclamp180 - S_expr_anglestoforward = 202, // expr_anglestoforward - S_expr_anglestoright = 203, // expr_anglestoright - S_expr_anglestoup = 204, // expr_anglestoup - S_expr_vectorscale = 205, // expr_vectorscale - S_expr_isdefined = 206, // expr_isdefined - S_expr_reference = 207, // expr_reference - S_expr_array = 208, // expr_array - S_expr_field = 209, // expr_field - S_expr_size = 210, // expr_size - S_expr_paren = 211, // expr_paren - S_expr_object = 212, // expr_object - S_expr_empty_array = 213, // expr_empty_array - S_expr_undefined = 214, // expr_undefined - S_expr_game = 215, // expr_game - S_expr_self = 216, // expr_self - S_expr_anim = 217, // expr_anim - S_expr_level = 218, // expr_level - S_expr_animation = 219, // expr_animation - S_expr_animtree = 220, // expr_animtree - S_expr_identifier_nosize = 221, // expr_identifier_nosize - S_expr_identifier = 222, // expr_identifier - S_expr_path = 223, // expr_path - S_expr_istring = 224, // expr_istring - S_expr_string = 225, // expr_string - S_expr_vector = 226, // expr_vector - S_expr_hash = 227, // expr_hash - S_expr_float = 228, // expr_float - S_expr_integer = 229, // expr_integer - S_expr_false = 230, // expr_false - S_expr_true = 231 // expr_true + S_CODECALL = 18, // "codecall" + S_PRIVATE = 19, // "private" + S_ENDON = 20, // "endon" + S_NOTIFY = 21, // "notify" + S_WAIT = 22, // "wait" + S_WAITTILL = 23, // "waittill" + S_WAITTILLMATCH = 24, // "waittillmatch" + S_WAITTILLFRAMEEND = 25, // "waittillframeend" + S_IF = 26, // "if" + S_ELSE = 27, // "else" + S_DO = 28, // "do" + S_WHILE = 29, // "while" + S_FOR = 30, // "for" + S_FOREACH = 31, // "foreach" + S_IN = 32, // "in" + S_SWITCH = 33, // "switch" + S_CASE = 34, // "case" + S_DEFAULT = 35, // "default" + S_BREAK = 36, // "break" + S_CONTINUE = 37, // "continue" + S_RETURN = 38, // "return" + S_PROFBEGIN = 39, // "prof_begin" + S_PROFEND = 40, // "prof_end" + S_THREAD = 41, // "thread" + S_TRUE = 42, // "true" + S_FALSE = 43, // "false" + S_UNDEFINED = 44, // "undefined" + S_SIZE = 45, // "size" + S_GAME = 46, // "game" + S_SELF = 47, // "self" + S_ANIM = 48, // "anim" + S_LEVEL = 49, // "level" + S_CONST = 50, // "const" + S_GETNEXTARRAYKEY = 51, // "getnextarraykey" + S_GETFIRSTARRAYKEY = 52, // "getfirstarraykey" + S_GETDVARCOLORALPHA = 53, // "getdvarcoloralpha" + S_GETDVARCOLORBLUE = 54, // "getdvarcolorblue" + S_GETDVARCOLORGREEN = 55, // "getdvarcolorgreen" + S_GETDVARCOLORRED = 56, // "getdvarcolorred" + S_GETDVARVECTOR = 57, // "getdvarvector" + S_GETDVARFLOAT = 58, // "getdvarfloat" + S_GETDVARINT = 59, // "getdvarint" + S_GETDVAR = 60, // "getdvar" + S_GETTIME = 61, // "gettime" + S_ABS = 62, // "abs" + S_VECTORTOANGLES = 63, // "vectortoangles" + S_ANGLECLAMP180 = 64, // "angleclamp180" + S_ANGLESTOFORWARD = 65, // "anglestoforward" + S_ANGLESTORIGHT = 66, // "anglestoright" + S_ANGLESTOUP = 67, // "anglestoup" + S_VECTORSCALE = 68, // "vectorscale" + S_ISDEFINED = 69, // "isdefined" + S_LPAREN = 70, // "(" + S_RPAREN = 71, // ")" + S_LBRACE = 72, // "{" + S_RBRACE = 73, // "}" + S_LBRACKET = 74, // "[" + S_RBRACKET = 75, // "]" + S_COMMA = 76, // "," + S_DOT = 77, // "." + S_DOUBLECOLON = 78, // "::" + S_COLON = 79, // ":" + S_SEMICOLON = 80, // ";" + S_QMARK = 81, // "?" + S_INCREMENT = 82, // "++" + S_DECREMENT = 83, // "--" + S_LSHIFT = 84, // "<<" + S_RSHIFT = 85, // ">>" + S_OR = 86, // "||" + S_AND = 87, // "&&" + S_EQUALITY = 88, // "==" + S_INEQUALITY = 89, // "!=" + S_LESS_EQUAL = 90, // "<=" + S_GREATER_EQUAL = 91, // ">=" + S_LESS = 92, // "<" + S_GREATER = 93, // ">" + S_NOT = 94, // "!" + S_COMPLEMENT = 95, // "~" + S_ASSIGN = 96, // "=" + S_ASSIGN_ADD = 97, // "+=" + S_ASSIGN_SUB = 98, // "-=" + S_ASSIGN_MUL = 99, // "*=" + S_ASSIGN_DIV = 100, // "/=" + S_ASSIGN_MOD = 101, // "%=" + S_ASSIGN_BW_OR = 102, // "|=" + S_ASSIGN_BW_AND = 103, // "&=" + S_ASSIGN_BW_EXOR = 104, // "^=" + S_ASSIGN_RSHIFT = 105, // ">>=" + S_ASSIGN_LSHIFT = 106, // "<<=" + S_BITWISE_OR = 107, // "|" + S_BITWISE_AND = 108, // "&" + S_BITWISE_EXOR = 109, // "^" + S_ADD = 110, // "+" + S_SUB = 111, // "-" + S_MUL = 112, // "*" + S_DIV = 113, // "/" + S_MOD = 114, // "%" + S_PATH = 115, // "path" + S_IDENTIFIER = 116, // "identifier" + S_STRING = 117, // "string literal" + S_ISTRING = 118, // "localized string" + S_HASH = 119, // "hash" + S_FLOAT = 120, // "float" + S_INTEGER = 121, // "integer" + S_SIZEOF = 122, // SIZEOF + S_THEN = 123, // THEN + S_TERN = 124, // TERN + S_NEG = 125, // NEG + S_ANIMREF = 126, // ANIMREF + S_PREINC = 127, // PREINC + S_PREDEC = 128, // PREDEC + S_POSTINC = 129, // POSTINC + S_POSTDEC = 130, // POSTDEC + S_YYACCEPT = 131, // $accept + S_root = 132, // root + S_program = 133, // program + S_inline = 134, // inline + S_include = 135, // include + S_declaration = 136, // declaration + S_decl_usingtree = 137, // decl_usingtree + S_decl_thread = 138, // decl_thread + S_stmt = 139, // stmt + S_stmt_or_dev = 140, // stmt_or_dev + S_stmt_list = 141, // stmt_list + S_stmt_or_dev_list = 142, // stmt_or_dev_list + S_stmt_dev = 143, // stmt_dev + S_stmt_block = 144, // stmt_block + S_stmt_expr = 145, // stmt_expr + S_stmt_call = 146, // stmt_call + S_stmt_const = 147, // stmt_const + S_stmt_assign = 148, // stmt_assign + S_stmt_endon = 149, // stmt_endon + S_stmt_notify = 150, // stmt_notify + S_stmt_wait = 151, // stmt_wait + S_stmt_waittill = 152, // stmt_waittill + S_stmt_waittillmatch = 153, // stmt_waittillmatch + S_stmt_waittillframeend = 154, // stmt_waittillframeend + S_stmt_if = 155, // stmt_if + S_stmt_ifelse = 156, // stmt_ifelse + S_stmt_while = 157, // stmt_while + S_stmt_dowhile = 158, // stmt_dowhile + S_stmt_for = 159, // stmt_for + S_stmt_foreach = 160, // stmt_foreach + S_stmt_switch = 161, // stmt_switch + S_stmt_case = 162, // stmt_case + S_stmt_default = 163, // stmt_default + S_stmt_break = 164, // stmt_break + S_stmt_continue = 165, // stmt_continue + S_stmt_return = 166, // stmt_return + S_stmt_prof_begin = 167, // stmt_prof_begin + S_stmt_prof_end = 168, // stmt_prof_end + S_expr = 169, // expr + S_expr_or_empty = 170, // expr_or_empty + S_expr_assign = 171, // expr_assign + S_expr_increment = 172, // expr_increment + S_expr_decrement = 173, // expr_decrement + S_expr_ternary = 174, // expr_ternary + S_expr_binary = 175, // expr_binary + S_expr_primitive = 176, // expr_primitive + S_expr_complement = 177, // expr_complement + S_expr_negate = 178, // expr_negate + S_expr_not = 179, // expr_not + S_expr_call = 180, // expr_call + S_expr_method = 181, // expr_method + S_expr_function = 182, // expr_function + S_expr_pointer = 183, // expr_pointer + S_expr_parameters = 184, // expr_parameters + S_expr_parameters_default = 185, // expr_parameters_default + S_expr_literal = 186, // expr_literal + S_expr_arguments = 187, // expr_arguments + S_expr_arguments_no_empty = 188, // expr_arguments_no_empty + S_expr_getnextarraykey = 189, // expr_getnextarraykey + S_expr_getfirstarraykey = 190, // expr_getfirstarraykey + S_expr_getdvarcoloralpha = 191, // expr_getdvarcoloralpha + S_expr_getdvarcolorblue = 192, // expr_getdvarcolorblue + S_expr_getdvarcolorgreen = 193, // expr_getdvarcolorgreen + S_expr_getdvarcolorred = 194, // expr_getdvarcolorred + S_expr_getdvarvector = 195, // expr_getdvarvector + S_expr_getdvarfloat = 196, // expr_getdvarfloat + S_expr_getdvarint = 197, // expr_getdvarint + S_expr_getdvar = 198, // expr_getdvar + S_expr_gettime = 199, // expr_gettime + S_expr_abs = 200, // expr_abs + S_expr_vectortoangles = 201, // expr_vectortoangles + S_expr_angleclamp180 = 202, // expr_angleclamp180 + S_expr_anglestoforward = 203, // expr_anglestoforward + S_expr_anglestoright = 204, // expr_anglestoright + S_expr_anglestoup = 205, // expr_anglestoup + S_expr_vectorscale = 206, // expr_vectorscale + S_expr_isdefined = 207, // expr_isdefined + S_expr_reference = 208, // expr_reference + S_expr_array = 209, // expr_array + S_expr_field = 210, // expr_field + S_expr_size = 211, // expr_size + S_expr_paren = 212, // expr_paren + S_expr_object = 213, // expr_object + S_expr_empty_array = 214, // expr_empty_array + S_expr_undefined = 215, // expr_undefined + S_expr_game = 216, // expr_game + S_expr_self = 217, // expr_self + S_expr_anim = 218, // expr_anim + S_expr_level = 219, // expr_level + S_expr_animation = 220, // expr_animation + S_expr_animtree = 221, // expr_animtree + S_expr_identifier_nosize = 222, // expr_identifier_nosize + S_expr_identifier = 223, // expr_identifier + S_expr_path = 224, // expr_path + S_expr_istring = 225, // expr_istring + S_expr_string = 226, // expr_string + S_expr_vector = 227, // expr_vector + S_expr_hash = 228, // expr_hash + S_expr_float = 229, // expr_float + S_expr_integer = 230, // expr_integer + S_expr_false = 231, // expr_false + S_expr_true = 232 // expr_true }; }; @@ -3531,6 +3533,21 @@ switch (yykind) return symbol_type (token::AUTOEXEC, l); } #endif +#if 201103L <= YY_CPLUSPLUS + static + symbol_type + make_CODECALL (location_type l) + { + return symbol_type (token::CODECALL, std::move (l)); + } +#else + static + symbol_type + make_CODECALL (const location_type& l) + { + return symbol_type (token::CODECALL, l); + } +#endif #if 201103L <= YY_CPLUSPLUS static symbol_type @@ -5555,9 +5572,9 @@ switch (yykind) /// Constants. enum { - yylast_ = 3493, ///< Last index in yytable_. + yylast_ = 3502, ///< Last index in yytable_. yynnts_ = 102, ///< Number of nonterminal symbols. - yyfinal_ = 25 ///< Termination state number. + yyfinal_ = 27 ///< Termination state number. }; @@ -6397,7 +6414,7 @@ switch (yykind) #line 13 "parser.ypp" } } } // xsk::arc::t6 -#line 6401 "parser.hpp" +#line 6418 "parser.hpp" diff --git a/src/utils/xsk/arc/nodetree.cpp b/src/utils/xsk/arc/nodetree.cpp index ad4d1db7..04c02390 100644 --- a/src/utils/xsk/arc/nodetree.cpp +++ b/src/utils/xsk/arc/nodetree.cpp @@ -1377,9 +1377,13 @@ auto decl_thread::print() const -> std::string { std::string data; - if (flags == export_flags::vis_autoexec) + if (static_cast(flags) & static_cast(export_flags::export_autoexec)) data += "autoexec "; - else if (flags == export_flags::vis_private) + + if (static_cast(flags) & static_cast(export_flags::export_codecall)) + data += "codecall "; + + if (static_cast(flags) & static_cast(export_flags::export_private2)) data += "private "; data += name->print() + "(" + params->print() + ")" + "\n" + stmt->print() + "\n"; diff --git a/src/utils/xsk/arc/types.hpp b/src/utils/xsk/arc/types.hpp index 001eb1c7..f5b75606 100644 --- a/src/utils/xsk/arc/types.hpp +++ b/src/utils/xsk/arc/types.hpp @@ -99,13 +99,13 @@ struct string_ref enum class export_flags : std::uint8_t { - none = 0x00, - vis_public = 0x01, - vis_autoexec = 0x02, - vis_unk = 0x04, - vis_codecall = 0x08, - vis_private = 0x10, - varargs_may = 0x20, // T7, T8, T9 + export_none = 0x00, + export_public = 0x01, + export_autoexec = 0x02, + export_private = 0x04, + export_codecall = 0x08, + export_private2 = 0x10, + export_varargs = 0x20, }; struct export_ref