redscript-mc 2.6.0 → 3.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/workflows/ci.yml +11 -0
- package/CHANGELOG.md +89 -0
- package/README-benchmarks.md +48 -0
- package/README-vscode-test.md +251 -0
- package/README.md +3 -75
- package/README.zh.md +165 -147
- package/RELEASE_NOTES.md +74 -0
- package/ROADMAP.md +138 -124
- package/benchmarks/_shared.ts +468 -0
- package/benchmarks/baseline.json +2816 -0
- package/benchmarks/baseline.md +13 -0
- package/benchmarks/compiler-perf.report.json +207 -0
- package/benchmarks/compiler-perf.ts +76 -0
- package/benchmarks/results.md +13 -0
- package/benchmarks/stdlib-complexity.report.json +2606 -0
- package/benchmarks/stdlib-complexity.ts +54 -0
- package/benchmarks/stdlib-size.md +57 -0
- package/benchmarks/stdlib-size.ts +91 -0
- package/coverage-report.md +177 -0
- package/dist/__tests__/cli.test.d.ts +1 -0
- package/dist/__tests__/cli.test.js +278 -0
- package/dist/__tests__/codegen.test.d.ts +1 -0
- package/dist/__tests__/codegen.test.js +152 -0
- package/dist/__tests__/compile-all.test.d.ts +10 -0
- package/dist/__tests__/compile-all.test.js +108 -0
- package/dist/__tests__/dce.test.d.ts +1 -0
- package/dist/__tests__/dce.test.js +138 -0
- package/dist/__tests__/diagnostics.test.d.ts +4 -0
- package/dist/__tests__/diagnostics.test.js +149 -0
- package/dist/__tests__/e2e.test.d.ts +6 -0
- package/dist/__tests__/e2e.test.js +1847 -0
- package/dist/__tests__/entity-types.test.d.ts +1 -0
- package/dist/__tests__/entity-types.test.js +203 -0
- package/dist/__tests__/formatter.test.d.ts +1 -0
- package/dist/__tests__/formatter.test.js +40 -0
- package/dist/__tests__/lexer.test.d.ts +1 -0
- package/dist/__tests__/lexer.test.js +343 -0
- package/dist/__tests__/lowering.test.d.ts +1 -0
- package/dist/__tests__/lowering.test.js +1015 -0
- package/dist/__tests__/macro.test.d.ts +8 -0
- package/dist/__tests__/macro.test.js +305 -0
- package/dist/__tests__/mc-integration.test.d.ts +12 -0
- package/dist/__tests__/mc-integration.test.js +819 -0
- package/dist/__tests__/mc-syntax.test.d.ts +1 -0
- package/dist/__tests__/mc-syntax.test.js +124 -0
- package/dist/__tests__/nbt.test.d.ts +1 -0
- package/dist/__tests__/nbt.test.js +82 -0
- package/dist/__tests__/optimizer-advanced.test.d.ts +1 -0
- package/dist/__tests__/optimizer-advanced.test.js +124 -0
- package/dist/__tests__/optimizer.test.d.ts +1 -0
- package/dist/__tests__/optimizer.test.js +149 -0
- package/dist/__tests__/parser.test.d.ts +1 -0
- package/dist/__tests__/parser.test.js +807 -0
- package/dist/__tests__/repl.test.d.ts +1 -0
- package/dist/__tests__/repl.test.js +27 -0
- package/dist/__tests__/runtime.test.d.ts +1 -0
- package/dist/__tests__/runtime.test.js +289 -0
- package/dist/__tests__/stdlib-advanced.test.d.ts +4 -0
- package/dist/__tests__/stdlib-advanced.test.js +378 -0
- package/dist/__tests__/stdlib-bigint.test.d.ts +7 -0
- package/dist/__tests__/stdlib-bigint.test.js +428 -0
- package/dist/__tests__/stdlib-math.test.d.ts +7 -0
- package/dist/__tests__/stdlib-math.test.js +352 -0
- package/dist/__tests__/stdlib-vec.test.d.ts +4 -0
- package/dist/__tests__/stdlib-vec.test.js +264 -0
- package/dist/__tests__/structure-optimizer.test.d.ts +1 -0
- package/dist/__tests__/structure-optimizer.test.js +33 -0
- package/dist/__tests__/typechecker.test.d.ts +1 -0
- package/dist/__tests__/typechecker.test.js +552 -0
- package/dist/__tests__/var-allocator.test.d.ts +1 -0
- package/dist/__tests__/var-allocator.test.js +69 -0
- package/dist/ast/types.d.ts +514 -0
- package/dist/ast/types.js +9 -0
- package/dist/builtins/metadata.d.ts +36 -0
- package/dist/builtins/metadata.js +1014 -0
- package/dist/cli.d.ts +11 -0
- package/dist/cli.js +0 -0
- package/dist/codegen/cmdblock/index.d.ts +26 -0
- package/dist/codegen/cmdblock/index.js +45 -0
- package/dist/codegen/mcfunction/index.d.ts +40 -0
- package/dist/codegen/mcfunction/index.js +606 -0
- package/dist/codegen/structure/index.d.ts +24 -0
- package/dist/codegen/structure/index.js +279 -0
- package/dist/codegen/var-allocator.d.ts +45 -0
- package/dist/codegen/var-allocator.js +104 -0
- package/dist/compile.d.ts +68 -0
- package/dist/data/arena/function/__load.mcfunction +6 -0
- package/dist/data/arena/function/__tick.mcfunction +2 -0
- package/dist/data/arena/function/announce_leaders/else_1.mcfunction +3 -0
- package/dist/data/arena/function/announce_leaders/foreach_0/merge_2.mcfunction +1 -0
- package/dist/data/arena/function/announce_leaders/foreach_0/then_0.mcfunction +3 -0
- package/dist/data/arena/function/announce_leaders/foreach_0.mcfunction +7 -0
- package/dist/data/arena/function/announce_leaders/foreach_1/merge_2.mcfunction +1 -0
- package/dist/data/arena/function/announce_leaders/foreach_1/then_0.mcfunction +4 -0
- package/dist/data/arena/function/announce_leaders/foreach_1.mcfunction +6 -0
- package/dist/data/arena/function/announce_leaders/merge_2.mcfunction +1 -0
- package/dist/data/arena/function/announce_leaders/then_0.mcfunction +4 -0
- package/dist/data/arena/function/announce_leaders.mcfunction +6 -0
- package/dist/data/arena/function/arena_tick/merge_2.mcfunction +1 -0
- package/dist/data/arena/function/arena_tick/then_0.mcfunction +4 -0
- package/dist/data/arena/function/arena_tick.mcfunction +11 -0
- package/dist/data/capture_the_flag/function/add_to_team.mcfunction +5 -0
- package/dist/data/capture_the_flag/function/angry_at.mcfunction +1 -0
- package/dist/data/capture_the_flag/function/assign_teams.mcfunction +1 -0
- package/dist/data/capture_the_flag/function/assign_teams__foreach_t1.mcfunction +8 -0
- package/dist/data/capture_the_flag/function/assign_teams__foreach_t1__else_2.mcfunction +8 -0
- package/dist/data/capture_the_flag/function/assign_teams__foreach_t1__merge_1.mcfunction +3 -0
- package/dist/data/capture_the_flag/function/assign_teams__foreach_t1__then_0.mcfunction +8 -0
- package/dist/data/capture_the_flag/function/barrier_wall.mcfunction +1 -0
- package/dist/data/capture_the_flag/function/buff_all.mcfunction +22 -0
- package/dist/data/capture_the_flag/function/check_flag_capture.mcfunction +2 -0
- package/dist/data/capture_the_flag/function/check_flag_capture__foreach_t0.mcfunction +8 -0
- package/dist/data/capture_the_flag/function/check_flag_capture__foreach_t0__merge_1.mcfunction +1 -0
- package/dist/data/capture_the_flag/function/check_flag_capture__foreach_t0__then_0.mcfunction +7 -0
- package/dist/data/capture_the_flag/function/check_flag_capture__foreach_t1.mcfunction +8 -0
- package/dist/data/capture_the_flag/function/check_flag_capture__foreach_t1__merge_1.mcfunction +1 -0
- package/dist/data/capture_the_flag/function/check_flag_capture__foreach_t1__then_0.mcfunction +7 -0
- package/dist/data/capture_the_flag/function/check_flag_pickup.mcfunction +2 -0
- package/dist/data/capture_the_flag/function/check_flag_pickup__foreach_t0.mcfunction +8 -0
- package/dist/data/capture_the_flag/function/check_flag_pickup__foreach_t0__merge_1.mcfunction +1 -0
- package/dist/data/capture_the_flag/function/check_flag_pickup__foreach_t0__then_0.mcfunction +7 -0
- package/dist/data/capture_the_flag/function/check_flag_pickup__foreach_t1.mcfunction +8 -0
- package/dist/data/capture_the_flag/function/check_flag_pickup__foreach_t1__merge_1.mcfunction +1 -0
- package/dist/data/capture_the_flag/function/check_flag_pickup__foreach_t1__then_0.mcfunction +7 -0
- package/dist/data/capture_the_flag/function/check_win.mcfunction +4 -0
- package/dist/data/capture_the_flag/function/cleanup_teams.mcfunction +8 -0
- package/dist/data/capture_the_flag/function/clear_area.mcfunction +1 -0
- package/dist/data/capture_the_flag/function/clear_effect.mcfunction +1 -0
- package/dist/data/capture_the_flag/function/clear_effects.mcfunction +1 -0
- package/dist/data/capture_the_flag/function/clear_inventory.mcfunction +1 -0
- package/dist/data/capture_the_flag/function/create_blue_team.mcfunction +10 -0
- package/dist/data/capture_the_flag/function/create_green_team.mcfunction +10 -0
- package/dist/data/capture_the_flag/function/create_red_team.mcfunction +10 -0
- package/dist/data/capture_the_flag/function/create_team.mcfunction +8 -0
- package/dist/data/capture_the_flag/function/create_yellow_team.mcfunction +10 -0
- package/dist/data/capture_the_flag/function/disable_fire_spread.mcfunction +1 -0
- package/dist/data/capture_the_flag/function/disable_keep_inventory.mcfunction +1 -0
- package/dist/data/capture_the_flag/function/disable_mob_griefing.mcfunction +1 -0
- package/dist/data/capture_the_flag/function/distance_to.mcfunction +6 -0
- package/dist/data/capture_the_flag/function/distance_to__const_0_0_0_0.mcfunction +5 -0
- package/dist/data/capture_the_flag/function/enable_keep_inventory.mcfunction +1 -0
- package/dist/data/capture_the_flag/function/end_game.mcfunction +6 -0
- package/dist/data/capture_the_flag/function/end_game__else_2.mcfunction +3 -0
- package/dist/data/capture_the_flag/function/end_game__foreach_t7.mcfunction +2 -0
- package/dist/data/capture_the_flag/function/end_game__merge_1.mcfunction +1 -0
- package/dist/data/capture_the_flag/function/end_game__then_0.mcfunction +3 -0
- package/dist/data/capture_the_flag/function/end_sparkles_at.mcfunction +1 -0
- package/dist/data/capture_the_flag/function/explosion_effect.mcfunction +1 -0
- package/dist/data/capture_the_flag/function/flames.mcfunction +1 -0
- package/dist/data/capture_the_flag/function/game_tick.mcfunction +1 -0
- package/dist/data/capture_the_flag/function/give_kit_archer.mcfunction +6 -0
- package/dist/data/capture_the_flag/function/give_kit_mage.mcfunction +5 -0
- package/dist/data/capture_the_flag/function/give_kit_warrior.mcfunction +6 -0
- package/dist/data/capture_the_flag/function/glass_box.mcfunction +2 -0
- package/dist/data/capture_the_flag/function/glow.mcfunction +1 -0
- package/dist/data/capture_the_flag/function/happy_at.mcfunction +1 -0
- package/dist/data/capture_the_flag/function/hearts_at.mcfunction +1 -0
- package/dist/data/capture_the_flag/function/init.mcfunction +11 -0
- package/dist/data/capture_the_flag/function/invisible.mcfunction +1 -0
- package/dist/data/capture_the_flag/function/jump.mcfunction +1 -0
- package/dist/data/capture_the_flag/function/load.mcfunction +1 -0
- package/dist/data/capture_the_flag/function/night_vision.mcfunction +1 -0
- package/dist/data/capture_the_flag/function/place_flags.mcfunction +2 -0
- package/dist/data/capture_the_flag/function/portal_effect.mcfunction +1 -0
- package/dist/data/capture_the_flag/function/regen.mcfunction +1 -0
- package/dist/data/capture_the_flag/function/remove_from_teams.mcfunction +3 -0
- package/dist/data/capture_the_flag/function/remove_item.mcfunction +1 -0
- package/dist/data/capture_the_flag/function/resistance.mcfunction +1 -0
- package/dist/data/capture_the_flag/function/set_day.mcfunction +1 -0
- package/dist/data/capture_the_flag/function/set_easy.mcfunction +1 -0
- package/dist/data/capture_the_flag/function/set_hard.mcfunction +1 -0
- package/dist/data/capture_the_flag/function/set_midnight.mcfunction +1 -0
- package/dist/data/capture_the_flag/function/set_night.mcfunction +1 -0
- package/dist/data/capture_the_flag/function/set_noon.mcfunction +1 -0
- package/dist/data/capture_the_flag/function/set_normal.mcfunction +1 -0
- package/dist/data/capture_the_flag/function/set_peaceful.mcfunction +1 -0
- package/dist/data/capture_the_flag/function/setup_four_teams.mcfunction +4 -0
- package/dist/data/capture_the_flag/function/setup_two_teams.mcfunction +2 -0
- package/dist/data/capture_the_flag/function/slow_fall.mcfunction +1 -0
- package/dist/data/capture_the_flag/function/smoke.mcfunction +1 -0
- package/dist/data/capture_the_flag/function/sparkles_at.mcfunction +1 -0
- package/dist/data/capture_the_flag/function/speed.mcfunction +1 -0
- package/dist/data/capture_the_flag/function/start_game.mcfunction +15 -0
- package/dist/data/capture_the_flag/function/start_game__foreach_t10.mcfunction +4 -0
- package/dist/data/capture_the_flag/function/strength.mcfunction +1 -0
- package/dist/data/capture_the_flag/function/totem_at.mcfunction +1 -0
- package/dist/data/capture_the_flag/function/weather_clear.mcfunction +1 -0
- package/dist/data/capture_the_flag/function/weather_rain.mcfunction +1 -0
- package/dist/data/capture_the_flag/function/weather_thunder.mcfunction +1 -0
- package/dist/data/counter/function/__load.mcfunction +5 -0
- package/dist/data/counter/function/__tick.mcfunction +2 -0
- package/dist/data/counter/function/counter_tick/merge_2.mcfunction +1 -0
- package/dist/data/counter/function/counter_tick/then_0.mcfunction +3 -0
- package/dist/data/counter/function/counter_tick.mcfunction +11 -0
- package/dist/data/gcd2/function/__load.mcfunction +3 -0
- package/dist/data/gcd2/function/abs/merge_2.mcfunction +3 -0
- package/dist/data/gcd2/function/abs/then_0.mcfunction +5 -0
- package/dist/data/gcd2/function/abs.mcfunction +7 -0
- package/dist/data/gcd2/function/gcd/loop_body_1.mcfunction +7 -0
- package/dist/data/gcd2/function/gcd/loop_check_0.mcfunction +5 -0
- package/dist/data/gcd2/function/gcd/loop_exit_2.mcfunction +3 -0
- package/dist/data/gcd2/function/gcd.mcfunction +14 -0
- package/dist/data/gcd3/function/__load.mcfunction +3 -0
- package/dist/data/gcd3/function/abs/merge_2.mcfunction +3 -0
- package/dist/data/gcd3/function/abs/then_0.mcfunction +5 -0
- package/dist/data/gcd3/function/abs.mcfunction +7 -0
- package/dist/data/gcd3/function/gcd/loop_body_1.mcfunction +7 -0
- package/dist/data/gcd3/function/gcd/loop_check_0.mcfunction +5 -0
- package/dist/data/gcd3/function/gcd/loop_exit_2.mcfunction +3 -0
- package/dist/data/gcd3/function/gcd.mcfunction +14 -0
- package/dist/data/gcd3/function/test.mcfunction +7 -0
- package/dist/data/gcd3nm/function/__load.mcfunction +3 -0
- package/dist/data/gcd3nm/function/abs/merge_2.mcfunction +3 -0
- package/dist/data/gcd3nm/function/abs/then_0.mcfunction +5 -0
- package/dist/data/gcd3nm/function/abs.mcfunction +7 -0
- package/dist/data/gcd3nm/function/gcd/loop_body_1.mcfunction +7 -0
- package/dist/data/gcd3nm/function/gcd/loop_check_0.mcfunction +5 -0
- package/dist/data/gcd3nm/function/gcd/loop_exit_2.mcfunction +3 -0
- package/dist/data/gcd3nm/function/gcd.mcfunction +14 -0
- package/dist/data/gcd3nm/function/test.mcfunction +7 -0
- package/dist/data/gcd_test/function/__load.mcfunction +3 -0
- package/dist/data/gcd_test/function/abs/merge_2.mcfunction +3 -0
- package/dist/data/gcd_test/function/abs/then_0.mcfunction +5 -0
- package/dist/data/gcd_test/function/abs.mcfunction +7 -0
- package/dist/data/gcd_test/function/gcd/loop_body_1.mcfunction +7 -0
- package/dist/data/gcd_test/function/gcd/loop_check_0.mcfunction +5 -0
- package/dist/data/gcd_test/function/gcd/loop_exit_2.mcfunction +3 -0
- package/dist/data/gcd_test/function/gcd.mcfunction +14 -0
- package/dist/data/hunger_games/function/angry_at.mcfunction +1 -0
- package/dist/data/hunger_games/function/barrier_wall.mcfunction +1 -0
- package/dist/data/hunger_games/function/buff_all.mcfunction +22 -0
- package/dist/data/hunger_games/function/check_alive.mcfunction +3 -0
- package/dist/data/hunger_games/function/check_alive__foreach_t3.mcfunction +10 -0
- package/dist/data/hunger_games/function/check_alive__foreach_t3__merge_1.mcfunction +1 -0
- package/dist/data/hunger_games/function/check_alive__foreach_t3__then_0.mcfunction +5 -0
- package/dist/data/hunger_games/function/check_border_damage.mcfunction +1 -0
- package/dist/data/hunger_games/function/check_border_damage__foreach_t0.mcfunction +1 -0
- package/dist/data/hunger_games/function/clear_area.mcfunction +1 -0
- package/dist/data/hunger_games/function/clear_effect.mcfunction +1 -0
- package/dist/data/hunger_games/function/clear_effects.mcfunction +1 -0
- package/dist/data/hunger_games/function/countdown_tick.mcfunction +1 -0
- package/dist/data/hunger_games/function/create_health_bar.mcfunction +24 -0
- package/dist/data/hunger_games/function/create_progress_bar.mcfunction +24 -0
- package/dist/data/hunger_games/function/create_progress_bar__const_0_0_0.mcfunction +21 -0
- package/dist/data/hunger_games/function/create_timer_bar.mcfunction +30 -0
- package/dist/data/hunger_games/function/declare_winner.mcfunction +13 -0
- package/dist/data/hunger_games/function/disable_fire_spread.mcfunction +1 -0
- package/dist/data/hunger_games/function/disable_keep_inventory.mcfunction +1 -0
- package/dist/data/hunger_games/function/disable_mob_griefing.mcfunction +1 -0
- package/dist/data/hunger_games/function/enable_keep_inventory.mcfunction +1 -0
- package/dist/data/hunger_games/function/end_game_no_winner.mcfunction +3 -0
- package/dist/data/hunger_games/function/end_sparkles_at.mcfunction +1 -0
- package/dist/data/hunger_games/function/explosion_effect.mcfunction +1 -0
- package/dist/data/hunger_games/function/flames.mcfunction +1 -0
- package/dist/data/hunger_games/function/game_tick.mcfunction +1 -0
- package/dist/data/hunger_games/function/glass_box.mcfunction +2 -0
- package/dist/data/hunger_games/function/glow.mcfunction +1 -0
- package/dist/data/hunger_games/function/happy_at.mcfunction +1 -0
- package/dist/data/hunger_games/function/hearts_at.mcfunction +1 -0
- package/dist/data/hunger_games/function/hide_bar.mcfunction +4 -0
- package/dist/data/hunger_games/function/init.mcfunction +7 -0
- package/dist/data/hunger_games/function/invisible.mcfunction +1 -0
- package/dist/data/hunger_games/function/jump.mcfunction +1 -0
- package/dist/data/hunger_games/function/load.mcfunction +1 -0
- package/dist/data/hunger_games/function/main_game_tick.mcfunction +4 -0
- package/dist/data/hunger_games/function/night_vision.mcfunction +1 -0
- package/dist/data/hunger_games/function/on_player_death.mcfunction +14 -0
- package/dist/data/hunger_games/function/portal_effect.mcfunction +1 -0
- package/dist/data/hunger_games/function/regen.mcfunction +1 -0
- package/dist/data/hunger_games/function/remove_bar.mcfunction +3 -0
- package/dist/data/hunger_games/function/remove_bar__const_0.mcfunction +2 -0
- package/dist/data/hunger_games/function/reset_game.mcfunction +3 -0
- package/dist/data/hunger_games/function/reset_game__foreach_t0.mcfunction +9 -0
- package/dist/data/hunger_games/function/resistance.mcfunction +1 -0
- package/dist/data/hunger_games/function/set_day.mcfunction +1 -0
- package/dist/data/hunger_games/function/set_easy.mcfunction +1 -0
- package/dist/data/hunger_games/function/set_hard.mcfunction +1 -0
- package/dist/data/hunger_games/function/set_midnight.mcfunction +1 -0
- package/dist/data/hunger_games/function/set_night.mcfunction +1 -0
- package/dist/data/hunger_games/function/set_noon.mcfunction +1 -0
- package/dist/data/hunger_games/function/set_normal.mcfunction +1 -0
- package/dist/data/hunger_games/function/set_peaceful.mcfunction +1 -0
- package/dist/data/hunger_games/function/show_bar.mcfunction +4 -0
- package/dist/data/hunger_games/function/shrink_border.mcfunction +1 -0
- package/dist/data/hunger_games/function/slow_fall.mcfunction +1 -0
- package/dist/data/hunger_games/function/smoke.mcfunction +1 -0
- package/dist/data/hunger_games/function/sparkles_at.mcfunction +1 -0
- package/dist/data/hunger_games/function/speed.mcfunction +1 -0
- package/dist/data/hunger_games/function/start_countdown.mcfunction +3 -0
- package/dist/data/hunger_games/function/start_countdown__foreach_t0.mcfunction +16 -0
- package/dist/data/hunger_games/function/start_game.mcfunction +4 -0
- package/dist/data/hunger_games/function/start_game__foreach_t3.mcfunction +4 -0
- package/dist/data/hunger_games/function/strength.mcfunction +1 -0
- package/dist/data/hunger_games/function/totem_at.mcfunction +1 -0
- package/dist/data/hunger_games/function/update_bar.mcfunction +5 -0
- package/dist/data/hunger_games/function/update_bar__const_0_0.mcfunction +3 -0
- package/dist/data/hunger_games/function/update_bar_color.mcfunction +7 -0
- package/dist/data/hunger_games/function/update_bar_color__else_2.mcfunction +5 -0
- package/dist/data/hunger_games/function/update_bar_color__else_5.mcfunction +4 -0
- package/dist/data/hunger_games/function/update_bar_color__merge_1.mcfunction +1 -0
- package/dist/data/hunger_games/function/update_bar_color__merge_4.mcfunction +1 -0
- package/dist/data/hunger_games/function/update_bar_color__then_0.mcfunction +4 -0
- package/dist/data/hunger_games/function/update_bar_color__then_3.mcfunction +4 -0
- package/dist/data/hunger_games/function/weather_clear.mcfunction +1 -0
- package/dist/data/hunger_games/function/weather_rain.mcfunction +1 -0
- package/dist/data/hunger_games/function/weather_thunder.mcfunction +1 -0
- package/dist/data/isqrttest/function/__load.mcfunction +6 -0
- package/dist/data/isqrttest/function/isqrt/loop_body_4.mcfunction +12 -0
- package/dist/data/isqrttest/function/isqrt/loop_check_3.mcfunction +5 -0
- package/dist/data/isqrttest/function/isqrt/loop_exit_5.mcfunction +3 -0
- package/dist/data/isqrttest/function/isqrt/merge_2.mcfunction +4 -0
- package/dist/data/isqrttest/function/isqrt/merge_8.mcfunction +6 -0
- package/dist/data/isqrttest/function/isqrt/then_0.mcfunction +3 -0
- package/dist/data/isqrttest/function/isqrt/then_6.mcfunction +3 -0
- package/dist/data/isqrttest/function/isqrt.mcfunction +7 -0
- package/dist/data/isqrttest/function/test.mcfunction +6 -0
- package/dist/data/linalg/function/_vec2d_len_sq_fx.mcfunction +17 -0
- package/dist/data/linalg/function/_vec3d_len_sq_fx.mcfunction +27 -0
- package/dist/data/linalg/function/load.mcfunction +1 -0
- package/dist/data/linalg/function/mat2d_det.mcfunction +16 -0
- package/dist/data/linalg/function/mat2d_mul_r0c0.mcfunction +16 -0
- package/dist/data/linalg/function/mat2d_mul_r0c1.mcfunction +16 -0
- package/dist/data/linalg/function/mat2d_mul_r1c0.mcfunction +16 -0
- package/dist/data/linalg/function/mat2d_mul_r1c1.mcfunction +16 -0
- package/dist/data/linalg/function/mat2d_vecmul_x.mcfunction +16 -0
- package/dist/data/linalg/function/mat2d_vecmul_y.mcfunction +16 -0
- package/dist/data/linalg/function/solve2d_x.mcfunction +27 -0
- package/dist/data/linalg/function/solve2d_y.mcfunction +27 -0
- package/dist/data/linalg/function/vec2d_dist.mcfunction +15 -0
- package/dist/data/linalg/function/vec2d_dot.mcfunction +16 -0
- package/dist/data/linalg/function/vec2d_length.mcfunction +21 -0
- package/dist/data/linalg/function/vec2d_normalize_x.mcfunction +8 -0
- package/dist/data/linalg/function/vec2d_normalize_x__merge_1.mcfunction +10 -0
- package/dist/data/linalg/function/vec2d_normalize_x__then_0.mcfunction +3 -0
- package/dist/data/linalg/function/vec2d_normalize_y.mcfunction +8 -0
- package/dist/data/linalg/function/vec2d_normalize_y__merge_1.mcfunction +10 -0
- package/dist/data/linalg/function/vec2d_normalize_y__then_0.mcfunction +3 -0
- package/dist/data/linalg/function/vec3d_cross_x.mcfunction +16 -0
- package/dist/data/linalg/function/vec3d_cross_y.mcfunction +16 -0
- package/dist/data/linalg/function/vec3d_cross_z.mcfunction +16 -0
- package/dist/data/linalg/function/vec3d_dist.mcfunction +21 -0
- package/dist/data/linalg/function/vec3d_dot.mcfunction +26 -0
- package/dist/data/linalg/function/vec3d_length.mcfunction +31 -0
- package/dist/data/linalg/function/vec3d_normalize_x.mcfunction +9 -0
- package/dist/data/linalg/function/vec3d_normalize_x__merge_1.mcfunction +11 -0
- package/dist/data/linalg/function/vec3d_normalize_x__then_0.mcfunction +3 -0
- package/dist/data/linalg/function/vec3d_normalize_y.mcfunction +9 -0
- package/dist/data/linalg/function/vec3d_normalize_y__merge_1.mcfunction +11 -0
- package/dist/data/linalg/function/vec3d_normalize_y__then_0.mcfunction +3 -0
- package/dist/data/linalg/function/vec3d_normalize_z.mcfunction +9 -0
- package/dist/data/linalg/function/vec3d_normalize_z__merge_1.mcfunction +11 -0
- package/dist/data/linalg/function/vec3d_normalize_z__then_0.mcfunction +3 -0
- package/dist/data/macrotest/function/get_element.mcfunction +2 -0
- package/dist/data/macrotest/function/load.mcfunction +1 -0
- package/dist/data/macrotest/function/test_dynamic_index.mcfunction +2 -0
- package/dist/data/math_hp/function/cos_hp.mcfunction +8 -0
- package/dist/data/math_hp/function/div3_hp.mcfunction +23 -0
- package/dist/data/math_hp/function/div_hp.mcfunction +13 -0
- package/dist/data/math_hp/function/init_div.mcfunction +1 -0
- package/dist/data/math_hp/function/init_trig.mcfunction +1 -0
- package/dist/data/math_hp/function/ln_5term.mcfunction +6 -0
- package/dist/data/math_hp/function/ln_5term__loop_body_1.mcfunction +8 -0
- package/dist/data/math_hp/function/ln_5term__loop_body_4.mcfunction +8 -0
- package/dist/data/math_hp/function/ln_5term__loop_exit_2.mcfunction +1 -0
- package/dist/data/math_hp/function/ln_5term__loop_exit_5.mcfunction +61 -0
- package/dist/data/math_hp/function/ln_5term__loop_header_0.mcfunction +3 -0
- package/dist/data/math_hp/function/ln_5term__loop_header_3.mcfunction +6 -0
- package/dist/data/math_hp/function/load.mcfunction +1 -0
- package/dist/data/math_hp/function/norm3_hp.mcfunction +43 -0
- package/dist/data/math_hp/function/sin_hp.mcfunction +8 -0
- package/dist/data/math_hp/function/sqrt_hp.mcfunction +17 -0
- package/dist/data/math_hp/function/sqrt_hp__merge_1.mcfunction +21 -0
- package/dist/data/math_hp/function/sqrt_hp__then_0.mcfunction +2 -0
- package/dist/data/mathdemo/function/__load.mcfunction +2 -0
- package/dist/data/mathdemo/function/_atan_init.mcfunction +4 -0
- package/dist/data/mathdemo/function/_math_init.mcfunction +4 -0
- package/dist/data/mathdemo/function/add2d_x.mcfunction +5 -0
- package/dist/data/mathdemo/function/add2d_y.mcfunction +5 -0
- package/dist/data/mathdemo/function/add3d_x.mcfunction +5 -0
- package/dist/data/mathdemo/function/add3d_y.mcfunction +5 -0
- package/dist/data/mathdemo/function/add3d_z.mcfunction +5 -0
- package/dist/data/mathdemo/function/air_drag_fx.mcfunction +2 -0
- package/dist/data/mathdemo/function/apply_drag.mcfunction +8 -0
- package/dist/data/mathdemo/function/apply_gravity.mcfunction +6 -0
- package/dist/data/mathdemo/function/approx_eq.mcfunction +10 -0
- package/dist/data/mathdemo/function/approx_eq__merge_1.mcfunction +3 -0
- package/dist/data/mathdemo/function/approx_eq__merge_3.mcfunction +2 -0
- package/dist/data/mathdemo/function/approx_eq__then_0.mcfunction +4 -0
- package/dist/data/mathdemo/function/approx_eq__then_2.mcfunction +2 -0
- package/dist/data/mathdemo/function/atan2_fixed.mcfunction +6 -0
- package/dist/data/mathdemo/function/atan2_fixed__else_30.mcfunction +2 -0
- package/dist/data/mathdemo/function/atan2_fixed__loop_body_26.mcfunction +21 -0
- package/dist/data/mathdemo/function/atan2_fixed__loop_exit_27.mcfunction +5 -0
- package/dist/data/mathdemo/function/atan2_fixed__loop_header_25.mcfunction +3 -0
- package/dist/data/mathdemo/function/atan2_fixed__merge_1.mcfunction +4 -0
- package/dist/data/mathdemo/function/atan2_fixed__merge_10.mcfunction +5 -0
- package/dist/data/mathdemo/function/atan2_fixed__merge_12.mcfunction +2 -0
- package/dist/data/mathdemo/function/atan2_fixed__merge_16.mcfunction +5 -0
- package/dist/data/mathdemo/function/atan2_fixed__merge_18.mcfunction +4 -0
- package/dist/data/mathdemo/function/atan2_fixed__merge_20.mcfunction +4 -0
- package/dist/data/mathdemo/function/atan2_fixed__merge_22.mcfunction +4 -0
- package/dist/data/mathdemo/function/atan2_fixed__merge_24.mcfunction +3 -0
- package/dist/data/mathdemo/function/atan2_fixed__merge_29.mcfunction +1 -0
- package/dist/data/mathdemo/function/atan2_fixed__merge_3.mcfunction +4 -0
- package/dist/data/mathdemo/function/atan2_fixed__merge_32.mcfunction +4 -0
- package/dist/data/mathdemo/function/atan2_fixed__merge_34.mcfunction +4 -0
- package/dist/data/mathdemo/function/atan2_fixed__merge_36.mcfunction +3 -0
- package/dist/data/mathdemo/function/atan2_fixed__merge_40.mcfunction +3 -0
- package/dist/data/mathdemo/function/atan2_fixed__merge_6.mcfunction +2 -0
- package/dist/data/mathdemo/function/atan2_fixed__then_0.mcfunction +4 -0
- package/dist/data/mathdemo/function/atan2_fixed__then_11.mcfunction +2 -0
- package/dist/data/mathdemo/function/atan2_fixed__then_15.mcfunction +4 -0
- package/dist/data/mathdemo/function/atan2_fixed__then_17.mcfunction +4 -0
- package/dist/data/mathdemo/function/atan2_fixed__then_19.mcfunction +2 -0
- package/dist/data/mathdemo/function/atan2_fixed__then_2.mcfunction +2 -0
- package/dist/data/mathdemo/function/atan2_fixed__then_21.mcfunction +2 -0
- package/dist/data/mathdemo/function/atan2_fixed__then_23.mcfunction +5 -0
- package/dist/data/mathdemo/function/atan2_fixed__then_28.mcfunction +4 -0
- package/dist/data/mathdemo/function/atan2_fixed__then_31.mcfunction +4 -0
- package/dist/data/mathdemo/function/atan2_fixed__then_33.mcfunction +4 -0
- package/dist/data/mathdemo/function/atan2_fixed__then_35.mcfunction +1 -0
- package/dist/data/mathdemo/function/atan2_fixed__then_39.mcfunction +3 -0
- package/dist/data/mathdemo/function/atan2_fixed__then_5.mcfunction +2 -0
- package/dist/data/mathdemo/function/atan2_fixed__then_9.mcfunction +4 -0
- package/dist/data/mathdemo/function/bounce_v.mcfunction +10 -0
- package/dist/data/mathdemo/function/cbrt_fx.mcfunction +5 -0
- package/dist/data/mathdemo/function/cbrt_fx__loop_body_6.mcfunction +7 -0
- package/dist/data/mathdemo/function/cbrt_fx__loop_exit_7.mcfunction +1 -0
- package/dist/data/mathdemo/function/cbrt_fx__loop_header_5.mcfunction +4 -0
- package/dist/data/mathdemo/function/cbrt_fx__merge_1.mcfunction +8 -0
- package/dist/data/mathdemo/function/cbrt_fx__merge_11.mcfunction +5 -0
- package/dist/data/mathdemo/function/cbrt_fx__merge_13.mcfunction +4 -0
- package/dist/data/mathdemo/function/cbrt_fx__merge_4.mcfunction +2 -0
- package/dist/data/mathdemo/function/cbrt_fx__merge_9.mcfunction +13 -0
- package/dist/data/mathdemo/function/cbrt_fx__then_0.mcfunction +2 -0
- package/dist/data/mathdemo/function/cbrt_fx__then_10.mcfunction +2 -0
- package/dist/data/mathdemo/function/cbrt_fx__then_12.mcfunction +2 -0
- package/dist/data/mathdemo/function/cbrt_fx__then_3.mcfunction +2 -0
- package/dist/data/mathdemo/function/cbrt_fx__then_8.mcfunction +2 -0
- package/dist/data/mathdemo/function/ceil_div.mcfunction +9 -0
- package/dist/data/mathdemo/function/chebyshev.mcfunction +14 -0
- package/dist/data/mathdemo/function/chebyshev3d.mcfunction +19 -0
- package/dist/data/mathdemo/function/chebyshev3d__merge_1.mcfunction +4 -0
- package/dist/data/mathdemo/function/chebyshev3d__merge_3.mcfunction +4 -0
- package/dist/data/mathdemo/function/chebyshev3d__merge_5.mcfunction +4 -0
- package/dist/data/mathdemo/function/chebyshev3d__merge_7.mcfunction +3 -0
- package/dist/data/mathdemo/function/chebyshev3d__merge_9.mcfunction +1 -0
- package/dist/data/mathdemo/function/chebyshev3d__then_0.mcfunction +4 -0
- package/dist/data/mathdemo/function/chebyshev3d__then_2.mcfunction +4 -0
- package/dist/data/mathdemo/function/chebyshev3d__then_4.mcfunction +4 -0
- package/dist/data/mathdemo/function/chebyshev3d__then_6.mcfunction +2 -0
- package/dist/data/mathdemo/function/chebyshev3d__then_8.mcfunction +2 -0
- package/dist/data/mathdemo/function/chebyshev__merge_1.mcfunction +4 -0
- package/dist/data/mathdemo/function/chebyshev__merge_3.mcfunction +3 -0
- package/dist/data/mathdemo/function/chebyshev__merge_5.mcfunction +1 -0
- package/dist/data/mathdemo/function/chebyshev__then_0.mcfunction +4 -0
- package/dist/data/mathdemo/function/chebyshev__then_2.mcfunction +4 -0
- package/dist/data/mathdemo/function/chebyshev__then_4.mcfunction +1 -0
- package/dist/data/mathdemo/function/circular_x.mcfunction +14 -0
- package/dist/data/mathdemo/function/circular_z.mcfunction +14 -0
- package/dist/data/mathdemo/function/clamp_velocity.mcfunction +5 -0
- package/dist/data/mathdemo/function/clamp_velocity__merge_1.mcfunction +5 -0
- package/dist/data/mathdemo/function/clamp_velocity__merge_4.mcfunction +1 -0
- package/dist/data/mathdemo/function/clamp_velocity__then_0.mcfunction +1 -0
- package/dist/data/mathdemo/function/clamp_velocity__then_3.mcfunction +3 -0
- package/dist/data/mathdemo/function/combinations.mcfunction +6 -0
- package/dist/data/mathdemo/function/combinations__loop_body_9.mcfunction +15 -0
- package/dist/data/mathdemo/function/combinations__loop_exit_10.mcfunction +1 -0
- package/dist/data/mathdemo/function/combinations__loop_header_8.mcfunction +3 -0
- package/dist/data/mathdemo/function/combinations__merge_1.mcfunction +3 -0
- package/dist/data/mathdemo/function/combinations__merge_4.mcfunction +6 -0
- package/dist/data/mathdemo/function/combinations__merge_7.mcfunction +3 -0
- package/dist/data/mathdemo/function/combinations__then_0.mcfunction +2 -0
- package/dist/data/mathdemo/function/combinations__then_3.mcfunction +2 -0
- package/dist/data/mathdemo/function/combinations__then_6.mcfunction +4 -0
- package/dist/data/mathdemo/function/cos_fixed.mcfunction +7 -0
- package/dist/data/mathdemo/function/cross2d.mcfunction +11 -0
- package/dist/data/mathdemo/function/cross3d_x.mcfunction +11 -0
- package/dist/data/mathdemo/function/cross3d_y.mcfunction +11 -0
- package/dist/data/mathdemo/function/cross3d_z.mcfunction +11 -0
- package/dist/data/mathdemo/function/demo_easing.mcfunction +12 -0
- package/dist/data/mathdemo/function/demo_math.mcfunction +16 -0
- package/dist/data/mathdemo/function/demo_noise.mcfunction +14 -0
- package/dist/data/mathdemo/function/demo_physics.mcfunction +11 -0
- package/dist/data/mathdemo/function/demo_physics__loop_body_1.mcfunction +9 -0
- package/dist/data/mathdemo/function/demo_physics__loop_body_4.mcfunction +18 -0
- package/dist/data/mathdemo/function/demo_physics__loop_exit_2.mcfunction +6 -0
- package/dist/data/mathdemo/function/demo_physics__loop_exit_5.mcfunction +1 -0
- package/dist/data/mathdemo/function/demo_physics__loop_header_0.mcfunction +4 -0
- package/dist/data/mathdemo/function/demo_physics__loop_header_3.mcfunction +4 -0
- package/dist/data/mathdemo/function/distance2d_fixed.mcfunction +13 -0
- package/dist/data/mathdemo/function/distance3d_fixed.mcfunction +18 -0
- package/dist/data/mathdemo/function/divfix.mcfunction +6 -0
- package/dist/data/mathdemo/function/divfix__merge_1.mcfunction +6 -0
- package/dist/data/mathdemo/function/divfix__then_0.mcfunction +2 -0
- package/dist/data/mathdemo/function/dot2d.mcfunction +11 -0
- package/dist/data/mathdemo/function/dot3d.mcfunction +17 -0
- package/dist/data/mathdemo/function/ease_in_back.mcfunction +26 -0
- package/dist/data/mathdemo/function/ease_in_bounce.mcfunction +9 -0
- package/dist/data/mathdemo/function/ease_in_cubic.mcfunction +12 -0
- package/dist/data/mathdemo/function/ease_in_expo.mcfunction +5 -0
- package/dist/data/mathdemo/function/ease_in_expo__merge_1.mcfunction +11 -0
- package/dist/data/mathdemo/function/ease_in_expo__then_0.mcfunction +2 -0
- package/dist/data/mathdemo/function/ease_in_out_back.mcfunction +5 -0
- package/dist/data/mathdemo/function/ease_in_out_back__merge_1.mcfunction +14 -0
- package/dist/data/mathdemo/function/ease_in_out_back__then_0.mcfunction +10 -0
- package/dist/data/mathdemo/function/ease_in_out_bounce.mcfunction +5 -0
- package/dist/data/mathdemo/function/ease_in_out_bounce__merge_1.mcfunction +14 -0
- package/dist/data/mathdemo/function/ease_in_out_bounce__then_0.mcfunction +10 -0
- package/dist/data/mathdemo/function/ease_in_out_cubic.mcfunction +5 -0
- package/dist/data/mathdemo/function/ease_in_out_cubic__merge_1.mcfunction +17 -0
- package/dist/data/mathdemo/function/ease_in_out_cubic__then_0.mcfunction +13 -0
- package/dist/data/mathdemo/function/ease_in_out_quad.mcfunction +5 -0
- package/dist/data/mathdemo/function/ease_in_out_quad__merge_1.mcfunction +12 -0
- package/dist/data/mathdemo/function/ease_in_out_quad__then_0.mcfunction +8 -0
- package/dist/data/mathdemo/function/ease_in_out_sine.mcfunction +5 -0
- package/dist/data/mathdemo/function/ease_in_out_sine__merge_1.mcfunction +14 -0
- package/dist/data/mathdemo/function/ease_in_out_sine__then_0.mcfunction +10 -0
- package/dist/data/mathdemo/function/ease_in_quad.mcfunction +7 -0
- package/dist/data/mathdemo/function/ease_in_quad__const_5000.mcfunction +5 -0
- package/dist/data/mathdemo/function/ease_in_quart.mcfunction +12 -0
- package/dist/data/mathdemo/function/ease_in_sine.mcfunction +30 -0
- package/dist/data/mathdemo/function/ease_linear.mcfunction +2 -0
- package/dist/data/mathdemo/function/ease_linear__const_5000.mcfunction +2 -0
- package/dist/data/mathdemo/function/ease_out_back.mcfunction +9 -0
- package/dist/data/mathdemo/function/ease_out_back__const_5000.mcfunction +7 -0
- package/dist/data/mathdemo/function/ease_out_bounce.mcfunction +6 -0
- package/dist/data/mathdemo/function/ease_out_bounce__merge_1.mcfunction +4 -0
- package/dist/data/mathdemo/function/ease_out_bounce__merge_4.mcfunction +4 -0
- package/dist/data/mathdemo/function/ease_out_bounce__merge_7.mcfunction +15 -0
- package/dist/data/mathdemo/function/ease_out_bounce__then_0.mcfunction +11 -0
- package/dist/data/mathdemo/function/ease_out_bounce__then_3.mcfunction +15 -0
- package/dist/data/mathdemo/function/ease_out_bounce__then_6.mcfunction +15 -0
- package/dist/data/mathdemo/function/ease_out_cubic.mcfunction +16 -0
- package/dist/data/mathdemo/function/ease_out_cubic__const_5000.mcfunction +14 -0
- package/dist/data/mathdemo/function/ease_out_expo.mcfunction +5 -0
- package/dist/data/mathdemo/function/ease_out_expo__merge_1.mcfunction +8 -0
- package/dist/data/mathdemo/function/ease_out_expo__then_0.mcfunction +2 -0
- package/dist/data/mathdemo/function/ease_out_quad.mcfunction +11 -0
- package/dist/data/mathdemo/function/ease_out_quart.mcfunction +16 -0
- package/dist/data/mathdemo/function/ease_out_sine.mcfunction +9 -0
- package/dist/data/mathdemo/function/ease_smooth.mcfunction +23 -0
- package/dist/data/mathdemo/function/ease_smoother.mcfunction +41 -0
- package/dist/data/mathdemo/function/exp_fx.mcfunction +16 -0
- package/dist/data/mathdemo/function/exp_fx__loop_body_10.mcfunction +8 -0
- package/dist/data/mathdemo/function/exp_fx__loop_body_5.mcfunction +8 -0
- package/dist/data/mathdemo/function/exp_fx__loop_exit_11.mcfunction +1 -0
- package/dist/data/mathdemo/function/exp_fx__loop_exit_6.mcfunction +1 -0
- package/dist/data/mathdemo/function/exp_fx__loop_header_4.mcfunction +3 -0
- package/dist/data/mathdemo/function/exp_fx__loop_header_9.mcfunction +3 -0
- package/dist/data/mathdemo/function/exp_fx__merge_1.mcfunction +47 -0
- package/dist/data/mathdemo/function/exp_fx__merge_3.mcfunction +4 -0
- package/dist/data/mathdemo/function/exp_fx__merge_8.mcfunction +1 -0
- package/dist/data/mathdemo/function/exp_fx__then_0.mcfunction +7 -0
- package/dist/data/mathdemo/function/exp_fx__then_2.mcfunction +2 -0
- package/dist/data/mathdemo/function/exp_fx__then_7.mcfunction +5 -0
- package/dist/data/mathdemo/function/factorial.mcfunction +5 -0
- package/dist/data/mathdemo/function/factorial__loop_body_4.mcfunction +7 -0
- package/dist/data/mathdemo/function/factorial__loop_exit_5.mcfunction +1 -0
- package/dist/data/mathdemo/function/factorial__loop_header_3.mcfunction +3 -0
- package/dist/data/mathdemo/function/factorial__merge_1.mcfunction +3 -0
- package/dist/data/mathdemo/function/factorial__then_0.mcfunction +2 -0
- package/dist/data/mathdemo/function/fbm_1d.mcfunction +9 -0
- package/dist/data/mathdemo/function/fbm_1d__loop_body_1.mcfunction +33 -0
- package/dist/data/mathdemo/function/fbm_1d__loop_exit_2.mcfunction +4 -0
- package/dist/data/mathdemo/function/fbm_1d__loop_header_0.mcfunction +3 -0
- package/dist/data/mathdemo/function/fbm_1d__merge_4.mcfunction +6 -0
- package/dist/data/mathdemo/function/fbm_1d__then_3.mcfunction +2 -0
- package/dist/data/mathdemo/function/fbm_2d.mcfunction +10 -0
- package/dist/data/mathdemo/function/fbm_2d__loop_body_1.mcfunction +39 -0
- package/dist/data/mathdemo/function/fbm_2d__loop_exit_2.mcfunction +4 -0
- package/dist/data/mathdemo/function/fbm_2d__loop_header_0.mcfunction +3 -0
- package/dist/data/mathdemo/function/fbm_2d__merge_4.mcfunction +6 -0
- package/dist/data/mathdemo/function/fbm_2d__then_3.mcfunction +2 -0
- package/dist/data/mathdemo/function/friction_decel.mcfunction +5 -0
- package/dist/data/mathdemo/function/friction_decel__merge_1.mcfunction +5 -0
- package/dist/data/mathdemo/function/friction_decel__merge_4.mcfunction +2 -0
- package/dist/data/mathdemo/function/friction_decel__then_0.mcfunction +3 -0
- package/dist/data/mathdemo/function/friction_decel__then_3.mcfunction +3 -0
- package/dist/data/mathdemo/function/gamma_int.mcfunction +5 -0
- package/dist/data/mathdemo/function/gamma_int__merge_1.mcfunction +6 -0
- package/dist/data/mathdemo/function/gamma_int__then_0.mcfunction +2 -0
- package/dist/data/mathdemo/function/gcd.mcfunction +7 -0
- package/dist/data/mathdemo/function/gcd__loop_body_5.mcfunction +5 -0
- package/dist/data/mathdemo/function/gcd__loop_exit_6.mcfunction +1 -0
- package/dist/data/mathdemo/function/gcd__loop_header_4.mcfunction +4 -0
- package/dist/data/mathdemo/function/gcd__merge_1.mcfunction +5 -0
- package/dist/data/mathdemo/function/gcd__merge_3.mcfunction +1 -0
- package/dist/data/mathdemo/function/gcd__then_0.mcfunction +4 -0
- package/dist/data/mathdemo/function/gcd__then_2.mcfunction +4 -0
- package/dist/data/mathdemo/function/gravity_fx.mcfunction +2 -0
- package/dist/data/mathdemo/function/hash_1d.mcfunction +15 -0
- package/dist/data/mathdemo/function/hash_1d_pos.mcfunction +9 -0
- package/dist/data/mathdemo/function/hash_1d_pos__merge_1.mcfunction +4 -0
- package/dist/data/mathdemo/function/hash_1d_pos__then_0.mcfunction +4 -0
- package/dist/data/mathdemo/function/hash_2d.mcfunction +11 -0
- package/dist/data/mathdemo/function/hash_2d_pos.mcfunction +11 -0
- package/dist/data/mathdemo/function/hash_2d_pos__merge_1.mcfunction +4 -0
- package/dist/data/mathdemo/function/hash_2d_pos__then_0.mcfunction +4 -0
- package/dist/data/mathdemo/function/impact_velocity.mcfunction +5 -0
- package/dist/data/mathdemo/function/impact_velocity__merge_1.mcfunction +16 -0
- package/dist/data/mathdemo/function/impact_velocity__then_0.mcfunction +2 -0
- package/dist/data/mathdemo/function/is_grounded.mcfunction +5 -0
- package/dist/data/mathdemo/function/is_grounded__merge_1.mcfunction +2 -0
- package/dist/data/mathdemo/function/is_grounded__then_0.mcfunction +2 -0
- package/dist/data/mathdemo/function/isqrt.mcfunction +5 -0
- package/dist/data/mathdemo/function/isqrt__loop_body_10.mcfunction +8 -0
- package/dist/data/mathdemo/function/isqrt__loop_body_13.mcfunction +11 -0
- package/dist/data/mathdemo/function/isqrt__loop_body_7.mcfunction +8 -0
- package/dist/data/mathdemo/function/isqrt__loop_exit_11.mcfunction +2 -0
- package/dist/data/mathdemo/function/isqrt__loop_exit_14.mcfunction +1 -0
- package/dist/data/mathdemo/function/isqrt__loop_exit_8.mcfunction +9 -0
- package/dist/data/mathdemo/function/isqrt__loop_header_12.mcfunction +4 -0
- package/dist/data/mathdemo/function/isqrt__loop_header_6.mcfunction +4 -0
- package/dist/data/mathdemo/function/isqrt__loop_header_9.mcfunction +3 -0
- package/dist/data/mathdemo/function/isqrt__merge_1.mcfunction +4 -0
- package/dist/data/mathdemo/function/isqrt__merge_16.mcfunction +5 -0
- package/dist/data/mathdemo/function/isqrt__merge_4.mcfunction +3 -0
- package/dist/data/mathdemo/function/isqrt__then_0.mcfunction +2 -0
- package/dist/data/mathdemo/function/isqrt__then_15.mcfunction +1 -0
- package/dist/data/mathdemo/function/isqrt__then_3.mcfunction +2 -0
- package/dist/data/mathdemo/function/lcm.mcfunction +11 -0
- package/dist/data/mathdemo/function/lcm__merge_1.mcfunction +5 -0
- package/dist/data/mathdemo/function/lcm__then_0.mcfunction +2 -0
- package/dist/data/mathdemo/function/length2d_fixed.mcfunction +15 -0
- package/dist/data/mathdemo/function/length3d_fixed.mcfunction +20 -0
- package/dist/data/mathdemo/function/lerp.mcfunction +13 -0
- package/dist/data/mathdemo/function/lerp2d_x.mcfunction +13 -0
- package/dist/data/mathdemo/function/lerp2d_y.mcfunction +13 -0
- package/dist/data/mathdemo/function/ln.mcfunction +9 -0
- package/dist/data/mathdemo/function/ln__loop_body_1.mcfunction +8 -0
- package/dist/data/mathdemo/function/ln__loop_body_4.mcfunction +8 -0
- package/dist/data/mathdemo/function/ln__loop_exit_2.mcfunction +1 -0
- package/dist/data/mathdemo/function/ln__loop_exit_5.mcfunction +37 -0
- package/dist/data/mathdemo/function/ln__loop_header_0.mcfunction +3 -0
- package/dist/data/mathdemo/function/ln__loop_header_3.mcfunction +6 -0
- package/dist/data/mathdemo/function/load.mcfunction +1 -0
- package/dist/data/mathdemo/function/log10_fx.mcfunction +11 -0
- package/dist/data/mathdemo/function/log2_fx.mcfunction +11 -0
- package/dist/data/mathdemo/function/log2_int.mcfunction +5 -0
- package/dist/data/mathdemo/function/log2_int__loop_body_4.mcfunction +8 -0
- package/dist/data/mathdemo/function/log2_int__loop_exit_5.mcfunction +1 -0
- package/dist/data/mathdemo/function/log2_int__loop_header_3.mcfunction +4 -0
- package/dist/data/mathdemo/function/log2_int__merge_1.mcfunction +3 -0
- package/dist/data/mathdemo/function/log2_int__then_0.mcfunction +2 -0
- package/dist/data/mathdemo/function/loga_fx.mcfunction +10 -0
- package/dist/data/mathdemo/function/loga_fx__merge_1.mcfunction +9 -0
- package/dist/data/mathdemo/function/loga_fx__then_0.mcfunction +2 -0
- package/dist/data/mathdemo/function/manhattan.mcfunction +14 -0
- package/dist/data/mathdemo/function/manhattan3d.mcfunction +19 -0
- package/dist/data/mathdemo/function/manhattan3d__merge_1.mcfunction +4 -0
- package/dist/data/mathdemo/function/manhattan3d__merge_3.mcfunction +4 -0
- package/dist/data/mathdemo/function/manhattan3d__merge_5.mcfunction +5 -0
- package/dist/data/mathdemo/function/manhattan3d__then_0.mcfunction +4 -0
- package/dist/data/mathdemo/function/manhattan3d__then_2.mcfunction +4 -0
- package/dist/data/mathdemo/function/manhattan3d__then_4.mcfunction +4 -0
- package/dist/data/mathdemo/function/manhattan__merge_1.mcfunction +4 -0
- package/dist/data/mathdemo/function/manhattan__merge_3.mcfunction +3 -0
- package/dist/data/mathdemo/function/manhattan__then_0.mcfunction +4 -0
- package/dist/data/mathdemo/function/manhattan__then_2.mcfunction +4 -0
- package/dist/data/mathdemo/function/map.mcfunction +12 -0
- package/dist/data/mathdemo/function/map__merge_1.mcfunction +11 -0
- package/dist/data/mathdemo/function/map__then_0.mcfunction +1 -0
- package/dist/data/mathdemo/function/mulfix.mcfunction +8 -0
- package/dist/data/mathdemo/function/neg2d_x.mcfunction +4 -0
- package/dist/data/mathdemo/function/neg2d_y.mcfunction +4 -0
- package/dist/data/mathdemo/function/neg3d_x.mcfunction +4 -0
- package/dist/data/mathdemo/function/neg3d_y.mcfunction +4 -0
- package/dist/data/mathdemo/function/neg3d_z.mcfunction +4 -0
- package/dist/data/mathdemo/function/normalize2d_x.mcfunction +11 -0
- package/dist/data/mathdemo/function/normalize2d_x__merge_1.mcfunction +6 -0
- package/dist/data/mathdemo/function/normalize2d_x__then_0.mcfunction +2 -0
- package/dist/data/mathdemo/function/normalize2d_y.mcfunction +11 -0
- package/dist/data/mathdemo/function/normalize2d_y__merge_1.mcfunction +6 -0
- package/dist/data/mathdemo/function/normalize2d_y__then_0.mcfunction +2 -0
- package/dist/data/mathdemo/function/pow_int.mcfunction +6 -0
- package/dist/data/mathdemo/function/pow_int__loop_body_4.mcfunction +7 -0
- package/dist/data/mathdemo/function/pow_int__loop_exit_5.mcfunction +1 -0
- package/dist/data/mathdemo/function/pow_int__loop_header_3.mcfunction +4 -0
- package/dist/data/mathdemo/function/pow_int__merge_1.mcfunction +4 -0
- package/dist/data/mathdemo/function/pow_int__merge_7.mcfunction +8 -0
- package/dist/data/mathdemo/function/pow_int__then_0.mcfunction +2 -0
- package/dist/data/mathdemo/function/pow_int__then_6.mcfunction +4 -0
- package/dist/data/mathdemo/function/projectile_land_t.mcfunction +5 -0
- package/dist/data/mathdemo/function/projectile_land_t__merge_1.mcfunction +7 -0
- package/dist/data/mathdemo/function/projectile_land_t__then_0.mcfunction +2 -0
- package/dist/data/mathdemo/function/projectile_max_height.mcfunction +10 -0
- package/dist/data/mathdemo/function/projectile_max_height__const_200.mcfunction +8 -0
- package/dist/data/mathdemo/function/projectile_vy.mcfunction +9 -0
- package/dist/data/mathdemo/function/projectile_x.mcfunction +8 -0
- package/dist/data/mathdemo/function/projectile_y.mcfunction +19 -0
- package/dist/data/mathdemo/function/quadratic_disc.mcfunction +12 -0
- package/dist/data/mathdemo/function/quadratic_x1.mcfunction +7 -0
- package/dist/data/mathdemo/function/quadratic_x1__merge_1.mcfunction +13 -0
- package/dist/data/mathdemo/function/quadratic_x1__merge_4.mcfunction +15 -0
- package/dist/data/mathdemo/function/quadratic_x1__then_0.mcfunction +2 -0
- package/dist/data/mathdemo/function/quadratic_x1__then_3.mcfunction +2 -0
- package/dist/data/mathdemo/function/quadratic_x2.mcfunction +7 -0
- package/dist/data/mathdemo/function/quadratic_x2__merge_1.mcfunction +13 -0
- package/dist/data/mathdemo/function/quadratic_x2__merge_4.mcfunction +15 -0
- package/dist/data/mathdemo/function/quadratic_x2__then_0.mcfunction +2 -0
- package/dist/data/mathdemo/function/quadratic_x2__then_3.mcfunction +2 -0
- package/dist/data/mathdemo/function/rotate2d_x.mcfunction +20 -0
- package/dist/data/mathdemo/function/rotate2d_y.mcfunction +20 -0
- package/dist/data/mathdemo/function/scale2d_x.mcfunction +8 -0
- package/dist/data/mathdemo/function/scale2d_y.mcfunction +8 -0
- package/dist/data/mathdemo/function/scale3d_x.mcfunction +8 -0
- package/dist/data/mathdemo/function/scale3d_y.mcfunction +8 -0
- package/dist/data/mathdemo/function/scale3d_z.mcfunction +8 -0
- package/dist/data/mathdemo/function/sign.mcfunction +5 -0
- package/dist/data/mathdemo/function/sign__merge_1.mcfunction +4 -0
- package/dist/data/mathdemo/function/sign__merge_4.mcfunction +2 -0
- package/dist/data/mathdemo/function/sign__then_0.mcfunction +2 -0
- package/dist/data/mathdemo/function/sign__then_3.mcfunction +2 -0
- package/dist/data/mathdemo/function/sin_fixed.mcfunction +9 -0
- package/dist/data/mathdemo/function/sin_fixed__merge_1.mcfunction +4 -0
- package/dist/data/mathdemo/function/sin_fixed__merge_3.mcfunction +4 -0
- package/dist/data/mathdemo/function/sin_fixed__merge_6.mcfunction +4 -0
- package/dist/data/mathdemo/function/sin_fixed__merge_9.mcfunction +10 -0
- package/dist/data/mathdemo/function/sin_fixed__then_0.mcfunction +4 -0
- package/dist/data/mathdemo/function/sin_fixed__then_2.mcfunction +6 -0
- package/dist/data/mathdemo/function/sin_fixed__then_5.mcfunction +8 -0
- package/dist/data/mathdemo/function/sin_fixed__then_8.mcfunction +10 -0
- package/dist/data/mathdemo/function/smootherstep.mcfunction +10 -0
- package/dist/data/mathdemo/function/smootherstep__merge_1.mcfunction +12 -0
- package/dist/data/mathdemo/function/smootherstep__merge_4.mcfunction +4 -0
- package/dist/data/mathdemo/function/smootherstep__merge_6.mcfunction +27 -0
- package/dist/data/mathdemo/function/smootherstep__then_0.mcfunction +2 -0
- package/dist/data/mathdemo/function/smootherstep__then_3.mcfunction +2 -0
- package/dist/data/mathdemo/function/smootherstep__then_5.mcfunction +2 -0
- package/dist/data/mathdemo/function/smoothstep.mcfunction +10 -0
- package/dist/data/mathdemo/function/smoothstep__merge_1.mcfunction +12 -0
- package/dist/data/mathdemo/function/smoothstep__merge_4.mcfunction +4 -0
- package/dist/data/mathdemo/function/smoothstep__merge_6.mcfunction +15 -0
- package/dist/data/mathdemo/function/smoothstep__then_0.mcfunction +2 -0
- package/dist/data/mathdemo/function/smoothstep__then_3.mcfunction +2 -0
- package/dist/data/mathdemo/function/smoothstep__then_5.mcfunction +2 -0
- package/dist/data/mathdemo/function/solve2x2_x.mcfunction +17 -0
- package/dist/data/mathdemo/function/solve2x2_x__merge_1.mcfunction +12 -0
- package/dist/data/mathdemo/function/solve2x2_x__then_0.mcfunction +2 -0
- package/dist/data/mathdemo/function/solve2x2_y.mcfunction +17 -0
- package/dist/data/mathdemo/function/solve2x2_y__merge_1.mcfunction +12 -0
- package/dist/data/mathdemo/function/solve2x2_y__then_0.mcfunction +2 -0
- package/dist/data/mathdemo/function/spring_force.mcfunction +11 -0
- package/dist/data/mathdemo/function/spring_update_v.mcfunction +18 -0
- package/dist/data/mathdemo/function/sqrt_fixed.mcfunction +8 -0
- package/dist/data/mathdemo/function/sqrt_fx.mcfunction +11 -0
- package/dist/data/mathdemo/function/sqrt_fx__const_20000.mcfunction +8 -0
- package/dist/data/mathdemo/function/start.mcfunction +6 -0
- package/dist/data/mathdemo/function/sub2d_x.mcfunction +5 -0
- package/dist/data/mathdemo/function/sub2d_y.mcfunction +5 -0
- package/dist/data/mathdemo/function/sub3d_x.mcfunction +5 -0
- package/dist/data/mathdemo/function/sub3d_y.mcfunction +5 -0
- package/dist/data/mathdemo/function/sub3d_z.mcfunction +5 -0
- package/dist/data/mathdemo/function/terrain_height.mcfunction +24 -0
- package/dist/data/mathdemo/function/terrain_height__const_0_0_64_20.mcfunction +17 -0
- package/dist/data/mathdemo/function/terrain_height__const_10_5_64_20.mcfunction +17 -0
- package/dist/data/mathdemo/function/update_pos.mcfunction +5 -0
- package/dist/data/mathdemo/function/value_noise_1d.mcfunction +13 -0
- package/dist/data/mathdemo/function/value_noise_1d__merge_1.mcfunction +39 -0
- package/dist/data/mathdemo/function/value_noise_1d__then_0.mcfunction +7 -0
- package/dist/data/mathdemo/function/value_noise_2d.mcfunction +14 -0
- package/dist/data/mathdemo/function/value_noise_2d__merge_1.mcfunction +12 -0
- package/dist/data/mathdemo/function/value_noise_2d__merge_3.mcfunction +98 -0
- package/dist/data/mathdemo/function/value_noise_2d__then_0.mcfunction +7 -0
- package/dist/data/mathdemo/function/value_noise_2d__then_2.mcfunction +7 -0
- package/dist/data/mathdemo/function/water_drag_fx.mcfunction +2 -0
- package/dist/data/mathtest/function/__load.mcfunction +3 -0
- package/dist/data/mathtest/function/abs/merge_2.mcfunction +3 -0
- package/dist/data/mathtest/function/abs/then_0.mcfunction +5 -0
- package/dist/data/mathtest/function/abs.mcfunction +6 -0
- package/dist/data/mathtest/function/test.mcfunction +5 -0
- package/dist/data/minecraft/tags/function/load.json +5 -0
- package/dist/data/minecraft/tags/function/tick.json +5 -0
- package/dist/data/mypack/function/__load.mcfunction +13 -0
- package/dist/data/mypack/function/_atan_init.mcfunction +2 -0
- package/dist/data/mypack/function/abs/merge_2.mcfunction +3 -0
- package/dist/data/mypack/function/abs/then_0.mcfunction +5 -0
- package/dist/data/mypack/function/abs.mcfunction +6 -0
- package/dist/data/mypack/function/atan2_fixed/__sgi_1.mcfunction +2 -0
- package/dist/data/mypack/function/atan2_fixed/else_34.mcfunction +3 -0
- package/dist/data/mypack/function/atan2_fixed/loop_body_31.mcfunction +19 -0
- package/dist/data/mypack/function/atan2_fixed/loop_check_30.mcfunction +5 -0
- package/dist/data/mypack/function/atan2_fixed/loop_exit_32.mcfunction +6 -0
- package/dist/data/mypack/function/atan2_fixed/merge_11.mcfunction +6 -0
- package/dist/data/mypack/function/atan2_fixed/merge_14.mcfunction +3 -0
- package/dist/data/mypack/function/atan2_fixed/merge_17.mcfunction +6 -0
- package/dist/data/mypack/function/atan2_fixed/merge_2.mcfunction +5 -0
- package/dist/data/mypack/function/atan2_fixed/merge_20.mcfunction +5 -0
- package/dist/data/mypack/function/atan2_fixed/merge_23.mcfunction +5 -0
- package/dist/data/mypack/function/atan2_fixed/merge_26.mcfunction +6 -0
- package/dist/data/mypack/function/atan2_fixed/merge_29.mcfunction +4 -0
- package/dist/data/mypack/function/atan2_fixed/merge_38.mcfunction +5 -0
- package/dist/data/mypack/function/atan2_fixed/merge_41.mcfunction +5 -0
- package/dist/data/mypack/function/atan2_fixed/merge_44.mcfunction +5 -0
- package/dist/data/mypack/function/atan2_fixed/merge_47.mcfunction +5 -0
- package/dist/data/mypack/function/atan2_fixed/merge_5.mcfunction +5 -0
- package/dist/data/mypack/function/atan2_fixed/merge_8.mcfunction +3 -0
- package/dist/data/mypack/function/atan2_fixed/then_0.mcfunction +5 -0
- package/dist/data/mypack/function/atan2_fixed/then_12.mcfunction +3 -0
- package/dist/data/mypack/function/atan2_fixed/then_15.mcfunction +5 -0
- package/dist/data/mypack/function/atan2_fixed/then_18.mcfunction +5 -0
- package/dist/data/mypack/function/atan2_fixed/then_21.mcfunction +3 -0
- package/dist/data/mypack/function/atan2_fixed/then_24.mcfunction +3 -0
- package/dist/data/mypack/function/atan2_fixed/then_27.mcfunction +6 -0
- package/dist/data/mypack/function/atan2_fixed/then_3.mcfunction +3 -0
- package/dist/data/mypack/function/atan2_fixed/then_33.mcfunction +5 -0
- package/dist/data/mypack/function/atan2_fixed/then_36.mcfunction +5 -0
- package/dist/data/mypack/function/atan2_fixed/then_39.mcfunction +5 -0
- package/dist/data/mypack/function/atan2_fixed/then_42.mcfunction +3 -0
- package/dist/data/mypack/function/atan2_fixed/then_45.mcfunction +5 -0
- package/dist/data/mypack/function/atan2_fixed/then_6.mcfunction +3 -0
- package/dist/data/mypack/function/atan2_fixed/then_9.mcfunction +5 -0
- package/dist/data/mypack/function/atan2_fixed.mcfunction +7 -0
- package/dist/data/mypack/function/my_game.mcfunction +10 -0
- package/dist/data/parkour_race/function/angry_at.mcfunction +1 -0
- package/dist/data/parkour_race/function/barrier_wall.mcfunction +1 -0
- package/dist/data/parkour_race/function/buff_all.mcfunction +22 -0
- package/dist/data/parkour_race/function/check_checkpoints.mcfunction +11 -0
- package/dist/data/parkour_race/function/check_checkpoints__exec_t11.mcfunction +4 -0
- package/dist/data/parkour_race/function/check_checkpoints__exec_t13.mcfunction +3 -0
- package/dist/data/parkour_race/function/check_checkpoints__exec_t5.mcfunction +4 -0
- package/dist/data/parkour_race/function/check_checkpoints__exec_t7.mcfunction +4 -0
- package/dist/data/parkour_race/function/check_checkpoints__exec_t9.mcfunction +4 -0
- package/dist/data/parkour_race/function/check_checkpoints__merge_1.mcfunction +5 -0
- package/dist/data/parkour_race/function/check_checkpoints__merge_3.mcfunction +5 -0
- package/dist/data/parkour_race/function/check_checkpoints__merge_5.mcfunction +5 -0
- package/dist/data/parkour_race/function/check_checkpoints__merge_7.mcfunction +5 -0
- package/dist/data/parkour_race/function/check_checkpoints__merge_9.mcfunction +1 -0
- package/dist/data/parkour_race/function/check_checkpoints__then_0.mcfunction +2 -0
- package/dist/data/parkour_race/function/check_checkpoints__then_2.mcfunction +2 -0
- package/dist/data/parkour_race/function/check_checkpoints__then_4.mcfunction +2 -0
- package/dist/data/parkour_race/function/check_checkpoints__then_6.mcfunction +2 -0
- package/dist/data/parkour_race/function/check_checkpoints__then_8.mcfunction +2 -0
- package/dist/data/parkour_race/function/check_fall.mcfunction +1 -0
- package/dist/data/parkour_race/function/check_fall__exec_t1.mcfunction +10 -0
- package/dist/data/parkour_race/function/clear_area.mcfunction +1 -0
- package/dist/data/parkour_race/function/clear_effect.mcfunction +1 -0
- package/dist/data/parkour_race/function/clear_effects.mcfunction +1 -0
- package/dist/data/parkour_race/function/create_health_bar.mcfunction +24 -0
- package/dist/data/parkour_race/function/create_progress_bar.mcfunction +24 -0
- package/dist/data/parkour_race/function/create_timer_bar.mcfunction +30 -0
- package/dist/data/parkour_race/function/disable_fire_spread.mcfunction +1 -0
- package/dist/data/parkour_race/function/disable_keep_inventory.mcfunction +1 -0
- package/dist/data/parkour_race/function/disable_mob_griefing.mcfunction +1 -0
- package/dist/data/parkour_race/function/enable_keep_inventory.mcfunction +1 -0
- package/dist/data/parkour_race/function/end_sparkles_at.mcfunction +1 -0
- package/dist/data/parkour_race/function/explosion_effect.mcfunction +1 -0
- package/dist/data/parkour_race/function/finish_race.mcfunction +20 -0
- package/dist/data/parkour_race/function/finish_race__else_2.mcfunction +4 -0
- package/dist/data/parkour_race/function/finish_race__else_5.mcfunction +3 -0
- package/dist/data/parkour_race/function/finish_race__merge_1.mcfunction +3 -0
- package/dist/data/parkour_race/function/finish_race__merge_4.mcfunction +1 -0
- package/dist/data/parkour_race/function/finish_race__then_0.mcfunction +8 -0
- package/dist/data/parkour_race/function/finish_race__then_3.mcfunction +10 -0
- package/dist/data/parkour_race/function/flames.mcfunction +1 -0
- package/dist/data/parkour_race/function/glass_box.mcfunction +2 -0
- package/dist/data/parkour_race/function/glow.mcfunction +1 -0
- package/dist/data/parkour_race/function/happy_at.mcfunction +1 -0
- package/dist/data/parkour_race/function/hearts_at.mcfunction +1 -0
- package/dist/data/parkour_race/function/hide_bar.mcfunction +4 -0
- package/dist/data/parkour_race/function/init.mcfunction +18 -0
- package/dist/data/parkour_race/function/invisible.mcfunction +1 -0
- package/dist/data/parkour_race/function/jump.mcfunction +1 -0
- package/dist/data/parkour_race/function/load.mcfunction +1 -0
- package/dist/data/parkour_race/function/night_vision.mcfunction +1 -0
- package/dist/data/parkour_race/function/portal_effect.mcfunction +1 -0
- package/dist/data/parkour_race/function/quit_race.mcfunction +10 -0
- package/dist/data/parkour_race/function/quit_race__merge_1.mcfunction +1 -0
- package/dist/data/parkour_race/function/quit_race__then_0.mcfunction +11 -0
- package/dist/data/parkour_race/function/race_tick.mcfunction +1 -0
- package/dist/data/parkour_race/function/race_tick__foreach_t0.mcfunction +10 -0
- package/dist/data/parkour_race/function/race_tick__foreach_t0__merge_1.mcfunction +1 -0
- package/dist/data/parkour_race/function/race_tick__foreach_t0__then_0.mcfunction +13 -0
- package/dist/data/parkour_race/function/reach_checkpoint.mcfunction +11 -0
- package/dist/data/parkour_race/function/regen.mcfunction +1 -0
- package/dist/data/parkour_race/function/remove_bar.mcfunction +3 -0
- package/dist/data/parkour_race/function/resistance.mcfunction +1 -0
- package/dist/data/parkour_race/function/respawn_at_checkpoint.mcfunction +7 -0
- package/dist/data/parkour_race/function/respawn_at_checkpoint__merge_1.mcfunction +5 -0
- package/dist/data/parkour_race/function/respawn_at_checkpoint__merge_3.mcfunction +5 -0
- package/dist/data/parkour_race/function/respawn_at_checkpoint__merge_5.mcfunction +5 -0
- package/dist/data/parkour_race/function/respawn_at_checkpoint__merge_7.mcfunction +5 -0
- package/dist/data/parkour_race/function/respawn_at_checkpoint__merge_9.mcfunction +1 -0
- package/dist/data/parkour_race/function/respawn_at_checkpoint__then_0.mcfunction +6 -0
- package/dist/data/parkour_race/function/respawn_at_checkpoint__then_2.mcfunction +6 -0
- package/dist/data/parkour_race/function/respawn_at_checkpoint__then_4.mcfunction +6 -0
- package/dist/data/parkour_race/function/respawn_at_checkpoint__then_6.mcfunction +6 -0
- package/dist/data/parkour_race/function/respawn_at_checkpoint__then_8.mcfunction +6 -0
- package/dist/data/parkour_race/function/set_day.mcfunction +1 -0
- package/dist/data/parkour_race/function/set_easy.mcfunction +1 -0
- package/dist/data/parkour_race/function/set_hard.mcfunction +1 -0
- package/dist/data/parkour_race/function/set_midnight.mcfunction +1 -0
- package/dist/data/parkour_race/function/set_night.mcfunction +1 -0
- package/dist/data/parkour_race/function/set_noon.mcfunction +1 -0
- package/dist/data/parkour_race/function/set_normal.mcfunction +1 -0
- package/dist/data/parkour_race/function/set_peaceful.mcfunction +1 -0
- package/dist/data/parkour_race/function/show_bar.mcfunction +4 -0
- package/dist/data/parkour_race/function/show_leaderboard.mcfunction +4 -0
- package/dist/data/parkour_race/function/slow_fall.mcfunction +1 -0
- package/dist/data/parkour_race/function/smoke.mcfunction +1 -0
- package/dist/data/parkour_race/function/sparkles_at.mcfunction +1 -0
- package/dist/data/parkour_race/function/speed.mcfunction +1 -0
- package/dist/data/parkour_race/function/start_race.mcfunction +10 -0
- package/dist/data/parkour_race/function/start_race__merge_1.mcfunction +23 -0
- package/dist/data/parkour_race/function/start_race__then_0.mcfunction +1 -0
- package/dist/data/parkour_race/function/strength.mcfunction +1 -0
- package/dist/data/parkour_race/function/totem_at.mcfunction +1 -0
- package/dist/data/parkour_race/function/update_bar.mcfunction +5 -0
- package/dist/data/parkour_race/function/update_bar_color.mcfunction +7 -0
- package/dist/data/parkour_race/function/update_bar_color__else_2.mcfunction +5 -0
- package/dist/data/parkour_race/function/update_bar_color__else_5.mcfunction +4 -0
- package/dist/data/parkour_race/function/update_bar_color__merge_1.mcfunction +1 -0
- package/dist/data/parkour_race/function/update_bar_color__merge_4.mcfunction +1 -0
- package/dist/data/parkour_race/function/update_bar_color__then_0.mcfunction +4 -0
- package/dist/data/parkour_race/function/update_bar_color__then_3.mcfunction +4 -0
- package/dist/data/parkour_race/function/weather_clear.mcfunction +1 -0
- package/dist/data/parkour_race/function/weather_rain.mcfunction +1 -0
- package/dist/data/parkour_race/function/weather_thunder.mcfunction +1 -0
- package/dist/data/quiz/function/__load.mcfunction +16 -0
- package/dist/data/quiz/function/__tick.mcfunction +6 -0
- package/dist/data/quiz/function/__trigger_quiz_a_dispatch.mcfunction +4 -0
- package/dist/data/quiz/function/__trigger_quiz_b_dispatch.mcfunction +4 -0
- package/dist/data/quiz/function/__trigger_quiz_c_dispatch.mcfunction +4 -0
- package/dist/data/quiz/function/__trigger_quiz_start_dispatch.mcfunction +4 -0
- package/dist/data/quiz/function/answer_a.mcfunction +4 -0
- package/dist/data/quiz/function/answer_b.mcfunction +4 -0
- package/dist/data/quiz/function/answer_c.mcfunction +4 -0
- package/dist/data/quiz/function/ask_question/else_1.mcfunction +5 -0
- package/dist/data/quiz/function/ask_question/else_4.mcfunction +5 -0
- package/dist/data/quiz/function/ask_question/else_7.mcfunction +4 -0
- package/dist/data/quiz/function/ask_question/merge_2.mcfunction +1 -0
- package/dist/data/quiz/function/ask_question/merge_5.mcfunction +2 -0
- package/dist/data/quiz/function/ask_question/merge_8.mcfunction +2 -0
- package/dist/data/quiz/function/ask_question/then_0.mcfunction +4 -0
- package/dist/data/quiz/function/ask_question/then_3.mcfunction +4 -0
- package/dist/data/quiz/function/ask_question/then_6.mcfunction +4 -0
- package/dist/data/quiz/function/ask_question.mcfunction +7 -0
- package/dist/data/quiz/function/finish_quiz.mcfunction +6 -0
- package/dist/data/quiz/function/handle_answer/else_1.mcfunction +5 -0
- package/dist/data/quiz/function/handle_answer/else_10.mcfunction +3 -0
- package/dist/data/quiz/function/handle_answer/else_16.mcfunction +3 -0
- package/dist/data/quiz/function/handle_answer/else_4.mcfunction +3 -0
- package/dist/data/quiz/function/handle_answer/else_7.mcfunction +5 -0
- package/dist/data/quiz/function/handle_answer/merge_11.mcfunction +2 -0
- package/dist/data/quiz/function/handle_answer/merge_14.mcfunction +2 -0
- package/dist/data/quiz/function/handle_answer/merge_17.mcfunction +2 -0
- package/dist/data/quiz/function/handle_answer/merge_2.mcfunction +8 -0
- package/dist/data/quiz/function/handle_answer/merge_5.mcfunction +2 -0
- package/dist/data/quiz/function/handle_answer/merge_8.mcfunction +2 -0
- package/dist/data/quiz/function/handle_answer/then_0.mcfunction +5 -0
- package/dist/data/quiz/function/handle_answer/then_12.mcfunction +5 -0
- package/dist/data/quiz/function/handle_answer/then_15.mcfunction +6 -0
- package/dist/data/quiz/function/handle_answer/then_3.mcfunction +6 -0
- package/dist/data/quiz/function/handle_answer/then_6.mcfunction +5 -0
- package/dist/data/quiz/function/handle_answer/then_9.mcfunction +6 -0
- package/dist/data/quiz/function/handle_answer.mcfunction +11 -0
- package/dist/data/quiz/function/start_quiz.mcfunction +5 -0
- package/dist/data/rawtest/function/load.mcfunction +1 -0
- package/dist/data/rawtest/function/test.mcfunction +2 -0
- package/dist/data/readme_demo/function/_draw.mcfunction +1 -0
- package/dist/data/readme_demo/function/_init.mcfunction +1 -0
- package/dist/data/readme_demo/function/_math_init.mcfunction +4 -0
- package/dist/data/readme_demo/function/_wave_tick.mcfunction +1 -0
- package/dist/data/readme_demo/function/_wave_tick__foreach_t8.mcfunction +109 -0
- package/dist/data/readme_demo/function/acos_approx.mcfunction +7 -0
- package/dist/data/readme_demo/function/approx_eq.mcfunction +10 -0
- package/dist/data/readme_demo/function/approx_eq__merge_1.mcfunction +3 -0
- package/dist/data/readme_demo/function/approx_eq__merge_3.mcfunction +2 -0
- package/dist/data/readme_demo/function/approx_eq__then_0.mcfunction +4 -0
- package/dist/data/readme_demo/function/approx_eq__then_2.mcfunction +2 -0
- package/dist/data/readme_demo/function/asin_approx.mcfunction +5 -0
- package/dist/data/readme_demo/function/asin_approx__merge_1.mcfunction +3 -0
- package/dist/data/readme_demo/function/asin_approx__merge_10.mcfunction +5 -0
- package/dist/data/readme_demo/function/asin_approx__merge_4.mcfunction +12 -0
- package/dist/data/readme_demo/function/asin_approx__merge_7.mcfunction +14 -0
- package/dist/data/readme_demo/function/asin_approx__then_0.mcfunction +2 -0
- package/dist/data/readme_demo/function/asin_approx__then_3.mcfunction +2 -0
- package/dist/data/readme_demo/function/asin_approx__then_6.mcfunction +2 -0
- package/dist/data/readme_demo/function/asin_approx__then_9.mcfunction +2 -0
- package/dist/data/readme_demo/function/cbrt_fx.mcfunction +5 -0
- package/dist/data/readme_demo/function/cbrt_fx__loop_body_6.mcfunction +7 -0
- package/dist/data/readme_demo/function/cbrt_fx__loop_exit_7.mcfunction +1 -0
- package/dist/data/readme_demo/function/cbrt_fx__loop_header_5.mcfunction +4 -0
- package/dist/data/readme_demo/function/cbrt_fx__merge_1.mcfunction +8 -0
- package/dist/data/readme_demo/function/cbrt_fx__merge_11.mcfunction +5 -0
- package/dist/data/readme_demo/function/cbrt_fx__merge_13.mcfunction +4 -0
- package/dist/data/readme_demo/function/cbrt_fx__merge_4.mcfunction +2 -0
- package/dist/data/readme_demo/function/cbrt_fx__merge_9.mcfunction +13 -0
- package/dist/data/readme_demo/function/cbrt_fx__then_0.mcfunction +2 -0
- package/dist/data/readme_demo/function/cbrt_fx__then_10.mcfunction +2 -0
- package/dist/data/readme_demo/function/cbrt_fx__then_12.mcfunction +2 -0
- package/dist/data/readme_demo/function/cbrt_fx__then_3.mcfunction +2 -0
- package/dist/data/readme_demo/function/cbrt_fx__then_8.mcfunction +2 -0
- package/dist/data/readme_demo/function/cbrt_newton.mcfunction +5 -0
- package/dist/data/readme_demo/function/cbrt_newton__else_7.mcfunction +2 -0
- package/dist/data/readme_demo/function/cbrt_newton__merge_1.mcfunction +11 -0
- package/dist/data/readme_demo/function/cbrt_newton__merge_4.mcfunction +1 -0
- package/dist/data/readme_demo/function/cbrt_newton__merge_6.mcfunction +1 -0
- package/dist/data/readme_demo/function/cbrt_newton__then_0.mcfunction +2 -0
- package/dist/data/readme_demo/function/cbrt_newton__then_3.mcfunction +17 -0
- package/dist/data/readme_demo/function/cbrt_newton__then_5.mcfunction +11 -0
- package/dist/data/readme_demo/function/ceil_div.mcfunction +9 -0
- package/dist/data/readme_demo/function/combinations.mcfunction +6 -0
- package/dist/data/readme_demo/function/combinations__loop_body_9.mcfunction +15 -0
- package/dist/data/readme_demo/function/combinations__loop_exit_10.mcfunction +1 -0
- package/dist/data/readme_demo/function/combinations__loop_header_8.mcfunction +3 -0
- package/dist/data/readme_demo/function/combinations__merge_1.mcfunction +3 -0
- package/dist/data/readme_demo/function/combinations__merge_4.mcfunction +6 -0
- package/dist/data/readme_demo/function/combinations__merge_7.mcfunction +3 -0
- package/dist/data/readme_demo/function/combinations__then_0.mcfunction +2 -0
- package/dist/data/readme_demo/function/combinations__then_3.mcfunction +2 -0
- package/dist/data/readme_demo/function/combinations__then_6.mcfunction +4 -0
- package/dist/data/readme_demo/function/cos_fixed.mcfunction +7 -0
- package/dist/data/readme_demo/function/cubic_disc_fx.mcfunction +26 -0
- package/dist/data/readme_demo/function/cubic_newton.mcfunction +8 -0
- package/dist/data/readme_demo/function/cubic_newton__loop_body_1.mcfunction +55 -0
- package/dist/data/readme_demo/function/cubic_newton__loop_exit_2.mcfunction +1 -0
- package/dist/data/readme_demo/function/cubic_newton__loop_header_0.mcfunction +4 -0
- package/dist/data/readme_demo/function/cubic_newton__merge_10.mcfunction +1 -0
- package/dist/data/readme_demo/function/cubic_newton__merge_4.mcfunction +4 -0
- package/dist/data/readme_demo/function/cubic_newton__merge_6.mcfunction +4 -0
- package/dist/data/readme_demo/function/cubic_newton__merge_8.mcfunction +4 -0
- package/dist/data/readme_demo/function/cubic_newton__then_3.mcfunction +2 -0
- package/dist/data/readme_demo/function/cubic_newton__then_5.mcfunction +13 -0
- package/dist/data/readme_demo/function/cubic_newton__then_7.mcfunction +4 -0
- package/dist/data/readme_demo/function/cubic_newton__then_9.mcfunction +2 -0
- package/dist/data/readme_demo/function/divfix.mcfunction +6 -0
- package/dist/data/readme_demo/function/divfix__merge_1.mcfunction +6 -0
- package/dist/data/readme_demo/function/divfix__then_0.mcfunction +2 -0
- package/dist/data/readme_demo/function/exp_fx.mcfunction +16 -0
- package/dist/data/readme_demo/function/exp_fx__loop_body_10.mcfunction +8 -0
- package/dist/data/readme_demo/function/exp_fx__loop_body_5.mcfunction +8 -0
- package/dist/data/readme_demo/function/exp_fx__loop_exit_11.mcfunction +1 -0
- package/dist/data/readme_demo/function/exp_fx__loop_exit_6.mcfunction +1 -0
- package/dist/data/readme_demo/function/exp_fx__loop_header_4.mcfunction +3 -0
- package/dist/data/readme_demo/function/exp_fx__loop_header_9.mcfunction +3 -0
- package/dist/data/readme_demo/function/exp_fx__merge_1.mcfunction +47 -0
- package/dist/data/readme_demo/function/exp_fx__merge_3.mcfunction +4 -0
- package/dist/data/readme_demo/function/exp_fx__merge_8.mcfunction +1 -0
- package/dist/data/readme_demo/function/exp_fx__then_0.mcfunction +7 -0
- package/dist/data/readme_demo/function/exp_fx__then_2.mcfunction +2 -0
- package/dist/data/readme_demo/function/exp_fx__then_7.mcfunction +5 -0
- package/dist/data/readme_demo/function/factorial.mcfunction +5 -0
- package/dist/data/readme_demo/function/factorial__loop_body_4.mcfunction +7 -0
- package/dist/data/readme_demo/function/factorial__loop_exit_5.mcfunction +1 -0
- package/dist/data/readme_demo/function/factorial__loop_header_3.mcfunction +3 -0
- package/dist/data/readme_demo/function/factorial__merge_1.mcfunction +3 -0
- package/dist/data/readme_demo/function/factorial__then_0.mcfunction +2 -0
- package/dist/data/readme_demo/function/gamma_int.mcfunction +5 -0
- package/dist/data/readme_demo/function/gamma_int__merge_1.mcfunction +6 -0
- package/dist/data/readme_demo/function/gamma_int__then_0.mcfunction +2 -0
- package/dist/data/readme_demo/function/gcd.mcfunction +7 -0
- package/dist/data/readme_demo/function/gcd__loop_body_5.mcfunction +5 -0
- package/dist/data/readme_demo/function/gcd__loop_exit_6.mcfunction +1 -0
- package/dist/data/readme_demo/function/gcd__loop_header_4.mcfunction +4 -0
- package/dist/data/readme_demo/function/gcd__merge_1.mcfunction +5 -0
- package/dist/data/readme_demo/function/gcd__merge_3.mcfunction +1 -0
- package/dist/data/readme_demo/function/gcd__then_0.mcfunction +4 -0
- package/dist/data/readme_demo/function/gcd__then_2.mcfunction +4 -0
- package/dist/data/readme_demo/function/isqrt.mcfunction +5 -0
- package/dist/data/readme_demo/function/isqrt__loop_body_10.mcfunction +8 -0
- package/dist/data/readme_demo/function/isqrt__loop_body_13.mcfunction +11 -0
- package/dist/data/readme_demo/function/isqrt__loop_body_7.mcfunction +8 -0
- package/dist/data/readme_demo/function/isqrt__loop_exit_11.mcfunction +2 -0
- package/dist/data/readme_demo/function/isqrt__loop_exit_14.mcfunction +1 -0
- package/dist/data/readme_demo/function/isqrt__loop_exit_8.mcfunction +9 -0
- package/dist/data/readme_demo/function/isqrt__loop_header_12.mcfunction +4 -0
- package/dist/data/readme_demo/function/isqrt__loop_header_6.mcfunction +4 -0
- package/dist/data/readme_demo/function/isqrt__loop_header_9.mcfunction +3 -0
- package/dist/data/readme_demo/function/isqrt__merge_1.mcfunction +4 -0
- package/dist/data/readme_demo/function/isqrt__merge_16.mcfunction +5 -0
- package/dist/data/readme_demo/function/isqrt__merge_4.mcfunction +3 -0
- package/dist/data/readme_demo/function/isqrt__then_0.mcfunction +2 -0
- package/dist/data/readme_demo/function/isqrt__then_15.mcfunction +1 -0
- package/dist/data/readme_demo/function/isqrt__then_3.mcfunction +2 -0
- package/dist/data/readme_demo/function/lcm.mcfunction +11 -0
- package/dist/data/readme_demo/function/lcm__merge_1.mcfunction +5 -0
- package/dist/data/readme_demo/function/lcm__then_0.mcfunction +2 -0
- package/dist/data/readme_demo/function/lerp.mcfunction +13 -0
- package/dist/data/readme_demo/function/ln.mcfunction +9 -0
- package/dist/data/readme_demo/function/ln__loop_body_1.mcfunction +8 -0
- package/dist/data/readme_demo/function/ln__loop_body_4.mcfunction +8 -0
- package/dist/data/readme_demo/function/ln__loop_exit_2.mcfunction +1 -0
- package/dist/data/readme_demo/function/ln__loop_exit_5.mcfunction +37 -0
- package/dist/data/readme_demo/function/ln__loop_header_0.mcfunction +3 -0
- package/dist/data/readme_demo/function/ln__loop_header_3.mcfunction +6 -0
- package/dist/data/readme_demo/function/load.mcfunction +1 -0
- package/dist/data/readme_demo/function/log10_fx.mcfunction +11 -0
- package/dist/data/readme_demo/function/log2_fx.mcfunction +11 -0
- package/dist/data/readme_demo/function/log2_int.mcfunction +5 -0
- package/dist/data/readme_demo/function/log2_int__loop_body_4.mcfunction +8 -0
- package/dist/data/readme_demo/function/log2_int__loop_exit_5.mcfunction +1 -0
- package/dist/data/readme_demo/function/log2_int__loop_header_3.mcfunction +4 -0
- package/dist/data/readme_demo/function/log2_int__merge_1.mcfunction +3 -0
- package/dist/data/readme_demo/function/log2_int__then_0.mcfunction +2 -0
- package/dist/data/readme_demo/function/loga_fx.mcfunction +10 -0
- package/dist/data/readme_demo/function/loga_fx__merge_1.mcfunction +9 -0
- package/dist/data/readme_demo/function/loga_fx__then_0.mcfunction +2 -0
- package/dist/data/readme_demo/function/map.mcfunction +12 -0
- package/dist/data/readme_demo/function/map__merge_1.mcfunction +11 -0
- package/dist/data/readme_demo/function/map__then_0.mcfunction +1 -0
- package/dist/data/readme_demo/function/mulfix.mcfunction +8 -0
- package/dist/data/readme_demo/function/newton_step.mcfunction +7 -0
- package/dist/data/readme_demo/function/newton_step__merge_1.mcfunction +8 -0
- package/dist/data/readme_demo/function/newton_step__then_0.mcfunction +1 -0
- package/dist/data/readme_demo/function/pow_int.mcfunction +6 -0
- package/dist/data/readme_demo/function/pow_int__loop_body_4.mcfunction +7 -0
- package/dist/data/readme_demo/function/pow_int__loop_exit_5.mcfunction +1 -0
- package/dist/data/readme_demo/function/pow_int__loop_header_3.mcfunction +4 -0
- package/dist/data/readme_demo/function/pow_int__merge_1.mcfunction +4 -0
- package/dist/data/readme_demo/function/pow_int__merge_7.mcfunction +8 -0
- package/dist/data/readme_demo/function/pow_int__then_0.mcfunction +2 -0
- package/dist/data/readme_demo/function/pow_int__then_6.mcfunction +4 -0
- package/dist/data/readme_demo/function/quadratic_disc.mcfunction +12 -0
- package/dist/data/readme_demo/function/quadratic_x1.mcfunction +7 -0
- package/dist/data/readme_demo/function/quadratic_x1__merge_1.mcfunction +13 -0
- package/dist/data/readme_demo/function/quadratic_x1__merge_4.mcfunction +15 -0
- package/dist/data/readme_demo/function/quadratic_x1__then_0.mcfunction +2 -0
- package/dist/data/readme_demo/function/quadratic_x1__then_3.mcfunction +2 -0
- package/dist/data/readme_demo/function/quadratic_x2.mcfunction +7 -0
- package/dist/data/readme_demo/function/quadratic_x2__merge_1.mcfunction +13 -0
- package/dist/data/readme_demo/function/quadratic_x2__merge_4.mcfunction +15 -0
- package/dist/data/readme_demo/function/quadratic_x2__then_0.mcfunction +2 -0
- package/dist/data/readme_demo/function/quadratic_x2__then_3.mcfunction +2 -0
- package/dist/data/readme_demo/function/sign.mcfunction +5 -0
- package/dist/data/readme_demo/function/sign__merge_1.mcfunction +4 -0
- package/dist/data/readme_demo/function/sign__merge_4.mcfunction +2 -0
- package/dist/data/readme_demo/function/sign__then_0.mcfunction +2 -0
- package/dist/data/readme_demo/function/sign__then_3.mcfunction +2 -0
- package/dist/data/readme_demo/function/simpson_step.mcfunction +16 -0
- package/dist/data/readme_demo/function/sin_fixed.mcfunction +9 -0
- package/dist/data/readme_demo/function/sin_fixed__merge_1.mcfunction +4 -0
- package/dist/data/readme_demo/function/sin_fixed__merge_3.mcfunction +4 -0
- package/dist/data/readme_demo/function/sin_fixed__merge_6.mcfunction +4 -0
- package/dist/data/readme_demo/function/sin_fixed__merge_9.mcfunction +10 -0
- package/dist/data/readme_demo/function/sin_fixed__then_0.mcfunction +4 -0
- package/dist/data/readme_demo/function/sin_fixed__then_2.mcfunction +6 -0
- package/dist/data/readme_demo/function/sin_fixed__then_5.mcfunction +8 -0
- package/dist/data/readme_demo/function/sin_fixed__then_8.mcfunction +10 -0
- package/dist/data/readme_demo/function/smootherstep.mcfunction +10 -0
- package/dist/data/readme_demo/function/smootherstep__merge_1.mcfunction +12 -0
- package/dist/data/readme_demo/function/smootherstep__merge_4.mcfunction +4 -0
- package/dist/data/readme_demo/function/smootherstep__merge_6.mcfunction +27 -0
- package/dist/data/readme_demo/function/smootherstep__then_0.mcfunction +2 -0
- package/dist/data/readme_demo/function/smootherstep__then_3.mcfunction +2 -0
- package/dist/data/readme_demo/function/smootherstep__then_5.mcfunction +2 -0
- package/dist/data/readme_demo/function/smoothstep.mcfunction +10 -0
- package/dist/data/readme_demo/function/smoothstep__merge_1.mcfunction +12 -0
- package/dist/data/readme_demo/function/smoothstep__merge_4.mcfunction +4 -0
- package/dist/data/readme_demo/function/smoothstep__merge_6.mcfunction +15 -0
- package/dist/data/readme_demo/function/smoothstep__then_0.mcfunction +2 -0
- package/dist/data/readme_demo/function/smoothstep__then_3.mcfunction +2 -0
- package/dist/data/readme_demo/function/smoothstep__then_5.mcfunction +2 -0
- package/dist/data/readme_demo/function/solve2x2_x.mcfunction +17 -0
- package/dist/data/readme_demo/function/solve2x2_x__merge_1.mcfunction +12 -0
- package/dist/data/readme_demo/function/solve2x2_x__then_0.mcfunction +2 -0
- package/dist/data/readme_demo/function/solve2x2_y.mcfunction +17 -0
- package/dist/data/readme_demo/function/solve2x2_y__merge_1.mcfunction +12 -0
- package/dist/data/readme_demo/function/solve2x2_y__then_0.mcfunction +2 -0
- package/dist/data/readme_demo/function/sqrt_fixed.mcfunction +8 -0
- package/dist/data/readme_demo/function/sqrt_fx.mcfunction +8 -0
- package/dist/data/readme_demo/function/start.mcfunction +2 -0
- package/dist/data/readme_demo/function/stop.mcfunction +1 -0
- package/dist/data/readme_demo/function/trapezoid_step.mcfunction +11 -0
- package/dist/data/reqtest/function/__load.mcfunction +4 -0
- package/dist/data/reqtest/function/_table_init.mcfunction +2 -0
- package/dist/data/reqtest/function/no_trig.mcfunction +3 -0
- package/dist/data/reqtest/function/use_table.mcfunction +4 -0
- package/dist/data/reqtest2/function/__load.mcfunction +3 -0
- package/dist/data/reqtest2/function/no_trig.mcfunction +3 -0
- package/dist/data/runtime/function/__load.mcfunction +5 -0
- package/dist/data/runtime/function/__tick.mcfunction +2 -0
- package/dist/data/runtime/function/counter_tick/then_0.mcfunction +3 -0
- package/dist/data/runtime/function/counter_tick.mcfunction +13 -0
- package/dist/data/shop/function/__load.mcfunction +7 -0
- package/dist/data/shop/function/__tick.mcfunction +3 -0
- package/dist/data/shop/function/__trigger_shop_buy_dispatch.mcfunction +4 -0
- package/dist/data/shop/function/complete_purchase/else_1.mcfunction +5 -0
- package/dist/data/shop/function/complete_purchase/else_4.mcfunction +5 -0
- package/dist/data/shop/function/complete_purchase/else_7.mcfunction +3 -0
- package/dist/data/shop/function/complete_purchase/merge_2.mcfunction +2 -0
- package/dist/data/shop/function/complete_purchase/merge_5.mcfunction +2 -0
- package/dist/data/shop/function/complete_purchase/merge_8.mcfunction +2 -0
- package/dist/data/shop/function/complete_purchase/then_0.mcfunction +4 -0
- package/dist/data/shop/function/complete_purchase/then_3.mcfunction +4 -0
- package/dist/data/shop/function/complete_purchase/then_6.mcfunction +4 -0
- package/dist/data/shop/function/complete_purchase.mcfunction +7 -0
- package/dist/data/shop/function/handle_shop_trigger.mcfunction +3 -0
- package/dist/data/stdextra/function/__load.mcfunction +2 -0
- package/dist/data/stdextra/function/load.mcfunction +1 -0
- package/dist/data/stdextra/function/test_bigint.mcfunction +52 -0
- package/dist/data/stdextra/function/test_bits.mcfunction +33 -0
- package/dist/data/stdextra/function/test_list_sort.mcfunction +55 -0
- package/dist/data/stdextra/function/test_random.mcfunction +17 -0
- package/dist/data/stdextra/function/test_random__merge_1.mcfunction +4 -0
- package/dist/data/stdextra/function/test_random__merge_11.mcfunction +1 -0
- package/dist/data/stdextra/function/test_random__merge_3.mcfunction +14 -0
- package/dist/data/stdextra/function/test_random__merge_5.mcfunction +8 -0
- package/dist/data/stdextra/function/test_random__merge_7.mcfunction +1 -0
- package/dist/data/stdextra/function/test_random__merge_9.mcfunction +1 -0
- package/dist/data/stdextra/function/test_random__then_0.mcfunction +4 -0
- package/dist/data/stdextra/function/test_random__then_10.mcfunction +2 -0
- package/dist/data/stdextra/function/test_random__then_2.mcfunction +2 -0
- package/dist/data/stdextra/function/test_random__then_4.mcfunction +4 -0
- package/dist/data/stdextra/function/test_random__then_6.mcfunction +2 -0
- package/dist/data/stdextra/function/test_random__then_8.mcfunction +4 -0
- package/dist/data/swap_test/function/__load.mcfunction +3 -0
- package/dist/data/swap_test/function/gcd_old/loop_body_1.mcfunction +7 -0
- package/dist/data/swap_test/function/gcd_old/loop_check_0.mcfunction +5 -0
- package/dist/data/swap_test/function/gcd_old/loop_exit_2.mcfunction +3 -0
- package/dist/data/swap_test/function/gcd_old.mcfunction +8 -0
- package/dist/data/test/function/__dyn_idx_test_arrays_a.mcfunction +1 -0
- package/dist/data/test/function/__dyn_idx_test_arrays_b.mcfunction +1 -0
- package/dist/data/test/function/__dyn_idx_test_arrays_c.mcfunction +1 -0
- package/dist/data/test/function/__dyn_idx_test_arrays_counter.mcfunction +1 -0
- package/dist/data/test/function/__dyn_idx_test_arrays_d.mcfunction +1 -0
- package/dist/data/test/function/__dyn_idx_test_arrays_e.mcfunction +1 -0
- package/dist/data/test/function/__dyn_idx_test_arrays_g.mcfunction +1 -0
- package/dist/data/test/function/__dyn_idx_test_arrays_h.mcfunction +1 -0
- package/dist/data/test/function/__dyn_idx_test_arrays_nums.mcfunction +1 -0
- package/dist/data/test/function/__dyn_idx_test_arrays_one.mcfunction +1 -0
- package/dist/data/test/function/__dyn_idx_test_arrays_parent.mcfunction +1 -0
- package/dist/data/test/function/__dyn_idx_test_arrays_queue.mcfunction +1 -0
- package/dist/data/test/function/__dyn_idx_test_arrays_rev.mcfunction +1 -0
- package/dist/data/test/function/__dyn_idx_test_arrays_visited.mcfunction +1 -0
- package/dist/data/test/function/__dyn_wrt_test_arrays_f.mcfunction +1 -0
- package/dist/data/test/function/__dyn_wrt_test_arrays_parent.mcfunction +1 -0
- package/dist/data/test/function/__dyn_wrt_test_arrays_r.mcfunction +1 -0
- package/dist/data/test/function/__dyn_wrt_test_arrays_s.mcfunction +1 -0
- package/dist/data/test/function/__dyn_wrt_test_arrays_visited.mcfunction +1 -0
- package/dist/data/test/function/_apply.mcfunction +5 -0
- package/dist/data/test/function/_atan_init.mcfunction +4 -0
- package/dist/data/test/function/_coro_pathfind_bfs_coro_cont_1.mcfunction +2 -0
- package/dist/data/test/function/_coro_pathfind_bfs_coro_cont_1__loop_body_1.mcfunction +17 -0
- package/dist/data/test/function/_coro_pathfind_bfs_coro_cont_1__loop_body_1_continue.mcfunction +1 -0
- package/dist/data/test/function/_coro_pathfind_bfs_coro_cont_1__loop_body_1_yield.mcfunction +1 -0
- package/dist/data/test/function/_coro_pathfind_bfs_coro_cont_1__loop_header_0.mcfunction +4 -0
- package/dist/data/test/function/_coro_pathfind_bfs_coro_cont_1__loop_header_0_exit.mcfunction +1 -0
- package/dist/data/test/function/_coro_pathfind_bfs_coro_cont_2.mcfunction +2 -0
- package/dist/data/test/function/_coro_pathfind_bfs_coro_cont_2__else_8.mcfunction +19 -0
- package/dist/data/test/function/_coro_pathfind_bfs_coro_cont_2__loop_body_4.mcfunction +9 -0
- package/dist/data/test/function/_coro_pathfind_bfs_coro_cont_2__loop_header_3.mcfunction +3 -0
- package/dist/data/test/function/_coro_pathfind_bfs_coro_cont_2__loop_header_3_exit.mcfunction +1 -0
- package/dist/data/test/function/_coro_pathfind_bfs_coro_cont_2__merge_10.mcfunction +11 -0
- package/dist/data/test/function/_coro_pathfind_bfs_coro_cont_2__merge_12.mcfunction +1 -0
- package/dist/data/test/function/_coro_pathfind_bfs_coro_cont_2__merge_14.mcfunction +11 -0
- package/dist/data/test/function/_coro_pathfind_bfs_coro_cont_2__merge_16.mcfunction +1 -0
- package/dist/data/test/function/_coro_pathfind_bfs_coro_cont_2__merge_18.mcfunction +11 -0
- package/dist/data/test/function/_coro_pathfind_bfs_coro_cont_2__merge_20.mcfunction +1 -0
- package/dist/data/test/function/_coro_pathfind_bfs_coro_cont_2__merge_22.mcfunction +1 -0
- package/dist/data/test/function/_coro_pathfind_bfs_coro_cont_2__merge_24.mcfunction +1 -0
- package/dist/data/test/function/_coro_pathfind_bfs_coro_cont_2__merge_7.mcfunction +6 -0
- package/dist/data/test/function/_coro_pathfind_bfs_coro_cont_2__merge_7_continue.mcfunction +1 -0
- package/dist/data/test/function/_coro_pathfind_bfs_coro_cont_2__merge_7_yield.mcfunction +1 -0
- package/dist/data/test/function/_coro_pathfind_bfs_coro_cont_2__then_11.mcfunction +15 -0
- package/dist/data/test/function/_coro_pathfind_bfs_coro_cont_2__then_13.mcfunction +13 -0
- package/dist/data/test/function/_coro_pathfind_bfs_coro_cont_2__then_15.mcfunction +15 -0
- package/dist/data/test/function/_coro_pathfind_bfs_coro_cont_2__then_17.mcfunction +13 -0
- package/dist/data/test/function/_coro_pathfind_bfs_coro_cont_2__then_19.mcfunction +15 -0
- package/dist/data/test/function/_coro_pathfind_bfs_coro_cont_2__then_21.mcfunction +13 -0
- package/dist/data/test/function/_coro_pathfind_bfs_coro_cont_2__then_23.mcfunction +15 -0
- package/dist/data/test/function/_coro_pathfind_bfs_coro_cont_2__then_6.mcfunction +2 -0
- package/dist/data/test/function/_coro_pathfind_bfs_coro_cont_2__then_9.mcfunction +13 -0
- package/dist/data/test/function/_coro_pathfind_bfs_coro_cont_3.mcfunction +2 -0
- package/dist/data/test/function/_coro_pathfind_bfs_coro_cont_3__else_32.mcfunction +4 -0
- package/dist/data/test/function/_coro_pathfind_bfs_coro_cont_3__loop_body_28.mcfunction +6 -0
- package/dist/data/test/function/_coro_pathfind_bfs_coro_cont_3__loop_header_27.mcfunction +4 -0
- package/dist/data/test/function/_coro_pathfind_bfs_coro_cont_3__loop_header_27_exit.mcfunction +1 -0
- package/dist/data/test/function/_coro_pathfind_bfs_coro_cont_3__merge_31.mcfunction +6 -0
- package/dist/data/test/function/_coro_pathfind_bfs_coro_cont_3__merge_31_continue.mcfunction +1 -0
- package/dist/data/test/function/_coro_pathfind_bfs_coro_cont_3__merge_31_yield.mcfunction +1 -0
- package/dist/data/test/function/_coro_pathfind_bfs_coro_cont_3__then_30.mcfunction +2 -0
- package/dist/data/test/function/_coro_pathfind_bfs_coro_cont_4.mcfunction +2 -0
- package/dist/data/test/function/_coro_pathfind_bfs_coro_cont_4__loop_body_34.mcfunction +16 -0
- package/dist/data/test/function/_coro_pathfind_bfs_coro_cont_4__loop_body_34_continue.mcfunction +1 -0
- package/dist/data/test/function/_coro_pathfind_bfs_coro_cont_4__loop_body_34_yield.mcfunction +1 -0
- package/dist/data/test/function/_coro_pathfind_bfs_coro_cont_4__loop_header_33.mcfunction +4 -0
- package/dist/data/test/function/_coro_pathfind_bfs_coro_cont_4__loop_header_33_exit.mcfunction +1 -0
- package/dist/data/test/function/_coro_pathfind_bfs_coro_cont_5.mcfunction +16 -0
- package/dist/data/test/function/_coro_pathfind_bfs_coro_cont_5__merge_26.mcfunction +1 -0
- package/dist/data/test/function/_coro_pathfind_bfs_coro_tick.mcfunction +4 -0
- package/dist/data/test/function/_coro_pathfind_bfs_coro_tick__call_1.mcfunction +1 -0
- package/dist/data/test/function/_coro_pathfind_bfs_coro_tick__call_2.mcfunction +1 -0
- package/dist/data/test/function/_coro_pathfind_bfs_coro_tick__call_3.mcfunction +1 -0
- package/dist/data/test/function/_coro_pathfind_bfs_coro_tick__call_4.mcfunction +1 -0
- package/dist/data/test/function/_coro_pathfind_bfs_coro_tick__call_5.mcfunction +1 -0
- package/dist/data/test/function/_coro_pathfind_bfs_coro_tick__check_2.mcfunction +4 -0
- package/dist/data/test/function/_coro_pathfind_bfs_coro_tick__check_3.mcfunction +4 -0
- package/dist/data/test/function/_coro_pathfind_bfs_coro_tick__check_4.mcfunction +4 -0
- package/dist/data/test/function/_coro_pathfind_bfs_coro_tick__check_5.mcfunction +4 -0
- package/dist/data/test/function/_coro_pathfind_bfs_coro_tick__done.mcfunction +1 -0
- package/dist/data/test/function/_divider.mcfunction +1 -0
- package/dist/data/test/function/_dump_advanced_phase.mcfunction +4 -0
- package/dist/data/test/function/_dump_advanced_phase__loop_body_1.mcfunction +7 -0
- package/dist/data/test/function/_dump_advanced_phase__loop_body_6.mcfunction +10 -0
- package/dist/data/test/function/_dump_advanced_phase__loop_exit_2.mcfunction +20 -0
- package/dist/data/test/function/_dump_advanced_phase__loop_exit_7.mcfunction +12 -0
- package/dist/data/test/function/_dump_advanced_phase__loop_header_0.mcfunction +4 -0
- package/dist/data/test/function/_dump_advanced_phase__loop_header_5.mcfunction +4 -0
- package/dist/data/test/function/_dump_advanced_phase__merge_4.mcfunction +4 -0
- package/dist/data/test/function/_dump_advanced_phase__then_3.mcfunction +2 -0
- package/dist/data/test/function/_dump_bigint_phase.mcfunction +28 -0
- package/dist/data/test/function/_dump_math_phase.mcfunction +4 -0
- package/dist/data/test/function/_dump_math_phase__loop_body_1.mcfunction +9 -0
- package/dist/data/test/function/_dump_math_phase__loop_exit_2.mcfunction +18 -0
- package/dist/data/test/function/_dump_math_phase__loop_header_0.mcfunction +4 -0
- package/dist/data/test/function/_fp.mcfunction +2 -0
- package/dist/data/test/function/_hsl_chroma_x.mcfunction +10 -0
- package/dist/data/test/function/_hsl_chroma_x__merge_1.mcfunction +6 -0
- package/dist/data/test/function/_hsl_chroma_x__then_0.mcfunction +4 -0
- package/dist/data/test/function/_math_init.mcfunction +4 -0
- package/dist/data/test/function/_next_phase.mcfunction +1 -0
- package/dist/data/test/function/_section.mcfunction +3 -0
- package/dist/data/test/function/_section__const_0.mcfunction +3 -0
- package/dist/data/test/function/_tick_advanced_live.mcfunction +5 -0
- package/dist/data/test/function/_tick_advanced_live__foreach_t12.mcfunction +1 -0
- package/dist/data/test/function/_tick_bigint_live.mcfunction +8 -0
- package/dist/data/test/function/_tick_bigint_live__foreach_t11.mcfunction +1 -0
- package/dist/data/test/function/_tick_math.mcfunction +9 -0
- package/dist/data/test/function/_tick_math__foreach_t12.mcfunction +1 -0
- package/dist/data/test/function/_tick_visual.mcfunction +11 -0
- package/dist/data/test/function/_tick_visual__foreach_t12.mcfunction +1 -0
- package/dist/data/test/function/_tick_visual__foreach_t16.mcfunction +8 -0
- package/dist/data/test/function/_tick_visual__foreach_t17.mcfunction +8 -0
- package/dist/data/test/function/_tick_visual__foreach_t21.mcfunction +1 -0
- package/dist/data/test/function/aabb_contains.mcfunction +12 -0
- package/dist/data/test/function/aabb_contains__merge_1.mcfunction +3 -0
- package/dist/data/test/function/aabb_contains__merge_10.mcfunction +3 -0
- package/dist/data/test/function/aabb_contains__merge_13.mcfunction +3 -0
- package/dist/data/test/function/aabb_contains__merge_16.mcfunction +2 -0
- package/dist/data/test/function/aabb_contains__merge_4.mcfunction +3 -0
- package/dist/data/test/function/aabb_contains__merge_7.mcfunction +3 -0
- package/dist/data/test/function/aabb_contains__then_0.mcfunction +2 -0
- package/dist/data/test/function/aabb_contains__then_12.mcfunction +2 -0
- package/dist/data/test/function/aabb_contains__then_15.mcfunction +2 -0
- package/dist/data/test/function/aabb_contains__then_3.mcfunction +2 -0
- package/dist/data/test/function/aabb_contains__then_6.mcfunction +2 -0
- package/dist/data/test/function/aabb_contains__then_9.mcfunction +2 -0
- package/dist/data/test/function/acos_approx.mcfunction +7 -0
- package/dist/data/test/function/add2d_x.mcfunction +5 -0
- package/dist/data/test/function/add2d_y.mcfunction +5 -0
- package/dist/data/test/function/add3d_x.mcfunction +5 -0
- package/dist/data/test/function/add3d_y.mcfunction +5 -0
- package/dist/data/test/function/add3d_z.mcfunction +5 -0
- package/dist/data/test/function/add_to_team.mcfunction +5 -0
- package/dist/data/test/function/air_drag_fx.mcfunction +2 -0
- package/dist/data/test/function/angle_between.mcfunction +28 -0
- package/dist/data/test/function/angle_between__and_false_2.mcfunction +2 -0
- package/dist/data/test/function/angle_between__and_false_8.mcfunction +2 -0
- package/dist/data/test/function/angle_between__and_merge_1.mcfunction +2 -0
- package/dist/data/test/function/angle_between__and_merge_7.mcfunction +2 -0
- package/dist/data/test/function/angle_between__and_right_0.mcfunction +4 -0
- package/dist/data/test/function/angle_between__and_right_6.mcfunction +4 -0
- package/dist/data/test/function/angle_between__merge_10.mcfunction +26 -0
- package/dist/data/test/function/angle_between__merge_4.mcfunction +4 -0
- package/dist/data/test/function/angle_between__then_3.mcfunction +2 -0
- package/dist/data/test/function/angle_between__then_9.mcfunction +2 -0
- package/dist/data/test/function/angle_diff.mcfunction +12 -0
- package/dist/data/test/function/angle_diff__merge_1.mcfunction +1 -0
- package/dist/data/test/function/angle_diff__then_0.mcfunction +4 -0
- package/dist/data/test/function/angle_normalize.mcfunction +3 -0
- package/dist/data/test/function/angle_normalize__loop_body_1.mcfunction +4 -0
- package/dist/data/test/function/angle_normalize__loop_body_4.mcfunction +4 -0
- package/dist/data/test/function/angle_normalize__loop_exit_2.mcfunction +1 -0
- package/dist/data/test/function/angle_normalize__loop_exit_5.mcfunction +1 -0
- package/dist/data/test/function/angle_normalize__loop_header_0.mcfunction +4 -0
- package/dist/data/test/function/angle_normalize__loop_header_3.mcfunction +4 -0
- package/dist/data/test/function/angry_at.mcfunction +1 -0
- package/dist/data/test/function/apply_damage.mcfunction +12 -0
- package/dist/data/test/function/apply_damage__else_2.mcfunction +2 -0
- package/dist/data/test/function/apply_damage__merge_1.mcfunction +1 -0
- package/dist/data/test/function/apply_damage__then_0.mcfunction +2 -0
- package/dist/data/test/function/apply_drag.mcfunction +8 -0
- package/dist/data/test/function/apply_gravity.mcfunction +6 -0
- package/dist/data/test/function/approx_eq.mcfunction +10 -0
- package/dist/data/test/function/approx_eq__merge_1.mcfunction +3 -0
- package/dist/data/test/function/approx_eq__merge_3.mcfunction +2 -0
- package/dist/data/test/function/approx_eq__then_0.mcfunction +4 -0
- package/dist/data/test/function/approx_eq__then_2.mcfunction +2 -0
- package/dist/data/test/function/arr_test.mcfunction +4 -0
- package/dist/data/test/function/asin_approx.mcfunction +5 -0
- package/dist/data/test/function/asin_approx__merge_1.mcfunction +3 -0
- package/dist/data/test/function/asin_approx__merge_10.mcfunction +5 -0
- package/dist/data/test/function/asin_approx__merge_4.mcfunction +12 -0
- package/dist/data/test/function/asin_approx__merge_7.mcfunction +14 -0
- package/dist/data/test/function/asin_approx__then_0.mcfunction +2 -0
- package/dist/data/test/function/asin_approx__then_3.mcfunction +2 -0
- package/dist/data/test/function/asin_approx__then_6.mcfunction +2 -0
- package/dist/data/test/function/asin_approx__then_9.mcfunction +2 -0
- package/dist/data/test/function/atan2_fixed.mcfunction +6 -0
- package/dist/data/test/function/atan2_fixed__else_30.mcfunction +2 -0
- package/dist/data/test/function/atan2_fixed__loop_body_26.mcfunction +21 -0
- package/dist/data/test/function/atan2_fixed__loop_exit_27.mcfunction +5 -0
- package/dist/data/test/function/atan2_fixed__loop_header_25.mcfunction +3 -0
- package/dist/data/test/function/atan2_fixed__merge_1.mcfunction +4 -0
- package/dist/data/test/function/atan2_fixed__merge_10.mcfunction +5 -0
- package/dist/data/test/function/atan2_fixed__merge_12.mcfunction +2 -0
- package/dist/data/test/function/atan2_fixed__merge_16.mcfunction +5 -0
- package/dist/data/test/function/atan2_fixed__merge_18.mcfunction +4 -0
- package/dist/data/test/function/atan2_fixed__merge_20.mcfunction +4 -0
- package/dist/data/test/function/atan2_fixed__merge_22.mcfunction +4 -0
- package/dist/data/test/function/atan2_fixed__merge_24.mcfunction +3 -0
- package/dist/data/test/function/atan2_fixed__merge_29.mcfunction +1 -0
- package/dist/data/test/function/atan2_fixed__merge_3.mcfunction +4 -0
- package/dist/data/test/function/atan2_fixed__merge_32.mcfunction +4 -0
- package/dist/data/test/function/atan2_fixed__merge_34.mcfunction +4 -0
- package/dist/data/test/function/atan2_fixed__merge_36.mcfunction +3 -0
- package/dist/data/test/function/atan2_fixed__merge_40.mcfunction +3 -0
- package/dist/data/test/function/atan2_fixed__merge_6.mcfunction +2 -0
- package/dist/data/test/function/atan2_fixed__then_0.mcfunction +4 -0
- package/dist/data/test/function/atan2_fixed__then_11.mcfunction +2 -0
- package/dist/data/test/function/atan2_fixed__then_15.mcfunction +4 -0
- package/dist/data/test/function/atan2_fixed__then_17.mcfunction +4 -0
- package/dist/data/test/function/atan2_fixed__then_19.mcfunction +2 -0
- package/dist/data/test/function/atan2_fixed__then_2.mcfunction +2 -0
- package/dist/data/test/function/atan2_fixed__then_21.mcfunction +2 -0
- package/dist/data/test/function/atan2_fixed__then_23.mcfunction +5 -0
- package/dist/data/test/function/atan2_fixed__then_28.mcfunction +4 -0
- package/dist/data/test/function/atan2_fixed__then_31.mcfunction +4 -0
- package/dist/data/test/function/atan2_fixed__then_33.mcfunction +4 -0
- package/dist/data/test/function/atan2_fixed__then_35.mcfunction +1 -0
- package/dist/data/test/function/atan2_fixed__then_39.mcfunction +3 -0
- package/dist/data/test/function/atan2_fixed__then_5.mcfunction +2 -0
- package/dist/data/test/function/atan2_fixed__then_9.mcfunction +4 -0
- package/dist/data/test/function/avg3.mcfunction +11 -0
- package/dist/data/test/function/avg5.mcfunction +17 -0
- package/dist/data/test/function/barrier_wall.mcfunction +1 -0
- package/dist/data/test/function/bernoulli.mcfunction +12 -0
- package/dist/data/test/function/bernoulli__merge_1.mcfunction +6 -0
- package/dist/data/test/function/bernoulli__merge_3.mcfunction +2 -0
- package/dist/data/test/function/bernoulli__then_0.mcfunction +4 -0
- package/dist/data/test/function/bernoulli__then_2.mcfunction +2 -0
- package/dist/data/test/function/bezier_cubic.mcfunction +36 -0
- package/dist/data/test/function/bezier_quad.mcfunction +20 -0
- package/dist/data/test/function/bigint3_add_hi.mcfunction +11 -0
- package/dist/data/test/function/bigint3_add_lo.mcfunction +8 -0
- package/dist/data/test/function/bigint3_add_mid.mcfunction +11 -0
- package/dist/data/test/function/bigint3_borrow_lo.mcfunction +5 -0
- package/dist/data/test/function/bigint3_borrow_lo__merge_1.mcfunction +2 -0
- package/dist/data/test/function/bigint3_borrow_lo__then_0.mcfunction +2 -0
- package/dist/data/test/function/bigint3_borrow_mid.mcfunction +8 -0
- package/dist/data/test/function/bigint3_borrow_mid__merge_1.mcfunction +2 -0
- package/dist/data/test/function/bigint3_borrow_mid__then_0.mcfunction +2 -0
- package/dist/data/test/function/bigint3_carry_lo.mcfunction +8 -0
- package/dist/data/test/function/bigint3_carry_mid.mcfunction +11 -0
- package/dist/data/test/function/bigint3_cmp.mcfunction +9 -0
- package/dist/data/test/function/bigint3_cmp__merge_1.mcfunction +3 -0
- package/dist/data/test/function/bigint3_cmp__merge_10.mcfunction +3 -0
- package/dist/data/test/function/bigint3_cmp__merge_13.mcfunction +3 -0
- package/dist/data/test/function/bigint3_cmp__merge_16.mcfunction +2 -0
- package/dist/data/test/function/bigint3_cmp__merge_4.mcfunction +3 -0
- package/dist/data/test/function/bigint3_cmp__merge_7.mcfunction +3 -0
- package/dist/data/test/function/bigint3_cmp__then_0.mcfunction +2 -0
- package/dist/data/test/function/bigint3_cmp__then_12.mcfunction +2 -0
- package/dist/data/test/function/bigint3_cmp__then_15.mcfunction +2 -0
- package/dist/data/test/function/bigint3_cmp__then_3.mcfunction +2 -0
- package/dist/data/test/function/bigint3_cmp__then_6.mcfunction +2 -0
- package/dist/data/test/function/bigint3_cmp__then_9.mcfunction +2 -0
- package/dist/data/test/function/bigint3_div_chunk.mcfunction +11 -0
- package/dist/data/test/function/bigint3_mul1_hi.mcfunction +8 -0
- package/dist/data/test/function/bigint3_mul1_lo.mcfunction +8 -0
- package/dist/data/test/function/bigint3_mul1_mid.mcfunction +2 -0
- package/dist/data/test/function/bigint3_rem_chunk.mcfunction +11 -0
- package/dist/data/test/function/bigint3_sub_hi.mcfunction +8 -0
- package/dist/data/test/function/bigint3_sub_lo.mcfunction +5 -0
- package/dist/data/test/function/bigint3_sub_lo__merge_1.mcfunction +5 -0
- package/dist/data/test/function/bigint3_sub_lo__then_0.mcfunction +3 -0
- package/dist/data/test/function/bigint3_sub_mid.mcfunction +12 -0
- package/dist/data/test/function/bigint3_sub_mid__merge_1.mcfunction +1 -0
- package/dist/data/test/function/bigint3_sub_mid__then_0.mcfunction +4 -0
- package/dist/data/test/function/bigint3_to_int32.mcfunction +14 -0
- package/dist/data/test/function/bigint_add.mcfunction +8 -0
- package/dist/data/test/function/bigint_add__arr_a__test_arrays__a__b__test_arrays__b__result__test_arrays__r.mcfunction +6 -0
- package/dist/data/test/function/bigint_add__arr_a__test_arrays__a__b__test_arrays__b__result__test_arrays__r__loop_body_1.mcfunction +22 -0
- package/dist/data/test/function/bigint_add__arr_a__test_arrays__a__b__test_arrays__b__result__test_arrays__r__loop_exit_2.mcfunction +1 -0
- package/dist/data/test/function/bigint_add__arr_a__test_arrays__a__b__test_arrays__b__result__test_arrays__r__loop_header_0.mcfunction +4 -0
- package/dist/data/test/function/bigint_add__arr_a__test_arrays__counter__b__test_arrays__one__result__test_arrays__r.mcfunction +6 -0
- package/dist/data/test/function/bigint_add__arr_a__test_arrays__counter__b__test_arrays__one__result__test_arrays__r__loop_body_1.mcfunction +22 -0
- package/dist/data/test/function/bigint_add__arr_a__test_arrays__counter__b__test_arrays__one__result__test_arrays__r__loop_exit_2.mcfunction +1 -0
- package/dist/data/test/function/bigint_add__arr_a__test_arrays__counter__b__test_arrays__one__result__test_arrays__r__loop_header_0.mcfunction +4 -0
- package/dist/data/test/function/bigint_add__loop_body_1.mcfunction +12 -0
- package/dist/data/test/function/bigint_add__loop_exit_2.mcfunction +1 -0
- package/dist/data/test/function/bigint_add__loop_header_0.mcfunction +4 -0
- package/dist/data/test/function/bigint_base.mcfunction +2 -0
- package/dist/data/test/function/bigint_chunk.mcfunction +2 -0
- package/dist/data/test/function/bigint_cmp.mcfunction +5 -0
- package/dist/data/test/function/bigint_cmp__arr_a__test_arrays__g__b__test_arrays__h.mcfunction +3 -0
- package/dist/data/test/function/bigint_cmp__arr_a__test_arrays__g__b__test_arrays__h__loop_body_1.mcfunction +7 -0
- package/dist/data/test/function/bigint_cmp__arr_a__test_arrays__g__b__test_arrays__h__loop_exit_2.mcfunction +2 -0
- package/dist/data/test/function/bigint_cmp__arr_a__test_arrays__g__b__test_arrays__h__loop_header_0.mcfunction +3 -0
- package/dist/data/test/function/bigint_cmp__arr_a__test_arrays__g__b__test_arrays__h__merge_4.mcfunction +7 -0
- package/dist/data/test/function/bigint_cmp__arr_a__test_arrays__g__b__test_arrays__h__merge_7.mcfunction +4 -0
- package/dist/data/test/function/bigint_cmp__arr_a__test_arrays__g__b__test_arrays__h__then_3.mcfunction +2 -0
- package/dist/data/test/function/bigint_cmp__arr_a__test_arrays__g__b__test_arrays__h__then_6.mcfunction +2 -0
- package/dist/data/test/function/bigint_cmp__loop_body_1.mcfunction +3 -0
- package/dist/data/test/function/bigint_cmp__loop_exit_2.mcfunction +2 -0
- package/dist/data/test/function/bigint_cmp__loop_header_0.mcfunction +3 -0
- package/dist/data/test/function/bigint_cmp__merge_4.mcfunction +3 -0
- package/dist/data/test/function/bigint_cmp__merge_7.mcfunction +4 -0
- package/dist/data/test/function/bigint_cmp__then_3.mcfunction +2 -0
- package/dist/data/test/function/bigint_cmp__then_6.mcfunction +2 -0
- package/dist/data/test/function/bigint_copy.mcfunction +3 -0
- package/dist/data/test/function/bigint_copy__loop_body_1.mcfunction +4 -0
- package/dist/data/test/function/bigint_copy__loop_exit_2.mcfunction +1 -0
- package/dist/data/test/function/bigint_copy__loop_header_0.mcfunction +3 -0
- package/dist/data/test/function/bigint_div_small.mcfunction +6 -0
- package/dist/data/test/function/bigint_div_small__loop_body_1.mcfunction +12 -0
- package/dist/data/test/function/bigint_div_small__loop_exit_2.mcfunction +1 -0
- package/dist/data/test/function/bigint_div_small__loop_header_0.mcfunction +3 -0
- package/dist/data/test/function/bigint_is_zero.mcfunction +4 -0
- package/dist/data/test/function/bigint_is_zero__loop_body_1.mcfunction +4 -0
- package/dist/data/test/function/bigint_is_zero__loop_exit_2.mcfunction +2 -0
- package/dist/data/test/function/bigint_is_zero__loop_header_0.mcfunction +3 -0
- package/dist/data/test/function/bigint_is_zero__merge_4.mcfunction +4 -0
- package/dist/data/test/function/bigint_is_zero__then_3.mcfunction +2 -0
- package/dist/data/test/function/bigint_leading_zeros.mcfunction +5 -0
- package/dist/data/test/function/bigint_leading_zeros__loop_body_1.mcfunction +4 -0
- package/dist/data/test/function/bigint_leading_zeros__loop_exit_2.mcfunction +1 -0
- package/dist/data/test/function/bigint_leading_zeros__loop_header_0.mcfunction +3 -0
- package/dist/data/test/function/bigint_leading_zeros__merge_4.mcfunction +9 -0
- package/dist/data/test/function/bigint_leading_zeros__then_3.mcfunction +1 -0
- package/dist/data/test/function/bigint_mod_small.mcfunction +6 -0
- package/dist/data/test/function/bigint_mod_small__loop_body_1.mcfunction +12 -0
- package/dist/data/test/function/bigint_mod_small__loop_exit_2.mcfunction +1 -0
- package/dist/data/test/function/bigint_mod_small__loop_header_0.mcfunction +3 -0
- package/dist/data/test/function/bigint_mul_small.mcfunction +8 -0
- package/dist/data/test/function/bigint_mul_small__arr_a__test_arrays__e__result__test_arrays__f.mcfunction +7 -0
- package/dist/data/test/function/bigint_mul_small__arr_a__test_arrays__e__result__test_arrays__f__loop_body_1.mcfunction +20 -0
- package/dist/data/test/function/bigint_mul_small__arr_a__test_arrays__e__result__test_arrays__f__loop_exit_2.mcfunction +1 -0
- package/dist/data/test/function/bigint_mul_small__arr_a__test_arrays__e__result__test_arrays__f__loop_header_0.mcfunction +4 -0
- package/dist/data/test/function/bigint_mul_small__loop_body_1.mcfunction +12 -0
- package/dist/data/test/function/bigint_mul_small__loop_exit_2.mcfunction +1 -0
- package/dist/data/test/function/bigint_mul_small__loop_header_0.mcfunction +4 -0
- package/dist/data/test/function/bigint_shift_left.mcfunction +3 -0
- package/dist/data/test/function/bigint_shift_left__loop_body_1.mcfunction +4 -0
- package/dist/data/test/function/bigint_shift_left__loop_exit_2.mcfunction +1 -0
- package/dist/data/test/function/bigint_shift_left__loop_header_0.mcfunction +5 -0
- package/dist/data/test/function/bigint_sub.mcfunction +8 -0
- package/dist/data/test/function/bigint_sub__arr_a__test_arrays__c__b__test_arrays__d__result__test_arrays__s.mcfunction +6 -0
- package/dist/data/test/function/bigint_sub__arr_a__test_arrays__c__b__test_arrays__d__result__test_arrays__s__loop_body_1.mcfunction +13 -0
- package/dist/data/test/function/bigint_sub__arr_a__test_arrays__c__b__test_arrays__d__result__test_arrays__s__loop_exit_2.mcfunction +1 -0
- package/dist/data/test/function/bigint_sub__arr_a__test_arrays__c__b__test_arrays__d__result__test_arrays__s__loop_header_0.mcfunction +4 -0
- package/dist/data/test/function/bigint_sub__arr_a__test_arrays__c__b__test_arrays__d__result__test_arrays__s__merge_4.mcfunction +4 -0
- package/dist/data/test/function/bigint_sub__arr_a__test_arrays__c__b__test_arrays__d__result__test_arrays__s__merge_6.mcfunction +7 -0
- package/dist/data/test/function/bigint_sub__arr_a__test_arrays__c__b__test_arrays__d__result__test_arrays__s__then_3.mcfunction +5 -0
- package/dist/data/test/function/bigint_sub__arr_a__test_arrays__c__b__test_arrays__d__result__test_arrays__s__then_5.mcfunction +2 -0
- package/dist/data/test/function/bigint_sub__loop_body_1.mcfunction +9 -0
- package/dist/data/test/function/bigint_sub__loop_exit_2.mcfunction +1 -0
- package/dist/data/test/function/bigint_sub__loop_header_0.mcfunction +4 -0
- package/dist/data/test/function/bigint_sub__merge_4.mcfunction +4 -0
- package/dist/data/test/function/bigint_sub__merge_6.mcfunction +4 -0
- package/dist/data/test/function/bigint_sub__then_3.mcfunction +5 -0
- package/dist/data/test/function/bigint_sub__then_5.mcfunction +2 -0
- package/dist/data/test/function/bigint_zero.mcfunction +3 -0
- package/dist/data/test/function/bigint_zero__loop_body_1.mcfunction +4 -0
- package/dist/data/test/function/bigint_zero__loop_exit_2.mcfunction +1 -0
- package/dist/data/test/function/bigint_zero__loop_header_0.mcfunction +3 -0
- package/dist/data/test/function/billboard_y.mcfunction +7 -0
- package/dist/data/test/function/bit_and.mcfunction +6 -0
- package/dist/data/test/function/bit_and__loop_body_1.mcfunction +9 -0
- package/dist/data/test/function/bit_and__loop_exit_2.mcfunction +1 -0
- package/dist/data/test/function/bit_and__loop_header_0.mcfunction +4 -0
- package/dist/data/test/function/bit_and__merge_4.mcfunction +8 -0
- package/dist/data/test/function/bit_and__merge_6.mcfunction +1 -0
- package/dist/data/test/function/bit_and__then_3.mcfunction +9 -0
- package/dist/data/test/function/bit_and__then_5.mcfunction +4 -0
- package/dist/data/test/function/bit_clear.mcfunction +5 -0
- package/dist/data/test/function/bit_clear__loop_body_1.mcfunction +8 -0
- package/dist/data/test/function/bit_clear__loop_exit_2.mcfunction +9 -0
- package/dist/data/test/function/bit_clear__loop_header_0.mcfunction +3 -0
- package/dist/data/test/function/bit_clear__merge_4.mcfunction +1 -0
- package/dist/data/test/function/bit_clear__then_3.mcfunction +3 -0
- package/dist/data/test/function/bit_get.mcfunction +5 -0
- package/dist/data/test/function/bit_get__loop_body_1.mcfunction +8 -0
- package/dist/data/test/function/bit_get__loop_exit_2.mcfunction +6 -0
- package/dist/data/test/function/bit_get__loop_header_0.mcfunction +3 -0
- package/dist/data/test/function/bit_not.mcfunction +5 -0
- package/dist/data/test/function/bit_not__loop_body_1.mcfunction +9 -0
- package/dist/data/test/function/bit_not__loop_exit_2.mcfunction +1 -0
- package/dist/data/test/function/bit_not__loop_header_0.mcfunction +4 -0
- package/dist/data/test/function/bit_not__merge_4.mcfunction +8 -0
- package/dist/data/test/function/bit_not__then_3.mcfunction +4 -0
- package/dist/data/test/function/bit_or.mcfunction +6 -0
- package/dist/data/test/function/bit_or__loop_body_1.mcfunction +9 -0
- package/dist/data/test/function/bit_or__loop_exit_2.mcfunction +1 -0
- package/dist/data/test/function/bit_or__loop_header_0.mcfunction +4 -0
- package/dist/data/test/function/bit_or__merge_4.mcfunction +9 -0
- package/dist/data/test/function/bit_or__merge_6.mcfunction +8 -0
- package/dist/data/test/function/bit_or__merge_8.mcfunction +1 -0
- package/dist/data/test/function/bit_or__then_3.mcfunction +4 -0
- package/dist/data/test/function/bit_or__then_5.mcfunction +9 -0
- package/dist/data/test/function/bit_or__then_7.mcfunction +4 -0
- package/dist/data/test/function/bit_set.mcfunction +5 -0
- package/dist/data/test/function/bit_set__loop_body_1.mcfunction +8 -0
- package/dist/data/test/function/bit_set__loop_exit_2.mcfunction +9 -0
- package/dist/data/test/function/bit_set__loop_header_0.mcfunction +3 -0
- package/dist/data/test/function/bit_set__merge_4.mcfunction +1 -0
- package/dist/data/test/function/bit_set__then_3.mcfunction +3 -0
- package/dist/data/test/function/bit_shl.mcfunction +5 -0
- package/dist/data/test/function/bit_shl__loop_body_1.mcfunction +8 -0
- package/dist/data/test/function/bit_shl__loop_exit_2.mcfunction +1 -0
- package/dist/data/test/function/bit_shl__loop_header_0.mcfunction +3 -0
- package/dist/data/test/function/bit_shr.mcfunction +5 -0
- package/dist/data/test/function/bit_shr__loop_body_1.mcfunction +8 -0
- package/dist/data/test/function/bit_shr__loop_exit_2.mcfunction +1 -0
- package/dist/data/test/function/bit_shr__loop_header_0.mcfunction +3 -0
- package/dist/data/test/function/bit_toggle.mcfunction +5 -0
- package/dist/data/test/function/bit_toggle__loop_body_1.mcfunction +8 -0
- package/dist/data/test/function/bit_toggle__loop_exit_2.mcfunction +9 -0
- package/dist/data/test/function/bit_toggle__loop_header_0.mcfunction +3 -0
- package/dist/data/test/function/bit_toggle__merge_4.mcfunction +3 -0
- package/dist/data/test/function/bit_toggle__then_3.mcfunction +3 -0
- package/dist/data/test/function/bit_xor.mcfunction +6 -0
- package/dist/data/test/function/bit_xor__loop_body_1.mcfunction +13 -0
- package/dist/data/test/function/bit_xor__loop_exit_2.mcfunction +1 -0
- package/dist/data/test/function/bit_xor__loop_header_0.mcfunction +4 -0
- package/dist/data/test/function/bit_xor__merge_4.mcfunction +8 -0
- package/dist/data/test/function/bit_xor__then_3.mcfunction +4 -0
- package/dist/data/test/function/bounce_v.mcfunction +10 -0
- package/dist/data/test/function/buff_all.mcfunction +22 -0
- package/dist/data/test/function/cbrt_fx.mcfunction +5 -0
- package/dist/data/test/function/cbrt_fx__loop_body_6.mcfunction +7 -0
- package/dist/data/test/function/cbrt_fx__loop_exit_7.mcfunction +1 -0
- package/dist/data/test/function/cbrt_fx__loop_header_5.mcfunction +4 -0
- package/dist/data/test/function/cbrt_fx__merge_1.mcfunction +8 -0
- package/dist/data/test/function/cbrt_fx__merge_11.mcfunction +5 -0
- package/dist/data/test/function/cbrt_fx__merge_13.mcfunction +4 -0
- package/dist/data/test/function/cbrt_fx__merge_4.mcfunction +2 -0
- package/dist/data/test/function/cbrt_fx__merge_9.mcfunction +13 -0
- package/dist/data/test/function/cbrt_fx__then_0.mcfunction +2 -0
- package/dist/data/test/function/cbrt_fx__then_10.mcfunction +2 -0
- package/dist/data/test/function/cbrt_fx__then_12.mcfunction +2 -0
- package/dist/data/test/function/cbrt_fx__then_3.mcfunction +2 -0
- package/dist/data/test/function/cbrt_fx__then_8.mcfunction +2 -0
- package/dist/data/test/function/cbrt_newton.mcfunction +5 -0
- package/dist/data/test/function/cbrt_newton__else_7.mcfunction +2 -0
- package/dist/data/test/function/cbrt_newton__merge_1.mcfunction +11 -0
- package/dist/data/test/function/cbrt_newton__merge_4.mcfunction +1 -0
- package/dist/data/test/function/cbrt_newton__merge_6.mcfunction +1 -0
- package/dist/data/test/function/cbrt_newton__then_0.mcfunction +2 -0
- package/dist/data/test/function/cbrt_newton__then_3.mcfunction +17 -0
- package/dist/data/test/function/cbrt_newton__then_5.mcfunction +11 -0
- package/dist/data/test/function/ceil_div.mcfunction +9 -0
- package/dist/data/test/function/chebyshev.mcfunction +14 -0
- package/dist/data/test/function/chebyshev3d.mcfunction +19 -0
- package/dist/data/test/function/chebyshev3d__merge_1.mcfunction +4 -0
- package/dist/data/test/function/chebyshev3d__merge_3.mcfunction +4 -0
- package/dist/data/test/function/chebyshev3d__merge_5.mcfunction +4 -0
- package/dist/data/test/function/chebyshev3d__merge_7.mcfunction +3 -0
- package/dist/data/test/function/chebyshev3d__merge_9.mcfunction +1 -0
- package/dist/data/test/function/chebyshev3d__then_0.mcfunction +4 -0
- package/dist/data/test/function/chebyshev3d__then_2.mcfunction +4 -0
- package/dist/data/test/function/chebyshev3d__then_4.mcfunction +4 -0
- package/dist/data/test/function/chebyshev3d__then_6.mcfunction +2 -0
- package/dist/data/test/function/chebyshev3d__then_8.mcfunction +2 -0
- package/dist/data/test/function/chebyshev__merge_1.mcfunction +4 -0
- package/dist/data/test/function/chebyshev__merge_3.mcfunction +3 -0
- package/dist/data/test/function/chebyshev__merge_5.mcfunction +1 -0
- package/dist/data/test/function/chebyshev__then_0.mcfunction +4 -0
- package/dist/data/test/function/chebyshev__then_2.mcfunction +4 -0
- package/dist/data/test/function/chebyshev__then_4.mcfunction +1 -0
- package/dist/data/test/function/check_holding_item.mcfunction +1 -0
- package/dist/data/test/function/check_look_down.mcfunction +1 -0
- package/dist/data/test/function/check_look_down__foreach_t0.mcfunction +2 -0
- package/dist/data/test/function/check_look_straight.mcfunction +1 -0
- package/dist/data/test/function/check_look_straight__foreach_t0.mcfunction +2 -0
- package/dist/data/test/function/check_look_up.mcfunction +1 -0
- package/dist/data/test/function/check_look_up__foreach_t0.mcfunction +2 -0
- package/dist/data/test/function/chunk_hi.mcfunction +5 -0
- package/dist/data/test/function/chunk_lo.mcfunction +5 -0
- package/dist/data/test/function/circular_x.mcfunction +14 -0
- package/dist/data/test/function/circular_z.mcfunction +14 -0
- package/dist/data/test/function/clamp3.mcfunction +7 -0
- package/dist/data/test/function/clamp3__merge_1.mcfunction +4 -0
- package/dist/data/test/function/clamp3__merge_4.mcfunction +1 -0
- package/dist/data/test/function/clamp3__then_0.mcfunction +1 -0
- package/dist/data/test/function/clamp3__then_3.mcfunction +1 -0
- package/dist/data/test/function/clamp_circle_x.mcfunction +13 -0
- package/dist/data/test/function/clamp_circle_x__merge_1.mcfunction +10 -0
- package/dist/data/test/function/clamp_circle_x__then_0.mcfunction +1 -0
- package/dist/data/test/function/clamp_circle_y.mcfunction +13 -0
- package/dist/data/test/function/clamp_circle_y__merge_1.mcfunction +10 -0
- package/dist/data/test/function/clamp_circle_y__then_0.mcfunction +1 -0
- package/dist/data/test/function/clamp_velocity.mcfunction +5 -0
- package/dist/data/test/function/clamp_velocity__merge_1.mcfunction +5 -0
- package/dist/data/test/function/clamp_velocity__merge_4.mcfunction +1 -0
- package/dist/data/test/function/clamp_velocity__then_0.mcfunction +1 -0
- package/dist/data/test/function/clamp_velocity__then_3.mcfunction +3 -0
- package/dist/data/test/function/cleanup_teams.mcfunction +8 -0
- package/dist/data/test/function/clear_area.mcfunction +1 -0
- package/dist/data/test/function/clear_effect.mcfunction +1 -0
- package/dist/data/test/function/clear_effects.mcfunction +1 -0
- package/dist/data/test/function/clear_inventory.mcfunction +1 -0
- package/dist/data/test/function/collatz_steps.mcfunction +5 -0
- package/dist/data/test/function/collatz_steps__else_8.mcfunction +6 -0
- package/dist/data/test/function/collatz_steps__loop_body_4.mcfunction +7 -0
- package/dist/data/test/function/collatz_steps__loop_exit_5.mcfunction +1 -0
- package/dist/data/test/function/collatz_steps__loop_header_3.mcfunction +4 -0
- package/dist/data/test/function/collatz_steps__merge_1.mcfunction +3 -0
- package/dist/data/test/function/collatz_steps__merge_7.mcfunction +4 -0
- package/dist/data/test/function/collatz_steps__then_0.mcfunction +2 -0
- package/dist/data/test/function/collatz_steps__then_6.mcfunction +5 -0
- package/dist/data/test/function/combinations.mcfunction +6 -0
- package/dist/data/test/function/combinations__loop_body_9.mcfunction +15 -0
- package/dist/data/test/function/combinations__loop_exit_10.mcfunction +1 -0
- package/dist/data/test/function/combinations__loop_header_8.mcfunction +3 -0
- package/dist/data/test/function/combinations__merge_1.mcfunction +3 -0
- package/dist/data/test/function/combinations__merge_4.mcfunction +6 -0
- package/dist/data/test/function/combinations__merge_7.mcfunction +3 -0
- package/dist/data/test/function/combinations__then_0.mcfunction +2 -0
- package/dist/data/test/function/combinations__then_3.mcfunction +2 -0
- package/dist/data/test/function/combinations__then_6.mcfunction +4 -0
- package/dist/data/test/function/cooldown_ready.mcfunction +7 -0
- package/dist/data/test/function/cooldown_ready__merge_1.mcfunction +4 -0
- package/dist/data/test/function/cooldown_ready__merge_4.mcfunction +2 -0
- package/dist/data/test/function/cooldown_ready__then_0.mcfunction +2 -0
- package/dist/data/test/function/cooldown_ready__then_3.mcfunction +2 -0
- package/dist/data/test/function/cooldown_start.mcfunction +3 -0
- package/dist/data/test/function/cooldown_tick.mcfunction +7 -0
- package/dist/data/test/function/cooldown_tick__else_5.mcfunction +2 -0
- package/dist/data/test/function/cooldown_tick__merge_1.mcfunction +4 -0
- package/dist/data/test/function/cooldown_tick__merge_4.mcfunction +1 -0
- package/dist/data/test/function/cooldown_tick__merge_7.mcfunction +1 -0
- package/dist/data/test/function/cooldown_tick__then_0.mcfunction +1 -0
- package/dist/data/test/function/cooldown_tick__then_3.mcfunction +7 -0
- package/dist/data/test/function/cooldown_tick__then_6.mcfunction +2 -0
- package/dist/data/test/function/cos_fixed.mcfunction +7 -0
- package/dist/data/test/function/cos_fixed__const_0.mcfunction +5 -0
- package/dist/data/test/function/cos_hp.mcfunction +8 -0
- package/dist/data/test/function/count_digits.mcfunction +6 -0
- package/dist/data/test/function/count_digits__loop_body_6.mcfunction +8 -0
- package/dist/data/test/function/count_digits__loop_exit_7.mcfunction +1 -0
- package/dist/data/test/function/count_digits__loop_header_5.mcfunction +4 -0
- package/dist/data/test/function/count_digits__merge_1.mcfunction +4 -0
- package/dist/data/test/function/count_digits__merge_3.mcfunction +2 -0
- package/dist/data/test/function/count_digits__then_0.mcfunction +4 -0
- package/dist/data/test/function/count_digits__then_2.mcfunction +2 -0
- package/dist/data/test/function/create_blue_team.mcfunction +10 -0
- package/dist/data/test/function/create_green_team.mcfunction +10 -0
- package/dist/data/test/function/create_health_bar.mcfunction +24 -0
- package/dist/data/test/function/create_progress_bar.mcfunction +24 -0
- package/dist/data/test/function/create_red_team.mcfunction +10 -0
- package/dist/data/test/function/create_team.mcfunction +8 -0
- package/dist/data/test/function/create_timer_bar.mcfunction +30 -0
- package/dist/data/test/function/create_yellow_team.mcfunction +10 -0
- package/dist/data/test/function/cross2d.mcfunction +11 -0
- package/dist/data/test/function/cross3d_x.mcfunction +11 -0
- package/dist/data/test/function/cross3d_y.mcfunction +11 -0
- package/dist/data/test/function/cross3d_z.mcfunction +11 -0
- package/dist/data/test/function/cubic_disc_fx.mcfunction +26 -0
- package/dist/data/test/function/cubic_newton.mcfunction +8 -0
- package/dist/data/test/function/cubic_newton__loop_body_1.mcfunction +55 -0
- package/dist/data/test/function/cubic_newton__loop_exit_2.mcfunction +1 -0
- package/dist/data/test/function/cubic_newton__loop_header_0.mcfunction +4 -0
- package/dist/data/test/function/cubic_newton__merge_10.mcfunction +1 -0
- package/dist/data/test/function/cubic_newton__merge_4.mcfunction +4 -0
- package/dist/data/test/function/cubic_newton__merge_6.mcfunction +4 -0
- package/dist/data/test/function/cubic_newton__merge_8.mcfunction +4 -0
- package/dist/data/test/function/cubic_newton__then_3.mcfunction +2 -0
- package/dist/data/test/function/cubic_newton__then_5.mcfunction +13 -0
- package/dist/data/test/function/cubic_newton__then_7.mcfunction +4 -0
- package/dist/data/test/function/cubic_newton__then_9.mcfunction +2 -0
- package/dist/data/test/function/curve_length_2d.mcfunction +6 -0
- package/dist/data/test/function/curve_length_2d__loop_body_1.mcfunction +32 -0
- package/dist/data/test/function/curve_length_2d__loop_exit_2.mcfunction +1 -0
- package/dist/data/test/function/curve_length_2d__loop_header_0.mcfunction +5 -0
- package/dist/data/test/function/cylinder_contains.mcfunction +20 -0
- package/dist/data/test/function/cylinder_contains__merge_1.mcfunction +2 -0
- package/dist/data/test/function/cylinder_contains__then_0.mcfunction +2 -0
- package/dist/data/test/function/damage.mcfunction +9 -0
- package/dist/data/test/function/damage__else_2.mcfunction +2 -0
- package/dist/data/test/function/damage__merge_1.mcfunction +1 -0
- package/dist/data/test/function/damage__then_0.mcfunction +2 -0
- package/dist/data/test/function/debug_bigint.mcfunction +25 -0
- package/dist/data/test/function/deriv_central.mcfunction +7 -0
- package/dist/data/test/function/deriv_central__merge_1.mcfunction +10 -0
- package/dist/data/test/function/deriv_central__then_0.mcfunction +2 -0
- package/dist/data/test/function/deriv_forward.mcfunction +7 -0
- package/dist/data/test/function/deriv_forward__merge_1.mcfunction +8 -0
- package/dist/data/test/function/deriv_forward__then_0.mcfunction +2 -0
- package/dist/data/test/function/digit_sum.mcfunction +6 -0
- package/dist/data/test/function/digit_sum__loop_body_6.mcfunction +11 -0
- package/dist/data/test/function/digit_sum__loop_exit_7.mcfunction +1 -0
- package/dist/data/test/function/digit_sum__loop_header_5.mcfunction +4 -0
- package/dist/data/test/function/digit_sum__merge_1.mcfunction +4 -0
- package/dist/data/test/function/digit_sum__merge_3.mcfunction +2 -0
- package/dist/data/test/function/digit_sum__then_0.mcfunction +4 -0
- package/dist/data/test/function/digit_sum__then_2.mcfunction +2 -0
- package/dist/data/test/function/digital_root.mcfunction +5 -0
- package/dist/data/test/function/digital_root__merge_1.mcfunction +8 -0
- package/dist/data/test/function/digital_root__merge_4.mcfunction +1 -0
- package/dist/data/test/function/digital_root__then_0.mcfunction +2 -0
- package/dist/data/test/function/digital_root__then_3.mcfunction +2 -0
- package/dist/data/test/function/disable_fire_spread.mcfunction +1 -0
- package/dist/data/test/function/disable_keep_inventory.mcfunction +1 -0
- package/dist/data/test/function/disable_mob_griefing.mcfunction +1 -0
- package/dist/data/test/function/distance2d_fixed.mcfunction +13 -0
- package/dist/data/test/function/distance3d_fixed.mcfunction +18 -0
- package/dist/data/test/function/div3_hp.mcfunction +23 -0
- package/dist/data/test/function/div_hp.mcfunction +13 -0
- package/dist/data/test/function/divfix.mcfunction +6 -0
- package/dist/data/test/function/divfix__merge_1.mcfunction +6 -0
- package/dist/data/test/function/divfix__then_0.mcfunction +2 -0
- package/dist/data/test/function/dot2d.mcfunction +11 -0
- package/dist/data/test/function/dot3d.mcfunction +17 -0
- package/dist/data/test/function/draw_circle.mcfunction +8 -0
- package/dist/data/test/function/draw_circle__loop_body_1.mcfunction +34 -0
- package/dist/data/test/function/draw_circle__loop_exit_2.mcfunction +1 -0
- package/dist/data/test/function/draw_circle__loop_header_0.mcfunction +3 -0
- package/dist/data/test/function/draw_helix.mcfunction +10 -0
- package/dist/data/test/function/draw_helix__loop_body_1.mcfunction +42 -0
- package/dist/data/test/function/draw_helix__loop_exit_2.mcfunction +1 -0
- package/dist/data/test/function/draw_helix__loop_header_0.mcfunction +3 -0
- package/dist/data/test/function/draw_line_2d.mcfunction +9 -0
- package/dist/data/test/function/draw_line_2d__loop_body_1.mcfunction +34 -0
- package/dist/data/test/function/draw_line_2d__loop_exit_2.mcfunction +1 -0
- package/dist/data/test/function/draw_line_2d__loop_header_0.mcfunction +3 -0
- package/dist/data/test/function/dump_advanced.mcfunction +1 -0
- package/dist/data/test/function/dump_bigint.mcfunction +1 -0
- package/dist/data/test/function/dump_math.mcfunction +1 -0
- package/dist/data/test/function/ease_in_back.mcfunction +26 -0
- package/dist/data/test/function/ease_in_bounce.mcfunction +9 -0
- package/dist/data/test/function/ease_in_cubic.mcfunction +12 -0
- package/dist/data/test/function/ease_in_expo.mcfunction +5 -0
- package/dist/data/test/function/ease_in_expo__merge_1.mcfunction +11 -0
- package/dist/data/test/function/ease_in_expo__then_0.mcfunction +2 -0
- package/dist/data/test/function/ease_in_out_back.mcfunction +5 -0
- package/dist/data/test/function/ease_in_out_back__merge_1.mcfunction +14 -0
- package/dist/data/test/function/ease_in_out_back__then_0.mcfunction +10 -0
- package/dist/data/test/function/ease_in_out_bounce.mcfunction +5 -0
- package/dist/data/test/function/ease_in_out_bounce__merge_1.mcfunction +14 -0
- package/dist/data/test/function/ease_in_out_bounce__then_0.mcfunction +10 -0
- package/dist/data/test/function/ease_in_out_cubic.mcfunction +5 -0
- package/dist/data/test/function/ease_in_out_cubic__merge_1.mcfunction +17 -0
- package/dist/data/test/function/ease_in_out_cubic__then_0.mcfunction +13 -0
- package/dist/data/test/function/ease_in_out_quad.mcfunction +5 -0
- package/dist/data/test/function/ease_in_out_quad__merge_1.mcfunction +12 -0
- package/dist/data/test/function/ease_in_out_quad__then_0.mcfunction +8 -0
- package/dist/data/test/function/ease_in_out_sine.mcfunction +5 -0
- package/dist/data/test/function/ease_in_out_sine__merge_1.mcfunction +14 -0
- package/dist/data/test/function/ease_in_out_sine__then_0.mcfunction +10 -0
- package/dist/data/test/function/ease_in_quad.mcfunction +7 -0
- package/dist/data/test/function/ease_in_quart.mcfunction +12 -0
- package/dist/data/test/function/ease_in_sine.mcfunction +30 -0
- package/dist/data/test/function/ease_linear.mcfunction +2 -0
- package/dist/data/test/function/ease_out_back.mcfunction +9 -0
- package/dist/data/test/function/ease_out_bounce.mcfunction +6 -0
- package/dist/data/test/function/ease_out_bounce__merge_1.mcfunction +4 -0
- package/dist/data/test/function/ease_out_bounce__merge_4.mcfunction +4 -0
- package/dist/data/test/function/ease_out_bounce__merge_7.mcfunction +15 -0
- package/dist/data/test/function/ease_out_bounce__then_0.mcfunction +11 -0
- package/dist/data/test/function/ease_out_bounce__then_3.mcfunction +15 -0
- package/dist/data/test/function/ease_out_bounce__then_6.mcfunction +15 -0
- package/dist/data/test/function/ease_out_cubic.mcfunction +16 -0
- package/dist/data/test/function/ease_out_expo.mcfunction +5 -0
- package/dist/data/test/function/ease_out_expo__merge_1.mcfunction +8 -0
- package/dist/data/test/function/ease_out_expo__then_0.mcfunction +2 -0
- package/dist/data/test/function/ease_out_quad.mcfunction +11 -0
- package/dist/data/test/function/ease_out_quart.mcfunction +16 -0
- package/dist/data/test/function/ease_out_sine.mcfunction +9 -0
- package/dist/data/test/function/ease_smooth.mcfunction +23 -0
- package/dist/data/test/function/ease_smoother.mcfunction +41 -0
- package/dist/data/test/function/enable_keep_inventory.mcfunction +1 -0
- package/dist/data/test/function/end_sparkles_at.mcfunction +1 -0
- package/dist/data/test/function/enemy_health.mcfunction +2 -0
- package/dist/data/test/function/example_right_click.mcfunction +1 -0
- package/dist/data/test/function/example_right_click__foreach_t0.mcfunction +5 -0
- package/dist/data/test/function/example_right_click__foreach_t0__merge_1.mcfunction +1 -0
- package/dist/data/test/function/example_right_click__foreach_t0__then_0.mcfunction +3 -0
- package/dist/data/test/function/exp_dist_approx.mcfunction +12 -0
- package/dist/data/test/function/exp_dist_approx__merge_1.mcfunction +15 -0
- package/dist/data/test/function/exp_dist_approx__merge_3.mcfunction +10 -0
- package/dist/data/test/function/exp_dist_approx__merge_5.mcfunction +1 -0
- package/dist/data/test/function/exp_dist_approx__then_0.mcfunction +4 -0
- package/dist/data/test/function/exp_dist_approx__then_2.mcfunction +2 -0
- package/dist/data/test/function/exp_dist_approx__then_4.mcfunction +2 -0
- package/dist/data/test/function/exp_fx.mcfunction +16 -0
- package/dist/data/test/function/exp_fx__loop_body_10.mcfunction +8 -0
- package/dist/data/test/function/exp_fx__loop_body_5.mcfunction +8 -0
- package/dist/data/test/function/exp_fx__loop_exit_11.mcfunction +1 -0
- package/dist/data/test/function/exp_fx__loop_exit_6.mcfunction +1 -0
- package/dist/data/test/function/exp_fx__loop_header_4.mcfunction +3 -0
- package/dist/data/test/function/exp_fx__loop_header_9.mcfunction +3 -0
- package/dist/data/test/function/exp_fx__merge_1.mcfunction +47 -0
- package/dist/data/test/function/exp_fx__merge_3.mcfunction +4 -0
- package/dist/data/test/function/exp_fx__merge_8.mcfunction +1 -0
- package/dist/data/test/function/exp_fx__then_0.mcfunction +7 -0
- package/dist/data/test/function/exp_fx__then_2.mcfunction +2 -0
- package/dist/data/test/function/exp_fx__then_7.mcfunction +5 -0
- package/dist/data/test/function/explosion_effect.mcfunction +1 -0
- package/dist/data/test/function/factorial.mcfunction +5 -0
- package/dist/data/test/function/factorial__loop_body_4.mcfunction +7 -0
- package/dist/data/test/function/factorial__loop_exit_5.mcfunction +1 -0
- package/dist/data/test/function/factorial__loop_header_3.mcfunction +3 -0
- package/dist/data/test/function/factorial__merge_1.mcfunction +3 -0
- package/dist/data/test/function/factorial__then_0.mcfunction +2 -0
- package/dist/data/test/function/fbm_1d.mcfunction +9 -0
- package/dist/data/test/function/fbm_1d__loop_body_1.mcfunction +33 -0
- package/dist/data/test/function/fbm_1d__loop_exit_2.mcfunction +4 -0
- package/dist/data/test/function/fbm_1d__loop_header_0.mcfunction +3 -0
- package/dist/data/test/function/fbm_1d__merge_4.mcfunction +6 -0
- package/dist/data/test/function/fbm_1d__then_3.mcfunction +2 -0
- package/dist/data/test/function/fbm_2d.mcfunction +10 -0
- package/dist/data/test/function/fbm_2d__loop_body_1.mcfunction +39 -0
- package/dist/data/test/function/fbm_2d__loop_exit_2.mcfunction +4 -0
- package/dist/data/test/function/fbm_2d__loop_header_0.mcfunction +3 -0
- package/dist/data/test/function/fbm_2d__merge_4.mcfunction +6 -0
- package/dist/data/test/function/fbm_2d__then_3.mcfunction +2 -0
- package/dist/data/test/function/fib.mcfunction +5 -0
- package/dist/data/test/function/fib__loop_body_7.mcfunction +8 -0
- package/dist/data/test/function/fib__loop_exit_8.mcfunction +1 -0
- package/dist/data/test/function/fib__loop_header_6.mcfunction +3 -0
- package/dist/data/test/function/fib__merge_1.mcfunction +4 -0
- package/dist/data/test/function/fib__merge_4.mcfunction +4 -0
- package/dist/data/test/function/fib__then_0.mcfunction +2 -0
- package/dist/data/test/function/fib__then_3.mcfunction +2 -0
- package/dist/data/test/function/flames.mcfunction +1 -0
- package/dist/data/test/function/format_time_h.mcfunction +5 -0
- package/dist/data/test/function/format_time_m.mcfunction +8 -0
- package/dist/data/test/function/format_time_s.mcfunction +8 -0
- package/dist/data/test/function/friction_decel.mcfunction +5 -0
- package/dist/data/test/function/friction_decel__merge_1.mcfunction +5 -0
- package/dist/data/test/function/friction_decel__merge_4.mcfunction +2 -0
- package/dist/data/test/function/friction_decel__then_0.mcfunction +3 -0
- package/dist/data/test/function/friction_decel__then_3.mcfunction +3 -0
- package/dist/data/test/function/gamma_int.mcfunction +5 -0
- package/dist/data/test/function/gamma_int__merge_1.mcfunction +6 -0
- package/dist/data/test/function/gamma_int__then_0.mcfunction +2 -0
- package/dist/data/test/function/gather_all.mcfunction +8 -0
- package/dist/data/test/function/gcd.mcfunction +7 -0
- package/dist/data/test/function/gcd__loop_body_5.mcfunction +5 -0
- package/dist/data/test/function/gcd__loop_exit_6.mcfunction +1 -0
- package/dist/data/test/function/gcd__loop_header_4.mcfunction +4 -0
- package/dist/data/test/function/gcd__merge_1.mcfunction +5 -0
- package/dist/data/test/function/gcd__merge_3.mcfunction +1 -0
- package/dist/data/test/function/gcd__then_0.mcfunction +4 -0
- package/dist/data/test/function/gcd__then_2.mcfunction +4 -0
- package/dist/data/test/function/give_kit_archer.mcfunction +6 -0
- package/dist/data/test/function/give_kit_mage.mcfunction +5 -0
- package/dist/data/test/function/give_kit_warrior.mcfunction +6 -0
- package/dist/data/test/function/glass_box.mcfunction +2 -0
- package/dist/data/test/function/glow.mcfunction +1 -0
- package/dist/data/test/function/goto_arena.mcfunction +7 -0
- package/dist/data/test/function/goto_lobby.mcfunction +7 -0
- package/dist/data/test/function/gravity_fx.mcfunction +2 -0
- package/dist/data/test/function/happy_at.mcfunction +1 -0
- package/dist/data/test/function/hash_1d.mcfunction +15 -0
- package/dist/data/test/function/hash_1d_pos.mcfunction +9 -0
- package/dist/data/test/function/hash_1d_pos__merge_1.mcfunction +4 -0
- package/dist/data/test/function/hash_1d_pos__then_0.mcfunction +4 -0
- package/dist/data/test/function/hash_2d.mcfunction +11 -0
- package/dist/data/test/function/hash_2d_pos.mcfunction +11 -0
- package/dist/data/test/function/hash_2d_pos__merge_1.mcfunction +4 -0
- package/dist/data/test/function/hash_2d_pos__then_0.mcfunction +4 -0
- package/dist/data/test/function/hash_int.mcfunction +6 -0
- package/dist/data/test/function/hash_int__merge_1.mcfunction +14 -0
- package/dist/data/test/function/hash_int__merge_3.mcfunction +14 -0
- package/dist/data/test/function/hash_int__merge_5.mcfunction +1 -0
- package/dist/data/test/function/hash_int__then_0.mcfunction +4 -0
- package/dist/data/test/function/hash_int__then_2.mcfunction +4 -0
- package/dist/data/test/function/hash_int__then_4.mcfunction +4 -0
- package/dist/data/test/function/heal.mcfunction +5 -0
- package/dist/data/test/function/heap_new.mcfunction +7 -0
- package/dist/data/test/function/heap_new__loop_body_1.mcfunction +7 -0
- package/dist/data/test/function/heap_new__loop_exit_2.mcfunction +1 -0
- package/dist/data/test/function/heap_new__loop_header_0.mcfunction +4 -0
- package/dist/data/test/function/heap_peek.mcfunction +2 -0
- package/dist/data/test/function/heap_pop.mcfunction +4 -0
- package/dist/data/test/function/heap_pop__else_13.mcfunction +2 -0
- package/dist/data/test/function/heap_pop__loop_body_1.mcfunction +14 -0
- package/dist/data/test/function/heap_pop__loop_exit_2.mcfunction +1 -0
- package/dist/data/test/function/heap_pop__loop_header_0.mcfunction +4 -0
- package/dist/data/test/function/heap_pop__merge_10.mcfunction +1 -0
- package/dist/data/test/function/heap_pop__merge_12.mcfunction +1 -0
- package/dist/data/test/function/heap_pop__merge_4.mcfunction +3 -0
- package/dist/data/test/function/heap_pop__merge_6.mcfunction +1 -0
- package/dist/data/test/function/heap_pop__merge_8.mcfunction +3 -0
- package/dist/data/test/function/heap_pop__then_11.mcfunction +2 -0
- package/dist/data/test/function/heap_pop__then_3.mcfunction +3 -0
- package/dist/data/test/function/heap_pop__then_5.mcfunction +2 -0
- package/dist/data/test/function/heap_pop__then_7.mcfunction +3 -0
- package/dist/data/test/function/heap_pop__then_9.mcfunction +2 -0
- package/dist/data/test/function/heap_push.mcfunction +6 -0
- package/dist/data/test/function/heap_push__else_5.mcfunction +2 -0
- package/dist/data/test/function/heap_push__else_8.mcfunction +2 -0
- package/dist/data/test/function/heap_push__loop_body_1.mcfunction +4 -0
- package/dist/data/test/function/heap_push__loop_exit_2.mcfunction +1 -0
- package/dist/data/test/function/heap_push__loop_header_0.mcfunction +4 -0
- package/dist/data/test/function/heap_push__merge_4.mcfunction +1 -0
- package/dist/data/test/function/heap_push__merge_7.mcfunction +1 -0
- package/dist/data/test/function/heap_push__then_3.mcfunction +7 -0
- package/dist/data/test/function/heap_push__then_6.mcfunction +2 -0
- package/dist/data/test/function/heap_size.mcfunction +2 -0
- package/dist/data/test/function/hearts_at.mcfunction +1 -0
- package/dist/data/test/function/hide_bar.mcfunction +4 -0
- package/dist/data/test/function/hsl_to_b.mcfunction +23 -0
- package/dist/data/test/function/hsl_to_b__merge_1.mcfunction +29 -0
- package/dist/data/test/function/hsl_to_b__merge_12.mcfunction +4 -0
- package/dist/data/test/function/hsl_to_b__merge_15.mcfunction +3 -0
- package/dist/data/test/function/hsl_to_b__merge_3.mcfunction +4 -0
- package/dist/data/test/function/hsl_to_b__merge_6.mcfunction +4 -0
- package/dist/data/test/function/hsl_to_b__merge_9.mcfunction +4 -0
- package/dist/data/test/function/hsl_to_b__then_0.mcfunction +4 -0
- package/dist/data/test/function/hsl_to_b__then_11.mcfunction +3 -0
- package/dist/data/test/function/hsl_to_b__then_14.mcfunction +3 -0
- package/dist/data/test/function/hsl_to_b__then_2.mcfunction +1 -0
- package/dist/data/test/function/hsl_to_b__then_5.mcfunction +1 -0
- package/dist/data/test/function/hsl_to_b__then_8.mcfunction +3 -0
- package/dist/data/test/function/hsl_to_g.mcfunction +23 -0
- package/dist/data/test/function/hsl_to_g__merge_1.mcfunction +29 -0
- package/dist/data/test/function/hsl_to_g__merge_12.mcfunction +4 -0
- package/dist/data/test/function/hsl_to_g__merge_15.mcfunction +1 -0
- package/dist/data/test/function/hsl_to_g__merge_3.mcfunction +4 -0
- package/dist/data/test/function/hsl_to_g__merge_6.mcfunction +4 -0
- package/dist/data/test/function/hsl_to_g__merge_9.mcfunction +4 -0
- package/dist/data/test/function/hsl_to_g__then_0.mcfunction +4 -0
- package/dist/data/test/function/hsl_to_g__then_11.mcfunction +3 -0
- package/dist/data/test/function/hsl_to_g__then_14.mcfunction +1 -0
- package/dist/data/test/function/hsl_to_g__then_2.mcfunction +3 -0
- package/dist/data/test/function/hsl_to_g__then_5.mcfunction +3 -0
- package/dist/data/test/function/hsl_to_g__then_8.mcfunction +3 -0
- package/dist/data/test/function/hsl_to_packed.mcfunction +24 -0
- package/dist/data/test/function/hsl_to_r.mcfunction +23 -0
- package/dist/data/test/function/hsl_to_r__merge_1.mcfunction +29 -0
- package/dist/data/test/function/hsl_to_r__merge_12.mcfunction +4 -0
- package/dist/data/test/function/hsl_to_r__merge_15.mcfunction +3 -0
- package/dist/data/test/function/hsl_to_r__merge_3.mcfunction +4 -0
- package/dist/data/test/function/hsl_to_r__merge_6.mcfunction +4 -0
- package/dist/data/test/function/hsl_to_r__merge_9.mcfunction +4 -0
- package/dist/data/test/function/hsl_to_r__then_0.mcfunction +4 -0
- package/dist/data/test/function/hsl_to_r__then_11.mcfunction +1 -0
- package/dist/data/test/function/hsl_to_r__then_14.mcfunction +3 -0
- package/dist/data/test/function/hsl_to_r__then_2.mcfunction +3 -0
- package/dist/data/test/function/hsl_to_r__then_5.mcfunction +3 -0
- package/dist/data/test/function/hsl_to_r__then_8.mcfunction +1 -0
- package/dist/data/test/function/impact_velocity.mcfunction +5 -0
- package/dist/data/test/function/impact_velocity__merge_1.mcfunction +16 -0
- package/dist/data/test/function/impact_velocity__then_0.mcfunction +2 -0
- package/dist/data/test/function/init_div.mcfunction +1 -0
- package/dist/data/test/function/init_trig.mcfunction +1 -0
- package/dist/data/test/function/insertion_sort.mcfunction +4 -0
- package/dist/data/test/function/insertion_sort__else_11.mcfunction +2 -0
- package/dist/data/test/function/insertion_sort__else_8.mcfunction +2 -0
- package/dist/data/test/function/insertion_sort__loop_body_1.mcfunction +6 -0
- package/dist/data/test/function/insertion_sort__loop_body_4.mcfunction +4 -0
- package/dist/data/test/function/insertion_sort__loop_exit_2.mcfunction +1 -0
- package/dist/data/test/function/insertion_sort__loop_exit_5.mcfunction +4 -0
- package/dist/data/test/function/insertion_sort__loop_header_0.mcfunction +3 -0
- package/dist/data/test/function/insertion_sort__loop_header_3.mcfunction +4 -0
- package/dist/data/test/function/insertion_sort__merge_10.mcfunction +1 -0
- package/dist/data/test/function/insertion_sort__merge_7.mcfunction +1 -0
- package/dist/data/test/function/insertion_sort__then_6.mcfunction +3 -0
- package/dist/data/test/function/insertion_sort__then_9.mcfunction +4 -0
- package/dist/data/test/function/insertion_sort_desc.mcfunction +4 -0
- package/dist/data/test/function/insertion_sort_desc__else_11.mcfunction +2 -0
- package/dist/data/test/function/insertion_sort_desc__else_8.mcfunction +2 -0
- package/dist/data/test/function/insertion_sort_desc__loop_body_1.mcfunction +6 -0
- package/dist/data/test/function/insertion_sort_desc__loop_body_4.mcfunction +4 -0
- package/dist/data/test/function/insertion_sort_desc__loop_exit_2.mcfunction +1 -0
- package/dist/data/test/function/insertion_sort_desc__loop_exit_5.mcfunction +4 -0
- package/dist/data/test/function/insertion_sort_desc__loop_header_0.mcfunction +3 -0
- package/dist/data/test/function/insertion_sort_desc__loop_header_3.mcfunction +4 -0
- package/dist/data/test/function/insertion_sort_desc__merge_10.mcfunction +1 -0
- package/dist/data/test/function/insertion_sort_desc__merge_7.mcfunction +1 -0
- package/dist/data/test/function/insertion_sort_desc__then_6.mcfunction +3 -0
- package/dist/data/test/function/insertion_sort_desc__then_9.mcfunction +4 -0
- package/dist/data/test/function/int32_to_bigint3_hi.mcfunction +5 -0
- package/dist/data/test/function/int32_to_bigint3_hi__merge_1.mcfunction +4 -0
- package/dist/data/test/function/int32_to_bigint3_hi__then_0.mcfunction +4 -0
- package/dist/data/test/function/int32_to_bigint3_lo.mcfunction +5 -0
- package/dist/data/test/function/int32_to_bigint3_lo__merge_1.mcfunction +4 -0
- package/dist/data/test/function/int32_to_bigint3_lo__then_0.mcfunction +4 -0
- package/dist/data/test/function/int32_to_bigint3_mid.mcfunction +5 -0
- package/dist/data/test/function/int32_to_bigint3_mid__merge_1.mcfunction +7 -0
- package/dist/data/test/function/int32_to_bigint3_mid__then_0.mcfunction +4 -0
- package/dist/data/test/function/integrate_simpson.mcfunction +7 -0
- package/dist/data/test/function/integrate_simpson__loop_body_6.mcfunction +7 -0
- package/dist/data/test/function/integrate_simpson__loop_exit_7.mcfunction +6 -0
- package/dist/data/test/function/integrate_simpson__loop_header_5.mcfunction +5 -0
- package/dist/data/test/function/integrate_simpson__merge_1.mcfunction +8 -0
- package/dist/data/test/function/integrate_simpson__merge_11.mcfunction +4 -0
- package/dist/data/test/function/integrate_simpson__merge_4.mcfunction +5 -0
- package/dist/data/test/function/integrate_simpson__merge_9.mcfunction +7 -0
- package/dist/data/test/function/integrate_simpson__then_0.mcfunction +6 -0
- package/dist/data/test/function/integrate_simpson__then_10.mcfunction +6 -0
- package/dist/data/test/function/integrate_simpson__then_3.mcfunction +4 -0
- package/dist/data/test/function/integrate_simpson__then_8.mcfunction +6 -0
- package/dist/data/test/function/integrate_trapezoid.mcfunction +7 -0
- package/dist/data/test/function/integrate_trapezoid__loop_body_4.mcfunction +7 -0
- package/dist/data/test/function/integrate_trapezoid__loop_exit_5.mcfunction +6 -0
- package/dist/data/test/function/integrate_trapezoid__loop_header_3.mcfunction +5 -0
- package/dist/data/test/function/integrate_trapezoid__merge_1.mcfunction +11 -0
- package/dist/data/test/function/integrate_trapezoid__then_0.mcfunction +2 -0
- package/dist/data/test/function/interactions_init.mcfunction +9 -0
- package/dist/data/test/function/invisible.mcfunction +1 -0
- package/dist/data/test/function/is_grounded.mcfunction +5 -0
- package/dist/data/test/function/is_grounded__merge_1.mcfunction +2 -0
- package/dist/data/test/function/is_grounded__then_0.mcfunction +2 -0
- package/dist/data/test/function/is_op.mcfunction +2 -0
- package/dist/data/test/function/is_op__exec_t1.mcfunction +1 -0
- package/dist/data/test/function/is_prime.mcfunction +5 -0
- package/dist/data/test/function/is_prime__loop_body_10.mcfunction +6 -0
- package/dist/data/test/function/is_prime__loop_exit_11.mcfunction +2 -0
- package/dist/data/test/function/is_prime__loop_header_9.mcfunction +5 -0
- package/dist/data/test/function/is_prime__merge_1.mcfunction +4 -0
- package/dist/data/test/function/is_prime__merge_13.mcfunction +4 -0
- package/dist/data/test/function/is_prime__merge_4.mcfunction +7 -0
- package/dist/data/test/function/is_prime__merge_7.mcfunction +2 -0
- package/dist/data/test/function/is_prime__then_0.mcfunction +2 -0
- package/dist/data/test/function/is_prime__then_12.mcfunction +2 -0
- package/dist/data/test/function/is_prime__then_3.mcfunction +2 -0
- package/dist/data/test/function/is_prime__then_6.mcfunction +2 -0
- package/dist/data/test/function/is_sneaking.mcfunction +5 -0
- package/dist/data/test/function/is_sneaking__merge_1.mcfunction +2 -0
- package/dist/data/test/function/is_sneaking__then_0.mcfunction +2 -0
- package/dist/data/test/function/isqrt.mcfunction +5 -0
- package/dist/data/test/function/isqrt__loop_body_10.mcfunction +8 -0
- package/dist/data/test/function/isqrt__loop_body_13.mcfunction +11 -0
- package/dist/data/test/function/isqrt__loop_body_7.mcfunction +8 -0
- package/dist/data/test/function/isqrt__loop_exit_11.mcfunction +2 -0
- package/dist/data/test/function/isqrt__loop_exit_14.mcfunction +1 -0
- package/dist/data/test/function/isqrt__loop_exit_8.mcfunction +9 -0
- package/dist/data/test/function/isqrt__loop_header_12.mcfunction +4 -0
- package/dist/data/test/function/isqrt__loop_header_6.mcfunction +4 -0
- package/dist/data/test/function/isqrt__loop_header_9.mcfunction +3 -0
- package/dist/data/test/function/isqrt__merge_1.mcfunction +4 -0
- package/dist/data/test/function/isqrt__merge_16.mcfunction +5 -0
- package/dist/data/test/function/isqrt__merge_4.mcfunction +3 -0
- package/dist/data/test/function/isqrt__then_0.mcfunction +2 -0
- package/dist/data/test/function/isqrt__then_15.mcfunction +1 -0
- package/dist/data/test/function/isqrt__then_3.mcfunction +2 -0
- package/dist/data/test/function/julia_iter.mcfunction +9 -0
- package/dist/data/test/function/julia_iter__loop_body_1.mcfunction +36 -0
- package/dist/data/test/function/julia_iter__loop_exit_2.mcfunction +1 -0
- package/dist/data/test/function/julia_iter__loop_header_0.mcfunction +3 -0
- package/dist/data/test/function/julia_iter__merge_4.mcfunction +4 -0
- package/dist/data/test/function/julia_iter__then_3.mcfunction +1 -0
- package/dist/data/test/function/jump.mcfunction +1 -0
- package/dist/data/test/function/lambda_demo.mcfunction +2 -0
- package/dist/data/test/function/launch_up.mcfunction +6 -0
- package/dist/data/test/function/lcm.mcfunction +11 -0
- package/dist/data/test/function/lcm__merge_1.mcfunction +5 -0
- package/dist/data/test/function/lcm__then_0.mcfunction +2 -0
- package/dist/data/test/function/length2d_fixed.mcfunction +15 -0
- package/dist/data/test/function/length3d_fixed.mcfunction +20 -0
- package/dist/data/test/function/lerp.mcfunction +13 -0
- package/dist/data/test/function/lerp2d_x.mcfunction +13 -0
- package/dist/data/test/function/lerp2d_y.mcfunction +13 -0
- package/dist/data/test/function/lerp_angle.mcfunction +7 -0
- package/dist/data/test/function/lerp_angle__loop_body_1.mcfunction +4 -0
- package/dist/data/test/function/lerp_angle__loop_body_4.mcfunction +4 -0
- package/dist/data/test/function/lerp_angle__loop_exit_2.mcfunction +1 -0
- package/dist/data/test/function/lerp_angle__loop_exit_5.mcfunction +8 -0
- package/dist/data/test/function/lerp_angle__loop_header_0.mcfunction +4 -0
- package/dist/data/test/function/lerp_angle__loop_header_3.mcfunction +3 -0
- package/dist/data/test/function/list_avg.mcfunction +9 -0
- package/dist/data/test/function/list_clamp_all.mcfunction +6 -0
- package/dist/data/test/function/list_clamp_all__loop_body_1.mcfunction +4 -0
- package/dist/data/test/function/list_clamp_all__loop_exit_2.mcfunction +1 -0
- package/dist/data/test/function/list_clamp_all__loop_header_0.mcfunction +4 -0
- package/dist/data/test/function/list_clamp_all__merge_4.mcfunction +4 -0
- package/dist/data/test/function/list_clamp_all__merge_6.mcfunction +4 -0
- package/dist/data/test/function/list_clamp_all__then_3.mcfunction +1 -0
- package/dist/data/test/function/list_clamp_all__then_5.mcfunction +1 -0
- package/dist/data/test/function/list_contains.mcfunction +5 -0
- package/dist/data/test/function/list_contains__loop_body_1.mcfunction +4 -0
- package/dist/data/test/function/list_contains__loop_exit_2.mcfunction +2 -0
- package/dist/data/test/function/list_contains__loop_header_0.mcfunction +4 -0
- package/dist/data/test/function/list_contains__merge_4.mcfunction +4 -0
- package/dist/data/test/function/list_contains__then_3.mcfunction +2 -0
- package/dist/data/test/function/list_count_if_gt.mcfunction +6 -0
- package/dist/data/test/function/list_count_if_gt__loop_body_1.mcfunction +4 -0
- package/dist/data/test/function/list_count_if_gt__loop_exit_2.mcfunction +1 -0
- package/dist/data/test/function/list_count_if_gt__loop_header_0.mcfunction +4 -0
- package/dist/data/test/function/list_count_if_gt__merge_4.mcfunction +4 -0
- package/dist/data/test/function/list_count_if_gt__then_3.mcfunction +4 -0
- package/dist/data/test/function/list_fill.mcfunction +3 -0
- package/dist/data/test/function/list_fill__loop_body_1.mcfunction +4 -0
- package/dist/data/test/function/list_fill__loop_exit_2.mcfunction +1 -0
- package/dist/data/test/function/list_fill__loop_header_0.mcfunction +4 -0
- package/dist/data/test/function/list_index_of.mcfunction +5 -0
- package/dist/data/test/function/list_index_of__loop_body_1.mcfunction +4 -0
- package/dist/data/test/function/list_index_of__loop_exit_2.mcfunction +2 -0
- package/dist/data/test/function/list_index_of__loop_header_0.mcfunction +4 -0
- package/dist/data/test/function/list_index_of__merge_4.mcfunction +4 -0
- package/dist/data/test/function/list_index_of__then_3.mcfunction +1 -0
- package/dist/data/test/function/list_max.mcfunction +5 -0
- package/dist/data/test/function/list_max3.mcfunction +7 -0
- package/dist/data/test/function/list_max3__merge_1.mcfunction +3 -0
- package/dist/data/test/function/list_max3__merge_3.mcfunction +1 -0
- package/dist/data/test/function/list_max3__then_0.mcfunction +2 -0
- package/dist/data/test/function/list_max3__then_2.mcfunction +2 -0
- package/dist/data/test/function/list_max5.mcfunction +9 -0
- package/dist/data/test/function/list_max5__merge_1.mcfunction +3 -0
- package/dist/data/test/function/list_max5__merge_3.mcfunction +3 -0
- package/dist/data/test/function/list_max5__merge_5.mcfunction +3 -0
- package/dist/data/test/function/list_max5__merge_7.mcfunction +1 -0
- package/dist/data/test/function/list_max5__then_0.mcfunction +2 -0
- package/dist/data/test/function/list_max5__then_2.mcfunction +2 -0
- package/dist/data/test/function/list_max5__then_4.mcfunction +2 -0
- package/dist/data/test/function/list_max5__then_6.mcfunction +2 -0
- package/dist/data/test/function/list_max__loop_body_1.mcfunction +4 -0
- package/dist/data/test/function/list_max__loop_exit_2.mcfunction +1 -0
- package/dist/data/test/function/list_max__loop_header_0.mcfunction +4 -0
- package/dist/data/test/function/list_max__merge_4.mcfunction +4 -0
- package/dist/data/test/function/list_max__then_3.mcfunction +2 -0
- package/dist/data/test/function/list_min.mcfunction +5 -0
- package/dist/data/test/function/list_min3.mcfunction +7 -0
- package/dist/data/test/function/list_min3__merge_1.mcfunction +3 -0
- package/dist/data/test/function/list_min3__merge_3.mcfunction +1 -0
- package/dist/data/test/function/list_min3__then_0.mcfunction +2 -0
- package/dist/data/test/function/list_min3__then_2.mcfunction +2 -0
- package/dist/data/test/function/list_min5.mcfunction +9 -0
- package/dist/data/test/function/list_min5__merge_1.mcfunction +3 -0
- package/dist/data/test/function/list_min5__merge_3.mcfunction +3 -0
- package/dist/data/test/function/list_min5__merge_5.mcfunction +3 -0
- package/dist/data/test/function/list_min5__merge_7.mcfunction +1 -0
- package/dist/data/test/function/list_min5__then_0.mcfunction +2 -0
- package/dist/data/test/function/list_min5__then_2.mcfunction +2 -0
- package/dist/data/test/function/list_min5__then_4.mcfunction +2 -0
- package/dist/data/test/function/list_min5__then_6.mcfunction +2 -0
- package/dist/data/test/function/list_min__loop_body_1.mcfunction +4 -0
- package/dist/data/test/function/list_min__loop_exit_2.mcfunction +1 -0
- package/dist/data/test/function/list_min__loop_header_0.mcfunction +4 -0
- package/dist/data/test/function/list_min__merge_4.mcfunction +4 -0
- package/dist/data/test/function/list_min__then_3.mcfunction +2 -0
- package/dist/data/test/function/list_reverse.mcfunction +6 -0
- package/dist/data/test/function/list_reverse__loop_body_1.mcfunction +9 -0
- package/dist/data/test/function/list_reverse__loop_exit_2.mcfunction +1 -0
- package/dist/data/test/function/list_reverse__loop_header_0.mcfunction +4 -0
- package/dist/data/test/function/list_sort_asc.mcfunction +4 -0
- package/dist/data/test/function/list_sort_asc__loop_body_1.mcfunction +2 -0
- package/dist/data/test/function/list_sort_asc__loop_body_4.mcfunction +3 -0
- package/dist/data/test/function/list_sort_asc__loop_exit_2.mcfunction +1 -0
- package/dist/data/test/function/list_sort_asc__loop_exit_5.mcfunction +4 -0
- package/dist/data/test/function/list_sort_asc__loop_header_0.mcfunction +5 -0
- package/dist/data/test/function/list_sort_asc__loop_header_3.mcfunction +7 -0
- package/dist/data/test/function/list_sort_asc__merge_7.mcfunction +4 -0
- package/dist/data/test/function/list_sort_asc__then_6.mcfunction +1 -0
- package/dist/data/test/function/list_sort_desc.mcfunction +4 -0
- package/dist/data/test/function/list_sort_desc__loop_body_1.mcfunction +2 -0
- package/dist/data/test/function/list_sort_desc__loop_body_4.mcfunction +3 -0
- package/dist/data/test/function/list_sort_desc__loop_exit_2.mcfunction +1 -0
- package/dist/data/test/function/list_sort_desc__loop_exit_5.mcfunction +4 -0
- package/dist/data/test/function/list_sort_desc__loop_header_0.mcfunction +5 -0
- package/dist/data/test/function/list_sort_desc__loop_header_3.mcfunction +7 -0
- package/dist/data/test/function/list_sort_desc__merge_7.mcfunction +4 -0
- package/dist/data/test/function/list_sort_desc__then_6.mcfunction +1 -0
- package/dist/data/test/function/list_sum.mcfunction +5 -0
- package/dist/data/test/function/list_sum3.mcfunction +8 -0
- package/dist/data/test/function/list_sum4.mcfunction +11 -0
- package/dist/data/test/function/list_sum5.mcfunction +14 -0
- package/dist/data/test/function/list_sum__loop_body_1.mcfunction +7 -0
- package/dist/data/test/function/list_sum__loop_exit_2.mcfunction +1 -0
- package/dist/data/test/function/list_sum__loop_header_0.mcfunction +4 -0
- package/dist/data/test/function/ln.mcfunction +9 -0
- package/dist/data/test/function/ln__loop_body_1.mcfunction +8 -0
- package/dist/data/test/function/ln__loop_body_4.mcfunction +8 -0
- package/dist/data/test/function/ln__loop_exit_2.mcfunction +1 -0
- package/dist/data/test/function/ln__loop_exit_5.mcfunction +37 -0
- package/dist/data/test/function/ln__loop_header_0.mcfunction +3 -0
- package/dist/data/test/function/ln__loop_header_3.mcfunction +6 -0
- package/dist/data/test/function/load.mcfunction +1 -0
- package/dist/data/test/function/log10_fx.mcfunction +11 -0
- package/dist/data/test/function/log2_fx.mcfunction +11 -0
- package/dist/data/test/function/log2_int.mcfunction +5 -0
- package/dist/data/test/function/log2_int__loop_body_4.mcfunction +8 -0
- package/dist/data/test/function/log2_int__loop_exit_5.mcfunction +1 -0
- package/dist/data/test/function/log2_int__loop_header_3.mcfunction +4 -0
- package/dist/data/test/function/log2_int__merge_1.mcfunction +3 -0
- package/dist/data/test/function/log2_int__then_0.mcfunction +2 -0
- package/dist/data/test/function/loga_fx.mcfunction +10 -0
- package/dist/data/test/function/loga_fx__merge_1.mcfunction +9 -0
- package/dist/data/test/function/loga_fx__then_0.mcfunction +2 -0
- package/dist/data/test/function/mandelbrot_iter.mcfunction +7 -0
- package/dist/data/test/function/mandelbrot_iter__loop_body_1.mcfunction +36 -0
- package/dist/data/test/function/mandelbrot_iter__loop_exit_2.mcfunction +1 -0
- package/dist/data/test/function/mandelbrot_iter__loop_header_0.mcfunction +3 -0
- package/dist/data/test/function/mandelbrot_iter__merge_4.mcfunction +4 -0
- package/dist/data/test/function/mandelbrot_iter__then_3.mcfunction +1 -0
- package/dist/data/test/function/manhattan.mcfunction +14 -0
- package/dist/data/test/function/manhattan3d.mcfunction +19 -0
- package/dist/data/test/function/manhattan3d__merge_1.mcfunction +4 -0
- package/dist/data/test/function/manhattan3d__merge_3.mcfunction +4 -0
- package/dist/data/test/function/manhattan3d__merge_5.mcfunction +5 -0
- package/dist/data/test/function/manhattan3d__then_0.mcfunction +4 -0
- package/dist/data/test/function/manhattan3d__then_2.mcfunction +4 -0
- package/dist/data/test/function/manhattan3d__then_4.mcfunction +4 -0
- package/dist/data/test/function/manhattan__merge_1.mcfunction +4 -0
- package/dist/data/test/function/manhattan__merge_3.mcfunction +3 -0
- package/dist/data/test/function/manhattan__then_0.mcfunction +4 -0
- package/dist/data/test/function/manhattan__then_2.mcfunction +4 -0
- package/dist/data/test/function/map.mcfunction +12 -0
- package/dist/data/test/function/map__merge_1.mcfunction +11 -0
- package/dist/data/test/function/map__then_0.mcfunction +1 -0
- package/dist/data/test/function/max_heap_pop.mcfunction +4 -0
- package/dist/data/test/function/max_heap_pop__else_13.mcfunction +2 -0
- package/dist/data/test/function/max_heap_pop__loop_body_1.mcfunction +14 -0
- package/dist/data/test/function/max_heap_pop__loop_exit_2.mcfunction +1 -0
- package/dist/data/test/function/max_heap_pop__loop_header_0.mcfunction +4 -0
- package/dist/data/test/function/max_heap_pop__merge_10.mcfunction +1 -0
- package/dist/data/test/function/max_heap_pop__merge_12.mcfunction +1 -0
- package/dist/data/test/function/max_heap_pop__merge_4.mcfunction +3 -0
- package/dist/data/test/function/max_heap_pop__merge_6.mcfunction +1 -0
- package/dist/data/test/function/max_heap_pop__merge_8.mcfunction +3 -0
- package/dist/data/test/function/max_heap_pop__then_11.mcfunction +2 -0
- package/dist/data/test/function/max_heap_pop__then_3.mcfunction +3 -0
- package/dist/data/test/function/max_heap_pop__then_5.mcfunction +2 -0
- package/dist/data/test/function/max_heap_pop__then_7.mcfunction +3 -0
- package/dist/data/test/function/max_heap_pop__then_9.mcfunction +2 -0
- package/dist/data/test/function/max_heap_push.mcfunction +6 -0
- package/dist/data/test/function/max_heap_push__else_5.mcfunction +2 -0
- package/dist/data/test/function/max_heap_push__else_8.mcfunction +2 -0
- package/dist/data/test/function/max_heap_push__loop_body_1.mcfunction +4 -0
- package/dist/data/test/function/max_heap_push__loop_exit_2.mcfunction +1 -0
- package/dist/data/test/function/max_heap_push__loop_header_0.mcfunction +4 -0
- package/dist/data/test/function/max_heap_push__merge_4.mcfunction +1 -0
- package/dist/data/test/function/max_heap_push__merge_7.mcfunction +1 -0
- package/dist/data/test/function/max_heap_push__then_3.mcfunction +7 -0
- package/dist/data/test/function/max_heap_push__then_6.mcfunction +2 -0
- package/dist/data/test/function/mc_day_angle.mcfunction +16 -0
- package/dist/data/test/function/midpoint.mcfunction +8 -0
- package/dist/data/test/function/mod_pow.mcfunction +7 -0
- package/dist/data/test/function/mod_pow__loop_body_6.mcfunction +7 -0
- package/dist/data/test/function/mod_pow__loop_exit_7.mcfunction +1 -0
- package/dist/data/test/function/mod_pow__loop_header_5.mcfunction +4 -0
- package/dist/data/test/function/mod_pow__merge_1.mcfunction +8 -0
- package/dist/data/test/function/mod_pow__merge_4.mcfunction +2 -0
- package/dist/data/test/function/mod_pow__merge_9.mcfunction +10 -0
- package/dist/data/test/function/mod_pow__then_0.mcfunction +2 -0
- package/dist/data/test/function/mod_pow__then_3.mcfunction +4 -0
- package/dist/data/test/function/mod_pow__then_8.mcfunction +6 -0
- package/dist/data/test/function/mulfix.mcfunction +8 -0
- package/dist/data/test/function/neg2d_x.mcfunction +4 -0
- package/dist/data/test/function/neg2d_y.mcfunction +4 -0
- package/dist/data/test/function/neg3d_x.mcfunction +4 -0
- package/dist/data/test/function/neg3d_y.mcfunction +4 -0
- package/dist/data/test/function/neg3d_z.mcfunction +4 -0
- package/dist/data/test/function/newton_sqrt.mcfunction +5 -0
- package/dist/data/test/function/newton_sqrt__loop_body_7.mcfunction +10 -0
- package/dist/data/test/function/newton_sqrt__loop_exit_8.mcfunction +1 -0
- package/dist/data/test/function/newton_sqrt__loop_header_6.mcfunction +3 -0
- package/dist/data/test/function/newton_sqrt__merge_1.mcfunction +4 -0
- package/dist/data/test/function/newton_sqrt__merge_4.mcfunction +6 -0
- package/dist/data/test/function/newton_sqrt__then_0.mcfunction +2 -0
- package/dist/data/test/function/newton_sqrt__then_3.mcfunction +2 -0
- package/dist/data/test/function/newton_step.mcfunction +7 -0
- package/dist/data/test/function/newton_step__merge_1.mcfunction +8 -0
- package/dist/data/test/function/newton_step__then_0.mcfunction +1 -0
- package/dist/data/test/function/next_lcg.mcfunction +7 -0
- package/dist/data/test/function/night_vision.mcfunction +1 -0
- package/dist/data/test/function/noise1d.mcfunction +13 -0
- package/dist/data/test/function/noise1d__merge_1.mcfunction +20 -0
- package/dist/data/test/function/noise1d__merge_3.mcfunction +4 -0
- package/dist/data/test/function/noise1d__merge_5.mcfunction +11 -0
- package/dist/data/test/function/noise1d__then_0.mcfunction +7 -0
- package/dist/data/test/function/noise1d__then_2.mcfunction +4 -0
- package/dist/data/test/function/noise1d__then_4.mcfunction +4 -0
- package/dist/data/test/function/norm3_hp.mcfunction +43 -0
- package/dist/data/test/function/normal_approx12.mcfunction +15 -0
- package/dist/data/test/function/normal_approx12__merge_1.mcfunction +17 -0
- package/dist/data/test/function/normal_approx12__merge_11.mcfunction +17 -0
- package/dist/data/test/function/normal_approx12__merge_13.mcfunction +17 -0
- package/dist/data/test/function/normal_approx12__merge_15.mcfunction +17 -0
- package/dist/data/test/function/normal_approx12__merge_17.mcfunction +17 -0
- package/dist/data/test/function/normal_approx12__merge_19.mcfunction +17 -0
- package/dist/data/test/function/normal_approx12__merge_21.mcfunction +17 -0
- package/dist/data/test/function/normal_approx12__merge_23.mcfunction +9 -0
- package/dist/data/test/function/normal_approx12__merge_3.mcfunction +17 -0
- package/dist/data/test/function/normal_approx12__merge_5.mcfunction +17 -0
- package/dist/data/test/function/normal_approx12__merge_7.mcfunction +17 -0
- package/dist/data/test/function/normal_approx12__merge_9.mcfunction +17 -0
- package/dist/data/test/function/normal_approx12__then_0.mcfunction +4 -0
- package/dist/data/test/function/normal_approx12__then_10.mcfunction +4 -0
- package/dist/data/test/function/normal_approx12__then_12.mcfunction +4 -0
- package/dist/data/test/function/normal_approx12__then_14.mcfunction +4 -0
- package/dist/data/test/function/normal_approx12__then_16.mcfunction +4 -0
- package/dist/data/test/function/normal_approx12__then_18.mcfunction +4 -0
- package/dist/data/test/function/normal_approx12__then_2.mcfunction +4 -0
- package/dist/data/test/function/normal_approx12__then_20.mcfunction +4 -0
- package/dist/data/test/function/normal_approx12__then_22.mcfunction +4 -0
- package/dist/data/test/function/normal_approx12__then_4.mcfunction +4 -0
- package/dist/data/test/function/normal_approx12__then_6.mcfunction +4 -0
- package/dist/data/test/function/normal_approx12__then_8.mcfunction +4 -0
- package/dist/data/test/function/normalize2d_x.mcfunction +11 -0
- package/dist/data/test/function/normalize2d_x__merge_1.mcfunction +6 -0
- package/dist/data/test/function/normalize2d_x__then_0.mcfunction +2 -0
- package/dist/data/test/function/normalize2d_y.mcfunction +11 -0
- package/dist/data/test/function/normalize2d_y__merge_1.mcfunction +6 -0
- package/dist/data/test/function/normalize2d_y__then_0.mcfunction +2 -0
- package/dist/data/test/function/on_double_sneak.mcfunction +1 -0
- package/dist/data/test/function/on_double_sneak__foreach_t0.mcfunction +9 -0
- package/dist/data/test/function/on_double_sneak__foreach_t0__merge_1.mcfunction +1 -0
- package/dist/data/test/function/on_double_sneak__foreach_t0__merge_3.mcfunction +2 -0
- package/dist/data/test/function/on_double_sneak__foreach_t0__then_0.mcfunction +6 -0
- package/dist/data/test/function/on_double_sneak__foreach_t0__then_2.mcfunction +2 -0
- package/dist/data/test/function/on_right_click.mcfunction +1 -0
- package/dist/data/test/function/on_right_click__foreach_t1.mcfunction +5 -0
- package/dist/data/test/function/on_right_click__foreach_t1__merge_1.mcfunction +1 -0
- package/dist/data/test/function/on_right_click__foreach_t1__then_0.mcfunction +3 -0
- package/dist/data/test/function/on_sneak_click.mcfunction +1 -0
- package/dist/data/test/function/on_sneak_click__foreach_t0.mcfunction +7 -0
- package/dist/data/test/function/on_sneak_click__foreach_t0__else_4.mcfunction +3 -0
- package/dist/data/test/function/on_sneak_click__foreach_t0__merge_1.mcfunction +1 -0
- package/dist/data/test/function/on_sneak_click__foreach_t0__merge_3.mcfunction +1 -0
- package/dist/data/test/function/on_sneak_click__foreach_t0__then_0.mcfunction +4 -0
- package/dist/data/test/function/on_sneak_click__foreach_t0__then_2.mcfunction +3 -0
- package/dist/data/test/function/on_sneak_start.mcfunction +1 -0
- package/dist/data/test/function/on_sneak_start__foreach_t0.mcfunction +5 -0
- package/dist/data/test/function/on_sneak_start__foreach_t0__else_2.mcfunction +2 -0
- package/dist/data/test/function/on_sneak_start__foreach_t0__merge_1.mcfunction +1 -0
- package/dist/data/test/function/on_sneak_start__foreach_t0__then_0.mcfunction +2 -0
- package/dist/data/test/function/parabola_land_t.mcfunction +7 -0
- package/dist/data/test/function/parabola_x.mcfunction +8 -0
- package/dist/data/test/function/parabola_y.mcfunction +17 -0
- package/dist/data/test/function/particle_at_fx.mcfunction +1 -0
- package/dist/data/test/function/particle_dot.mcfunction +1 -0
- package/dist/data/test/function/pathfind_bfs.mcfunction +11 -0
- package/dist/data/test/function/pathfind_bfs__else_33.mcfunction +4 -0
- package/dist/data/test/function/pathfind_bfs__else_8.mcfunction +19 -0
- package/dist/data/test/function/pathfind_bfs__loop_body_1.mcfunction +10 -0
- package/dist/data/test/function/pathfind_bfs__loop_body_29.mcfunction +6 -0
- package/dist/data/test/function/pathfind_bfs__loop_body_35.mcfunction +9 -0
- package/dist/data/test/function/pathfind_bfs__loop_body_4.mcfunction +9 -0
- package/dist/data/test/function/pathfind_bfs__loop_exit_2.mcfunction +24 -0
- package/dist/data/test/function/pathfind_bfs__loop_exit_30.mcfunction +6 -0
- package/dist/data/test/function/pathfind_bfs__loop_exit_36.mcfunction +1 -0
- package/dist/data/test/function/pathfind_bfs__loop_exit_5.mcfunction +6 -0
- package/dist/data/test/function/pathfind_bfs__loop_header_0.mcfunction +4 -0
- package/dist/data/test/function/pathfind_bfs__loop_header_28.mcfunction +4 -0
- package/dist/data/test/function/pathfind_bfs__loop_header_3.mcfunction +3 -0
- package/dist/data/test/function/pathfind_bfs__loop_header_34.mcfunction +4 -0
- package/dist/data/test/function/pathfind_bfs__merge_10.mcfunction +11 -0
- package/dist/data/test/function/pathfind_bfs__merge_12.mcfunction +1 -0
- package/dist/data/test/function/pathfind_bfs__merge_14.mcfunction +11 -0
- package/dist/data/test/function/pathfind_bfs__merge_16.mcfunction +1 -0
- package/dist/data/test/function/pathfind_bfs__merge_18.mcfunction +11 -0
- package/dist/data/test/function/pathfind_bfs__merge_20.mcfunction +1 -0
- package/dist/data/test/function/pathfind_bfs__merge_22.mcfunction +1 -0
- package/dist/data/test/function/pathfind_bfs__merge_24.mcfunction +1 -0
- package/dist/data/test/function/pathfind_bfs__merge_26.mcfunction +5 -0
- package/dist/data/test/function/pathfind_bfs__merge_32.mcfunction +1 -0
- package/dist/data/test/function/pathfind_bfs__merge_7.mcfunction +1 -0
- package/dist/data/test/function/pathfind_bfs__then_11.mcfunction +15 -0
- package/dist/data/test/function/pathfind_bfs__then_13.mcfunction +13 -0
- package/dist/data/test/function/pathfind_bfs__then_15.mcfunction +15 -0
- package/dist/data/test/function/pathfind_bfs__then_17.mcfunction +13 -0
- package/dist/data/test/function/pathfind_bfs__then_19.mcfunction +15 -0
- package/dist/data/test/function/pathfind_bfs__then_21.mcfunction +13 -0
- package/dist/data/test/function/pathfind_bfs__then_23.mcfunction +15 -0
- package/dist/data/test/function/pathfind_bfs__then_25.mcfunction +1 -0
- package/dist/data/test/function/pathfind_bfs__then_31.mcfunction +2 -0
- package/dist/data/test/function/pathfind_bfs__then_6.mcfunction +3 -0
- package/dist/data/test/function/pathfind_bfs__then_9.mcfunction +13 -0
- package/dist/data/test/function/pathfind_bfs_coro.mcfunction +1 -0
- package/dist/data/test/function/pcg_next_hi.mcfunction +8 -0
- package/dist/data/test/function/pcg_next_lo.mcfunction +7 -0
- package/dist/data/test/function/pcg_output.mcfunction +14 -0
- package/dist/data/test/function/pcg_output__merge_1.mcfunction +1 -0
- package/dist/data/test/function/pcg_output__then_0.mcfunction +4 -0
- package/dist/data/test/function/pf_heuristic.mcfunction +14 -0
- package/dist/data/test/function/pf_heuristic__merge_1.mcfunction +4 -0
- package/dist/data/test/function/pf_heuristic__merge_3.mcfunction +6 -0
- package/dist/data/test/function/pf_heuristic__then_0.mcfunction +4 -0
- package/dist/data/test/function/pf_heuristic__then_2.mcfunction +4 -0
- package/dist/data/test/function/pf_is_blocked.mcfunction +7 -0
- package/dist/data/test/function/pf_is_blocked__merge_1.mcfunction +4 -0
- package/dist/data/test/function/pf_is_blocked__merge_10.mcfunction +4 -0
- package/dist/data/test/function/pf_is_blocked__merge_4.mcfunction +4 -0
- package/dist/data/test/function/pf_is_blocked__merge_7.mcfunction +4 -0
- package/dist/data/test/function/pf_is_blocked__then_0.mcfunction +2 -0
- package/dist/data/test/function/pf_is_blocked__then_3.mcfunction +2 -0
- package/dist/data/test/function/pf_is_blocked__then_6.mcfunction +2 -0
- package/dist/data/test/function/pf_is_blocked__then_9.mcfunction +2 -0
- package/dist/data/test/function/pf_new_map.mcfunction +4 -0
- package/dist/data/test/function/pf_new_map__loop_body_1.mcfunction +7 -0
- package/dist/data/test/function/pf_new_map__loop_exit_2.mcfunction +1 -0
- package/dist/data/test/function/pf_new_map__loop_header_0.mcfunction +4 -0
- package/dist/data/test/function/pf_noop.mcfunction +1 -0
- package/dist/data/test/function/pf_pack.mcfunction +8 -0
- package/dist/data/test/function/pf_set_blocked.mcfunction +5 -0
- package/dist/data/test/function/pf_set_open.mcfunction +5 -0
- package/dist/data/test/function/pf_unpack_x.mcfunction +5 -0
- package/dist/data/test/function/pf_unpack_z.mcfunction +5 -0
- package/dist/data/test/function/popcount.mcfunction +5 -0
- package/dist/data/test/function/popcount__loop_body_1.mcfunction +7 -0
- package/dist/data/test/function/popcount__loop_exit_2.mcfunction +1 -0
- package/dist/data/test/function/popcount__loop_header_0.mcfunction +4 -0
- package/dist/data/test/function/popcount__merge_4.mcfunction +8 -0
- package/dist/data/test/function/popcount__then_3.mcfunction +4 -0
- package/dist/data/test/function/portal_effect.mcfunction +1 -0
- package/dist/data/test/function/pow_int.mcfunction +6 -0
- package/dist/data/test/function/pow_int__loop_body_4.mcfunction +7 -0
- package/dist/data/test/function/pow_int__loop_exit_5.mcfunction +1 -0
- package/dist/data/test/function/pow_int__loop_header_3.mcfunction +4 -0
- package/dist/data/test/function/pow_int__merge_1.mcfunction +4 -0
- package/dist/data/test/function/pow_int__merge_7.mcfunction +8 -0
- package/dist/data/test/function/pow_int__then_0.mcfunction +2 -0
- package/dist/data/test/function/pow_int__then_6.mcfunction +4 -0
- package/dist/data/test/function/projectile_land_t.mcfunction +5 -0
- package/dist/data/test/function/projectile_land_t__merge_1.mcfunction +7 -0
- package/dist/data/test/function/projectile_land_t__then_0.mcfunction +2 -0
- package/dist/data/test/function/projectile_max_height.mcfunction +10 -0
- package/dist/data/test/function/projectile_vy.mcfunction +9 -0
- package/dist/data/test/function/projectile_x.mcfunction +8 -0
- package/dist/data/test/function/projectile_y.mcfunction +19 -0
- package/dist/data/test/function/ptimer/new.mcfunction +3 -0
- package/dist/data/test/function/ptimer/reset.mcfunction +1 -0
- package/dist/data/test/function/ptimer/tick.mcfunction +8 -0
- package/dist/data/test/function/ptimer/tick__merge_1.mcfunction +2 -0
- package/dist/data/test/function/ptimer/tick__then_0.mcfunction +3 -0
- package/dist/data/test/function/quadratic_disc.mcfunction +12 -0
- package/dist/data/test/function/quadratic_x1.mcfunction +7 -0
- package/dist/data/test/function/quadratic_x1__merge_1.mcfunction +13 -0
- package/dist/data/test/function/quadratic_x1__merge_4.mcfunction +15 -0
- package/dist/data/test/function/quadratic_x1__then_0.mcfunction +2 -0
- package/dist/data/test/function/quadratic_x1__then_3.mcfunction +2 -0
- package/dist/data/test/function/quadratic_x2.mcfunction +7 -0
- package/dist/data/test/function/quadratic_x2__merge_1.mcfunction +13 -0
- package/dist/data/test/function/quadratic_x2__merge_4.mcfunction +15 -0
- package/dist/data/test/function/quadratic_x2__then_0.mcfunction +2 -0
- package/dist/data/test/function/quadratic_x2__then_3.mcfunction +2 -0
- package/dist/data/test/function/quat_cos_half.mcfunction +8 -0
- package/dist/data/test/function/quat_sin_half.mcfunction +8 -0
- package/dist/data/test/function/random_bool.mcfunction +6 -0
- package/dist/data/test/function/random_bool__merge_1.mcfunction +4 -0
- package/dist/data/test/function/random_bool__then_0.mcfunction +4 -0
- package/dist/data/test/function/random_range.mcfunction +8 -0
- package/dist/data/test/function/random_range__merge_1.mcfunction +7 -0
- package/dist/data/test/function/random_range__then_0.mcfunction +4 -0
- package/dist/data/test/function/regen.mcfunction +1 -0
- package/dist/data/test/function/remove_bar.mcfunction +3 -0
- package/dist/data/test/function/remove_from_teams.mcfunction +3 -0
- package/dist/data/test/function/remove_item.mcfunction +1 -0
- package/dist/data/test/function/resistance.mcfunction +1 -0
- package/dist/data/test/function/reverse_int.mcfunction +7 -0
- package/dist/data/test/function/reverse_int__loop_body_3.mcfunction +14 -0
- package/dist/data/test/function/reverse_int__loop_exit_4.mcfunction +4 -0
- package/dist/data/test/function/reverse_int__loop_header_2.mcfunction +4 -0
- package/dist/data/test/function/reverse_int__merge_1.mcfunction +2 -0
- package/dist/data/test/function/reverse_int__merge_6.mcfunction +1 -0
- package/dist/data/test/function/reverse_int__then_0.mcfunction +5 -0
- package/dist/data/test/function/reverse_int__then_5.mcfunction +3 -0
- package/dist/data/test/function/rgb_b.mcfunction +5 -0
- package/dist/data/test/function/rgb_g.mcfunction +8 -0
- package/dist/data/test/function/rgb_lerp.mcfunction +71 -0
- package/dist/data/test/function/rgb_pack.mcfunction +14 -0
- package/dist/data/test/function/rgb_r.mcfunction +8 -0
- package/dist/data/test/function/rgb_to_h.mcfunction +7 -0
- package/dist/data/test/function/rgb_to_h__merge_1.mcfunction +3 -0
- package/dist/data/test/function/rgb_to_h__merge_12.mcfunction +3 -0
- package/dist/data/test/function/rgb_to_h__merge_14.mcfunction +1 -0
- package/dist/data/test/function/rgb_to_h__merge_17.mcfunction +9 -0
- package/dist/data/test/function/rgb_to_h__merge_3.mcfunction +4 -0
- package/dist/data/test/function/rgb_to_h__merge_5.mcfunction +3 -0
- package/dist/data/test/function/rgb_to_h__merge_7.mcfunction +7 -0
- package/dist/data/test/function/rgb_to_h__merge_9.mcfunction +3 -0
- package/dist/data/test/function/rgb_to_h__then_0.mcfunction +2 -0
- package/dist/data/test/function/rgb_to_h__then_11.mcfunction +11 -0
- package/dist/data/test/function/rgb_to_h__then_13.mcfunction +4 -0
- package/dist/data/test/function/rgb_to_h__then_16.mcfunction +9 -0
- package/dist/data/test/function/rgb_to_h__then_2.mcfunction +2 -0
- package/dist/data/test/function/rgb_to_h__then_4.mcfunction +2 -0
- package/dist/data/test/function/rgb_to_h__then_6.mcfunction +2 -0
- package/dist/data/test/function/rgb_to_h__then_8.mcfunction +2 -0
- package/dist/data/test/function/rgb_to_l.mcfunction +7 -0
- package/dist/data/test/function/rgb_to_l__merge_1.mcfunction +3 -0
- package/dist/data/test/function/rgb_to_l__merge_3.mcfunction +4 -0
- package/dist/data/test/function/rgb_to_l__merge_5.mcfunction +3 -0
- package/dist/data/test/function/rgb_to_l__merge_7.mcfunction +9 -0
- package/dist/data/test/function/rgb_to_l__then_0.mcfunction +2 -0
- package/dist/data/test/function/rgb_to_l__then_2.mcfunction +2 -0
- package/dist/data/test/function/rgb_to_l__then_4.mcfunction +2 -0
- package/dist/data/test/function/rgb_to_l__then_6.mcfunction +2 -0
- package/dist/data/test/function/rgb_to_s.mcfunction +7 -0
- package/dist/data/test/function/rgb_to_s__merge_1.mcfunction +3 -0
- package/dist/data/test/function/rgb_to_s__merge_12.mcfunction +10 -0
- package/dist/data/test/function/rgb_to_s__merge_3.mcfunction +4 -0
- package/dist/data/test/function/rgb_to_s__merge_5.mcfunction +3 -0
- package/dist/data/test/function/rgb_to_s__merge_7.mcfunction +7 -0
- package/dist/data/test/function/rgb_to_s__merge_9.mcfunction +12 -0
- package/dist/data/test/function/rgb_to_s__then_0.mcfunction +2 -0
- package/dist/data/test/function/rgb_to_s__then_11.mcfunction +8 -0
- package/dist/data/test/function/rgb_to_s__then_2.mcfunction +2 -0
- package/dist/data/test/function/rgb_to_s__then_4.mcfunction +2 -0
- package/dist/data/test/function/rgb_to_s__then_6.mcfunction +2 -0
- package/dist/data/test/function/rgb_to_s__then_8.mcfunction +2 -0
- package/dist/data/test/function/riemann_left.mcfunction +6 -0
- package/dist/data/test/function/riemann_left__loop_body_1.mcfunction +7 -0
- package/dist/data/test/function/riemann_left__loop_exit_2.mcfunction +6 -0
- package/dist/data/test/function/riemann_left__loop_header_0.mcfunction +5 -0
- package/dist/data/test/function/riemann_mid.mcfunction +6 -0
- package/dist/data/test/function/riemann_mid__loop_body_1.mcfunction +7 -0
- package/dist/data/test/function/riemann_mid__loop_exit_2.mcfunction +6 -0
- package/dist/data/test/function/riemann_mid__loop_header_0.mcfunction +3 -0
- package/dist/data/test/function/riemann_right.mcfunction +6 -0
- package/dist/data/test/function/riemann_right__loop_body_1.mcfunction +7 -0
- package/dist/data/test/function/riemann_right__loop_exit_2.mcfunction +6 -0
- package/dist/data/test/function/riemann_right__loop_header_0.mcfunction +3 -0
- package/dist/data/test/function/rotate2d_x.mcfunction +20 -0
- package/dist/data/test/function/rotate2d_y.mcfunction +20 -0
- package/dist/data/test/function/rotate_x_y.mcfunction +28 -0
- package/dist/data/test/function/rotate_x_z.mcfunction +28 -0
- package/dist/data/test/function/rotate_y_x.mcfunction +28 -0
- package/dist/data/test/function/rotate_y_z.mcfunction +30 -0
- package/dist/data/test/function/running_m2.mcfunction +16 -0
- package/dist/data/test/function/running_mean.mcfunction +7 -0
- package/dist/data/test/function/running_mean__merge_1.mcfunction +13 -0
- package/dist/data/test/function/running_mean__then_0.mcfunction +1 -0
- package/dist/data/test/function/scale2d_x.mcfunction +8 -0
- package/dist/data/test/function/scale2d_y.mcfunction +8 -0
- package/dist/data/test/function/scale3d_x.mcfunction +8 -0
- package/dist/data/test/function/scale3d_y.mcfunction +8 -0
- package/dist/data/test/function/scale3d_z.mcfunction +8 -0
- package/dist/data/test/function/scale_x.mcfunction +8 -0
- package/dist/data/test/function/scale_y.mcfunction +8 -0
- package/dist/data/test/function/scale_z.mcfunction +8 -0
- package/dist/data/test/function/second_deriv.mcfunction +8 -0
- package/dist/data/test/function/second_deriv__merge_1.mcfunction +14 -0
- package/dist/data/test/function/second_deriv__then_0.mcfunction +2 -0
- package/dist/data/test/function/seconds_to_ticks.mcfunction +5 -0
- package/dist/data/test/function/set_day.mcfunction +1 -0
- package/dist/data/test/function/set_easy.mcfunction +1 -0
- package/dist/data/test/function/set_hard.mcfunction +1 -0
- package/dist/data/test/function/set_midnight.mcfunction +1 -0
- package/dist/data/test/function/set_night.mcfunction +1 -0
- package/dist/data/test/function/set_noon.mcfunction +1 -0
- package/dist/data/test/function/set_normal.mcfunction +1 -0
- package/dist/data/test/function/set_peaceful.mcfunction +1 -0
- package/dist/data/test/function/setup_four_teams.mcfunction +4 -0
- package/dist/data/test/function/setup_two_teams.mcfunction +2 -0
- package/dist/data/test/function/show_bar.mcfunction +4 -0
- package/dist/data/test/function/showcase_load.mcfunction +4 -0
- package/dist/data/test/function/showcase_tick.mcfunction +1 -0
- package/dist/data/test/function/sign.mcfunction +5 -0
- package/dist/data/test/function/sign__merge_1.mcfunction +4 -0
- package/dist/data/test/function/sign__merge_4.mcfunction +2 -0
- package/dist/data/test/function/sign__then_0.mcfunction +2 -0
- package/dist/data/test/function/sign__then_3.mcfunction +2 -0
- package/dist/data/test/function/simpson_step.mcfunction +16 -0
- package/dist/data/test/function/sin_fixed.mcfunction +9 -0
- package/dist/data/test/function/sin_fixed__merge_1.mcfunction +4 -0
- package/dist/data/test/function/sin_fixed__merge_3.mcfunction +4 -0
- package/dist/data/test/function/sin_fixed__merge_6.mcfunction +4 -0
- package/dist/data/test/function/sin_fixed__merge_9.mcfunction +10 -0
- package/dist/data/test/function/sin_fixed__then_0.mcfunction +4 -0
- package/dist/data/test/function/sin_fixed__then_2.mcfunction +6 -0
- package/dist/data/test/function/sin_fixed__then_5.mcfunction +8 -0
- package/dist/data/test/function/sin_fixed__then_8.mcfunction +10 -0
- package/dist/data/test/function/sin_hp.mcfunction +8 -0
- package/dist/data/test/function/slow_fall.mcfunction +1 -0
- package/dist/data/test/function/smoke.mcfunction +1 -0
- package/dist/data/test/function/smootherstep.mcfunction +10 -0
- package/dist/data/test/function/smootherstep__merge_1.mcfunction +12 -0
- package/dist/data/test/function/smootherstep__merge_4.mcfunction +4 -0
- package/dist/data/test/function/smootherstep__merge_6.mcfunction +27 -0
- package/dist/data/test/function/smootherstep__then_0.mcfunction +2 -0
- package/dist/data/test/function/smootherstep__then_3.mcfunction +2 -0
- package/dist/data/test/function/smootherstep__then_5.mcfunction +2 -0
- package/dist/data/test/function/smoothstep.mcfunction +10 -0
- package/dist/data/test/function/smoothstep__merge_1.mcfunction +12 -0
- package/dist/data/test/function/smoothstep__merge_4.mcfunction +4 -0
- package/dist/data/test/function/smoothstep__merge_6.mcfunction +15 -0
- package/dist/data/test/function/smoothstep__then_0.mcfunction +2 -0
- package/dist/data/test/function/smoothstep__then_3.mcfunction +2 -0
- package/dist/data/test/function/smoothstep__then_5.mcfunction +2 -0
- package/dist/data/test/function/solve2x2_x.mcfunction +17 -0
- package/dist/data/test/function/solve2x2_x__merge_1.mcfunction +12 -0
- package/dist/data/test/function/solve2x2_x__then_0.mcfunction +2 -0
- package/dist/data/test/function/solve2x2_y.mcfunction +17 -0
- package/dist/data/test/function/solve2x2_y__merge_1.mcfunction +12 -0
- package/dist/data/test/function/solve2x2_y__then_0.mcfunction +2 -0
- package/dist/data/test/function/sort2_max.mcfunction +5 -0
- package/dist/data/test/function/sort2_max__merge_1.mcfunction +1 -0
- package/dist/data/test/function/sort2_max__then_0.mcfunction +1 -0
- package/dist/data/test/function/sort2_min.mcfunction +5 -0
- package/dist/data/test/function/sort2_min__merge_1.mcfunction +1 -0
- package/dist/data/test/function/sort2_min__then_0.mcfunction +1 -0
- package/dist/data/test/function/sort3.mcfunction +10 -0
- package/dist/data/test/function/sort3__merge_1.mcfunction +3 -0
- package/dist/data/test/function/sort3__merge_10.mcfunction +1 -0
- package/dist/data/test/function/sort3__merge_3.mcfunction +3 -0
- package/dist/data/test/function/sort3__merge_5.mcfunction +4 -0
- package/dist/data/test/function/sort3__merge_7.mcfunction +4 -0
- package/dist/data/test/function/sort3__then_0.mcfunction +4 -0
- package/dist/data/test/function/sort3__then_2.mcfunction +4 -0
- package/dist/data/test/function/sort3__then_4.mcfunction +4 -0
- package/dist/data/test/function/sort3__then_6.mcfunction +1 -0
- package/dist/data/test/function/sort3__then_9.mcfunction +1 -0
- package/dist/data/test/function/sort4.mcfunction +12 -0
- package/dist/data/test/function/sort4__merge_1.mcfunction +3 -0
- package/dist/data/test/function/sort4__merge_11.mcfunction +4 -0
- package/dist/data/test/function/sort4__merge_14.mcfunction +4 -0
- package/dist/data/test/function/sort4__merge_17.mcfunction +1 -0
- package/dist/data/test/function/sort4__merge_3.mcfunction +3 -0
- package/dist/data/test/function/sort4__merge_5.mcfunction +3 -0
- package/dist/data/test/function/sort4__merge_7.mcfunction +3 -0
- package/dist/data/test/function/sort4__merge_9.mcfunction +4 -0
- package/dist/data/test/function/sort4__then_0.mcfunction +4 -0
- package/dist/data/test/function/sort4__then_10.mcfunction +1 -0
- package/dist/data/test/function/sort4__then_13.mcfunction +1 -0
- package/dist/data/test/function/sort4__then_16.mcfunction +1 -0
- package/dist/data/test/function/sort4__then_2.mcfunction +4 -0
- package/dist/data/test/function/sort4__then_4.mcfunction +4 -0
- package/dist/data/test/function/sort4__then_6.mcfunction +4 -0
- package/dist/data/test/function/sort4__then_8.mcfunction +4 -0
- package/dist/data/test/function/sort5.mcfunction +14 -0
- package/dist/data/test/function/sort5__merge_1.mcfunction +3 -0
- package/dist/data/test/function/sort5__merge_11.mcfunction +3 -0
- package/dist/data/test/function/sort5__merge_13.mcfunction +3 -0
- package/dist/data/test/function/sort5__merge_15.mcfunction +3 -0
- package/dist/data/test/function/sort5__merge_17.mcfunction +4 -0
- package/dist/data/test/function/sort5__merge_19.mcfunction +4 -0
- package/dist/data/test/function/sort5__merge_22.mcfunction +4 -0
- package/dist/data/test/function/sort5__merge_25.mcfunction +4 -0
- package/dist/data/test/function/sort5__merge_28.mcfunction +1 -0
- package/dist/data/test/function/sort5__merge_3.mcfunction +3 -0
- package/dist/data/test/function/sort5__merge_5.mcfunction +3 -0
- package/dist/data/test/function/sort5__merge_7.mcfunction +3 -0
- package/dist/data/test/function/sort5__merge_9.mcfunction +3 -0
- package/dist/data/test/function/sort5__then_0.mcfunction +4 -0
- package/dist/data/test/function/sort5__then_10.mcfunction +4 -0
- package/dist/data/test/function/sort5__then_12.mcfunction +4 -0
- package/dist/data/test/function/sort5__then_14.mcfunction +4 -0
- package/dist/data/test/function/sort5__then_16.mcfunction +4 -0
- package/dist/data/test/function/sort5__then_18.mcfunction +1 -0
- package/dist/data/test/function/sort5__then_2.mcfunction +4 -0
- package/dist/data/test/function/sort5__then_21.mcfunction +1 -0
- package/dist/data/test/function/sort5__then_24.mcfunction +1 -0
- package/dist/data/test/function/sort5__then_27.mcfunction +1 -0
- package/dist/data/test/function/sort5__then_4.mcfunction +4 -0
- package/dist/data/test/function/sort5__then_6.mcfunction +4 -0
- package/dist/data/test/function/sort5__then_8.mcfunction +4 -0
- package/dist/data/test/function/sort_merge.mcfunction +10 -0
- package/dist/data/test/function/sort_merge__else_11.mcfunction +7 -0
- package/dist/data/test/function/sort_merge__else_14.mcfunction +2 -0
- package/dist/data/test/function/sort_merge__else_5.mcfunction +3 -0
- package/dist/data/test/function/sort_merge__else_8.mcfunction +7 -0
- package/dist/data/test/function/sort_merge__loop_body_1.mcfunction +3 -0
- package/dist/data/test/function/sort_merge__loop_exit_2.mcfunction +1 -0
- package/dist/data/test/function/sort_merge__loop_header_0.mcfunction +4 -0
- package/dist/data/test/function/sort_merge__merge_10.mcfunction +1 -0
- package/dist/data/test/function/sort_merge__merge_13.mcfunction +1 -0
- package/dist/data/test/function/sort_merge__merge_4.mcfunction +1 -0
- package/dist/data/test/function/sort_merge__merge_7.mcfunction +1 -0
- package/dist/data/test/function/sort_merge__then_12.mcfunction +7 -0
- package/dist/data/test/function/sort_merge__then_3.mcfunction +3 -0
- package/dist/data/test/function/sort_merge__then_6.mcfunction +3 -0
- package/dist/data/test/function/sort_merge__then_9.mcfunction +7 -0
- package/dist/data/test/function/sparkles_at.mcfunction +1 -0
- package/dist/data/test/function/speed.mcfunction +1 -0
- package/dist/data/test/function/sphere_contains.mcfunction +28 -0
- package/dist/data/test/function/sphere_contains__merge_1.mcfunction +2 -0
- package/dist/data/test/function/sphere_contains__then_0.mcfunction +2 -0
- package/dist/data/test/function/spiral_ring.mcfunction +5 -0
- package/dist/data/test/function/spiral_ring__merge_1.mcfunction +13 -0
- package/dist/data/test/function/spiral_ring__then_0.mcfunction +2 -0
- package/dist/data/test/function/spread_players.mcfunction +1 -0
- package/dist/data/test/function/spring_force.mcfunction +11 -0
- package/dist/data/test/function/spring_update_v.mcfunction +18 -0
- package/dist/data/test/function/sqrt_fixed.mcfunction +8 -0
- package/dist/data/test/function/sqrt_fx.mcfunction +8 -0
- package/dist/data/test/function/sqrt_hp.mcfunction +17 -0
- package/dist/data/test/function/sqrt_hp__merge_1.mcfunction +21 -0
- package/dist/data/test/function/sqrt_hp__then_0.mcfunction +2 -0
- package/dist/data/test/function/start.mcfunction +8 -0
- package/dist/data/test/function/std_dev_approx.mcfunction +5 -0
- package/dist/data/test/function/std_dev_approx__merge_1.mcfunction +13 -0
- package/dist/data/test/function/std_dev_approx__then_0.mcfunction +2 -0
- package/dist/data/test/function/stop.mcfunction +2 -0
- package/dist/data/test/function/stop__foreach_t0.mcfunction +1 -0
- package/dist/data/test/function/str_len.mcfunction +2 -0
- package/dist/data/test/function/strength.mcfunction +1 -0
- package/dist/data/test/function/sub2d_x.mcfunction +5 -0
- package/dist/data/test/function/sub2d_y.mcfunction +5 -0
- package/dist/data/test/function/sub3d_x.mcfunction +5 -0
- package/dist/data/test/function/sub3d_y.mcfunction +5 -0
- package/dist/data/test/function/sub3d_z.mcfunction +5 -0
- package/dist/data/test/function/t.mcfunction +3 -0
- package/dist/data/test/function/teleport_to.mcfunction +9 -0
- package/dist/data/test/function/teleport_to_entity.mcfunction +5 -0
- package/dist/data/test/function/terrain_height.mcfunction +24 -0
- package/dist/data/test/function/test.mcfunction +5 -0
- package/dist/data/test/function/test__loop_body_1.mcfunction +9 -0
- package/dist/data/test/function/test__loop_exit_2.mcfunction +1 -0
- package/dist/data/test/function/test__loop_header_0.mcfunction +3 -0
- package/dist/data/test/function/tick_to_ms.mcfunction +5 -0
- package/dist/data/test/function/tick_to_seconds.mcfunction +5 -0
- package/dist/data/test/function/tile_center.mcfunction +10 -0
- package/dist/data/test/function/tile_of.mcfunction +6 -0
- package/dist/data/test/function/tile_of__merge_1.mcfunction +7 -0
- package/dist/data/test/function/tile_of__then_0.mcfunction +3 -0
- package/dist/data/test/function/timer/done.mcfunction +4 -0
- package/dist/data/test/function/timer/elapsed.mcfunction +2 -0
- package/dist/data/test/function/timer/new.mcfunction +5 -0
- package/dist/data/test/function/timer/pause.mcfunction +1 -0
- package/dist/data/test/function/timer/remaining.mcfunction +9 -0
- package/dist/data/test/function/timer/remaining__merge_1.mcfunction +2 -0
- package/dist/data/test/function/timer/remaining__then_0.mcfunction +1 -0
- package/dist/data/test/function/timer/reset.mcfunction +1 -0
- package/dist/data/test/function/timer/start.mcfunction +1 -0
- package/dist/data/test/function/timer/tick.mcfunction +8 -0
- package/dist/data/test/function/timer/tick__merge_1.mcfunction +1 -0
- package/dist/data/test/function/timer/tick__merge_3.mcfunction +1 -0
- package/dist/data/test/function/timer/tick__then_0.mcfunction +3 -0
- package/dist/data/test/function/timer/tick__then_2.mcfunction +4 -0
- package/dist/data/test/function/totem_at.mcfunction +1 -0
- package/dist/data/test/function/trapezoid_step.mcfunction +11 -0
- package/dist/data/test/function/uniform_frac.mcfunction +11 -0
- package/dist/data/test/function/uniform_frac__merge_1.mcfunction +4 -0
- package/dist/data/test/function/uniform_frac__then_0.mcfunction +4 -0
- package/dist/data/test/function/uniform_int.mcfunction +13 -0
- package/dist/data/test/function/uniform_int__merge_1.mcfunction +9 -0
- package/dist/data/test/function/uniform_int__then_0.mcfunction +4 -0
- package/dist/data/test/function/uniform_scale.mcfunction +8 -0
- package/dist/data/test/function/update_bar.mcfunction +5 -0
- package/dist/data/test/function/update_bar_color.mcfunction +6 -0
- package/dist/data/test/function/update_bar_color__else_2.mcfunction +4 -0
- package/dist/data/test/function/update_bar_color__else_5.mcfunction +4 -0
- package/dist/data/test/function/update_bar_color__merge_1.mcfunction +1 -0
- package/dist/data/test/function/update_bar_color__merge_4.mcfunction +1 -0
- package/dist/data/test/function/update_bar_color__then_0.mcfunction +4 -0
- package/dist/data/test/function/update_bar_color__then_3.mcfunction +4 -0
- package/dist/data/test/function/update_pos.mcfunction +5 -0
- package/dist/data/test/function/value_noise_1d.mcfunction +13 -0
- package/dist/data/test/function/value_noise_1d__merge_1.mcfunction +39 -0
- package/dist/data/test/function/value_noise_1d__then_0.mcfunction +7 -0
- package/dist/data/test/function/value_noise_2d.mcfunction +14 -0
- package/dist/data/test/function/value_noise_2d__merge_1.mcfunction +12 -0
- package/dist/data/test/function/value_noise_2d__merge_3.mcfunction +98 -0
- package/dist/data/test/function/value_noise_2d__then_0.mcfunction +7 -0
- package/dist/data/test/function/value_noise_2d__then_2.mcfunction +7 -0
- package/dist/data/test/function/variance_from_m2.mcfunction +6 -0
- package/dist/data/test/function/variance_from_m2__merge_1.mcfunction +5 -0
- package/dist/data/test/function/variance_from_m2__then_0.mcfunction +2 -0
- package/dist/data/test/function/water_drag_fx.mcfunction +2 -0
- package/dist/data/test/function/weapon_damage.mcfunction +5 -0
- package/dist/data/test/function/weather_clear.mcfunction +1 -0
- package/dist/data/test/function/weather_rain.mcfunction +1 -0
- package/dist/data/test/function/weather_thunder.mcfunction +1 -0
- package/dist/data/test/function/weighted2.mcfunction +16 -0
- package/dist/data/test/function/weighted2__merge_1.mcfunction +5 -0
- package/dist/data/test/function/weighted2__merge_3.mcfunction +2 -0
- package/dist/data/test/function/weighted2__then_0.mcfunction +4 -0
- package/dist/data/test/function/weighted2__then_2.mcfunction +2 -0
- package/dist/data/test/function/weighted3.mcfunction +19 -0
- package/dist/data/test/function/weighted3__merge_1.mcfunction +6 -0
- package/dist/data/test/function/weighted3__merge_3.mcfunction +5 -0
- package/dist/data/test/function/weighted3__merge_6.mcfunction +2 -0
- package/dist/data/test/function/weighted3__then_0.mcfunction +4 -0
- package/dist/data/test/function/weighted3__then_2.mcfunction +2 -0
- package/dist/data/test/function/weighted3__then_5.mcfunction +2 -0
- package/dist/data/test_dmul/function/__double_mul_macro.mcfunction +1 -0
- package/dist/data/test_dmul/function/double_mul_fixed.mcfunction +6 -0
- package/dist/data/test_dmul/function/load.mcfunction +1 -0
- package/dist/data/test_double_fn/function/double_test.mcfunction +2 -0
- package/dist/data/test_double_fn/function/load.mcfunction +1 -0
- package/dist/data/test_double_fn2/function/double_test.mcfunction +2 -0
- package/dist/data/test_double_fn2/function/load.mcfunction +1 -0
- package/dist/data/test_double_pass/function/caller_fn.mcfunction +4 -0
- package/dist/data/test_double_pass/function/consume_double.mcfunction +2 -0
- package/dist/data/test_double_pass/function/load.mcfunction +1 -0
- package/dist/data/test_macro/function/load.mcfunction +1 -0
- package/dist/data/test_macro/function/macro_helper.mcfunction +1 -0
- package/dist/data/test_macro3/function/__dmul_macro.mcfunction +1 -0
- package/dist/data/test_macro3/function/double_mul_test.mcfunction +7 -0
- package/dist/data/test_macro3/function/load.mcfunction +1 -0
- package/dist/data/test_ret_double/function/load.mcfunction +1 -0
- package/dist/data/test_ret_double/function/make_double.mcfunction +3 -0
- package/dist/data/test_ret_double/function/use_it.mcfunction +3 -0
- package/dist/data/turret/function/__load.mcfunction +5 -0
- package/dist/data/turret/function/__tick.mcfunction +4 -0
- package/dist/data/turret/function/__trigger_deploy_turret_dispatch.mcfunction +4 -0
- package/dist/data/turret/function/deploy_turret.mcfunction +8 -0
- package/dist/data/turret/function/turret_tick/at_1.mcfunction +2 -0
- package/dist/data/turret/function/turret_tick/foreach_0.mcfunction +2 -0
- package/dist/data/turret/function/turret_tick/foreach_2.mcfunction +2 -0
- package/dist/data/turret/function/turret_tick/tick_body.mcfunction +3 -0
- package/dist/data/turret/function/turret_tick/tick_skip.mcfunction +1 -0
- package/dist/data/turret/function/turret_tick.mcfunction +5 -0
- package/dist/diagnostics/index.d.ts +44 -0
- package/dist/diagnostics/index.js +140 -0
- package/dist/events/types.d.ts +35 -0
- package/dist/events/types.js +59 -0
- package/dist/formatter/index.d.ts +1 -0
- package/dist/formatter/index.js +26 -0
- package/dist/gcd2.map.json +15 -0
- package/dist/gcd3.map.json +17 -0
- package/dist/gcd_test.map.json +15 -0
- package/dist/index.d.ts +62 -0
- package/dist/ir/builder.d.ts +33 -0
- package/dist/ir/builder.js +99 -0
- package/dist/ir/types.d.ts +132 -0
- package/dist/ir/types.js +15 -0
- package/dist/isqrttest.map.json +15 -0
- package/dist/lexer/index.d.ts +37 -0
- package/dist/lexer/index.js +569 -0
- package/dist/lowering/index.d.ts +188 -0
- package/dist/lowering/index.js +3405 -0
- package/dist/mathtest.map.json +6 -0
- package/dist/mc-test/client.d.ts +128 -0
- package/dist/mc-test/client.js +174 -0
- package/dist/mc-test/runner.d.ts +28 -0
- package/dist/mc-test/runner.js +150 -0
- package/dist/mc-test/setup.d.ts +11 -0
- package/dist/mc-test/setup.js +98 -0
- package/dist/mc-validator/index.d.ts +17 -0
- package/dist/mc-validator/index.js +322 -0
- package/dist/mypack.map.json +27 -0
- package/dist/nbt/index.d.ts +86 -0
- package/dist/nbt/index.js +250 -0
- package/dist/optimizer/commands.d.ts +38 -0
- package/dist/optimizer/commands.js +451 -0
- package/dist/optimizer/dce.d.ts +34 -0
- package/dist/optimizer/dce.js +639 -0
- package/dist/optimizer/passes.d.ts +34 -0
- package/dist/optimizer/passes.js +243 -0
- package/dist/optimizer/structure.d.ts +9 -0
- package/dist/optimizer/structure.js +356 -0
- package/dist/pack.mcmeta +6 -0
- package/dist/parser/index.d.ts +93 -0
- package/dist/parser/index.js +1687 -0
- package/dist/repl.d.ts +16 -0
- package/dist/repl.js +165 -0
- package/dist/reqtest.map.json +4 -0
- package/dist/reqtest2.map.json +4 -0
- package/dist/runtime/index.d.ts +107 -0
- package/dist/runtime/index.js +1409 -0
- package/dist/runtime.map.json +7 -0
- package/dist/src/__tests__/array-dynamic.test.js +42 -0
- package/dist/src/__tests__/budget.test.js +4 -0
- package/dist/src/__tests__/builtins.test.d.ts +1 -0
- package/dist/src/__tests__/builtins.test.js +55 -0
- package/dist/src/__tests__/cache/cache-behavior.test.d.ts +10 -0
- package/dist/src/__tests__/cache/cache-behavior.test.js +425 -0
- package/dist/src/__tests__/cache-extra.test.d.ts +5 -0
- package/dist/src/__tests__/cache-extra.test.js +211 -0
- package/dist/src/__tests__/cli-init.test.d.ts +1 -0
- package/dist/src/__tests__/cli-init.test.js +97 -0
- package/dist/src/__tests__/cli-publish.test.d.ts +9 -0
- package/dist/src/__tests__/cli-publish.test.js +189 -0
- package/dist/src/__tests__/cli.test.js +76 -0
- package/dist/src/__tests__/codegen.test.d.ts +1 -0
- package/dist/src/__tests__/codegen.test.js +152 -0
- package/dist/src/__tests__/compile-preprocess.test.d.ts +11 -0
- package/dist/src/__tests__/compile-preprocess.test.js +328 -0
- package/dist/src/__tests__/compiler/break-stmt.test.d.ts +1 -0
- package/dist/src/__tests__/compiler/break-stmt.test.js +58 -0
- package/dist/src/__tests__/compiler/const-decl.test.d.ts +1 -0
- package/dist/src/__tests__/compiler/const-decl.test.js +123 -0
- package/dist/src/__tests__/compiler/continue-stmt.test.d.ts +1 -0
- package/dist/src/__tests__/compiler/continue-stmt.test.js +67 -0
- package/dist/src/__tests__/compiler/coroutine-extended.test.d.ts +17 -0
- package/dist/src/__tests__/compiler/coroutine-extended.test.js +565 -0
- package/dist/src/__tests__/compiler/deprecated.test.d.ts +4 -0
- package/dist/src/__tests__/compiler/deprecated.test.js +285 -0
- package/dist/src/__tests__/compiler/do-while.test.d.ts +1 -0
- package/dist/src/__tests__/compiler/do-while.test.js +120 -0
- package/dist/src/__tests__/compiler/enum-payload.test.d.ts +9 -0
- package/dist/src/__tests__/compiler/enum-payload.test.js +272 -0
- package/dist/src/__tests__/compiler/interface.test.d.ts +10 -0
- package/dist/src/__tests__/compiler/interface.test.js +258 -0
- package/dist/src/__tests__/compiler/labeled-loops.test.d.ts +1 -0
- package/dist/src/__tests__/compiler/labeled-loops.test.js +263 -0
- package/dist/src/__tests__/compiler/match-string.test.d.ts +1 -0
- package/dist/src/__tests__/compiler/match-string.test.js +43 -0
- package/dist/src/__tests__/compiler/memoize.test.d.ts +1 -0
- package/dist/src/__tests__/compiler/memoize.test.js +113 -0
- package/dist/src/__tests__/compiler/method-chain.test.d.ts +5 -0
- package/dist/src/__tests__/compiler/method-chain.test.js +115 -0
- package/dist/src/__tests__/compiler/module-import.test.d.ts +12 -0
- package/dist/src/__tests__/compiler/module-import.test.js +261 -0
- package/dist/src/__tests__/compiler/option-extensions.test.d.ts +6 -0
- package/dist/src/__tests__/compiler/option-extensions.test.js +191 -0
- package/dist/src/__tests__/compiler/profile-decorator.test.d.ts +1 -0
- package/dist/src/__tests__/compiler/profile-decorator.test.js +69 -0
- package/dist/src/__tests__/compiler/string-advanced.test.d.ts +7 -0
- package/dist/src/__tests__/compiler/string-advanced.test.js +281 -0
- package/dist/src/__tests__/compiler/struct-extends.test.d.ts +1 -0
- package/dist/src/__tests__/compiler/struct-extends.test.js +95 -0
- package/dist/src/__tests__/compiler/throttle-retry.test.d.ts +1 -0
- package/dist/src/__tests__/compiler/throttle-retry.test.js +166 -0
- package/dist/src/__tests__/compiler/tuple-type.test.d.ts +10 -0
- package/dist/src/__tests__/compiler/tuple-type.test.js +229 -0
- package/dist/src/__tests__/compiler/watch-decorator.test.d.ts +1 -0
- package/dist/src/__tests__/compiler/watch-decorator.test.js +65 -0
- package/dist/src/__tests__/config/project-config.test.d.ts +1 -0
- package/dist/src/__tests__/config/project-config.test.js +199 -0
- package/dist/src/__tests__/config-decorator.test.d.ts +8 -0
- package/dist/src/__tests__/config-decorator.test.js +142 -0
- package/dist/src/__tests__/debug-compile.test.d.ts +1 -0
- package/dist/src/__tests__/debug-compile.test.js +24 -0
- package/dist/src/__tests__/debug-compile2.test.d.ts +1 -0
- package/dist/src/__tests__/debug-compile2.test.js +19 -0
- package/dist/src/__tests__/debug-compile3.test.d.ts +1 -0
- package/dist/src/__tests__/debug-compile3.test.js +22 -0
- package/dist/src/__tests__/debug-wm.test.d.ts +1 -0
- package/dist/src/__tests__/debug-wm.test.js +50 -0
- package/dist/src/__tests__/debug_gen.d.ts +1 -0
- package/dist/src/__tests__/debug_gen.js +24 -0
- package/dist/src/__tests__/debug_scoreboard.test.d.ts +1 -0
- package/dist/src/__tests__/debug_scoreboard.test.js +19 -0
- package/dist/src/__tests__/debug_scoreboard2.test.d.ts +1 -0
- package/dist/src/__tests__/debug_scoreboard2.test.js +27 -0
- package/dist/src/__tests__/debug_scoreboard3.test.d.ts +1 -0
- package/dist/src/__tests__/debug_scoreboard3.test.js +37 -0
- package/dist/src/__tests__/diagnostics-extra.test.d.ts +6 -0
- package/dist/src/__tests__/diagnostics-extra.test.js +132 -0
- package/dist/src/__tests__/e2e/ecs-stdlib.test.d.ts +7 -0
- package/dist/src/__tests__/e2e/ecs-stdlib.test.js +328 -0
- package/dist/src/__tests__/e2e/events-stdlib.test.d.ts +1 -0
- package/dist/src/__tests__/e2e/events-stdlib.test.js +81 -0
- package/dist/src/__tests__/e2e/fft-stdlib.test.d.ts +13 -0
- package/dist/src/__tests__/e2e/fft-stdlib.test.js +288 -0
- package/dist/src/__tests__/e2e/ode-stdlib.test.d.ts +1 -0
- package/dist/src/__tests__/e2e/ode-stdlib.test.js +91 -0
- package/dist/src/__tests__/e2e/stdlib-e2e.test.js +205 -0
- package/dist/src/__tests__/e2e.test.d.ts +6 -0
- package/dist/src/__tests__/e2e.test.js +1789 -0
- package/dist/src/__tests__/emit/compile-branches.test.d.ts +1 -0
- package/dist/src/__tests__/emit/compile-branches.test.js +123 -0
- package/dist/src/__tests__/emit/compile-coverage.test.d.ts +25 -0
- package/dist/src/__tests__/emit/compile-coverage.test.js +617 -0
- package/dist/src/__tests__/emit/compile-extra-branches.test.d.ts +12 -0
- package/dist/src/__tests__/emit/compile-extra-branches.test.js +225 -0
- package/dist/src/__tests__/emit/compile-mocked-branches.test.d.ts +0 -0
- package/dist/src/__tests__/emit/compile-mocked-branches.test.js +238 -0
- package/dist/src/__tests__/emit/compile.test.d.ts +1 -0
- package/dist/src/__tests__/emit/compile.test.js +95 -0
- package/dist/src/__tests__/emit/execute-chain.test.d.ts +10 -0
- package/dist/src/__tests__/emit/execute-chain.test.js +94 -0
- package/dist/src/__tests__/emit/index.test.d.ts +1 -0
- package/dist/src/__tests__/emit/index.test.js +181 -0
- package/dist/src/__tests__/emit/modules-branches.test.d.ts +1 -0
- package/dist/src/__tests__/emit/modules-branches.test.js +88 -0
- package/dist/src/__tests__/emit/modules-coverage.test.d.ts +15 -0
- package/dist/src/__tests__/emit/modules-coverage.test.js +221 -0
- package/dist/src/__tests__/emit/modules-errors.test.d.ts +12 -0
- package/dist/src/__tests__/emit/modules-errors.test.js +169 -0
- package/dist/src/__tests__/emit/modules-extra.test.d.ts +1 -0
- package/dist/src/__tests__/emit/modules-extra.test.js +77 -0
- package/dist/src/__tests__/emit/modules-rewrite.test.d.ts +17 -0
- package/dist/src/__tests__/emit/modules-rewrite.test.js +204 -0
- package/dist/src/__tests__/emit/source-map.test.d.ts +1 -0
- package/dist/src/__tests__/emit/source-map.test.js +167 -0
- package/dist/src/__tests__/entity-types.test.d.ts +1 -0
- package/dist/src/__tests__/entity-types.test.js +203 -0
- package/dist/src/__tests__/enum.test.js +5 -2
- package/dist/src/__tests__/error-recovery.test.d.ts +7 -0
- package/dist/src/__tests__/error-recovery.test.js +217 -0
- package/dist/src/__tests__/events-types-extra.test.d.ts +10 -0
- package/dist/src/__tests__/events-types-extra.test.js +91 -0
- package/dist/src/__tests__/events-types.test.d.ts +4 -0
- package/dist/src/__tests__/events-types.test.js +56 -0
- package/dist/src/__tests__/for-each.test.d.ts +1 -0
- package/dist/src/__tests__/for-each.test.js +125 -0
- package/dist/src/__tests__/formatter.test.js +13 -5
- package/dist/src/__tests__/hir/lower-extra.test.d.ts +9 -0
- package/dist/src/__tests__/hir/lower-extra.test.js +140 -0
- package/dist/src/__tests__/hir/monomorphize-extra.test.d.ts +15 -0
- package/dist/src/__tests__/hir/monomorphize-extra.test.js +200 -0
- package/dist/src/__tests__/hir/monomorphize-extra2.test.d.ts +16 -0
- package/dist/src/__tests__/hir/monomorphize-extra2.test.js +316 -0
- package/dist/src/__tests__/incremental.test.js +10 -2
- package/dist/src/__tests__/index-extra.test.d.ts +10 -0
- package/dist/src/__tests__/index-extra.test.js +71 -0
- package/dist/src/__tests__/lexer.test.js +2 -2
- package/dist/src/__tests__/lint/rules.test.d.ts +5 -0
- package/dist/src/__tests__/lint/rules.test.js +208 -0
- package/dist/src/__tests__/lir/lower.test.js +29 -0
- package/dist/src/__tests__/lir/verify.test.js +30 -0
- package/dist/src/__tests__/lowering.test.d.ts +1 -0
- package/dist/src/__tests__/lowering.test.js +1015 -0
- package/dist/src/__tests__/lsp/completion.test.d.ts +7 -0
- package/dist/src/__tests__/lsp/completion.test.js +583 -0
- package/dist/src/__tests__/lsp/definition.test.d.ts +7 -0
- package/dist/src/__tests__/lsp/definition.test.js +454 -0
- package/dist/src/__tests__/lsp/diagnostics.test.d.ts +10 -0
- package/dist/src/__tests__/lsp/diagnostics.test.js +98 -0
- package/dist/src/__tests__/lsp/hover-docs.test.d.ts +10 -0
- package/dist/src/__tests__/lsp/hover-docs.test.js +210 -0
- package/dist/src/__tests__/lsp-logic.test.d.ts +1 -0
- package/dist/src/__tests__/lsp-logic.test.js +145 -0
- package/dist/src/__tests__/lsp.test.js +4 -1
- package/dist/src/__tests__/macro.test.d.ts +8 -0
- package/dist/src/__tests__/macro.test.js +306 -0
- package/dist/src/__tests__/match.test.d.ts +10 -0
- package/dist/src/__tests__/match.test.js +197 -0
- package/dist/src/__tests__/mc-integration/item-entity-events.test.d.ts +18 -0
- package/dist/src/__tests__/mc-integration/item-entity-events.test.js +291 -0
- package/dist/src/__tests__/mc-integration/stdlib-coverage-2.test.d.ts +13 -0
- package/dist/src/__tests__/mc-integration/stdlib-coverage-2.test.js +837 -0
- package/dist/src/__tests__/mc-integration/stdlib-coverage-3.test.d.ts +13 -0
- package/dist/src/__tests__/mc-integration/stdlib-coverage-3.test.js +1227 -0
- package/dist/src/__tests__/mc-integration/stdlib-coverage-4.test.d.ts +13 -0
- package/dist/src/__tests__/mc-integration/stdlib-coverage-4.test.js +1509 -0
- package/dist/src/__tests__/mc-integration/stdlib-coverage-5.test.d.ts +14 -0
- package/dist/src/__tests__/mc-integration/stdlib-coverage-5.test.js +1374 -0
- package/dist/src/__tests__/mc-integration/stdlib-coverage-6.test.d.ts +10 -0
- package/dist/src/__tests__/mc-integration/stdlib-coverage-6.test.js +759 -0
- package/dist/src/__tests__/mc-integration/stdlib-coverage-7.test.d.ts +13 -0
- package/dist/src/__tests__/mc-integration/stdlib-coverage-7.test.js +855 -0
- package/dist/src/__tests__/mc-integration/stdlib-coverage.test.d.ts +13 -0
- package/dist/src/__tests__/mc-integration/stdlib-coverage.test.js +711 -0
- package/dist/src/__tests__/mc-integration/syntax-coverage.test.d.ts +9 -0
- package/dist/src/__tests__/mc-integration/syntax-coverage.test.js +446 -0
- package/dist/src/__tests__/mc-integration.test.js +173 -7
- package/dist/src/__tests__/mc-validator-coverage.test.d.ts +13 -0
- package/dist/src/__tests__/mc-validator-coverage.test.js +296 -0
- package/dist/src/__tests__/mc-validator-extra.test.d.ts +13 -0
- package/dist/src/__tests__/mc-validator-extra.test.js +245 -0
- package/dist/src/__tests__/mir/lower-extra.test.d.ts +20 -0
- package/dist/src/__tests__/mir/lower-extra.test.js +361 -0
- package/dist/src/__tests__/mir/lower-extra2.test.d.ts +17 -0
- package/dist/src/__tests__/mir/lower-extra2.test.js +317 -0
- package/dist/src/__tests__/mir/lower-extra3.test.d.ts +19 -0
- package/dist/src/__tests__/mir/lower-extra3.test.js +249 -0
- package/dist/src/__tests__/mir/lower-extra4.test.d.ts +23 -0
- package/dist/src/__tests__/mir/lower-extra4.test.js +606 -0
- package/dist/src/__tests__/mir/lower-extra5.test.d.ts +25 -0
- package/dist/src/__tests__/mir/lower-extra5.test.js +543 -0
- package/dist/src/__tests__/mir/lower-extra6.test.d.ts +16 -0
- package/dist/src/__tests__/mir/lower-extra6.test.js +471 -0
- package/dist/src/__tests__/mir/lower-extra7.test.d.ts +35 -0
- package/dist/src/__tests__/mir/lower-extra7.test.js +921 -0
- package/dist/src/__tests__/mir/lower-extra8.test.d.ts +19 -0
- package/dist/src/__tests__/mir/lower-extra8.test.js +626 -0
- package/dist/src/__tests__/mir/lower-extra9.test.d.ts +14 -0
- package/dist/src/__tests__/mir/lower-extra9.test.js +717 -0
- package/dist/src/__tests__/nbt.test.d.ts +1 -0
- package/dist/src/__tests__/nbt.test.js +82 -0
- package/dist/src/__tests__/optimizer/auto-inline.test.d.ts +1 -0
- package/dist/src/__tests__/optimizer/auto-inline.test.js +176 -0
- package/dist/src/__tests__/optimizer/cse.test.d.ts +4 -0
- package/dist/src/__tests__/optimizer/cse.test.js +178 -0
- package/dist/src/__tests__/optimizer/inline_fn.test.d.ts +1 -0
- package/dist/src/__tests__/optimizer/inline_fn.test.js +221 -0
- package/dist/src/__tests__/optimizer/licm.test.d.ts +1 -0
- package/dist/src/__tests__/optimizer/licm.test.js +244 -0
- package/dist/src/__tests__/optimizer/optimizer-extended.test.d.ts +12 -0
- package/dist/src/__tests__/optimizer/optimizer-extended.test.js +993 -0
- package/dist/src/__tests__/optimizer/strength-reduction.test.d.ts +1 -0
- package/dist/src/__tests__/optimizer/strength-reduction.test.js +86 -0
- package/dist/src/__tests__/optimizer/tco.test.d.ts +14 -0
- package/dist/src/__tests__/optimizer/tco.test.js +203 -0
- package/dist/src/__tests__/optimizer-advanced.test.d.ts +1 -0
- package/dist/src/__tests__/optimizer-advanced.test.js +124 -0
- package/dist/src/__tests__/optimizer.test.d.ts +1 -0
- package/dist/src/__tests__/optimizer.test.js +149 -0
- package/dist/src/__tests__/parser-coverage.test.d.ts +25 -0
- package/dist/src/__tests__/parser-coverage.test.js +491 -0
- package/dist/src/__tests__/parser-extra.test.d.ts +6 -0
- package/dist/src/__tests__/parser-extra.test.js +451 -0
- package/dist/src/__tests__/parser.test.js +15 -3
- package/dist/src/__tests__/repl-extra.test.d.ts +13 -0
- package/dist/src/__tests__/repl-extra.test.js +174 -0
- package/dist/src/__tests__/repl-server-extra.test.d.ts +10 -0
- package/dist/src/__tests__/repl-server-extra.test.js +161 -0
- package/dist/src/__tests__/repl-server.test.d.ts +6 -0
- package/dist/src/__tests__/repl-server.test.js +146 -0
- package/dist/src/__tests__/runtime-extra.test.d.ts +15 -0
- package/dist/src/__tests__/runtime-extra.test.js +732 -0
- package/dist/src/__tests__/runtime.test.d.ts +1 -0
- package/dist/src/__tests__/runtime.test.js +194 -0
- package/dist/src/__tests__/singleton-decorator.test.d.ts +11 -0
- package/dist/src/__tests__/singleton-decorator.test.js +260 -0
- package/dist/src/__tests__/sourcemap.test.js +1 -1
- package/dist/src/__tests__/stdlib/advanced.test.d.ts +5 -0
- package/dist/src/__tests__/stdlib/advanced.test.js +301 -0
- package/dist/src/__tests__/stdlib/arr-len.test.d.ts +13 -0
- package/dist/src/__tests__/stdlib/arr-len.test.js +195 -0
- package/dist/src/__tests__/stdlib/bigint.test.d.ts +4 -0
- package/dist/src/__tests__/stdlib/bigint.test.js +83 -0
- package/dist/src/__tests__/stdlib/bits.test.d.ts +4 -0
- package/dist/src/__tests__/stdlib/bits.test.js +96 -0
- package/dist/src/__tests__/stdlib/bossbar.test.d.ts +4 -0
- package/dist/src/__tests__/stdlib/bossbar.test.js +72 -0
- package/dist/src/__tests__/stdlib/color.test.d.ts +4 -0
- package/dist/src/__tests__/stdlib/color.test.js +84 -0
- package/dist/src/__tests__/stdlib/combat.test.d.ts +4 -0
- package/dist/src/__tests__/stdlib/combat.test.js +64 -0
- package/dist/src/__tests__/stdlib/cooldown.test.d.ts +4 -0
- package/dist/src/__tests__/stdlib/cooldown.test.js +64 -0
- package/dist/src/__tests__/stdlib/dialog.test.d.ts +6 -0
- package/dist/src/__tests__/stdlib/dialog.test.js +150 -0
- package/dist/src/__tests__/stdlib/ecs.test.d.ts +4 -0
- package/dist/src/__tests__/stdlib/ecs.test.js +81 -0
- package/dist/src/__tests__/stdlib/effects.test.d.ts +4 -0
- package/dist/src/__tests__/stdlib/effects.test.js +72 -0
- package/dist/src/__tests__/stdlib/events.test.d.ts +4 -0
- package/dist/src/__tests__/stdlib/events.test.js +55 -0
- package/dist/src/__tests__/stdlib/expr.test.d.ts +4 -0
- package/dist/src/__tests__/stdlib/expr.test.js +77 -0
- package/dist/src/__tests__/stdlib/fft.test.d.ts +4 -0
- package/dist/src/__tests__/stdlib/fft.test.js +82 -0
- package/dist/src/__tests__/stdlib/graph.test.d.ts +4 -0
- package/dist/src/__tests__/stdlib/graph.test.js +102 -0
- package/dist/src/__tests__/stdlib/interactions.test.d.ts +4 -0
- package/dist/src/__tests__/stdlib/interactions.test.js +60 -0
- package/dist/src/__tests__/stdlib/inventory.test.d.ts +4 -0
- package/dist/src/__tests__/stdlib/inventory.test.js +68 -0
- package/dist/src/__tests__/stdlib/linalg.test.d.ts +5 -0
- package/dist/src/__tests__/stdlib/linalg.test.js +78 -0
- package/dist/src/__tests__/stdlib/map.test.d.ts +1 -0
- package/dist/src/__tests__/stdlib/map.test.js +84 -0
- package/dist/src/__tests__/stdlib/math.test.js +19 -6
- package/dist/src/__tests__/stdlib/math_hp.test.d.ts +4 -0
- package/dist/src/__tests__/stdlib/math_hp.test.js +80 -0
- package/dist/src/__tests__/stdlib/mobs.test.d.ts +4 -0
- package/dist/src/__tests__/stdlib/mobs.test.js +61 -0
- package/dist/src/__tests__/stdlib/noise.test.d.ts +4 -0
- package/dist/src/__tests__/stdlib/noise.test.js +73 -0
- package/dist/src/__tests__/stdlib/ode.test.d.ts +4 -0
- package/dist/src/__tests__/stdlib/ode.test.js +68 -0
- package/dist/src/__tests__/stdlib/parabola.test.d.ts +4 -0
- package/dist/src/__tests__/stdlib/parabola.test.js +77 -0
- package/dist/src/__tests__/stdlib/particles.test.d.ts +4 -0
- package/dist/src/__tests__/stdlib/particles.test.js +68 -0
- package/dist/src/__tests__/stdlib/physics.test.d.ts +4 -0
- package/dist/src/__tests__/stdlib/physics.test.js +76 -0
- package/dist/src/__tests__/stdlib/player.test.d.ts +4 -0
- package/dist/src/__tests__/stdlib/player.test.js +64 -0
- package/dist/src/__tests__/stdlib/quaternion.test.d.ts +4 -0
- package/dist/src/__tests__/stdlib/quaternion.test.js +73 -0
- package/dist/src/__tests__/stdlib/queue.test.d.ts +1 -0
- package/dist/src/__tests__/stdlib/queue.test.js +97 -0
- package/dist/src/__tests__/stdlib/random.test.d.ts +4 -0
- package/dist/src/__tests__/stdlib/random.test.js +76 -0
- package/dist/src/__tests__/stdlib/result.test.d.ts +12 -0
- package/dist/src/__tests__/stdlib/result.test.js +329 -0
- package/dist/src/__tests__/stdlib/scheduler.test.d.ts +6 -0
- package/dist/src/__tests__/stdlib/scheduler.test.js +188 -0
- package/dist/src/__tests__/stdlib/set_int.test.d.ts +1 -0
- package/dist/src/__tests__/stdlib/set_int.test.js +88 -0
- package/dist/src/__tests__/stdlib/sets.test.d.ts +6 -0
- package/dist/src/__tests__/stdlib/sets.test.js +60 -0
- package/dist/src/__tests__/stdlib/signal.test.d.ts +4 -0
- package/dist/src/__tests__/stdlib/signal.test.js +84 -0
- package/dist/src/__tests__/stdlib/sort-v2.test.d.ts +4 -0
- package/dist/src/__tests__/stdlib/sort-v2.test.js +131 -0
- package/dist/src/__tests__/stdlib/spawn.test.d.ts +4 -0
- package/dist/src/__tests__/stdlib/spawn.test.js +68 -0
- package/dist/src/__tests__/stdlib/state.test.d.ts +5 -0
- package/dist/src/__tests__/stdlib/state.test.js +176 -0
- package/dist/src/__tests__/stdlib/string.test.d.ts +12 -0
- package/dist/src/__tests__/stdlib/string.test.js +231 -0
- package/dist/src/__tests__/stdlib/strings.test.d.ts +4 -0
- package/dist/src/__tests__/stdlib/strings.test.js +83 -0
- package/dist/src/__tests__/stdlib/tags.test.d.ts +4 -0
- package/dist/src/__tests__/stdlib/tags.test.js +57 -0
- package/dist/src/__tests__/stdlib/teams.test.d.ts +4 -0
- package/dist/src/__tests__/stdlib/teams.test.js +72 -0
- package/dist/src/__tests__/stdlib/timer.test.d.ts +4 -0
- package/dist/src/__tests__/stdlib/timer.test.js +79 -0
- package/dist/src/__tests__/stdlib/vec.test.d.ts +5 -0
- package/dist/src/__tests__/stdlib/vec.test.js +94 -0
- package/dist/src/__tests__/stdlib/world.test.d.ts +4 -0
- package/dist/src/__tests__/stdlib/world.test.js +72 -0
- package/dist/src/__tests__/stdlib-advanced.test.d.ts +4 -0
- package/dist/src/__tests__/stdlib-advanced.test.js +374 -0
- package/dist/src/__tests__/stdlib-bigint.test.d.ts +7 -0
- package/dist/src/__tests__/stdlib-bigint.test.js +426 -0
- package/dist/src/__tests__/stdlib-math.test.d.ts +7 -0
- package/dist/src/__tests__/stdlib-math.test.js +351 -0
- package/dist/src/__tests__/stdlib-vec.test.d.ts +4 -0
- package/dist/src/__tests__/stdlib-vec.test.js +263 -0
- package/dist/src/__tests__/struct-display.test.d.ts +1 -0
- package/dist/src/__tests__/struct-display.test.js +64 -0
- package/dist/src/__tests__/structure-optimizer.test.d.ts +1 -0
- package/dist/src/__tests__/structure-optimizer.test.js +33 -0
- package/dist/src/__tests__/test-framework/runner.test.d.ts +10 -0
- package/dist/src/__tests__/test-framework/runner.test.js +193 -0
- package/dist/src/__tests__/timer-debug.test.d.ts +1 -0
- package/dist/src/__tests__/timer-debug.test.js +33 -0
- package/dist/src/__tests__/tuner/adapters.test.d.ts +14 -0
- package/dist/src/__tests__/tuner/adapters.test.js +194 -0
- package/dist/src/__tests__/tuner/simulator-extra.test.d.ts +4 -0
- package/dist/src/__tests__/tuner/simulator-extra.test.js +193 -0
- package/dist/src/__tests__/typechecker-coverage.test.d.ts +30 -0
- package/dist/src/__tests__/typechecker-coverage.test.js +627 -0
- package/dist/src/__tests__/typechecker.test.js +8 -6
- package/dist/src/__tests__/var-allocator.test.d.ts +1 -0
- package/dist/src/__tests__/var-allocator.test.js +69 -0
- package/dist/src/__tests__/watch-decorator.test.d.ts +1 -0
- package/dist/src/__tests__/watch-decorator.test.js +54 -0
- package/dist/src/ast/types.d.ts +123 -4
- package/dist/src/cache/incremental.d.ts +13 -14
- package/dist/src/cache/incremental.js +106 -89
- package/dist/src/cache/index.d.ts +8 -2
- package/dist/src/cache/index.js +18 -6
- package/dist/src/cli.d.ts +1 -0
- package/dist/src/cli.js +466 -17
- package/dist/src/codegen/cmdblock/index.d.ts +26 -0
- package/dist/src/codegen/cmdblock/index.js +45 -0
- package/dist/src/codegen/mcfunction/index.d.ts +40 -0
- package/dist/src/codegen/mcfunction/index.js +606 -0
- package/dist/src/codegen/structure/index.d.ts +24 -0
- package/dist/src/codegen/structure/index.js +279 -0
- package/dist/src/codegen/var-allocator.d.ts +45 -0
- package/dist/src/codegen/var-allocator.js +104 -0
- package/dist/src/config/project-config.d.ts +29 -0
- package/dist/src/config/project-config.js +180 -0
- package/dist/src/diagnostics/index.d.ts +9 -0
- package/dist/src/diagnostics/index.js +18 -1
- package/dist/src/emit/compile.d.ts +10 -0
- package/dist/src/emit/compile.js +405 -50
- package/dist/src/emit/index.d.ts +42 -0
- package/dist/src/emit/index.js +326 -14
- package/dist/src/emit/modules.js +24 -5
- package/dist/src/emit/sourcemap.d.ts +23 -27
- package/dist/src/emit/sourcemap.js +52 -30
- package/dist/src/events/types.d.ts +1 -1
- package/dist/src/events/types.js +4 -1
- package/dist/src/formatter/index.js +33 -8
- package/dist/src/hir/deprecated.d.ts +13 -0
- package/dist/src/hir/deprecated.js +218 -0
- package/dist/src/hir/lower.js +199 -9
- package/dist/src/hir/monomorphize.js +32 -6
- package/dist/src/hir/types.d.ts +80 -2
- package/dist/src/index.d.ts +6 -0
- package/dist/src/index.js +18 -3
- package/dist/src/ir/builder.d.ts +33 -0
- package/dist/src/ir/builder.js +99 -0
- package/dist/src/ir/types.d.ts +132 -0
- package/dist/src/ir/types.js +15 -0
- package/dist/src/lexer/index.d.ts +2 -1
- package/dist/src/lexer/index.js +39 -3
- package/dist/src/lint/index.d.ts +45 -0
- package/dist/src/lint/index.js +930 -0
- package/dist/src/lir/lower.js +34 -0
- package/dist/src/lir/types.d.ts +2 -0
- package/dist/src/lowering/index.d.ts +188 -0
- package/dist/src/lowering/index.js +3405 -0
- package/dist/src/lsp/main.js +0 -0
- package/dist/src/lsp/server.js +423 -123
- package/dist/src/mir/lower.js +1075 -88
- package/dist/src/mir/macro.js +36 -2
- package/dist/src/mir/types.d.ts +17 -0
- package/dist/src/mir/verify.js +11 -0
- package/dist/src/optimizer/auto-inline.d.ts +2 -0
- package/dist/src/optimizer/auto-inline.js +67 -0
- package/dist/src/optimizer/commands.d.ts +38 -0
- package/dist/src/optimizer/commands.js +451 -0
- package/dist/src/optimizer/cse.d.ts +20 -0
- package/dist/src/optimizer/cse.js +234 -0
- package/dist/src/optimizer/inline.d.ts +26 -0
- package/dist/src/optimizer/inline.js +286 -0
- package/dist/src/optimizer/interprocedural.js +8 -0
- package/dist/src/optimizer/licm.d.ts +32 -0
- package/dist/src/optimizer/licm.js +371 -0
- package/dist/src/optimizer/passes.d.ts +34 -0
- package/dist/src/optimizer/passes.js +243 -0
- package/dist/src/optimizer/pipeline.js +12 -2
- package/dist/src/optimizer/strength_reduction.d.ts +15 -0
- package/dist/src/optimizer/strength_reduction.js +90 -0
- package/dist/src/optimizer/structure.d.ts +9 -0
- package/dist/src/optimizer/structure.js +356 -0
- package/dist/src/optimizer/tco.d.ts +53 -0
- package/dist/src/optimizer/tco.js +238 -0
- package/dist/src/parser/index.d.ts +33 -0
- package/dist/src/parser/index.js +480 -71
- package/dist/src/repl-server.d.ts +13 -0
- package/dist/src/repl-server.js +127 -0
- package/dist/src/runtime/index.js +24 -0
- package/dist/src/structs/expand.d.ts +15 -0
- package/dist/src/structs/expand.js +46 -0
- package/dist/src/testing/runner.d.ts +40 -0
- package/dist/src/testing/runner.js +237 -0
- package/dist/src/typechecker/index.d.ts +3 -0
- package/dist/src/typechecker/index.js +265 -13
- package/dist/src2/__tests__/e2e/basic.test.d.ts +8 -0
- package/dist/src2/__tests__/e2e/basic.test.js +140 -0
- package/dist/src2/__tests__/e2e/macros.test.d.ts +9 -0
- package/dist/src2/__tests__/e2e/macros.test.js +182 -0
- package/dist/src2/__tests__/e2e/migrate.test.d.ts +13 -0
- package/dist/src2/__tests__/e2e/migrate.test.js +2739 -0
- package/dist/src2/__tests__/hir/desugar.test.d.ts +1 -0
- package/dist/src2/__tests__/hir/desugar.test.js +234 -0
- package/dist/src2/__tests__/lir/lower.test.d.ts +1 -0
- package/dist/src2/__tests__/lir/lower.test.js +559 -0
- package/dist/src2/__tests__/lir/types.test.d.ts +1 -0
- package/dist/src2/__tests__/lir/types.test.js +185 -0
- package/dist/src2/__tests__/lir/verify.test.d.ts +1 -0
- package/dist/src2/__tests__/lir/verify.test.js +221 -0
- package/dist/src2/__tests__/mir/arithmetic.test.d.ts +1 -0
- package/dist/src2/__tests__/mir/arithmetic.test.js +130 -0
- package/dist/src2/__tests__/mir/control-flow.test.d.ts +1 -0
- package/dist/src2/__tests__/mir/control-flow.test.js +205 -0
- package/dist/src2/__tests__/mir/verify.test.d.ts +1 -0
- package/dist/src2/__tests__/mir/verify.test.js +223 -0
- package/dist/src2/__tests__/optimizer/block_merge.test.d.ts +1 -0
- package/dist/src2/__tests__/optimizer/block_merge.test.js +78 -0
- package/dist/src2/__tests__/optimizer/branch_simplify.test.d.ts +1 -0
- package/dist/src2/__tests__/optimizer/branch_simplify.test.js +58 -0
- package/dist/src2/__tests__/optimizer/constant_fold.test.d.ts +1 -0
- package/dist/src2/__tests__/optimizer/constant_fold.test.js +131 -0
- package/dist/src2/__tests__/optimizer/copy_prop.test.d.ts +1 -0
- package/dist/src2/__tests__/optimizer/copy_prop.test.js +91 -0
- package/dist/src2/__tests__/optimizer/dce.test.d.ts +1 -0
- package/dist/src2/__tests__/optimizer/dce.test.js +76 -0
- package/dist/src2/__tests__/optimizer/pipeline.test.d.ts +1 -0
- package/dist/src2/__tests__/optimizer/pipeline.test.js +102 -0
- package/dist/src2/emit/compile.d.ts +19 -0
- package/dist/src2/emit/compile.js +80 -0
- package/dist/src2/emit/index.d.ts +17 -0
- package/dist/src2/emit/index.js +172 -0
- package/dist/src2/hir/lower.d.ts +15 -0
- package/dist/src2/hir/lower.js +378 -0
- package/dist/src2/hir/types.d.ts +373 -0
- package/dist/src2/hir/types.js +16 -0
- package/dist/src2/lir/lower.d.ts +15 -0
- package/dist/src2/lir/lower.js +453 -0
- package/dist/src2/lir/types.d.ts +136 -0
- package/dist/src2/lir/types.js +11 -0
- package/dist/src2/lir/verify.d.ts +14 -0
- package/dist/src2/lir/verify.js +113 -0
- package/dist/src2/mir/lower.d.ts +9 -0
- package/dist/src2/mir/lower.js +1030 -0
- package/dist/src2/mir/macro.d.ts +22 -0
- package/dist/src2/mir/macro.js +168 -0
- package/dist/src2/mir/types.d.ts +183 -0
- package/dist/src2/mir/types.js +11 -0
- package/dist/src2/mir/verify.d.ts +16 -0
- package/dist/src2/mir/verify.js +216 -0
- package/dist/src2/optimizer/block_merge.d.ts +12 -0
- package/dist/src2/optimizer/block_merge.js +84 -0
- package/dist/src2/optimizer/branch_simplify.d.ts +9 -0
- package/dist/src2/optimizer/branch_simplify.js +28 -0
- package/dist/src2/optimizer/constant_fold.d.ts +10 -0
- package/dist/src2/optimizer/constant_fold.js +85 -0
- package/dist/src2/optimizer/copy_prop.d.ts +9 -0
- package/dist/src2/optimizer/copy_prop.js +113 -0
- package/dist/src2/optimizer/dce.d.ts +8 -0
- package/dist/src2/optimizer/dce.js +155 -0
- package/dist/src2/optimizer/pipeline.d.ts +10 -0
- package/dist/src2/optimizer/pipeline.js +42 -0
- package/dist/swap_test.map.json +14 -0
- package/dist/tsconfig.tsbuildinfo +1 -0
- package/dist/typechecker/index.d.ts +61 -0
- package/dist/typechecker/index.js +1034 -0
- package/dist/types/entity-hierarchy.d.ts +29 -0
- package/dist/types/entity-hierarchy.js +107 -0
- package/doc-drafts/redscript-docs/docs/en/stdlib/graph.md +104 -0
- package/doc-drafts/redscript-docs/docs/en/stdlib/parabola.md +113 -0
- package/doc-drafts/redscript-docs/docs/en/stdlib/pathfind.md +104 -0
- package/doc-drafts/redscript-docs/docs/en/stdlib/physics.md +134 -0
- package/doc-drafts/redscript-docs/docs/en/stdlib/quaternion.md +135 -0
- package/doc-drafts/redscript-docs/docs/zh/stdlib/graph.md +104 -0
- package/doc-drafts/redscript-docs/docs/zh/stdlib/parabola.md +113 -0
- package/doc-drafts/redscript-docs/docs/zh/stdlib/pathfind.md +104 -0
- package/doc-drafts/redscript-docs/docs/zh/stdlib/physics.md +134 -0
- package/doc-drafts/redscript-docs/docs/zh/stdlib/quaternion.md +135 -0
- package/docs/stdlib/result.md +156 -0
- package/docs/stdlib/result.zh.md +156 -0
- package/editors/vscode/fixtures/test.mcrs +7 -0
- package/editors/vscode/out/extension.js +2763 -340
- package/editors/vscode/out/lsp-server.js +15322 -0
- package/editors/vscode/package-lock.json +9 -4
- package/editors/vscode/package.json +1 -1
- package/editors/vscode/snippets/redscript.json +109 -30
- package/editors/vscode/src/extension.ts +4 -7
- package/examples/display-demo.mcrs +64 -0
- package/examples/game/racing.mcrs +301 -0
- package/examples/game/tower_defense.mcrs +311 -0
- package/examples/math/physics_sim.mcrs +322 -0
- package/examples/rpg/boss_fight.mcrs +313 -0
- package/examples/rpg/health_system.mcrs +237 -0
- package/examples/rpg/inventory.mcrs +265 -0
- package/examples/util/debug_hud.mcrs +279 -0
- package/jest.config.js +15 -2
- package/package.json +12 -3
- package/playground/index.html +823 -0
- package/scripts/gen-docs.ts +533 -0
- package/scripts/update-redscript-docs-stdlib.sh +770 -0
- package/src/__tests__/array-dynamic.test.ts +42 -0
- package/src/__tests__/budget.test.ts +5 -0
- package/src/__tests__/builtins.test.ts +66 -0
- package/src/__tests__/cache/cache-behavior.test.ts +480 -0
- package/src/__tests__/cache-extra.test.ts +199 -0
- package/src/__tests__/cli-docs.test.ts +77 -0
- package/src/__tests__/cli-init.test.ts +91 -0
- package/src/__tests__/cli-publish.test.ts +190 -0
- package/src/__tests__/cli.test.ts +117 -1
- package/src/__tests__/compile-preprocess.test.ts +366 -0
- package/src/__tests__/compiler/break-stmt.test.ts +66 -0
- package/src/__tests__/compiler/const-decl.test.ts +141 -0
- package/src/__tests__/compiler/continue-stmt.test.ts +81 -0
- package/src/__tests__/compiler/coroutine-extended.test.ts +723 -0
- package/src/__tests__/compiler/deprecated.test.ts +305 -0
- package/src/__tests__/compiler/do-while.test.ts +130 -0
- package/src/__tests__/compiler/enum-payload.test.ts +299 -0
- package/src/__tests__/compiler/interface.test.ts +287 -0
- package/src/__tests__/compiler/labeled-loops.test.ts +279 -0
- package/src/__tests__/compiler/match-string.test.ts +45 -0
- package/src/__tests__/compiler/memoize.test.ts +126 -0
- package/src/__tests__/compiler/method-chain.test.ts +121 -0
- package/src/__tests__/compiler/module-import.test.ts +240 -0
- package/src/__tests__/compiler/option-extensions.test.ts +207 -0
- package/src/__tests__/compiler/profile-decorator.test.ts +79 -0
- package/src/__tests__/compiler/string-advanced.test.ts +310 -0
- package/src/__tests__/compiler/struct-extends.test.ts +109 -0
- package/src/__tests__/compiler/throttle-retry.test.ts +191 -0
- package/src/__tests__/compiler/tuple-type.test.ts +263 -0
- package/src/__tests__/compiler/watch-decorator.test.ts +72 -0
- package/src/__tests__/config/project-config.test.ts +181 -0
- package/src/__tests__/config-decorator.test.ts +157 -0
- package/src/__tests__/diagnostics-extra.test.ts +155 -0
- package/src/__tests__/e2e/ecs-stdlib.test.ts +371 -0
- package/src/__tests__/e2e/events-stdlib.test.ts +50 -0
- package/src/__tests__/e2e/fft-stdlib.test.ts +313 -0
- package/src/__tests__/e2e/ode-stdlib.test.ts +68 -0
- package/src/__tests__/e2e/stdlib-e2e.test.ts +266 -0
- package/src/__tests__/emit/compile-branches.test.ts +135 -0
- package/src/__tests__/emit/compile-coverage.test.ts +696 -0
- package/src/__tests__/emit/compile-extra-branches.test.ts +228 -0
- package/src/__tests__/emit/compile-mocked-branches.test.ts +249 -0
- package/src/__tests__/emit/compile.test.ts +107 -0
- package/src/__tests__/emit/execute-chain.test.ts +114 -0
- package/src/__tests__/emit/index.test.ts +190 -0
- package/src/__tests__/emit/modules-branches.test.ts +90 -0
- package/src/__tests__/emit/modules-coverage.test.ts +241 -0
- package/src/__tests__/emit/modules-errors.test.ts +192 -0
- package/src/__tests__/emit/modules-extra.test.ts +80 -0
- package/src/__tests__/emit/modules-rewrite.test.ts +232 -0
- package/src/__tests__/emit/source-map.test.ts +152 -0
- package/src/__tests__/enum.test.ts +5 -2
- package/src/__tests__/error-recovery.test.ts +226 -0
- package/src/__tests__/events-types-extra.test.ts +110 -0
- package/src/__tests__/events-types.test.ts +66 -0
- package/src/__tests__/for-each.test.ts +135 -0
- package/src/__tests__/formatter.test.ts +15 -5
- package/src/__tests__/generics.test.ts +16 -9
- package/src/__tests__/hir/lower-extra.test.ts +151 -0
- package/src/__tests__/hir/monomorphize-coverage.test.ts +432 -0
- package/src/__tests__/hir/monomorphize-extra.test.ts +220 -0
- package/src/__tests__/hir/monomorphize-extra2.test.ts +350 -0
- package/src/__tests__/impl.test.ts +12 -8
- package/src/__tests__/incremental.test.ts +10 -2
- package/src/__tests__/index-extra.test.ts +79 -0
- package/src/__tests__/lexer.test.ts +2 -2
- package/src/__tests__/lint/hir-coverage.test.ts +1716 -0
- package/src/__tests__/lint/rules-coverage.test.ts +598 -0
- package/src/__tests__/lint/rules.test.ts +230 -0
- package/src/__tests__/lir/lower.test.ts +33 -0
- package/src/__tests__/lir/verify.test.ts +33 -0
- package/src/__tests__/lsp/completion.test.ts +687 -0
- package/src/__tests__/lsp/definition.test.ts +499 -0
- package/src/__tests__/lsp/diagnostics.test.ts +108 -0
- package/src/__tests__/lsp/hover-docs.test.ts +222 -0
- package/src/__tests__/lsp-logic.test.ts +162 -0
- package/src/__tests__/lsp.test.ts +4 -1
- package/src/__tests__/match.test.ts +212 -0
- package/src/__tests__/mc-integration/item-entity-events.test.ts +303 -0
- package/src/__tests__/mc-integration/stdlib-coverage-2.test.ts +822 -0
- package/src/__tests__/mc-integration/stdlib-coverage-3.test.ts +1105 -0
- package/src/__tests__/mc-integration/stdlib-coverage-4.test.ts +1366 -0
- package/src/__tests__/mc-integration/stdlib-coverage-5.test.ts +1245 -0
- package/src/__tests__/mc-integration/stdlib-coverage-6.test.ts +755 -0
- package/src/__tests__/mc-integration/stdlib-coverage-7.test.ts +771 -0
- package/src/__tests__/mc-integration/stdlib-coverage.test.ts +704 -0
- package/src/__tests__/mc-integration/syntax-coverage.test.ts +469 -0
- package/src/__tests__/mc-integration.test.ts +184 -6
- package/src/__tests__/mc-validator-coverage.test.ts +325 -0
- package/src/__tests__/mc-validator-extra.test.ts +252 -0
- package/src/__tests__/mir/lower-extra.test.ts +402 -0
- package/src/__tests__/mir/lower-extra2.test.ts +348 -0
- package/src/__tests__/mir/lower-extra3.test.ts +277 -0
- package/src/__tests__/mir/lower-extra4.test.ts +636 -0
- package/src/__tests__/mir/lower-extra5.test.ts +612 -0
- package/src/__tests__/mir/lower-extra6.test.ts +520 -0
- package/src/__tests__/mir/lower-extra7.test.ts +1045 -0
- package/src/__tests__/mir/lower-extra8.test.ts +704 -0
- package/src/__tests__/mir/lower-extra9.test.ts +821 -0
- package/src/__tests__/optimizer/auto-inline.test.ts +206 -0
- package/src/__tests__/optimizer/cse.test.ts +195 -0
- package/src/__tests__/optimizer/inline_fn.test.ts +263 -0
- package/src/__tests__/optimizer/licm.test.ts +358 -0
- package/src/__tests__/optimizer/nbt-coalesce.test.ts +147 -0
- package/src/__tests__/optimizer/optimizer-extended.test.ts +1081 -0
- package/src/__tests__/optimizer/scoreboard-batch.test.ts +141 -0
- package/src/__tests__/optimizer/strength-reduction.test.ts +111 -0
- package/src/__tests__/optimizer/tco-coverage.test.ts +309 -0
- package/src/__tests__/optimizer/tco.test.ts +238 -0
- package/src/__tests__/option.test.ts +14 -7
- package/src/__tests__/parser-coverage.test.ts +576 -0
- package/src/__tests__/parser-extra.test.ts +531 -0
- package/src/__tests__/parser.test.ts +17 -3
- package/src/__tests__/repl-extra.test.ts +195 -0
- package/src/__tests__/repl-server-extra.test.ts +150 -0
- package/src/__tests__/repl-server.test.ts +122 -0
- package/src/__tests__/runtime-extra.test.ts +862 -0
- package/src/__tests__/runtime.test.ts +194 -0
- package/src/__tests__/singleton-decorator.test.ts +285 -0
- package/src/__tests__/sourcemap.test.ts +1 -1
- package/src/__tests__/stdlib/advanced.test.ts +312 -0
- package/src/__tests__/stdlib/arr-len.test.ts +231 -0
- package/src/__tests__/stdlib/bigint.test.ts +57 -0
- package/src/__tests__/stdlib/bits.test.ts +75 -0
- package/src/__tests__/stdlib/bossbar.test.ts +45 -0
- package/src/__tests__/stdlib/color.test.ts +60 -0
- package/src/__tests__/stdlib/combat.test.ts +35 -0
- package/src/__tests__/stdlib/cooldown.test.ts +35 -0
- package/src/__tests__/stdlib/dialog.test.ts +140 -0
- package/src/__tests__/stdlib/ecs.test.ts +54 -0
- package/src/__tests__/stdlib/effects.test.ts +45 -0
- package/src/__tests__/stdlib/events.test.ts +23 -0
- package/src/__tests__/stdlib/expr.test.ts +48 -0
- package/src/__tests__/stdlib/fft.test.ts +54 -0
- package/src/__tests__/stdlib/graph.test.ts +77 -0
- package/src/__tests__/stdlib/interactions.test.ts +30 -0
- package/src/__tests__/stdlib/inventory.test.ts +40 -0
- package/src/__tests__/stdlib/linalg.test.ts +52 -0
- package/src/__tests__/stdlib/map.test.ts +55 -0
- package/src/__tests__/stdlib/math.test.ts +19 -5
- package/src/__tests__/stdlib/math_hp.test.ts +55 -0
- package/src/__tests__/stdlib/mobs.test.ts +40 -0
- package/src/__tests__/stdlib/noise.test.ts +46 -0
- package/src/__tests__/stdlib/ode.test.ts +40 -0
- package/src/__tests__/stdlib/parabola.test.ts +51 -0
- package/src/__tests__/stdlib/particles.test.ts +40 -0
- package/src/__tests__/stdlib/physics.test.ts +50 -0
- package/src/__tests__/stdlib/player.test.ts +35 -0
- package/src/__tests__/stdlib/quaternion.test.ts +46 -0
- package/src/__tests__/stdlib/queue.test.ts +73 -0
- package/src/__tests__/stdlib/random.test.ts +50 -0
- package/src/__tests__/stdlib/result.test.ts +326 -0
- package/src/__tests__/stdlib/scheduler.test.ts +182 -0
- package/src/__tests__/stdlib/set_int.test.ts +62 -0
- package/src/__tests__/stdlib/sets.test.ts +28 -0
- package/src/__tests__/stdlib/signal.test.ts +60 -0
- package/src/__tests__/stdlib/sort-v2.test.ts +111 -0
- package/src/__tests__/stdlib/spawn.test.ts +40 -0
- package/src/__tests__/stdlib/state.test.ts +164 -0
- package/src/__tests__/stdlib/string.test.ts +224 -0
- package/src/__tests__/stdlib/strings.test.ts +55 -0
- package/src/__tests__/stdlib/tags.test.ts +32 -0
- package/src/__tests__/stdlib/teams.test.ts +45 -0
- package/src/__tests__/stdlib/timer.test.ts +53 -0
- package/src/__tests__/stdlib/vec.test.ts +72 -0
- package/src/__tests__/stdlib/world.test.ts +45 -0
- package/src/__tests__/struct-display.test.ts +69 -0
- package/src/__tests__/test-framework/runner.test.ts +208 -0
- package/src/__tests__/tuner/adapters.test.ts +232 -0
- package/src/__tests__/tuner/simulator-extra.test.ts +222 -0
- package/src/__tests__/tuple.test.ts +11 -4
- package/src/__tests__/typechecker-coverage.test.ts +671 -0
- package/src/__tests__/typechecker.test.ts +9 -6
- package/src/__tests__/watch-decorator.test.ts +59 -0
- package/src/ast/types.ts +78 -4
- package/src/cache/incremental.ts +128 -99
- package/src/cache/index.ts +35 -8
- package/src/cli.ts +538 -29
- package/src/config/project-config.ts +176 -0
- package/src/diagnostics/index.ts +22 -0
- package/src/docs.ts +98 -0
- package/src/emit/compile.ts +417 -51
- package/src/emit/index.ts +389 -18
- package/src/emit/modules.ts +21 -4
- package/src/emit/sourcemap.ts +64 -43
- package/src/events/types.ts +4 -1
- package/src/examples/capture_the_flag.mcrs +2 -2
- package/src/examples/hunger_games.mcrs +4 -4
- package/src/examples/parkour_race.mcrs +8 -8
- package/src/examples/tutorial_02_variables.mcrs +5 -5
- package/src/examples/tutorial_03_functions_structs.mcrs +6 -6
- package/src/examples/tutorial_04_selectors.mcrs +1 -1
- package/src/examples/tutorial_05_decorators.mcrs +3 -3
- package/src/examples/tutorial_06_math_particles.mcrs +9 -9
- package/src/examples/tutorial_07_random.mcrs +4 -4
- package/src/examples/tutorial_08_coroutine.mcrs +7 -7
- package/src/examples/tutorial_09_precision.mcrs +12 -12
- package/src/examples/tutorial_10_kill_race.mcrs +7 -7
- package/src/examples/zombie_survival.mcrs +7 -7
- package/src/formatter/index.ts +35 -8
- package/src/hir/deprecated.ts +212 -0
- package/src/hir/lower.ts +225 -11
- package/src/hir/monomorphize.ts +34 -7
- package/src/hir/types.ts +38 -2
- package/src/index.ts +23 -3
- package/src/lexer/index.ts +45 -6
- package/src/lint/index.ts +922 -0
- package/src/lir/lower.ts +36 -0
- package/src/lir/types.ts +4 -0
- package/src/lsp/server.ts +418 -118
- package/src/mir/lower.ts +1080 -92
- package/src/mir/macro.ts +30 -2
- package/src/mir/types.ts +14 -0
- package/src/mir/verify.ts +12 -2
- package/src/optimizer/auto-inline.ts +86 -0
- package/src/optimizer/copy_prop.ts +2 -2
- package/src/optimizer/coroutine.ts +3 -3
- package/src/optimizer/cse.ts +205 -0
- package/src/optimizer/dce.ts +2 -2
- package/src/optimizer/inline.ts +335 -0
- package/src/optimizer/interprocedural.ts +9 -1
- package/src/optimizer/licm.ts +454 -0
- package/src/optimizer/nbt-coalesce.ts +109 -0
- package/src/optimizer/pipeline.ts +16 -2
- package/src/optimizer/scoreboard-batch.ts +52 -0
- package/src/optimizer/strength_reduction.ts +95 -0
- package/src/optimizer/tco.ts +267 -0
- package/src/optimizer/unroll.ts +2 -2
- package/src/parser/index.ts +488 -66
- package/src/repl-server.ts +102 -0
- package/src/runtime/index.ts +26 -0
- package/src/stdlib/advanced.mcrs +271 -101
- package/src/stdlib/bigint.mcrs +224 -11
- package/src/stdlib/bits.mcrs +75 -12
- package/src/stdlib/bossbar.mcrs +37 -8
- package/src/stdlib/calculus.mcrs +82 -26
- package/src/stdlib/color.mcrs +98 -16
- package/src/stdlib/combat.mcrs +36 -12
- package/src/stdlib/cooldown.mcrs +19 -0
- package/src/stdlib/dialog.mcrs +93 -0
- package/src/stdlib/easing.mcrs +132 -12
- package/src/stdlib/ecs.mcrs +355 -0
- package/src/stdlib/effects.mcrs +88 -12
- package/src/stdlib/events.mcrs +48 -0
- package/src/stdlib/expr.mcrs +18 -3
- package/src/stdlib/fft.mcrs +187 -0
- package/src/stdlib/geometry.mcrs +137 -39
- package/src/stdlib/graph.mcrs +347 -0
- package/src/stdlib/heap.mcrs +49 -8
- package/src/stdlib/i18n/zh.yaml +2891 -0
- package/src/stdlib/interactions.mcrs +43 -20
- package/src/stdlib/inventory.mcrs +14 -3
- package/src/stdlib/linalg.mcrs +415 -0
- package/src/stdlib/list.mcrs +168 -18
- package/src/stdlib/map.mcrs +112 -0
- package/src/stdlib/math.mcrs +68 -18
- package/src/stdlib/math_hp.mcrs +124 -33
- package/src/stdlib/matrix.mcrs +237 -11
- package/src/stdlib/mobs.mcrs +87 -0
- package/src/stdlib/noise.mcrs +65 -21
- package/src/stdlib/ode.mcrs +264 -0
- package/src/stdlib/parabola.mcrs +104 -29
- package/src/stdlib/particles.mcrs +78 -21
- package/src/stdlib/pathfind.mcrs +89 -35
- package/src/stdlib/physics.mcrs +134 -26
- package/src/stdlib/player.mcrs +18 -0
- package/src/stdlib/quaternion.mcrs +213 -9
- package/src/stdlib/queue.mcrs +123 -0
- package/src/stdlib/random.mcrs +63 -18
- package/src/stdlib/result.mcrs +111 -0
- package/src/stdlib/scheduler.mcrs +320 -0
- package/src/stdlib/set_int.mcrs +240 -0
- package/src/stdlib/sets.mcrs +49 -19
- package/src/stdlib/signal.mcrs +151 -79
- package/src/stdlib/sort.mcrs +111 -6
- package/src/stdlib/spawn.mcrs +30 -7
- package/src/stdlib/state.mcrs +100 -0
- package/src/stdlib/strings.mcrs +131 -3
- package/src/stdlib/tags.mcrs +2 -2
- package/src/stdlib/teams.mcrs +22 -10
- package/src/stdlib/timer.mcrs +36 -6
- package/src/stdlib/vec.mcrs +44 -9
- package/src/stdlib/world.mcrs +57 -25
- package/src/structs/expand.ts +64 -0
- package/src/testing/runner.ts +271 -0
- package/src/typechecker/index.ts +287 -13
- package/test_trig.ts +43 -0
|
@@ -0,0 +1,2606 @@
|
|
|
1
|
+
{
|
|
2
|
+
"benchmark": "stdlib-complexity",
|
|
3
|
+
"generatedAt": "2026-03-21T20:40:12.486Z",
|
|
4
|
+
"host": {
|
|
5
|
+
"platform": "darwin",
|
|
6
|
+
"release": "24.6.0",
|
|
7
|
+
"arch": "arm64",
|
|
8
|
+
"cpuModel": "Apple M4",
|
|
9
|
+
"cpuCount": 10,
|
|
10
|
+
"totalMemoryMb": 16384
|
|
11
|
+
},
|
|
12
|
+
"modules": [
|
|
13
|
+
{
|
|
14
|
+
"module": "advanced.mcrs",
|
|
15
|
+
"path": "/Users/yuzhe/projects/redscript/src/stdlib/advanced.mcrs",
|
|
16
|
+
"results": [
|
|
17
|
+
{
|
|
18
|
+
"optLevel": "O0",
|
|
19
|
+
"timingsMs": {
|
|
20
|
+
"parse": 5.337,
|
|
21
|
+
"hir": 0.721,
|
|
22
|
+
"mir": 10.489,
|
|
23
|
+
"emit": 1.183,
|
|
24
|
+
"total": 17.842
|
|
25
|
+
},
|
|
26
|
+
"fileCount": 175,
|
|
27
|
+
"mcfunctionFileCount": 173,
|
|
28
|
+
"instructionCount": 1300,
|
|
29
|
+
"totalBytes": 107156,
|
|
30
|
+
"mcfunctionBytes": 107007,
|
|
31
|
+
"warnings": 0
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"optLevel": "O1",
|
|
35
|
+
"timingsMs": {
|
|
36
|
+
"parse": 2.379,
|
|
37
|
+
"hir": 0.476,
|
|
38
|
+
"mir": 9.133,
|
|
39
|
+
"emit": 0.26,
|
|
40
|
+
"total": 12.27
|
|
41
|
+
},
|
|
42
|
+
"fileCount": 175,
|
|
43
|
+
"mcfunctionFileCount": 173,
|
|
44
|
+
"instructionCount": 1145,
|
|
45
|
+
"totalBytes": 94344,
|
|
46
|
+
"mcfunctionBytes": 94195,
|
|
47
|
+
"warnings": 0
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
"optLevel": "O2",
|
|
51
|
+
"timingsMs": {
|
|
52
|
+
"parse": 3.117,
|
|
53
|
+
"hir": 0.147,
|
|
54
|
+
"mir": 13.667,
|
|
55
|
+
"emit": 0.243,
|
|
56
|
+
"total": 17.188
|
|
57
|
+
},
|
|
58
|
+
"fileCount": 175,
|
|
59
|
+
"mcfunctionFileCount": 173,
|
|
60
|
+
"instructionCount": 1145,
|
|
61
|
+
"totalBytes": 94344,
|
|
62
|
+
"mcfunctionBytes": 94195,
|
|
63
|
+
"warnings": 0
|
|
64
|
+
}
|
|
65
|
+
]
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
"module": "bigint.mcrs",
|
|
69
|
+
"path": "/Users/yuzhe/projects/redscript/src/stdlib/bigint.mcrs",
|
|
70
|
+
"results": [
|
|
71
|
+
{
|
|
72
|
+
"optLevel": "O0",
|
|
73
|
+
"timingsMs": {
|
|
74
|
+
"parse": 1.97,
|
|
75
|
+
"hir": 0.115,
|
|
76
|
+
"mir": 19.167,
|
|
77
|
+
"emit": 0.575,
|
|
78
|
+
"total": 21.855
|
|
79
|
+
},
|
|
80
|
+
"fileCount": 204,
|
|
81
|
+
"mcfunctionFileCount": 202,
|
|
82
|
+
"instructionCount": 1155,
|
|
83
|
+
"totalBytes": 109145,
|
|
84
|
+
"mcfunctionBytes": 109000,
|
|
85
|
+
"warnings": 0
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
"optLevel": "O1",
|
|
89
|
+
"timingsMs": {
|
|
90
|
+
"parse": 2.051,
|
|
91
|
+
"hir": 0.789,
|
|
92
|
+
"mir": 7.527,
|
|
93
|
+
"emit": 0.19,
|
|
94
|
+
"total": 10.572
|
|
95
|
+
},
|
|
96
|
+
"fileCount": 204,
|
|
97
|
+
"mcfunctionFileCount": 202,
|
|
98
|
+
"instructionCount": 879,
|
|
99
|
+
"totalBytes": 84994,
|
|
100
|
+
"mcfunctionBytes": 84849,
|
|
101
|
+
"warnings": 0
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
"optLevel": "O2",
|
|
105
|
+
"timingsMs": {
|
|
106
|
+
"parse": 1.158,
|
|
107
|
+
"hir": 0.099,
|
|
108
|
+
"mir": 7.107,
|
|
109
|
+
"emit": 0.189,
|
|
110
|
+
"total": 8.563
|
|
111
|
+
},
|
|
112
|
+
"fileCount": 204,
|
|
113
|
+
"mcfunctionFileCount": 202,
|
|
114
|
+
"instructionCount": 879,
|
|
115
|
+
"totalBytes": 84994,
|
|
116
|
+
"mcfunctionBytes": 84849,
|
|
117
|
+
"warnings": 0
|
|
118
|
+
}
|
|
119
|
+
]
|
|
120
|
+
},
|
|
121
|
+
{
|
|
122
|
+
"module": "bits.mcrs",
|
|
123
|
+
"path": "/Users/yuzhe/projects/redscript/src/stdlib/bits.mcrs",
|
|
124
|
+
"results": [
|
|
125
|
+
{
|
|
126
|
+
"optLevel": "O0",
|
|
127
|
+
"timingsMs": {
|
|
128
|
+
"parse": 0.611,
|
|
129
|
+
"hir": 0.036,
|
|
130
|
+
"mir": 0.591,
|
|
131
|
+
"emit": 0.078,
|
|
132
|
+
"total": 1.321
|
|
133
|
+
},
|
|
134
|
+
"fileCount": 81,
|
|
135
|
+
"mcfunctionFileCount": 79,
|
|
136
|
+
"instructionCount": 456,
|
|
137
|
+
"totalBytes": 33179,
|
|
138
|
+
"mcfunctionBytes": 33038,
|
|
139
|
+
"warnings": 0
|
|
140
|
+
},
|
|
141
|
+
{
|
|
142
|
+
"optLevel": "O1",
|
|
143
|
+
"timingsMs": {
|
|
144
|
+
"parse": 0.377,
|
|
145
|
+
"hir": 0.028,
|
|
146
|
+
"mir": 1.041,
|
|
147
|
+
"emit": 0.075,
|
|
148
|
+
"total": 1.526
|
|
149
|
+
},
|
|
150
|
+
"fileCount": 81,
|
|
151
|
+
"mcfunctionFileCount": 79,
|
|
152
|
+
"instructionCount": 412,
|
|
153
|
+
"totalBytes": 30083,
|
|
154
|
+
"mcfunctionBytes": 29942,
|
|
155
|
+
"warnings": 0
|
|
156
|
+
},
|
|
157
|
+
{
|
|
158
|
+
"optLevel": "O2",
|
|
159
|
+
"timingsMs": {
|
|
160
|
+
"parse": 0.368,
|
|
161
|
+
"hir": 0.032,
|
|
162
|
+
"mir": 1.589,
|
|
163
|
+
"emit": 0.058,
|
|
164
|
+
"total": 2.053
|
|
165
|
+
},
|
|
166
|
+
"fileCount": 81,
|
|
167
|
+
"mcfunctionFileCount": 79,
|
|
168
|
+
"instructionCount": 412,
|
|
169
|
+
"totalBytes": 30083,
|
|
170
|
+
"mcfunctionBytes": 29942,
|
|
171
|
+
"warnings": 0
|
|
172
|
+
}
|
|
173
|
+
]
|
|
174
|
+
},
|
|
175
|
+
{
|
|
176
|
+
"module": "bossbar.mcrs",
|
|
177
|
+
"path": "/Users/yuzhe/projects/redscript/src/stdlib/bossbar.mcrs",
|
|
178
|
+
"results": [
|
|
179
|
+
{
|
|
180
|
+
"optLevel": "O0",
|
|
181
|
+
"timingsMs": {
|
|
182
|
+
"parse": 0.515,
|
|
183
|
+
"hir": 0.036,
|
|
184
|
+
"mir": 0.162,
|
|
185
|
+
"emit": 0.025,
|
|
186
|
+
"total": 0.742
|
|
187
|
+
},
|
|
188
|
+
"fileCount": 17,
|
|
189
|
+
"mcfunctionFileCount": 15,
|
|
190
|
+
"instructionCount": 160,
|
|
191
|
+
"totalBytes": 12432,
|
|
192
|
+
"mcfunctionBytes": 12285,
|
|
193
|
+
"warnings": 0
|
|
194
|
+
},
|
|
195
|
+
{
|
|
196
|
+
"optLevel": "O1",
|
|
197
|
+
"timingsMs": {
|
|
198
|
+
"parse": 0.202,
|
|
199
|
+
"hir": 0.012,
|
|
200
|
+
"mir": 1.253,
|
|
201
|
+
"emit": 0.02,
|
|
202
|
+
"total": 1.493
|
|
203
|
+
},
|
|
204
|
+
"fileCount": 17,
|
|
205
|
+
"mcfunctionFileCount": 15,
|
|
206
|
+
"instructionCount": 118,
|
|
207
|
+
"totalBytes": 8417,
|
|
208
|
+
"mcfunctionBytes": 8270,
|
|
209
|
+
"warnings": 0
|
|
210
|
+
},
|
|
211
|
+
{
|
|
212
|
+
"optLevel": "O2",
|
|
213
|
+
"timingsMs": {
|
|
214
|
+
"parse": 0.226,
|
|
215
|
+
"hir": 0.015,
|
|
216
|
+
"mir": 0.426,
|
|
217
|
+
"emit": 0.015,
|
|
218
|
+
"total": 0.685
|
|
219
|
+
},
|
|
220
|
+
"fileCount": 17,
|
|
221
|
+
"mcfunctionFileCount": 15,
|
|
222
|
+
"instructionCount": 118,
|
|
223
|
+
"totalBytes": 8417,
|
|
224
|
+
"mcfunctionBytes": 8270,
|
|
225
|
+
"warnings": 0
|
|
226
|
+
}
|
|
227
|
+
]
|
|
228
|
+
},
|
|
229
|
+
{
|
|
230
|
+
"module": "calculus.mcrs",
|
|
231
|
+
"path": "/Users/yuzhe/projects/redscript/src/stdlib/calculus.mcrs",
|
|
232
|
+
"results": [
|
|
233
|
+
{
|
|
234
|
+
"optLevel": "O0",
|
|
235
|
+
"timingsMs": {
|
|
236
|
+
"parse": 0.419,
|
|
237
|
+
"hir": 0.028,
|
|
238
|
+
"mir": 0.531,
|
|
239
|
+
"emit": 0.067,
|
|
240
|
+
"total": 1.047
|
|
241
|
+
},
|
|
242
|
+
"fileCount": 61,
|
|
243
|
+
"mcfunctionFileCount": 59,
|
|
244
|
+
"instructionCount": 445,
|
|
245
|
+
"totalBytes": 40921,
|
|
246
|
+
"mcfunctionBytes": 40772,
|
|
247
|
+
"warnings": 0
|
|
248
|
+
},
|
|
249
|
+
{
|
|
250
|
+
"optLevel": "O1",
|
|
251
|
+
"timingsMs": {
|
|
252
|
+
"parse": 0.365,
|
|
253
|
+
"hir": 0.028,
|
|
254
|
+
"mir": 1.036,
|
|
255
|
+
"emit": 0.048,
|
|
256
|
+
"total": 1.478
|
|
257
|
+
},
|
|
258
|
+
"fileCount": 61,
|
|
259
|
+
"mcfunctionFileCount": 59,
|
|
260
|
+
"instructionCount": 378,
|
|
261
|
+
"totalBytes": 34851,
|
|
262
|
+
"mcfunctionBytes": 34702,
|
|
263
|
+
"warnings": 0
|
|
264
|
+
},
|
|
265
|
+
{
|
|
266
|
+
"optLevel": "O2",
|
|
267
|
+
"timingsMs": {
|
|
268
|
+
"parse": 0.345,
|
|
269
|
+
"hir": 0.026,
|
|
270
|
+
"mir": 1.297,
|
|
271
|
+
"emit": 0.044,
|
|
272
|
+
"total": 1.714
|
|
273
|
+
},
|
|
274
|
+
"fileCount": 61,
|
|
275
|
+
"mcfunctionFileCount": 59,
|
|
276
|
+
"instructionCount": 378,
|
|
277
|
+
"totalBytes": 34851,
|
|
278
|
+
"mcfunctionBytes": 34702,
|
|
279
|
+
"warnings": 0
|
|
280
|
+
}
|
|
281
|
+
]
|
|
282
|
+
},
|
|
283
|
+
{
|
|
284
|
+
"module": "color.mcrs",
|
|
285
|
+
"path": "/Users/yuzhe/projects/redscript/src/stdlib/color.mcrs",
|
|
286
|
+
"results": [
|
|
287
|
+
{
|
|
288
|
+
"optLevel": "O0",
|
|
289
|
+
"timingsMs": {
|
|
290
|
+
"parse": 0.498,
|
|
291
|
+
"hir": 0.038,
|
|
292
|
+
"mir": 1.207,
|
|
293
|
+
"emit": 0.13,
|
|
294
|
+
"total": 1.874
|
|
295
|
+
},
|
|
296
|
+
"fileCount": 184,
|
|
297
|
+
"mcfunctionFileCount": 182,
|
|
298
|
+
"instructionCount": 1095,
|
|
299
|
+
"totalBytes": 86328,
|
|
300
|
+
"mcfunctionBytes": 86185,
|
|
301
|
+
"warnings": 0
|
|
302
|
+
},
|
|
303
|
+
{
|
|
304
|
+
"optLevel": "O1",
|
|
305
|
+
"timingsMs": {
|
|
306
|
+
"parse": 0.556,
|
|
307
|
+
"hir": 0.036,
|
|
308
|
+
"mir": 2.215,
|
|
309
|
+
"emit": 0.112,
|
|
310
|
+
"total": 2.92
|
|
311
|
+
},
|
|
312
|
+
"fileCount": 184,
|
|
313
|
+
"mcfunctionFileCount": 182,
|
|
314
|
+
"instructionCount": 1005,
|
|
315
|
+
"totalBytes": 80166,
|
|
316
|
+
"mcfunctionBytes": 80023,
|
|
317
|
+
"warnings": 0
|
|
318
|
+
},
|
|
319
|
+
{
|
|
320
|
+
"optLevel": "O2",
|
|
321
|
+
"timingsMs": {
|
|
322
|
+
"parse": 0.458,
|
|
323
|
+
"hir": 0.037,
|
|
324
|
+
"mir": 2.788,
|
|
325
|
+
"emit": 0.104,
|
|
326
|
+
"total": 3.388
|
|
327
|
+
},
|
|
328
|
+
"fileCount": 184,
|
|
329
|
+
"mcfunctionFileCount": 182,
|
|
330
|
+
"instructionCount": 1005,
|
|
331
|
+
"totalBytes": 80166,
|
|
332
|
+
"mcfunctionBytes": 80023,
|
|
333
|
+
"warnings": 0
|
|
334
|
+
}
|
|
335
|
+
]
|
|
336
|
+
},
|
|
337
|
+
{
|
|
338
|
+
"module": "combat.mcrs",
|
|
339
|
+
"path": "/Users/yuzhe/projects/redscript/src/stdlib/combat.mcrs",
|
|
340
|
+
"results": [
|
|
341
|
+
{
|
|
342
|
+
"optLevel": "O0",
|
|
343
|
+
"timingsMs": {
|
|
344
|
+
"parse": 0.069,
|
|
345
|
+
"hir": 0.005,
|
|
346
|
+
"mir": 0.031,
|
|
347
|
+
"emit": 0.007,
|
|
348
|
+
"total": 0.113
|
|
349
|
+
},
|
|
350
|
+
"fileCount": 10,
|
|
351
|
+
"mcfunctionFileCount": 8,
|
|
352
|
+
"instructionCount": 29,
|
|
353
|
+
"totalBytes": 2421,
|
|
354
|
+
"mcfunctionBytes": 2276,
|
|
355
|
+
"warnings": 0
|
|
356
|
+
},
|
|
357
|
+
{
|
|
358
|
+
"optLevel": "O1",
|
|
359
|
+
"timingsMs": {
|
|
360
|
+
"parse": 0.043,
|
|
361
|
+
"hir": 0.003,
|
|
362
|
+
"mir": 0.085,
|
|
363
|
+
"emit": 0.006,
|
|
364
|
+
"total": 0.138
|
|
365
|
+
},
|
|
366
|
+
"fileCount": 10,
|
|
367
|
+
"mcfunctionFileCount": 8,
|
|
368
|
+
"instructionCount": 27,
|
|
369
|
+
"totalBytes": 2293,
|
|
370
|
+
"mcfunctionBytes": 2148,
|
|
371
|
+
"warnings": 0
|
|
372
|
+
},
|
|
373
|
+
{
|
|
374
|
+
"optLevel": "O2",
|
|
375
|
+
"timingsMs": {
|
|
376
|
+
"parse": 0.048,
|
|
377
|
+
"hir": 0.003,
|
|
378
|
+
"mir": 0.103,
|
|
379
|
+
"emit": 0.005,
|
|
380
|
+
"total": 0.16
|
|
381
|
+
},
|
|
382
|
+
"fileCount": 10,
|
|
383
|
+
"mcfunctionFileCount": 8,
|
|
384
|
+
"instructionCount": 27,
|
|
385
|
+
"totalBytes": 2293,
|
|
386
|
+
"mcfunctionBytes": 2148,
|
|
387
|
+
"warnings": 0
|
|
388
|
+
}
|
|
389
|
+
]
|
|
390
|
+
},
|
|
391
|
+
{
|
|
392
|
+
"module": "cooldown.mcrs",
|
|
393
|
+
"path": "/Users/yuzhe/projects/redscript/src/stdlib/cooldown.mcrs",
|
|
394
|
+
"results": [
|
|
395
|
+
{
|
|
396
|
+
"optLevel": "O0",
|
|
397
|
+
"timingsMs": {
|
|
398
|
+
"parse": 0.266,
|
|
399
|
+
"hir": 0.006,
|
|
400
|
+
"mir": 0.232,
|
|
401
|
+
"emit": 0.012,
|
|
402
|
+
"total": 0.517
|
|
403
|
+
},
|
|
404
|
+
"fileCount": 18,
|
|
405
|
+
"mcfunctionFileCount": 16,
|
|
406
|
+
"instructionCount": 62,
|
|
407
|
+
"totalBytes": 5230,
|
|
408
|
+
"mcfunctionBytes": 5081,
|
|
409
|
+
"warnings": 0
|
|
410
|
+
},
|
|
411
|
+
{
|
|
412
|
+
"optLevel": "O1",
|
|
413
|
+
"timingsMs": {
|
|
414
|
+
"parse": 0.12,
|
|
415
|
+
"hir": 0.006,
|
|
416
|
+
"mir": 0.195,
|
|
417
|
+
"emit": 0.008,
|
|
418
|
+
"total": 0.33
|
|
419
|
+
},
|
|
420
|
+
"fileCount": 18,
|
|
421
|
+
"mcfunctionFileCount": 16,
|
|
422
|
+
"instructionCount": 45,
|
|
423
|
+
"totalBytes": 3901,
|
|
424
|
+
"mcfunctionBytes": 3752,
|
|
425
|
+
"warnings": 0
|
|
426
|
+
},
|
|
427
|
+
{
|
|
428
|
+
"optLevel": "O2",
|
|
429
|
+
"timingsMs": {
|
|
430
|
+
"parse": 0.12,
|
|
431
|
+
"hir": 0.006,
|
|
432
|
+
"mir": 0.223,
|
|
433
|
+
"emit": 0.007,
|
|
434
|
+
"total": 0.357
|
|
435
|
+
},
|
|
436
|
+
"fileCount": 18,
|
|
437
|
+
"mcfunctionFileCount": 16,
|
|
438
|
+
"instructionCount": 45,
|
|
439
|
+
"totalBytes": 3901,
|
|
440
|
+
"mcfunctionBytes": 3752,
|
|
441
|
+
"warnings": 0
|
|
442
|
+
}
|
|
443
|
+
]
|
|
444
|
+
},
|
|
445
|
+
{
|
|
446
|
+
"module": "dialog.mcrs",
|
|
447
|
+
"path": "/Users/yuzhe/projects/redscript/src/stdlib/dialog.mcrs",
|
|
448
|
+
"results": [
|
|
449
|
+
{
|
|
450
|
+
"optLevel": "O0",
|
|
451
|
+
"timingsMs": {
|
|
452
|
+
"parse": 0.183,
|
|
453
|
+
"hir": 0.009,
|
|
454
|
+
"mir": 0.107,
|
|
455
|
+
"emit": 0.01,
|
|
456
|
+
"total": 0.31
|
|
457
|
+
},
|
|
458
|
+
"fileCount": 21,
|
|
459
|
+
"mcfunctionFileCount": 19,
|
|
460
|
+
"instructionCount": 52,
|
|
461
|
+
"totalBytes": 3782,
|
|
462
|
+
"mcfunctionBytes": 3637,
|
|
463
|
+
"warnings": 0
|
|
464
|
+
},
|
|
465
|
+
{
|
|
466
|
+
"optLevel": "O1",
|
|
467
|
+
"timingsMs": {
|
|
468
|
+
"parse": 0.13,
|
|
469
|
+
"hir": 0.004,
|
|
470
|
+
"mir": 0.152,
|
|
471
|
+
"emit": 0.006,
|
|
472
|
+
"total": 0.293
|
|
473
|
+
},
|
|
474
|
+
"fileCount": 21,
|
|
475
|
+
"mcfunctionFileCount": 19,
|
|
476
|
+
"instructionCount": 37,
|
|
477
|
+
"totalBytes": 2552,
|
|
478
|
+
"mcfunctionBytes": 2407,
|
|
479
|
+
"warnings": 0
|
|
480
|
+
},
|
|
481
|
+
{
|
|
482
|
+
"optLevel": "O2",
|
|
483
|
+
"timingsMs": {
|
|
484
|
+
"parse": 0.119,
|
|
485
|
+
"hir": 0.004,
|
|
486
|
+
"mir": 0.197,
|
|
487
|
+
"emit": 0.006,
|
|
488
|
+
"total": 0.327
|
|
489
|
+
},
|
|
490
|
+
"fileCount": 21,
|
|
491
|
+
"mcfunctionFileCount": 19,
|
|
492
|
+
"instructionCount": 37,
|
|
493
|
+
"totalBytes": 2552,
|
|
494
|
+
"mcfunctionBytes": 2407,
|
|
495
|
+
"warnings": 0
|
|
496
|
+
}
|
|
497
|
+
]
|
|
498
|
+
},
|
|
499
|
+
{
|
|
500
|
+
"module": "easing.mcrs",
|
|
501
|
+
"path": "/Users/yuzhe/projects/redscript/src/stdlib/easing.mcrs",
|
|
502
|
+
"results": [
|
|
503
|
+
{
|
|
504
|
+
"optLevel": "O0",
|
|
505
|
+
"timingsMs": {
|
|
506
|
+
"parse": 0.553,
|
|
507
|
+
"hir": 0.03,
|
|
508
|
+
"mir": 0.553,
|
|
509
|
+
"emit": 0.069,
|
|
510
|
+
"total": 1.205
|
|
511
|
+
},
|
|
512
|
+
"fileCount": 45,
|
|
513
|
+
"mcfunctionFileCount": 43,
|
|
514
|
+
"instructionCount": 517,
|
|
515
|
+
"totalBytes": 45601,
|
|
516
|
+
"mcfunctionBytes": 45456,
|
|
517
|
+
"warnings": 0
|
|
518
|
+
},
|
|
519
|
+
{
|
|
520
|
+
"optLevel": "O1",
|
|
521
|
+
"timingsMs": {
|
|
522
|
+
"parse": 0.466,
|
|
523
|
+
"hir": 0.029,
|
|
524
|
+
"mir": 1.166,
|
|
525
|
+
"emit": 0.05,
|
|
526
|
+
"total": 1.712
|
|
527
|
+
},
|
|
528
|
+
"fileCount": 45,
|
|
529
|
+
"mcfunctionFileCount": 43,
|
|
530
|
+
"instructionCount": 474,
|
|
531
|
+
"totalBytes": 41715,
|
|
532
|
+
"mcfunctionBytes": 41570,
|
|
533
|
+
"warnings": 0
|
|
534
|
+
},
|
|
535
|
+
{
|
|
536
|
+
"optLevel": "O2",
|
|
537
|
+
"timingsMs": {
|
|
538
|
+
"parse": 0.442,
|
|
539
|
+
"hir": 0.029,
|
|
540
|
+
"mir": 1.49,
|
|
541
|
+
"emit": 0.057,
|
|
542
|
+
"total": 2.022
|
|
543
|
+
},
|
|
544
|
+
"fileCount": 45,
|
|
545
|
+
"mcfunctionFileCount": 43,
|
|
546
|
+
"instructionCount": 474,
|
|
547
|
+
"totalBytes": 41715,
|
|
548
|
+
"mcfunctionBytes": 41570,
|
|
549
|
+
"warnings": 0
|
|
550
|
+
}
|
|
551
|
+
]
|
|
552
|
+
},
|
|
553
|
+
{
|
|
554
|
+
"module": "ecs.mcrs",
|
|
555
|
+
"path": "/Users/yuzhe/projects/redscript/src/stdlib/ecs.mcrs",
|
|
556
|
+
"results": [
|
|
557
|
+
{
|
|
558
|
+
"optLevel": "O0",
|
|
559
|
+
"timingsMs": {
|
|
560
|
+
"parse": 0.781,
|
|
561
|
+
"hir": 0.046,
|
|
562
|
+
"mir": 0.416,
|
|
563
|
+
"emit": 0.051,
|
|
564
|
+
"total": 1.297
|
|
565
|
+
},
|
|
566
|
+
"fileCount": 47,
|
|
567
|
+
"mcfunctionFileCount": 45,
|
|
568
|
+
"instructionCount": 277,
|
|
569
|
+
"totalBytes": 22040,
|
|
570
|
+
"mcfunctionBytes": 21901,
|
|
571
|
+
"warnings": 0
|
|
572
|
+
},
|
|
573
|
+
{
|
|
574
|
+
"optLevel": "O1",
|
|
575
|
+
"timingsMs": {
|
|
576
|
+
"parse": 0.413,
|
|
577
|
+
"hir": 0.027,
|
|
578
|
+
"mir": 0.869,
|
|
579
|
+
"emit": 0.033,
|
|
580
|
+
"total": 1.343
|
|
581
|
+
},
|
|
582
|
+
"fileCount": 47,
|
|
583
|
+
"mcfunctionFileCount": 45,
|
|
584
|
+
"instructionCount": 195,
|
|
585
|
+
"totalBytes": 15416,
|
|
586
|
+
"mcfunctionBytes": 15277,
|
|
587
|
+
"warnings": 0
|
|
588
|
+
},
|
|
589
|
+
{
|
|
590
|
+
"optLevel": "O2",
|
|
591
|
+
"timingsMs": {
|
|
592
|
+
"parse": 0.42,
|
|
593
|
+
"hir": 0.028,
|
|
594
|
+
"mir": 1.045,
|
|
595
|
+
"emit": 0.031,
|
|
596
|
+
"total": 1.526
|
|
597
|
+
},
|
|
598
|
+
"fileCount": 47,
|
|
599
|
+
"mcfunctionFileCount": 45,
|
|
600
|
+
"instructionCount": 195,
|
|
601
|
+
"totalBytes": 15416,
|
|
602
|
+
"mcfunctionBytes": 15277,
|
|
603
|
+
"warnings": 0
|
|
604
|
+
}
|
|
605
|
+
]
|
|
606
|
+
},
|
|
607
|
+
{
|
|
608
|
+
"module": "effects.mcrs",
|
|
609
|
+
"path": "/Users/yuzhe/projects/redscript/src/stdlib/effects.mcrs",
|
|
610
|
+
"results": [
|
|
611
|
+
{
|
|
612
|
+
"optLevel": "O0",
|
|
613
|
+
"timingsMs": {
|
|
614
|
+
"parse": 0.155,
|
|
615
|
+
"hir": 0.011,
|
|
616
|
+
"mir": 0.404,
|
|
617
|
+
"emit": 0.016,
|
|
618
|
+
"total": 0.587
|
|
619
|
+
},
|
|
620
|
+
"fileCount": 15,
|
|
621
|
+
"mcfunctionFileCount": 13,
|
|
622
|
+
"instructionCount": 75,
|
|
623
|
+
"totalBytes": 5835,
|
|
624
|
+
"mcfunctionBytes": 5688,
|
|
625
|
+
"warnings": 0
|
|
626
|
+
},
|
|
627
|
+
{
|
|
628
|
+
"optLevel": "O1",
|
|
629
|
+
"timingsMs": {
|
|
630
|
+
"parse": 0.123,
|
|
631
|
+
"hir": 0.008,
|
|
632
|
+
"mir": 0.228,
|
|
633
|
+
"emit": 0.008,
|
|
634
|
+
"total": 0.371
|
|
635
|
+
},
|
|
636
|
+
"fileCount": 15,
|
|
637
|
+
"mcfunctionFileCount": 13,
|
|
638
|
+
"instructionCount": 34,
|
|
639
|
+
"totalBytes": 2770,
|
|
640
|
+
"mcfunctionBytes": 2623,
|
|
641
|
+
"warnings": 0
|
|
642
|
+
},
|
|
643
|
+
{
|
|
644
|
+
"optLevel": "O2",
|
|
645
|
+
"timingsMs": {
|
|
646
|
+
"parse": 0.118,
|
|
647
|
+
"hir": 0.007,
|
|
648
|
+
"mir": 0.253,
|
|
649
|
+
"emit": 0.008,
|
|
650
|
+
"total": 0.387
|
|
651
|
+
},
|
|
652
|
+
"fileCount": 15,
|
|
653
|
+
"mcfunctionFileCount": 13,
|
|
654
|
+
"instructionCount": 34,
|
|
655
|
+
"totalBytes": 2770,
|
|
656
|
+
"mcfunctionBytes": 2623,
|
|
657
|
+
"warnings": 0
|
|
658
|
+
}
|
|
659
|
+
]
|
|
660
|
+
},
|
|
661
|
+
{
|
|
662
|
+
"module": "events.mcrs",
|
|
663
|
+
"path": "/Users/yuzhe/projects/redscript/src/stdlib/events.mcrs",
|
|
664
|
+
"results": [
|
|
665
|
+
{
|
|
666
|
+
"optLevel": "O0",
|
|
667
|
+
"timingsMs": {
|
|
668
|
+
"parse": 0.189,
|
|
669
|
+
"hir": 0.009,
|
|
670
|
+
"mir": 0.025,
|
|
671
|
+
"emit": 0.02,
|
|
672
|
+
"total": 0.247
|
|
673
|
+
},
|
|
674
|
+
"fileCount": 6,
|
|
675
|
+
"mcfunctionFileCount": 3,
|
|
676
|
+
"instructionCount": 12,
|
|
677
|
+
"totalBytes": 885,
|
|
678
|
+
"mcfunctionBytes": 649,
|
|
679
|
+
"warnings": 0
|
|
680
|
+
},
|
|
681
|
+
{
|
|
682
|
+
"optLevel": "O1",
|
|
683
|
+
"timingsMs": {
|
|
684
|
+
"parse": 0.045,
|
|
685
|
+
"hir": 0.002,
|
|
686
|
+
"mir": 0.033,
|
|
687
|
+
"emit": 0.005,
|
|
688
|
+
"total": 0.087
|
|
689
|
+
},
|
|
690
|
+
"fileCount": 6,
|
|
691
|
+
"mcfunctionFileCount": 3,
|
|
692
|
+
"instructionCount": 12,
|
|
693
|
+
"totalBytes": 885,
|
|
694
|
+
"mcfunctionBytes": 649,
|
|
695
|
+
"warnings": 0
|
|
696
|
+
},
|
|
697
|
+
{
|
|
698
|
+
"optLevel": "O2",
|
|
699
|
+
"timingsMs": {
|
|
700
|
+
"parse": 0.034,
|
|
701
|
+
"hir": 0.002,
|
|
702
|
+
"mir": 0.042,
|
|
703
|
+
"emit": 0.003,
|
|
704
|
+
"total": 0.082
|
|
705
|
+
},
|
|
706
|
+
"fileCount": 6,
|
|
707
|
+
"mcfunctionFileCount": 3,
|
|
708
|
+
"instructionCount": 12,
|
|
709
|
+
"totalBytes": 885,
|
|
710
|
+
"mcfunctionBytes": 649,
|
|
711
|
+
"warnings": 0
|
|
712
|
+
}
|
|
713
|
+
]
|
|
714
|
+
},
|
|
715
|
+
{
|
|
716
|
+
"module": "expr.mcrs",
|
|
717
|
+
"path": "/Users/yuzhe/projects/redscript/src/stdlib/expr.mcrs",
|
|
718
|
+
"results": [
|
|
719
|
+
{
|
|
720
|
+
"optLevel": "O0",
|
|
721
|
+
"timingsMs": {
|
|
722
|
+
"parse": 0.286,
|
|
723
|
+
"hir": 0.024,
|
|
724
|
+
"mir": 0.224,
|
|
725
|
+
"emit": 0.053,
|
|
726
|
+
"total": 0.588
|
|
727
|
+
},
|
|
728
|
+
"fileCount": 42,
|
|
729
|
+
"mcfunctionFileCount": 40,
|
|
730
|
+
"instructionCount": 343,
|
|
731
|
+
"totalBytes": 27937,
|
|
732
|
+
"mcfunctionBytes": 27796,
|
|
733
|
+
"warnings": 0
|
|
734
|
+
},
|
|
735
|
+
{
|
|
736
|
+
"optLevel": "O1",
|
|
737
|
+
"timingsMs": {
|
|
738
|
+
"parse": 0.264,
|
|
739
|
+
"hir": 0.025,
|
|
740
|
+
"mir": 0.738,
|
|
741
|
+
"emit": 0.82,
|
|
742
|
+
"total": 1.849
|
|
743
|
+
},
|
|
744
|
+
"fileCount": 42,
|
|
745
|
+
"mcfunctionFileCount": 40,
|
|
746
|
+
"instructionCount": 284,
|
|
747
|
+
"totalBytes": 23764,
|
|
748
|
+
"mcfunctionBytes": 23623,
|
|
749
|
+
"warnings": 0
|
|
750
|
+
},
|
|
751
|
+
{
|
|
752
|
+
"optLevel": "O2",
|
|
753
|
+
"timingsMs": {
|
|
754
|
+
"parse": 0.276,
|
|
755
|
+
"hir": 0.014,
|
|
756
|
+
"mir": 0.925,
|
|
757
|
+
"emit": 0.046,
|
|
758
|
+
"total": 1.263
|
|
759
|
+
},
|
|
760
|
+
"fileCount": 42,
|
|
761
|
+
"mcfunctionFileCount": 40,
|
|
762
|
+
"instructionCount": 284,
|
|
763
|
+
"totalBytes": 23764,
|
|
764
|
+
"mcfunctionBytes": 23623,
|
|
765
|
+
"warnings": 0
|
|
766
|
+
}
|
|
767
|
+
]
|
|
768
|
+
},
|
|
769
|
+
{
|
|
770
|
+
"module": "fft.mcrs",
|
|
771
|
+
"path": "/Users/yuzhe/projects/redscript/src/stdlib/fft.mcrs",
|
|
772
|
+
"results": [
|
|
773
|
+
{
|
|
774
|
+
"optLevel": "O0",
|
|
775
|
+
"timingsMs": {
|
|
776
|
+
"parse": 0.321,
|
|
777
|
+
"hir": 0.01,
|
|
778
|
+
"mir": 1.329,
|
|
779
|
+
"emit": 0.047,
|
|
780
|
+
"total": 1.715
|
|
781
|
+
},
|
|
782
|
+
"fileCount": 39,
|
|
783
|
+
"mcfunctionFileCount": 36,
|
|
784
|
+
"instructionCount": 263,
|
|
785
|
+
"totalBytes": 23583,
|
|
786
|
+
"mcfunctionBytes": 23385,
|
|
787
|
+
"warnings": 0
|
|
788
|
+
},
|
|
789
|
+
{
|
|
790
|
+
"optLevel": "O1",
|
|
791
|
+
"timingsMs": {
|
|
792
|
+
"parse": 0.254,
|
|
793
|
+
"hir": 0.009,
|
|
794
|
+
"mir": 0.944,
|
|
795
|
+
"emit": 0.038,
|
|
796
|
+
"total": 1.249
|
|
797
|
+
},
|
|
798
|
+
"fileCount": 39,
|
|
799
|
+
"mcfunctionFileCount": 36,
|
|
800
|
+
"instructionCount": 217,
|
|
801
|
+
"totalBytes": 19530,
|
|
802
|
+
"mcfunctionBytes": 19332,
|
|
803
|
+
"warnings": 0
|
|
804
|
+
},
|
|
805
|
+
{
|
|
806
|
+
"optLevel": "O2",
|
|
807
|
+
"timingsMs": {
|
|
808
|
+
"parse": 0.252,
|
|
809
|
+
"hir": 0.011,
|
|
810
|
+
"mir": 1.171,
|
|
811
|
+
"emit": 0.039,
|
|
812
|
+
"total": 1.475
|
|
813
|
+
},
|
|
814
|
+
"fileCount": 39,
|
|
815
|
+
"mcfunctionFileCount": 36,
|
|
816
|
+
"instructionCount": 217,
|
|
817
|
+
"totalBytes": 19530,
|
|
818
|
+
"mcfunctionBytes": 19332,
|
|
819
|
+
"warnings": 0
|
|
820
|
+
}
|
|
821
|
+
]
|
|
822
|
+
},
|
|
823
|
+
{
|
|
824
|
+
"module": "geometry.mcrs",
|
|
825
|
+
"path": "/Users/yuzhe/projects/redscript/src/stdlib/geometry.mcrs",
|
|
826
|
+
"results": [
|
|
827
|
+
{
|
|
828
|
+
"optLevel": "O0",
|
|
829
|
+
"timingsMs": {
|
|
830
|
+
"parse": 0.475,
|
|
831
|
+
"hir": 0.018,
|
|
832
|
+
"mir": 0.862,
|
|
833
|
+
"emit": 0.097,
|
|
834
|
+
"total": 1.456
|
|
835
|
+
},
|
|
836
|
+
"fileCount": 99,
|
|
837
|
+
"mcfunctionFileCount": 97,
|
|
838
|
+
"instructionCount": 547,
|
|
839
|
+
"totalBytes": 48354,
|
|
840
|
+
"mcfunctionBytes": 48205,
|
|
841
|
+
"warnings": 0
|
|
842
|
+
},
|
|
843
|
+
{
|
|
844
|
+
"optLevel": "O1",
|
|
845
|
+
"timingsMs": {
|
|
846
|
+
"parse": 0.43,
|
|
847
|
+
"hir": 0.017,
|
|
848
|
+
"mir": 1.58,
|
|
849
|
+
"emit": 0.084,
|
|
850
|
+
"total": 2.113
|
|
851
|
+
},
|
|
852
|
+
"fileCount": 99,
|
|
853
|
+
"mcfunctionFileCount": 97,
|
|
854
|
+
"instructionCount": 481,
|
|
855
|
+
"totalBytes": 42990,
|
|
856
|
+
"mcfunctionBytes": 42841,
|
|
857
|
+
"warnings": 0
|
|
858
|
+
},
|
|
859
|
+
{
|
|
860
|
+
"optLevel": "O2",
|
|
861
|
+
"timingsMs": {
|
|
862
|
+
"parse": 0.424,
|
|
863
|
+
"hir": 0.016,
|
|
864
|
+
"mir": 2.042,
|
|
865
|
+
"emit": 0.062,
|
|
866
|
+
"total": 2.545
|
|
867
|
+
},
|
|
868
|
+
"fileCount": 99,
|
|
869
|
+
"mcfunctionFileCount": 97,
|
|
870
|
+
"instructionCount": 481,
|
|
871
|
+
"totalBytes": 42990,
|
|
872
|
+
"mcfunctionBytes": 42841,
|
|
873
|
+
"warnings": 0
|
|
874
|
+
}
|
|
875
|
+
]
|
|
876
|
+
},
|
|
877
|
+
{
|
|
878
|
+
"module": "graph.mcrs",
|
|
879
|
+
"path": "/Users/yuzhe/projects/redscript/src/stdlib/graph.mcrs",
|
|
880
|
+
"results": [
|
|
881
|
+
{
|
|
882
|
+
"optLevel": "O0",
|
|
883
|
+
"timingsMs": {
|
|
884
|
+
"parse": 1.001,
|
|
885
|
+
"hir": 0.035,
|
|
886
|
+
"mir": 1.005,
|
|
887
|
+
"emit": 0.097,
|
|
888
|
+
"total": 2.14
|
|
889
|
+
},
|
|
890
|
+
"fileCount": 126,
|
|
891
|
+
"mcfunctionFileCount": 124,
|
|
892
|
+
"instructionCount": 679,
|
|
893
|
+
"totalBytes": 62958,
|
|
894
|
+
"mcfunctionBytes": 62815,
|
|
895
|
+
"warnings": 0
|
|
896
|
+
},
|
|
897
|
+
{
|
|
898
|
+
"optLevel": "O1",
|
|
899
|
+
"timingsMs": {
|
|
900
|
+
"parse": 1.065,
|
|
901
|
+
"hir": 0.035,
|
|
902
|
+
"mir": 3.004,
|
|
903
|
+
"emit": 0.085,
|
|
904
|
+
"total": 4.194
|
|
905
|
+
},
|
|
906
|
+
"fileCount": 126,
|
|
907
|
+
"mcfunctionFileCount": 124,
|
|
908
|
+
"instructionCount": 519,
|
|
909
|
+
"totalBytes": 49848,
|
|
910
|
+
"mcfunctionBytes": 49705,
|
|
911
|
+
"warnings": 0
|
|
912
|
+
},
|
|
913
|
+
{
|
|
914
|
+
"optLevel": "O2",
|
|
915
|
+
"timingsMs": {
|
|
916
|
+
"parse": 0.986,
|
|
917
|
+
"hir": 0.097,
|
|
918
|
+
"mir": 3.358,
|
|
919
|
+
"emit": 0.071,
|
|
920
|
+
"total": 4.516
|
|
921
|
+
},
|
|
922
|
+
"fileCount": 126,
|
|
923
|
+
"mcfunctionFileCount": 124,
|
|
924
|
+
"instructionCount": 519,
|
|
925
|
+
"totalBytes": 49848,
|
|
926
|
+
"mcfunctionBytes": 49705,
|
|
927
|
+
"warnings": 0
|
|
928
|
+
}
|
|
929
|
+
]
|
|
930
|
+
},
|
|
931
|
+
{
|
|
932
|
+
"module": "heap.mcrs",
|
|
933
|
+
"path": "/Users/yuzhe/projects/redscript/src/stdlib/heap.mcrs",
|
|
934
|
+
"results": [
|
|
935
|
+
{
|
|
936
|
+
"optLevel": "O0",
|
|
937
|
+
"timingsMs": {
|
|
938
|
+
"parse": 0.34,
|
|
939
|
+
"hir": 0.018,
|
|
940
|
+
"mir": 0.347,
|
|
941
|
+
"emit": 0.047,
|
|
942
|
+
"total": 0.753
|
|
943
|
+
},
|
|
944
|
+
"fileCount": 83,
|
|
945
|
+
"mcfunctionFileCount": 81,
|
|
946
|
+
"instructionCount": 326,
|
|
947
|
+
"totalBytes": 25073,
|
|
948
|
+
"mcfunctionBytes": 24932,
|
|
949
|
+
"warnings": 0
|
|
950
|
+
},
|
|
951
|
+
{
|
|
952
|
+
"optLevel": "O1",
|
|
953
|
+
"timingsMs": {
|
|
954
|
+
"parse": 0.309,
|
|
955
|
+
"hir": 0.012,
|
|
956
|
+
"mir": 0.749,
|
|
957
|
+
"emit": 0.031,
|
|
958
|
+
"total": 1.102
|
|
959
|
+
},
|
|
960
|
+
"fileCount": 83,
|
|
961
|
+
"mcfunctionFileCount": 81,
|
|
962
|
+
"instructionCount": 226,
|
|
963
|
+
"totalBytes": 16964,
|
|
964
|
+
"mcfunctionBytes": 16823,
|
|
965
|
+
"warnings": 0
|
|
966
|
+
},
|
|
967
|
+
{
|
|
968
|
+
"optLevel": "O2",
|
|
969
|
+
"timingsMs": {
|
|
970
|
+
"parse": 0.267,
|
|
971
|
+
"hir": 0.011,
|
|
972
|
+
"mir": 0.941,
|
|
973
|
+
"emit": 0.03,
|
|
974
|
+
"total": 1.249
|
|
975
|
+
},
|
|
976
|
+
"fileCount": 83,
|
|
977
|
+
"mcfunctionFileCount": 81,
|
|
978
|
+
"instructionCount": 226,
|
|
979
|
+
"totalBytes": 16964,
|
|
980
|
+
"mcfunctionBytes": 16823,
|
|
981
|
+
"warnings": 0
|
|
982
|
+
}
|
|
983
|
+
]
|
|
984
|
+
},
|
|
985
|
+
{
|
|
986
|
+
"module": "interactions.mcrs",
|
|
987
|
+
"path": "/Users/yuzhe/projects/redscript/src/stdlib/interactions.mcrs",
|
|
988
|
+
"results": [
|
|
989
|
+
{
|
|
990
|
+
"optLevel": "O0",
|
|
991
|
+
"timingsMs": {
|
|
992
|
+
"parse": 0.82,
|
|
993
|
+
"hir": 0.043,
|
|
994
|
+
"mir": 0.628,
|
|
995
|
+
"emit": 0.079,
|
|
996
|
+
"total": 1.571
|
|
997
|
+
},
|
|
998
|
+
"fileCount": 41,
|
|
999
|
+
"mcfunctionFileCount": 39,
|
|
1000
|
+
"instructionCount": 139,
|
|
1001
|
+
"totalBytes": 12852,
|
|
1002
|
+
"mcfunctionBytes": 12695,
|
|
1003
|
+
"warnings": 0
|
|
1004
|
+
},
|
|
1005
|
+
{
|
|
1006
|
+
"optLevel": "O1",
|
|
1007
|
+
"timingsMs": {
|
|
1008
|
+
"parse": 0.287,
|
|
1009
|
+
"hir": 0.012,
|
|
1010
|
+
"mir": 0.657,
|
|
1011
|
+
"emit": 0.96,
|
|
1012
|
+
"total": 1.918
|
|
1013
|
+
},
|
|
1014
|
+
"fileCount": 41,
|
|
1015
|
+
"mcfunctionFileCount": 39,
|
|
1016
|
+
"instructionCount": 98,
|
|
1017
|
+
"totalBytes": 8763,
|
|
1018
|
+
"mcfunctionBytes": 8606,
|
|
1019
|
+
"warnings": 0
|
|
1020
|
+
},
|
|
1021
|
+
{
|
|
1022
|
+
"optLevel": "O2",
|
|
1023
|
+
"timingsMs": {
|
|
1024
|
+
"parse": 0.341,
|
|
1025
|
+
"hir": 0.016,
|
|
1026
|
+
"mir": 0.803,
|
|
1027
|
+
"emit": 0.031,
|
|
1028
|
+
"total": 1.193
|
|
1029
|
+
},
|
|
1030
|
+
"fileCount": 41,
|
|
1031
|
+
"mcfunctionFileCount": 39,
|
|
1032
|
+
"instructionCount": 98,
|
|
1033
|
+
"totalBytes": 8763,
|
|
1034
|
+
"mcfunctionBytes": 8606,
|
|
1035
|
+
"warnings": 0
|
|
1036
|
+
}
|
|
1037
|
+
]
|
|
1038
|
+
},
|
|
1039
|
+
{
|
|
1040
|
+
"module": "inventory.mcrs",
|
|
1041
|
+
"path": "/Users/yuzhe/projects/redscript/src/stdlib/inventory.mcrs",
|
|
1042
|
+
"results": [
|
|
1043
|
+
{
|
|
1044
|
+
"optLevel": "O0",
|
|
1045
|
+
"timingsMs": {
|
|
1046
|
+
"parse": 0.115,
|
|
1047
|
+
"hir": 0.007,
|
|
1048
|
+
"mir": 0.061,
|
|
1049
|
+
"emit": 0.01,
|
|
1050
|
+
"total": 0.194
|
|
1051
|
+
},
|
|
1052
|
+
"fileCount": 8,
|
|
1053
|
+
"mcfunctionFileCount": 6,
|
|
1054
|
+
"instructionCount": 45,
|
|
1055
|
+
"totalBytes": 2717,
|
|
1056
|
+
"mcfunctionBytes": 2566,
|
|
1057
|
+
"warnings": 0
|
|
1058
|
+
},
|
|
1059
|
+
{
|
|
1060
|
+
"optLevel": "O1",
|
|
1061
|
+
"timingsMs": {
|
|
1062
|
+
"parse": 0.102,
|
|
1063
|
+
"hir": 0.004,
|
|
1064
|
+
"mir": 0.125,
|
|
1065
|
+
"emit": 0.005,
|
|
1066
|
+
"total": 0.237
|
|
1067
|
+
},
|
|
1068
|
+
"fileCount": 8,
|
|
1069
|
+
"mcfunctionFileCount": 6,
|
|
1070
|
+
"instructionCount": 20,
|
|
1071
|
+
"totalBytes": 960,
|
|
1072
|
+
"mcfunctionBytes": 809,
|
|
1073
|
+
"warnings": 0
|
|
1074
|
+
},
|
|
1075
|
+
{
|
|
1076
|
+
"optLevel": "O2",
|
|
1077
|
+
"timingsMs": {
|
|
1078
|
+
"parse": 0.107,
|
|
1079
|
+
"hir": 0.004,
|
|
1080
|
+
"mir": 0.152,
|
|
1081
|
+
"emit": 0.005,
|
|
1082
|
+
"total": 0.268
|
|
1083
|
+
},
|
|
1084
|
+
"fileCount": 8,
|
|
1085
|
+
"mcfunctionFileCount": 6,
|
|
1086
|
+
"instructionCount": 20,
|
|
1087
|
+
"totalBytes": 960,
|
|
1088
|
+
"mcfunctionBytes": 809,
|
|
1089
|
+
"warnings": 0
|
|
1090
|
+
}
|
|
1091
|
+
]
|
|
1092
|
+
},
|
|
1093
|
+
{
|
|
1094
|
+
"module": "linalg.mcrs",
|
|
1095
|
+
"path": "/Users/yuzhe/projects/redscript/src/stdlib/linalg.mcrs",
|
|
1096
|
+
"results": [
|
|
1097
|
+
{
|
|
1098
|
+
"optLevel": "O0",
|
|
1099
|
+
"timingsMs": {
|
|
1100
|
+
"parse": 0.748,
|
|
1101
|
+
"hir": 0.072,
|
|
1102
|
+
"mir": 1.173,
|
|
1103
|
+
"emit": 0.119,
|
|
1104
|
+
"total": 2.116
|
|
1105
|
+
},
|
|
1106
|
+
"fileCount": 38,
|
|
1107
|
+
"mcfunctionFileCount": 36,
|
|
1108
|
+
"instructionCount": 694,
|
|
1109
|
+
"totalBytes": 57002,
|
|
1110
|
+
"mcfunctionBytes": 56857,
|
|
1111
|
+
"warnings": 0
|
|
1112
|
+
},
|
|
1113
|
+
{
|
|
1114
|
+
"optLevel": "O1",
|
|
1115
|
+
"timingsMs": {
|
|
1116
|
+
"parse": 0.672,
|
|
1117
|
+
"hir": 0.036,
|
|
1118
|
+
"mir": 2.373,
|
|
1119
|
+
"emit": 0.079,
|
|
1120
|
+
"total": 3.163
|
|
1121
|
+
},
|
|
1122
|
+
"fileCount": 38,
|
|
1123
|
+
"mcfunctionFileCount": 36,
|
|
1124
|
+
"instructionCount": 500,
|
|
1125
|
+
"totalBytes": 38914,
|
|
1126
|
+
"mcfunctionBytes": 38769,
|
|
1127
|
+
"warnings": 0
|
|
1128
|
+
},
|
|
1129
|
+
{
|
|
1130
|
+
"optLevel": "O2",
|
|
1131
|
+
"timingsMs": {
|
|
1132
|
+
"parse": 0.66,
|
|
1133
|
+
"hir": 0.037,
|
|
1134
|
+
"mir": 2.982,
|
|
1135
|
+
"emit": 0.039,
|
|
1136
|
+
"total": 3.721
|
|
1137
|
+
},
|
|
1138
|
+
"fileCount": 38,
|
|
1139
|
+
"mcfunctionFileCount": 36,
|
|
1140
|
+
"instructionCount": 500,
|
|
1141
|
+
"totalBytes": 38914,
|
|
1142
|
+
"mcfunctionBytes": 38769,
|
|
1143
|
+
"warnings": 0
|
|
1144
|
+
}
|
|
1145
|
+
]
|
|
1146
|
+
},
|
|
1147
|
+
{
|
|
1148
|
+
"module": "list.mcrs",
|
|
1149
|
+
"path": "/Users/yuzhe/projects/redscript/src/stdlib/list.mcrs",
|
|
1150
|
+
"results": [
|
|
1151
|
+
{
|
|
1152
|
+
"optLevel": "O0",
|
|
1153
|
+
"timingsMs": {
|
|
1154
|
+
"parse": 0.756,
|
|
1155
|
+
"hir": 0.064,
|
|
1156
|
+
"mir": 3.752,
|
|
1157
|
+
"emit": 0.234,
|
|
1158
|
+
"total": 4.811
|
|
1159
|
+
},
|
|
1160
|
+
"fileCount": 382,
|
|
1161
|
+
"mcfunctionFileCount": 380,
|
|
1162
|
+
"instructionCount": 1458,
|
|
1163
|
+
"totalBytes": 110325,
|
|
1164
|
+
"mcfunctionBytes": 110184,
|
|
1165
|
+
"warnings": 0
|
|
1166
|
+
},
|
|
1167
|
+
{
|
|
1168
|
+
"optLevel": "O1",
|
|
1169
|
+
"timingsMs": {
|
|
1170
|
+
"parse": 0.778,
|
|
1171
|
+
"hir": 0.064,
|
|
1172
|
+
"mir": 4.473,
|
|
1173
|
+
"emit": 0.158,
|
|
1174
|
+
"total": 5.476
|
|
1175
|
+
},
|
|
1176
|
+
"fileCount": 382,
|
|
1177
|
+
"mcfunctionFileCount": 380,
|
|
1178
|
+
"instructionCount": 1221,
|
|
1179
|
+
"totalBytes": 93929,
|
|
1180
|
+
"mcfunctionBytes": 93788,
|
|
1181
|
+
"warnings": 0
|
|
1182
|
+
},
|
|
1183
|
+
{
|
|
1184
|
+
"optLevel": "O2",
|
|
1185
|
+
"timingsMs": {
|
|
1186
|
+
"parse": 0.67,
|
|
1187
|
+
"hir": 0.061,
|
|
1188
|
+
"mir": 6.494,
|
|
1189
|
+
"emit": 0.158,
|
|
1190
|
+
"total": 7.386
|
|
1191
|
+
},
|
|
1192
|
+
"fileCount": 382,
|
|
1193
|
+
"mcfunctionFileCount": 380,
|
|
1194
|
+
"instructionCount": 1221,
|
|
1195
|
+
"totalBytes": 93929,
|
|
1196
|
+
"mcfunctionBytes": 93788,
|
|
1197
|
+
"warnings": 0
|
|
1198
|
+
}
|
|
1199
|
+
]
|
|
1200
|
+
},
|
|
1201
|
+
{
|
|
1202
|
+
"module": "math.mcrs",
|
|
1203
|
+
"path": "/Users/yuzhe/projects/redscript/src/stdlib/math.mcrs",
|
|
1204
|
+
"results": [
|
|
1205
|
+
{
|
|
1206
|
+
"optLevel": "O0",
|
|
1207
|
+
"timingsMs": {
|
|
1208
|
+
"parse": 1.387,
|
|
1209
|
+
"hir": 0.536,
|
|
1210
|
+
"mir": 4.009,
|
|
1211
|
+
"emit": 0.218,
|
|
1212
|
+
"total": 6.154
|
|
1213
|
+
},
|
|
1214
|
+
"fileCount": 240,
|
|
1215
|
+
"mcfunctionFileCount": 238,
|
|
1216
|
+
"instructionCount": 1605,
|
|
1217
|
+
"totalBytes": 123457,
|
|
1218
|
+
"mcfunctionBytes": 123316,
|
|
1219
|
+
"warnings": 0
|
|
1220
|
+
},
|
|
1221
|
+
{
|
|
1222
|
+
"optLevel": "O1",
|
|
1223
|
+
"timingsMs": {
|
|
1224
|
+
"parse": 1.279,
|
|
1225
|
+
"hir": 0.186,
|
|
1226
|
+
"mir": 5.921,
|
|
1227
|
+
"emit": 0.214,
|
|
1228
|
+
"total": 7.605
|
|
1229
|
+
},
|
|
1230
|
+
"fileCount": 240,
|
|
1231
|
+
"mcfunctionFileCount": 238,
|
|
1232
|
+
"instructionCount": 1456,
|
|
1233
|
+
"totalBytes": 112721,
|
|
1234
|
+
"mcfunctionBytes": 112580,
|
|
1235
|
+
"warnings": 0
|
|
1236
|
+
},
|
|
1237
|
+
{
|
|
1238
|
+
"optLevel": "O2",
|
|
1239
|
+
"timingsMs": {
|
|
1240
|
+
"parse": 1.185,
|
|
1241
|
+
"hir": 0.186,
|
|
1242
|
+
"mir": 8.272,
|
|
1243
|
+
"emit": 0.182,
|
|
1244
|
+
"total": 9.83
|
|
1245
|
+
},
|
|
1246
|
+
"fileCount": 240,
|
|
1247
|
+
"mcfunctionFileCount": 238,
|
|
1248
|
+
"instructionCount": 1456,
|
|
1249
|
+
"totalBytes": 112721,
|
|
1250
|
+
"mcfunctionBytes": 112580,
|
|
1251
|
+
"warnings": 0
|
|
1252
|
+
}
|
|
1253
|
+
]
|
|
1254
|
+
},
|
|
1255
|
+
{
|
|
1256
|
+
"module": "math_hp.mcrs",
|
|
1257
|
+
"path": "/Users/yuzhe/projects/redscript/src/stdlib/math_hp.mcrs",
|
|
1258
|
+
"results": [
|
|
1259
|
+
{
|
|
1260
|
+
"optLevel": "O0",
|
|
1261
|
+
"timingsMs": {
|
|
1262
|
+
"parse": 0.792,
|
|
1263
|
+
"hir": 0.031,
|
|
1264
|
+
"mir": 0.786,
|
|
1265
|
+
"emit": 0.061,
|
|
1266
|
+
"total": 1.673
|
|
1267
|
+
},
|
|
1268
|
+
"fileCount": 42,
|
|
1269
|
+
"mcfunctionFileCount": 40,
|
|
1270
|
+
"instructionCount": 441,
|
|
1271
|
+
"totalBytes": 37330,
|
|
1272
|
+
"mcfunctionBytes": 37183,
|
|
1273
|
+
"warnings": 0
|
|
1274
|
+
},
|
|
1275
|
+
{
|
|
1276
|
+
"optLevel": "O1",
|
|
1277
|
+
"timingsMs": {
|
|
1278
|
+
"parse": 0.695,
|
|
1279
|
+
"hir": 0.025,
|
|
1280
|
+
"mir": 1.291,
|
|
1281
|
+
"emit": 0.044,
|
|
1282
|
+
"total": 2.058
|
|
1283
|
+
},
|
|
1284
|
+
"fileCount": 42,
|
|
1285
|
+
"mcfunctionFileCount": 40,
|
|
1286
|
+
"instructionCount": 382,
|
|
1287
|
+
"totalBytes": 32762,
|
|
1288
|
+
"mcfunctionBytes": 32615,
|
|
1289
|
+
"warnings": 0
|
|
1290
|
+
},
|
|
1291
|
+
{
|
|
1292
|
+
"optLevel": "O2",
|
|
1293
|
+
"timingsMs": {
|
|
1294
|
+
"parse": 0.623,
|
|
1295
|
+
"hir": 0.023,
|
|
1296
|
+
"mir": 1.571,
|
|
1297
|
+
"emit": 0.041,
|
|
1298
|
+
"total": 2.26
|
|
1299
|
+
},
|
|
1300
|
+
"fileCount": 42,
|
|
1301
|
+
"mcfunctionFileCount": 40,
|
|
1302
|
+
"instructionCount": 382,
|
|
1303
|
+
"totalBytes": 32762,
|
|
1304
|
+
"mcfunctionBytes": 32615,
|
|
1305
|
+
"warnings": 0
|
|
1306
|
+
}
|
|
1307
|
+
]
|
|
1308
|
+
},
|
|
1309
|
+
{
|
|
1310
|
+
"module": "matrix.mcrs",
|
|
1311
|
+
"path": "/Users/yuzhe/projects/redscript/src/stdlib/matrix.mcrs",
|
|
1312
|
+
"results": [
|
|
1313
|
+
{
|
|
1314
|
+
"optLevel": "O0",
|
|
1315
|
+
"timingsMs": {
|
|
1316
|
+
"parse": 0.55,
|
|
1317
|
+
"hir": 0.022,
|
|
1318
|
+
"mir": 1.109,
|
|
1319
|
+
"emit": 0.173,
|
|
1320
|
+
"total": 1.856
|
|
1321
|
+
},
|
|
1322
|
+
"fileCount": 139,
|
|
1323
|
+
"mcfunctionFileCount": 137,
|
|
1324
|
+
"instructionCount": 1388,
|
|
1325
|
+
"totalBytes": 124088,
|
|
1326
|
+
"mcfunctionBytes": 123943,
|
|
1327
|
+
"warnings": 0
|
|
1328
|
+
},
|
|
1329
|
+
{
|
|
1330
|
+
"optLevel": "O1",
|
|
1331
|
+
"timingsMs": {
|
|
1332
|
+
"parse": 0.511,
|
|
1333
|
+
"hir": 0.022,
|
|
1334
|
+
"mir": 2.305,
|
|
1335
|
+
"emit": 0.126,
|
|
1336
|
+
"total": 2.965
|
|
1337
|
+
},
|
|
1338
|
+
"fileCount": 139,
|
|
1339
|
+
"mcfunctionFileCount": 137,
|
|
1340
|
+
"instructionCount": 1297,
|
|
1341
|
+
"totalBytes": 116865,
|
|
1342
|
+
"mcfunctionBytes": 116720,
|
|
1343
|
+
"warnings": 0
|
|
1344
|
+
},
|
|
1345
|
+
{
|
|
1346
|
+
"optLevel": "O2",
|
|
1347
|
+
"timingsMs": {
|
|
1348
|
+
"parse": 0.502,
|
|
1349
|
+
"hir": 0.02,
|
|
1350
|
+
"mir": 2.922,
|
|
1351
|
+
"emit": 0.119,
|
|
1352
|
+
"total": 3.564
|
|
1353
|
+
},
|
|
1354
|
+
"fileCount": 139,
|
|
1355
|
+
"mcfunctionFileCount": 137,
|
|
1356
|
+
"instructionCount": 1297,
|
|
1357
|
+
"totalBytes": 116865,
|
|
1358
|
+
"mcfunctionBytes": 116720,
|
|
1359
|
+
"warnings": 0
|
|
1360
|
+
}
|
|
1361
|
+
]
|
|
1362
|
+
},
|
|
1363
|
+
{
|
|
1364
|
+
"module": "mobs.mcrs",
|
|
1365
|
+
"path": "/Users/yuzhe/projects/redscript/src/stdlib/mobs.mcrs",
|
|
1366
|
+
"results": [
|
|
1367
|
+
{
|
|
1368
|
+
"optLevel": "O0",
|
|
1369
|
+
"timingsMs": {
|
|
1370
|
+
"parse": 0.206,
|
|
1371
|
+
"hir": 0.016,
|
|
1372
|
+
"mir": 0.006,
|
|
1373
|
+
"emit": 0.005,
|
|
1374
|
+
"total": 0.235
|
|
1375
|
+
},
|
|
1376
|
+
"fileCount": 3,
|
|
1377
|
+
"mcfunctionFileCount": 1,
|
|
1378
|
+
"instructionCount": 1,
|
|
1379
|
+
"totalBytes": 187,
|
|
1380
|
+
"mcfunctionBytes": 46,
|
|
1381
|
+
"warnings": 0
|
|
1382
|
+
},
|
|
1383
|
+
{
|
|
1384
|
+
"optLevel": "O1",
|
|
1385
|
+
"timingsMs": {
|
|
1386
|
+
"parse": 0.176,
|
|
1387
|
+
"hir": 0.005,
|
|
1388
|
+
"mir": 0.017,
|
|
1389
|
+
"emit": 0.002,
|
|
1390
|
+
"total": 0.2
|
|
1391
|
+
},
|
|
1392
|
+
"fileCount": 3,
|
|
1393
|
+
"mcfunctionFileCount": 1,
|
|
1394
|
+
"instructionCount": 1,
|
|
1395
|
+
"totalBytes": 187,
|
|
1396
|
+
"mcfunctionBytes": 46,
|
|
1397
|
+
"warnings": 0
|
|
1398
|
+
},
|
|
1399
|
+
{
|
|
1400
|
+
"optLevel": "O2",
|
|
1401
|
+
"timingsMs": {
|
|
1402
|
+
"parse": 0.139,
|
|
1403
|
+
"hir": 0.004,
|
|
1404
|
+
"mir": 0.006,
|
|
1405
|
+
"emit": 0.001,
|
|
1406
|
+
"total": 0.152
|
|
1407
|
+
},
|
|
1408
|
+
"fileCount": 3,
|
|
1409
|
+
"mcfunctionFileCount": 1,
|
|
1410
|
+
"instructionCount": 1,
|
|
1411
|
+
"totalBytes": 187,
|
|
1412
|
+
"mcfunctionBytes": 46,
|
|
1413
|
+
"warnings": 0
|
|
1414
|
+
}
|
|
1415
|
+
]
|
|
1416
|
+
},
|
|
1417
|
+
{
|
|
1418
|
+
"module": "noise.mcrs",
|
|
1419
|
+
"path": "/Users/yuzhe/projects/redscript/src/stdlib/noise.mcrs",
|
|
1420
|
+
"results": [
|
|
1421
|
+
{
|
|
1422
|
+
"optLevel": "O0",
|
|
1423
|
+
"timingsMs": {
|
|
1424
|
+
"parse": 0.35,
|
|
1425
|
+
"hir": 0.014,
|
|
1426
|
+
"mir": 0.334,
|
|
1427
|
+
"emit": 0.056,
|
|
1428
|
+
"total": 0.755
|
|
1429
|
+
},
|
|
1430
|
+
"fileCount": 33,
|
|
1431
|
+
"mcfunctionFileCount": 31,
|
|
1432
|
+
"instructionCount": 549,
|
|
1433
|
+
"totalBytes": 45898,
|
|
1434
|
+
"mcfunctionBytes": 45755,
|
|
1435
|
+
"warnings": 0
|
|
1436
|
+
},
|
|
1437
|
+
{
|
|
1438
|
+
"optLevel": "O1",
|
|
1439
|
+
"timingsMs": {
|
|
1440
|
+
"parse": 0.315,
|
|
1441
|
+
"hir": 0.013,
|
|
1442
|
+
"mir": 0.889,
|
|
1443
|
+
"emit": 0.044,
|
|
1444
|
+
"total": 1.261
|
|
1445
|
+
},
|
|
1446
|
+
"fileCount": 33,
|
|
1447
|
+
"mcfunctionFileCount": 31,
|
|
1448
|
+
"instructionCount": 503,
|
|
1449
|
+
"totalBytes": 41837,
|
|
1450
|
+
"mcfunctionBytes": 41694,
|
|
1451
|
+
"warnings": 0
|
|
1452
|
+
},
|
|
1453
|
+
{
|
|
1454
|
+
"optLevel": "O2",
|
|
1455
|
+
"timingsMs": {
|
|
1456
|
+
"parse": 0.297,
|
|
1457
|
+
"hir": 0.014,
|
|
1458
|
+
"mir": 1.345,
|
|
1459
|
+
"emit": 0.053,
|
|
1460
|
+
"total": 1.711
|
|
1461
|
+
},
|
|
1462
|
+
"fileCount": 33,
|
|
1463
|
+
"mcfunctionFileCount": 31,
|
|
1464
|
+
"instructionCount": 503,
|
|
1465
|
+
"totalBytes": 41837,
|
|
1466
|
+
"mcfunctionBytes": 41694,
|
|
1467
|
+
"warnings": 0
|
|
1468
|
+
}
|
|
1469
|
+
]
|
|
1470
|
+
},
|
|
1471
|
+
{
|
|
1472
|
+
"module": "ode.mcrs",
|
|
1473
|
+
"path": "/Users/yuzhe/projects/redscript/src/stdlib/ode.mcrs",
|
|
1474
|
+
"results": [
|
|
1475
|
+
{
|
|
1476
|
+
"optLevel": "O0",
|
|
1477
|
+
"timingsMs": {
|
|
1478
|
+
"parse": 0.491,
|
|
1479
|
+
"hir": 0.028,
|
|
1480
|
+
"mir": 1.065,
|
|
1481
|
+
"emit": 0.053,
|
|
1482
|
+
"total": 1.639
|
|
1483
|
+
},
|
|
1484
|
+
"fileCount": 55,
|
|
1485
|
+
"mcfunctionFileCount": 53,
|
|
1486
|
+
"instructionCount": 566,
|
|
1487
|
+
"totalBytes": 40615,
|
|
1488
|
+
"mcfunctionBytes": 40476,
|
|
1489
|
+
"warnings": 0
|
|
1490
|
+
},
|
|
1491
|
+
{
|
|
1492
|
+
"optLevel": "O1",
|
|
1493
|
+
"timingsMs": {
|
|
1494
|
+
"parse": 0.412,
|
|
1495
|
+
"hir": 0.016,
|
|
1496
|
+
"mir": 2.015,
|
|
1497
|
+
"emit": 0.048,
|
|
1498
|
+
"total": 2.497
|
|
1499
|
+
},
|
|
1500
|
+
"fileCount": 57,
|
|
1501
|
+
"mcfunctionFileCount": 55,
|
|
1502
|
+
"instructionCount": 502,
|
|
1503
|
+
"totalBytes": 35783,
|
|
1504
|
+
"mcfunctionBytes": 35644,
|
|
1505
|
+
"warnings": 0
|
|
1506
|
+
},
|
|
1507
|
+
{
|
|
1508
|
+
"optLevel": "O2",
|
|
1509
|
+
"timingsMs": {
|
|
1510
|
+
"parse": 0.44,
|
|
1511
|
+
"hir": 0.018,
|
|
1512
|
+
"mir": 4.189,
|
|
1513
|
+
"emit": 0.05,
|
|
1514
|
+
"total": 4.7
|
|
1515
|
+
},
|
|
1516
|
+
"fileCount": 57,
|
|
1517
|
+
"mcfunctionFileCount": 55,
|
|
1518
|
+
"instructionCount": 502,
|
|
1519
|
+
"totalBytes": 35783,
|
|
1520
|
+
"mcfunctionBytes": 35644,
|
|
1521
|
+
"warnings": 0
|
|
1522
|
+
}
|
|
1523
|
+
]
|
|
1524
|
+
},
|
|
1525
|
+
{
|
|
1526
|
+
"module": "parabola.mcrs",
|
|
1527
|
+
"path": "/Users/yuzhe/projects/redscript/src/stdlib/parabola.mcrs",
|
|
1528
|
+
"results": [
|
|
1529
|
+
{
|
|
1530
|
+
"optLevel": "O0",
|
|
1531
|
+
"timingsMs": {
|
|
1532
|
+
"parse": 0.273,
|
|
1533
|
+
"hir": 0.012,
|
|
1534
|
+
"mir": 0.418,
|
|
1535
|
+
"emit": 0.031,
|
|
1536
|
+
"total": 0.736
|
|
1537
|
+
},
|
|
1538
|
+
"fileCount": 38,
|
|
1539
|
+
"mcfunctionFileCount": 36,
|
|
1540
|
+
"instructionCount": 239,
|
|
1541
|
+
"totalBytes": 21403,
|
|
1542
|
+
"mcfunctionBytes": 21254,
|
|
1543
|
+
"warnings": 0
|
|
1544
|
+
},
|
|
1545
|
+
{
|
|
1546
|
+
"optLevel": "O1",
|
|
1547
|
+
"timingsMs": {
|
|
1548
|
+
"parse": 0.219,
|
|
1549
|
+
"hir": 0.007,
|
|
1550
|
+
"mir": 0.621,
|
|
1551
|
+
"emit": 0.023,
|
|
1552
|
+
"total": 0.872
|
|
1553
|
+
},
|
|
1554
|
+
"fileCount": 38,
|
|
1555
|
+
"mcfunctionFileCount": 36,
|
|
1556
|
+
"instructionCount": 222,
|
|
1557
|
+
"totalBytes": 19868,
|
|
1558
|
+
"mcfunctionBytes": 19719,
|
|
1559
|
+
"warnings": 0
|
|
1560
|
+
},
|
|
1561
|
+
{
|
|
1562
|
+
"optLevel": "O2",
|
|
1563
|
+
"timingsMs": {
|
|
1564
|
+
"parse": 0.201,
|
|
1565
|
+
"hir": 0.008,
|
|
1566
|
+
"mir": 0.784,
|
|
1567
|
+
"emit": 0.021,
|
|
1568
|
+
"total": 1.015
|
|
1569
|
+
},
|
|
1570
|
+
"fileCount": 38,
|
|
1571
|
+
"mcfunctionFileCount": 36,
|
|
1572
|
+
"instructionCount": 222,
|
|
1573
|
+
"totalBytes": 19868,
|
|
1574
|
+
"mcfunctionBytes": 19719,
|
|
1575
|
+
"warnings": 0
|
|
1576
|
+
}
|
|
1577
|
+
]
|
|
1578
|
+
},
|
|
1579
|
+
{
|
|
1580
|
+
"module": "particles.mcrs",
|
|
1581
|
+
"path": "/Users/yuzhe/projects/redscript/src/stdlib/particles.mcrs",
|
|
1582
|
+
"results": [
|
|
1583
|
+
{
|
|
1584
|
+
"optLevel": "O0",
|
|
1585
|
+
"timingsMs": {
|
|
1586
|
+
"parse": 0.22,
|
|
1587
|
+
"hir": 0.007,
|
|
1588
|
+
"mir": 0.258,
|
|
1589
|
+
"emit": 0.026,
|
|
1590
|
+
"total": 0.513
|
|
1591
|
+
},
|
|
1592
|
+
"fileCount": 27,
|
|
1593
|
+
"mcfunctionFileCount": 25,
|
|
1594
|
+
"instructionCount": 237,
|
|
1595
|
+
"totalBytes": 20520,
|
|
1596
|
+
"mcfunctionBytes": 20369,
|
|
1597
|
+
"warnings": 0
|
|
1598
|
+
},
|
|
1599
|
+
{
|
|
1600
|
+
"optLevel": "O1",
|
|
1601
|
+
"timingsMs": {
|
|
1602
|
+
"parse": 0.195,
|
|
1603
|
+
"hir": 0.006,
|
|
1604
|
+
"mir": 0.541,
|
|
1605
|
+
"emit": 0.016,
|
|
1606
|
+
"total": 0.759
|
|
1607
|
+
},
|
|
1608
|
+
"fileCount": 27,
|
|
1609
|
+
"mcfunctionFileCount": 25,
|
|
1610
|
+
"instructionCount": 159,
|
|
1611
|
+
"totalBytes": 13761,
|
|
1612
|
+
"mcfunctionBytes": 13610,
|
|
1613
|
+
"warnings": 0
|
|
1614
|
+
},
|
|
1615
|
+
{
|
|
1616
|
+
"optLevel": "O2",
|
|
1617
|
+
"timingsMs": {
|
|
1618
|
+
"parse": 0.19,
|
|
1619
|
+
"hir": 0.007,
|
|
1620
|
+
"mir": 0.663,
|
|
1621
|
+
"emit": 0.015,
|
|
1622
|
+
"total": 0.875
|
|
1623
|
+
},
|
|
1624
|
+
"fileCount": 27,
|
|
1625
|
+
"mcfunctionFileCount": 25,
|
|
1626
|
+
"instructionCount": 159,
|
|
1627
|
+
"totalBytes": 13761,
|
|
1628
|
+
"mcfunctionBytes": 13610,
|
|
1629
|
+
"warnings": 0
|
|
1630
|
+
}
|
|
1631
|
+
]
|
|
1632
|
+
},
|
|
1633
|
+
{
|
|
1634
|
+
"module": "pathfind.mcrs",
|
|
1635
|
+
"path": "/Users/yuzhe/projects/redscript/src/stdlib/pathfind.mcrs",
|
|
1636
|
+
"results": [
|
|
1637
|
+
{
|
|
1638
|
+
"optLevel": "O0",
|
|
1639
|
+
"timingsMs": {
|
|
1640
|
+
"parse": 0.606,
|
|
1641
|
+
"hir": 0.07,
|
|
1642
|
+
"mir": 1.812,
|
|
1643
|
+
"emit": 0.151,
|
|
1644
|
+
"total": 2.641
|
|
1645
|
+
},
|
|
1646
|
+
"fileCount": 196,
|
|
1647
|
+
"mcfunctionFileCount": 193,
|
|
1648
|
+
"instructionCount": 1370,
|
|
1649
|
+
"totalBytes": 132582,
|
|
1650
|
+
"mcfunctionBytes": 132360,
|
|
1651
|
+
"warnings": 0
|
|
1652
|
+
},
|
|
1653
|
+
{
|
|
1654
|
+
"optLevel": "O1",
|
|
1655
|
+
"timingsMs": {
|
|
1656
|
+
"parse": 0.617,
|
|
1657
|
+
"hir": 0.019,
|
|
1658
|
+
"mir": 2.968,
|
|
1659
|
+
"emit": 0.114,
|
|
1660
|
+
"total": 3.72
|
|
1661
|
+
},
|
|
1662
|
+
"fileCount": 196,
|
|
1663
|
+
"mcfunctionFileCount": 193,
|
|
1664
|
+
"instructionCount": 1190,
|
|
1665
|
+
"totalBytes": 117308,
|
|
1666
|
+
"mcfunctionBytes": 117086,
|
|
1667
|
+
"warnings": 0
|
|
1668
|
+
},
|
|
1669
|
+
{
|
|
1670
|
+
"optLevel": "O2",
|
|
1671
|
+
"timingsMs": {
|
|
1672
|
+
"parse": 0.62,
|
|
1673
|
+
"hir": 0.019,
|
|
1674
|
+
"mir": 4.052,
|
|
1675
|
+
"emit": 0.109,
|
|
1676
|
+
"total": 4.803
|
|
1677
|
+
},
|
|
1678
|
+
"fileCount": 195,
|
|
1679
|
+
"mcfunctionFileCount": 192,
|
|
1680
|
+
"instructionCount": 1187,
|
|
1681
|
+
"totalBytes": 117067,
|
|
1682
|
+
"mcfunctionBytes": 116845,
|
|
1683
|
+
"warnings": 0
|
|
1684
|
+
}
|
|
1685
|
+
]
|
|
1686
|
+
},
|
|
1687
|
+
{
|
|
1688
|
+
"module": "physics.mcrs",
|
|
1689
|
+
"path": "/Users/yuzhe/projects/redscript/src/stdlib/physics.mcrs",
|
|
1690
|
+
"results": [
|
|
1691
|
+
{
|
|
1692
|
+
"optLevel": "O0",
|
|
1693
|
+
"timingsMs": {
|
|
1694
|
+
"parse": 0.257,
|
|
1695
|
+
"hir": 0.01,
|
|
1696
|
+
"mir": 0.382,
|
|
1697
|
+
"emit": 0.029,
|
|
1698
|
+
"total": 0.681
|
|
1699
|
+
},
|
|
1700
|
+
"fileCount": 37,
|
|
1701
|
+
"mcfunctionFileCount": 35,
|
|
1702
|
+
"instructionCount": 228,
|
|
1703
|
+
"totalBytes": 20051,
|
|
1704
|
+
"mcfunctionBytes": 19904,
|
|
1705
|
+
"warnings": 0
|
|
1706
|
+
},
|
|
1707
|
+
{
|
|
1708
|
+
"optLevel": "O1",
|
|
1709
|
+
"timingsMs": {
|
|
1710
|
+
"parse": 0.21,
|
|
1711
|
+
"hir": 0.007,
|
|
1712
|
+
"mir": 0.582,
|
|
1713
|
+
"emit": 0.022,
|
|
1714
|
+
"total": 0.823
|
|
1715
|
+
},
|
|
1716
|
+
"fileCount": 37,
|
|
1717
|
+
"mcfunctionFileCount": 35,
|
|
1718
|
+
"instructionCount": 218,
|
|
1719
|
+
"totalBytes": 19259,
|
|
1720
|
+
"mcfunctionBytes": 19112,
|
|
1721
|
+
"warnings": 0
|
|
1722
|
+
},
|
|
1723
|
+
{
|
|
1724
|
+
"optLevel": "O2",
|
|
1725
|
+
"timingsMs": {
|
|
1726
|
+
"parse": 0.195,
|
|
1727
|
+
"hir": 0.006,
|
|
1728
|
+
"mir": 0.774,
|
|
1729
|
+
"emit": 0.021,
|
|
1730
|
+
"total": 0.998
|
|
1731
|
+
},
|
|
1732
|
+
"fileCount": 37,
|
|
1733
|
+
"mcfunctionFileCount": 35,
|
|
1734
|
+
"instructionCount": 218,
|
|
1735
|
+
"totalBytes": 19259,
|
|
1736
|
+
"mcfunctionBytes": 19112,
|
|
1737
|
+
"warnings": 0
|
|
1738
|
+
}
|
|
1739
|
+
]
|
|
1740
|
+
},
|
|
1741
|
+
{
|
|
1742
|
+
"module": "player.mcrs",
|
|
1743
|
+
"path": "/Users/yuzhe/projects/redscript/src/stdlib/player.mcrs",
|
|
1744
|
+
"results": [
|
|
1745
|
+
{
|
|
1746
|
+
"optLevel": "O0",
|
|
1747
|
+
"timingsMs": {
|
|
1748
|
+
"parse": 0.149,
|
|
1749
|
+
"hir": 0.004,
|
|
1750
|
+
"mir": 0.059,
|
|
1751
|
+
"emit": 0.007,
|
|
1752
|
+
"total": 0.22
|
|
1753
|
+
},
|
|
1754
|
+
"fileCount": 10,
|
|
1755
|
+
"mcfunctionFileCount": 8,
|
|
1756
|
+
"instructionCount": 30,
|
|
1757
|
+
"totalBytes": 2264,
|
|
1758
|
+
"mcfunctionBytes": 2119,
|
|
1759
|
+
"warnings": 0
|
|
1760
|
+
},
|
|
1761
|
+
{
|
|
1762
|
+
"optLevel": "O1",
|
|
1763
|
+
"timingsMs": {
|
|
1764
|
+
"parse": 0.063,
|
|
1765
|
+
"hir": 0.002,
|
|
1766
|
+
"mir": 0.103,
|
|
1767
|
+
"emit": 0.004,
|
|
1768
|
+
"total": 0.174
|
|
1769
|
+
},
|
|
1770
|
+
"fileCount": 10,
|
|
1771
|
+
"mcfunctionFileCount": 8,
|
|
1772
|
+
"instructionCount": 21,
|
|
1773
|
+
"totalBytes": 1751,
|
|
1774
|
+
"mcfunctionBytes": 1606,
|
|
1775
|
+
"warnings": 0
|
|
1776
|
+
},
|
|
1777
|
+
{
|
|
1778
|
+
"optLevel": "O2",
|
|
1779
|
+
"timingsMs": {
|
|
1780
|
+
"parse": 0.054,
|
|
1781
|
+
"hir": 0.002,
|
|
1782
|
+
"mir": 0.112,
|
|
1783
|
+
"emit": 0.003,
|
|
1784
|
+
"total": 0.171
|
|
1785
|
+
},
|
|
1786
|
+
"fileCount": 10,
|
|
1787
|
+
"mcfunctionFileCount": 8,
|
|
1788
|
+
"instructionCount": 21,
|
|
1789
|
+
"totalBytes": 1751,
|
|
1790
|
+
"mcfunctionBytes": 1606,
|
|
1791
|
+
"warnings": 0
|
|
1792
|
+
}
|
|
1793
|
+
]
|
|
1794
|
+
},
|
|
1795
|
+
{
|
|
1796
|
+
"module": "quaternion.mcrs",
|
|
1797
|
+
"path": "/Users/yuzhe/projects/redscript/src/stdlib/quaternion.mcrs",
|
|
1798
|
+
"results": [
|
|
1799
|
+
{
|
|
1800
|
+
"optLevel": "O0",
|
|
1801
|
+
"timingsMs": {
|
|
1802
|
+
"parse": 0.547,
|
|
1803
|
+
"hir": 0.017,
|
|
1804
|
+
"mir": 1.092,
|
|
1805
|
+
"emit": 0.1,
|
|
1806
|
+
"total": 1.758
|
|
1807
|
+
},
|
|
1808
|
+
"fileCount": 46,
|
|
1809
|
+
"mcfunctionFileCount": 44,
|
|
1810
|
+
"instructionCount": 1000,
|
|
1811
|
+
"totalBytes": 89458,
|
|
1812
|
+
"mcfunctionBytes": 89305,
|
|
1813
|
+
"warnings": 0
|
|
1814
|
+
},
|
|
1815
|
+
{
|
|
1816
|
+
"optLevel": "O1",
|
|
1817
|
+
"timingsMs": {
|
|
1818
|
+
"parse": 0.555,
|
|
1819
|
+
"hir": 0.016,
|
|
1820
|
+
"mir": 2.054,
|
|
1821
|
+
"emit": 0.083,
|
|
1822
|
+
"total": 2.71
|
|
1823
|
+
},
|
|
1824
|
+
"fileCount": 46,
|
|
1825
|
+
"mcfunctionFileCount": 44,
|
|
1826
|
+
"instructionCount": 937,
|
|
1827
|
+
"totalBytes": 83123,
|
|
1828
|
+
"mcfunctionBytes": 82970,
|
|
1829
|
+
"warnings": 0
|
|
1830
|
+
},
|
|
1831
|
+
{
|
|
1832
|
+
"optLevel": "O2",
|
|
1833
|
+
"timingsMs": {
|
|
1834
|
+
"parse": 0.527,
|
|
1835
|
+
"hir": 0.017,
|
|
1836
|
+
"mir": 3.72,
|
|
1837
|
+
"emit": 0.091,
|
|
1838
|
+
"total": 4.358
|
|
1839
|
+
},
|
|
1840
|
+
"fileCount": 46,
|
|
1841
|
+
"mcfunctionFileCount": 44,
|
|
1842
|
+
"instructionCount": 937,
|
|
1843
|
+
"totalBytes": 83123,
|
|
1844
|
+
"mcfunctionBytes": 82970,
|
|
1845
|
+
"warnings": 0
|
|
1846
|
+
}
|
|
1847
|
+
]
|
|
1848
|
+
},
|
|
1849
|
+
{
|
|
1850
|
+
"module": "random.mcrs",
|
|
1851
|
+
"path": "/Users/yuzhe/projects/redscript/src/stdlib/random.mcrs",
|
|
1852
|
+
"results": [
|
|
1853
|
+
{
|
|
1854
|
+
"optLevel": "O0",
|
|
1855
|
+
"timingsMs": {
|
|
1856
|
+
"parse": 0.303,
|
|
1857
|
+
"hir": 0.011,
|
|
1858
|
+
"mir": 0.291,
|
|
1859
|
+
"emit": 0.036,
|
|
1860
|
+
"total": 0.644
|
|
1861
|
+
},
|
|
1862
|
+
"fileCount": 41,
|
|
1863
|
+
"mcfunctionFileCount": 39,
|
|
1864
|
+
"instructionCount": 297,
|
|
1865
|
+
"totalBytes": 24409,
|
|
1866
|
+
"mcfunctionBytes": 24264,
|
|
1867
|
+
"warnings": 0
|
|
1868
|
+
},
|
|
1869
|
+
{
|
|
1870
|
+
"optLevel": "O1",
|
|
1871
|
+
"timingsMs": {
|
|
1872
|
+
"parse": 0.213,
|
|
1873
|
+
"hir": 0.007,
|
|
1874
|
+
"mir": 0.636,
|
|
1875
|
+
"emit": 0.027,
|
|
1876
|
+
"total": 0.884
|
|
1877
|
+
},
|
|
1878
|
+
"fileCount": 41,
|
|
1879
|
+
"mcfunctionFileCount": 39,
|
|
1880
|
+
"instructionCount": 276,
|
|
1881
|
+
"totalBytes": 22819,
|
|
1882
|
+
"mcfunctionBytes": 22674,
|
|
1883
|
+
"warnings": 0
|
|
1884
|
+
},
|
|
1885
|
+
{
|
|
1886
|
+
"optLevel": "O2",
|
|
1887
|
+
"timingsMs": {
|
|
1888
|
+
"parse": 0.202,
|
|
1889
|
+
"hir": 0.007,
|
|
1890
|
+
"mir": 0.825,
|
|
1891
|
+
"emit": 0.025,
|
|
1892
|
+
"total": 1.06
|
|
1893
|
+
},
|
|
1894
|
+
"fileCount": 41,
|
|
1895
|
+
"mcfunctionFileCount": 39,
|
|
1896
|
+
"instructionCount": 276,
|
|
1897
|
+
"totalBytes": 22819,
|
|
1898
|
+
"mcfunctionBytes": 22674,
|
|
1899
|
+
"warnings": 0
|
|
1900
|
+
}
|
|
1901
|
+
]
|
|
1902
|
+
},
|
|
1903
|
+
{
|
|
1904
|
+
"module": "result.mcrs",
|
|
1905
|
+
"path": "/Users/yuzhe/projects/redscript/src/stdlib/result.mcrs",
|
|
1906
|
+
"results": [
|
|
1907
|
+
{
|
|
1908
|
+
"optLevel": "O0",
|
|
1909
|
+
"timingsMs": {
|
|
1910
|
+
"parse": 0.465,
|
|
1911
|
+
"hir": 0.083,
|
|
1912
|
+
"mir": 0.235,
|
|
1913
|
+
"emit": 0.016,
|
|
1914
|
+
"total": 0.801
|
|
1915
|
+
},
|
|
1916
|
+
"fileCount": 28,
|
|
1917
|
+
"mcfunctionFileCount": 26,
|
|
1918
|
+
"instructionCount": 101,
|
|
1919
|
+
"totalBytes": 8446,
|
|
1920
|
+
"mcfunctionBytes": 8301,
|
|
1921
|
+
"warnings": 0
|
|
1922
|
+
},
|
|
1923
|
+
{
|
|
1924
|
+
"optLevel": "O1",
|
|
1925
|
+
"timingsMs": {
|
|
1926
|
+
"parse": 0.208,
|
|
1927
|
+
"hir": 0.015,
|
|
1928
|
+
"mir": 0.341,
|
|
1929
|
+
"emit": 0.011,
|
|
1930
|
+
"total": 0.576
|
|
1931
|
+
},
|
|
1932
|
+
"fileCount": 28,
|
|
1933
|
+
"mcfunctionFileCount": 26,
|
|
1934
|
+
"instructionCount": 84,
|
|
1935
|
+
"totalBytes": 7004,
|
|
1936
|
+
"mcfunctionBytes": 6859,
|
|
1937
|
+
"warnings": 0
|
|
1938
|
+
},
|
|
1939
|
+
{
|
|
1940
|
+
"optLevel": "O2",
|
|
1941
|
+
"timingsMs": {
|
|
1942
|
+
"parse": 0.185,
|
|
1943
|
+
"hir": 0.011,
|
|
1944
|
+
"mir": 0.392,
|
|
1945
|
+
"emit": 0.009,
|
|
1946
|
+
"total": 0.598
|
|
1947
|
+
},
|
|
1948
|
+
"fileCount": 28,
|
|
1949
|
+
"mcfunctionFileCount": 26,
|
|
1950
|
+
"instructionCount": 84,
|
|
1951
|
+
"totalBytes": 7004,
|
|
1952
|
+
"mcfunctionBytes": 6859,
|
|
1953
|
+
"warnings": 0
|
|
1954
|
+
}
|
|
1955
|
+
]
|
|
1956
|
+
},
|
|
1957
|
+
{
|
|
1958
|
+
"module": "scheduler.mcrs",
|
|
1959
|
+
"path": "/Users/yuzhe/projects/redscript/src/stdlib/scheduler.mcrs",
|
|
1960
|
+
"results": [
|
|
1961
|
+
{
|
|
1962
|
+
"optLevel": "O0",
|
|
1963
|
+
"timingsMs": {
|
|
1964
|
+
"parse": 0.688,
|
|
1965
|
+
"hir": 0.032,
|
|
1966
|
+
"mir": 0.749,
|
|
1967
|
+
"emit": 0.048,
|
|
1968
|
+
"total": 1.518
|
|
1969
|
+
},
|
|
1970
|
+
"fileCount": 140,
|
|
1971
|
+
"mcfunctionFileCount": 138,
|
|
1972
|
+
"instructionCount": 461,
|
|
1973
|
+
"totalBytes": 35080,
|
|
1974
|
+
"mcfunctionBytes": 34929,
|
|
1975
|
+
"warnings": 0
|
|
1976
|
+
},
|
|
1977
|
+
{
|
|
1978
|
+
"optLevel": "O1",
|
|
1979
|
+
"timingsMs": {
|
|
1980
|
+
"parse": 0.477,
|
|
1981
|
+
"hir": 0.03,
|
|
1982
|
+
"mir": 1.43,
|
|
1983
|
+
"emit": 0.034,
|
|
1984
|
+
"total": 1.971
|
|
1985
|
+
},
|
|
1986
|
+
"fileCount": 140,
|
|
1987
|
+
"mcfunctionFileCount": 138,
|
|
1988
|
+
"instructionCount": 381,
|
|
1989
|
+
"totalBytes": 29645,
|
|
1990
|
+
"mcfunctionBytes": 29494,
|
|
1991
|
+
"warnings": 0
|
|
1992
|
+
},
|
|
1993
|
+
{
|
|
1994
|
+
"optLevel": "O2",
|
|
1995
|
+
"timingsMs": {
|
|
1996
|
+
"parse": 0.44,
|
|
1997
|
+
"hir": 0.029,
|
|
1998
|
+
"mir": 1.683,
|
|
1999
|
+
"emit": 0.031,
|
|
2000
|
+
"total": 2.184
|
|
2001
|
+
},
|
|
2002
|
+
"fileCount": 140,
|
|
2003
|
+
"mcfunctionFileCount": 138,
|
|
2004
|
+
"instructionCount": 381,
|
|
2005
|
+
"totalBytes": 29645,
|
|
2006
|
+
"mcfunctionBytes": 29494,
|
|
2007
|
+
"warnings": 0
|
|
2008
|
+
}
|
|
2009
|
+
]
|
|
2010
|
+
},
|
|
2011
|
+
{
|
|
2012
|
+
"module": "sets.mcrs",
|
|
2013
|
+
"path": "/Users/yuzhe/projects/redscript/src/stdlib/sets.mcrs",
|
|
2014
|
+
"results": [
|
|
2015
|
+
{
|
|
2016
|
+
"optLevel": "O0",
|
|
2017
|
+
"timingsMs": {
|
|
2018
|
+
"parse": 0.017,
|
|
2019
|
+
"hir": 0.001,
|
|
2020
|
+
"mir": 0.002,
|
|
2021
|
+
"emit": 0.001,
|
|
2022
|
+
"total": 0.022
|
|
2023
|
+
},
|
|
2024
|
+
"fileCount": 3,
|
|
2025
|
+
"mcfunctionFileCount": 1,
|
|
2026
|
+
"instructionCount": 1,
|
|
2027
|
+
"totalBytes": 187,
|
|
2028
|
+
"mcfunctionBytes": 46,
|
|
2029
|
+
"warnings": 0
|
|
2030
|
+
},
|
|
2031
|
+
{
|
|
2032
|
+
"optLevel": "O1",
|
|
2033
|
+
"timingsMs": {
|
|
2034
|
+
"parse": 0.013,
|
|
2035
|
+
"hir": 0.001,
|
|
2036
|
+
"mir": 0.003,
|
|
2037
|
+
"emit": 0.001,
|
|
2038
|
+
"total": 0.017
|
|
2039
|
+
},
|
|
2040
|
+
"fileCount": 3,
|
|
2041
|
+
"mcfunctionFileCount": 1,
|
|
2042
|
+
"instructionCount": 1,
|
|
2043
|
+
"totalBytes": 187,
|
|
2044
|
+
"mcfunctionBytes": 46,
|
|
2045
|
+
"warnings": 0
|
|
2046
|
+
},
|
|
2047
|
+
{
|
|
2048
|
+
"optLevel": "O2",
|
|
2049
|
+
"timingsMs": {
|
|
2050
|
+
"parse": 0.012,
|
|
2051
|
+
"hir": 0.001,
|
|
2052
|
+
"mir": 0.002,
|
|
2053
|
+
"emit": 0.001,
|
|
2054
|
+
"total": 0.016
|
|
2055
|
+
},
|
|
2056
|
+
"fileCount": 3,
|
|
2057
|
+
"mcfunctionFileCount": 1,
|
|
2058
|
+
"instructionCount": 1,
|
|
2059
|
+
"totalBytes": 187,
|
|
2060
|
+
"mcfunctionBytes": 46,
|
|
2061
|
+
"warnings": 0
|
|
2062
|
+
}
|
|
2063
|
+
]
|
|
2064
|
+
},
|
|
2065
|
+
{
|
|
2066
|
+
"module": "signal.mcrs",
|
|
2067
|
+
"path": "/Users/yuzhe/projects/redscript/src/stdlib/signal.mcrs",
|
|
2068
|
+
"results": [
|
|
2069
|
+
{
|
|
2070
|
+
"optLevel": "O0",
|
|
2071
|
+
"timingsMs": {
|
|
2072
|
+
"parse": 0.984,
|
|
2073
|
+
"hir": 0.077,
|
|
2074
|
+
"mir": 2.453,
|
|
2075
|
+
"emit": 0.321,
|
|
2076
|
+
"total": 3.836
|
|
2077
|
+
},
|
|
2078
|
+
"fileCount": 327,
|
|
2079
|
+
"mcfunctionFileCount": 325,
|
|
2080
|
+
"instructionCount": 3461,
|
|
2081
|
+
"totalBytes": 296003,
|
|
2082
|
+
"mcfunctionBytes": 295858,
|
|
2083
|
+
"warnings": 0
|
|
2084
|
+
},
|
|
2085
|
+
{
|
|
2086
|
+
"optLevel": "O1",
|
|
2087
|
+
"timingsMs": {
|
|
2088
|
+
"parse": 0.945,
|
|
2089
|
+
"hir": 0.072,
|
|
2090
|
+
"mir": 4.72,
|
|
2091
|
+
"emit": 0.257,
|
|
2092
|
+
"total": 5.997
|
|
2093
|
+
},
|
|
2094
|
+
"fileCount": 328,
|
|
2095
|
+
"mcfunctionFileCount": 326,
|
|
2096
|
+
"instructionCount": 3165,
|
|
2097
|
+
"totalBytes": 271431,
|
|
2098
|
+
"mcfunctionBytes": 271286,
|
|
2099
|
+
"warnings": 0
|
|
2100
|
+
},
|
|
2101
|
+
{
|
|
2102
|
+
"optLevel": "O2",
|
|
2103
|
+
"timingsMs": {
|
|
2104
|
+
"parse": 0.881,
|
|
2105
|
+
"hir": 0.073,
|
|
2106
|
+
"mir": 7.324,
|
|
2107
|
+
"emit": 0.238,
|
|
2108
|
+
"total": 8.518
|
|
2109
|
+
},
|
|
2110
|
+
"fileCount": 328,
|
|
2111
|
+
"mcfunctionFileCount": 326,
|
|
2112
|
+
"instructionCount": 3164,
|
|
2113
|
+
"totalBytes": 271328,
|
|
2114
|
+
"mcfunctionBytes": 271183,
|
|
2115
|
+
"warnings": 0
|
|
2116
|
+
}
|
|
2117
|
+
]
|
|
2118
|
+
},
|
|
2119
|
+
{
|
|
2120
|
+
"module": "sort.mcrs",
|
|
2121
|
+
"path": "/Users/yuzhe/projects/redscript/src/stdlib/sort.mcrs",
|
|
2122
|
+
"results": [
|
|
2123
|
+
{
|
|
2124
|
+
"optLevel": "O0",
|
|
2125
|
+
"timingsMs": {
|
|
2126
|
+
"parse": 0.42,
|
|
2127
|
+
"hir": 0.033,
|
|
2128
|
+
"mir": 0.963,
|
|
2129
|
+
"emit": 0.085,
|
|
2130
|
+
"total": 1.503
|
|
2131
|
+
},
|
|
2132
|
+
"fileCount": 172,
|
|
2133
|
+
"mcfunctionFileCount": 169,
|
|
2134
|
+
"instructionCount": 767,
|
|
2135
|
+
"totalBytes": 80920,
|
|
2136
|
+
"mcfunctionBytes": 80712,
|
|
2137
|
+
"warnings": 0
|
|
2138
|
+
},
|
|
2139
|
+
{
|
|
2140
|
+
"optLevel": "O1",
|
|
2141
|
+
"timingsMs": {
|
|
2142
|
+
"parse": 0.326,
|
|
2143
|
+
"hir": 0.027,
|
|
2144
|
+
"mir": 1.57,
|
|
2145
|
+
"emit": 0.065,
|
|
2146
|
+
"total": 1.99
|
|
2147
|
+
},
|
|
2148
|
+
"fileCount": 171,
|
|
2149
|
+
"mcfunctionFileCount": 168,
|
|
2150
|
+
"instructionCount": 636,
|
|
2151
|
+
"totalBytes": 68722,
|
|
2152
|
+
"mcfunctionBytes": 68514,
|
|
2153
|
+
"warnings": 0
|
|
2154
|
+
},
|
|
2155
|
+
{
|
|
2156
|
+
"optLevel": "O2",
|
|
2157
|
+
"timingsMs": {
|
|
2158
|
+
"parse": 0.317,
|
|
2159
|
+
"hir": 0.028,
|
|
2160
|
+
"mir": 2.378,
|
|
2161
|
+
"emit": 0.07,
|
|
2162
|
+
"total": 2.794
|
|
2163
|
+
},
|
|
2164
|
+
"fileCount": 171,
|
|
2165
|
+
"mcfunctionFileCount": 168,
|
|
2166
|
+
"instructionCount": 636,
|
|
2167
|
+
"totalBytes": 68722,
|
|
2168
|
+
"mcfunctionBytes": 68514,
|
|
2169
|
+
"warnings": 0
|
|
2170
|
+
}
|
|
2171
|
+
]
|
|
2172
|
+
},
|
|
2173
|
+
{
|
|
2174
|
+
"module": "spawn.mcrs",
|
|
2175
|
+
"path": "/Users/yuzhe/projects/redscript/src/stdlib/spawn.mcrs",
|
|
2176
|
+
"results": [
|
|
2177
|
+
{
|
|
2178
|
+
"optLevel": "O0",
|
|
2179
|
+
"timingsMs": {
|
|
2180
|
+
"parse": 0.212,
|
|
2181
|
+
"hir": 0.008,
|
|
2182
|
+
"mir": 0.08,
|
|
2183
|
+
"emit": 0.008,
|
|
2184
|
+
"total": 0.309
|
|
2185
|
+
},
|
|
2186
|
+
"fileCount": 10,
|
|
2187
|
+
"mcfunctionFileCount": 8,
|
|
2188
|
+
"instructionCount": 61,
|
|
2189
|
+
"totalBytes": 4214,
|
|
2190
|
+
"mcfunctionBytes": 4071,
|
|
2191
|
+
"warnings": 0
|
|
2192
|
+
},
|
|
2193
|
+
{
|
|
2194
|
+
"optLevel": "O1",
|
|
2195
|
+
"timingsMs": {
|
|
2196
|
+
"parse": 0.105,
|
|
2197
|
+
"hir": 0.005,
|
|
2198
|
+
"mir": 0.176,
|
|
2199
|
+
"emit": 0.017,
|
|
2200
|
+
"total": 0.304
|
|
2201
|
+
},
|
|
2202
|
+
"fileCount": 10,
|
|
2203
|
+
"mcfunctionFileCount": 8,
|
|
2204
|
+
"instructionCount": 44,
|
|
2205
|
+
"totalBytes": 2862,
|
|
2206
|
+
"mcfunctionBytes": 2719,
|
|
2207
|
+
"warnings": 0
|
|
2208
|
+
},
|
|
2209
|
+
{
|
|
2210
|
+
"optLevel": "O2",
|
|
2211
|
+
"timingsMs": {
|
|
2212
|
+
"parse": 0.101,
|
|
2213
|
+
"hir": 0.005,
|
|
2214
|
+
"mir": 0.187,
|
|
2215
|
+
"emit": 0.008,
|
|
2216
|
+
"total": 0.303
|
|
2217
|
+
},
|
|
2218
|
+
"fileCount": 10,
|
|
2219
|
+
"mcfunctionFileCount": 8,
|
|
2220
|
+
"instructionCount": 44,
|
|
2221
|
+
"totalBytes": 2862,
|
|
2222
|
+
"mcfunctionBytes": 2719,
|
|
2223
|
+
"warnings": 0
|
|
2224
|
+
}
|
|
2225
|
+
]
|
|
2226
|
+
},
|
|
2227
|
+
{
|
|
2228
|
+
"module": "state.mcrs",
|
|
2229
|
+
"path": "/Users/yuzhe/projects/redscript/src/stdlib/state.mcrs",
|
|
2230
|
+
"results": [
|
|
2231
|
+
{
|
|
2232
|
+
"optLevel": "O0",
|
|
2233
|
+
"timingsMs": {
|
|
2234
|
+
"parse": 0.143,
|
|
2235
|
+
"hir": 0.007,
|
|
2236
|
+
"mir": 0.084,
|
|
2237
|
+
"emit": 0.011,
|
|
2238
|
+
"total": 0.25
|
|
2239
|
+
},
|
|
2240
|
+
"fileCount": 14,
|
|
2241
|
+
"mcfunctionFileCount": 12,
|
|
2242
|
+
"instructionCount": 60,
|
|
2243
|
+
"totalBytes": 4511,
|
|
2244
|
+
"mcfunctionBytes": 4368,
|
|
2245
|
+
"warnings": 0
|
|
2246
|
+
},
|
|
2247
|
+
{
|
|
2248
|
+
"optLevel": "O1",
|
|
2249
|
+
"timingsMs": {
|
|
2250
|
+
"parse": 0.128,
|
|
2251
|
+
"hir": 0.005,
|
|
2252
|
+
"mir": 0.156,
|
|
2253
|
+
"emit": 0.008,
|
|
2254
|
+
"total": 0.297
|
|
2255
|
+
},
|
|
2256
|
+
"fileCount": 14,
|
|
2257
|
+
"mcfunctionFileCount": 12,
|
|
2258
|
+
"instructionCount": 47,
|
|
2259
|
+
"totalBytes": 3572,
|
|
2260
|
+
"mcfunctionBytes": 3429,
|
|
2261
|
+
"warnings": 0
|
|
2262
|
+
},
|
|
2263
|
+
{
|
|
2264
|
+
"optLevel": "O2",
|
|
2265
|
+
"timingsMs": {
|
|
2266
|
+
"parse": 0.122,
|
|
2267
|
+
"hir": 0.005,
|
|
2268
|
+
"mir": 0.182,
|
|
2269
|
+
"emit": 0.007,
|
|
2270
|
+
"total": 0.316
|
|
2271
|
+
},
|
|
2272
|
+
"fileCount": 14,
|
|
2273
|
+
"mcfunctionFileCount": 12,
|
|
2274
|
+
"instructionCount": 47,
|
|
2275
|
+
"totalBytes": 3572,
|
|
2276
|
+
"mcfunctionBytes": 3429,
|
|
2277
|
+
"warnings": 0
|
|
2278
|
+
}
|
|
2279
|
+
]
|
|
2280
|
+
},
|
|
2281
|
+
{
|
|
2282
|
+
"module": "strings.mcrs",
|
|
2283
|
+
"path": "/Users/yuzhe/projects/redscript/src/stdlib/strings.mcrs",
|
|
2284
|
+
"results": [
|
|
2285
|
+
{
|
|
2286
|
+
"optLevel": "O0",
|
|
2287
|
+
"timingsMs": {
|
|
2288
|
+
"parse": 0.125,
|
|
2289
|
+
"hir": 0.003,
|
|
2290
|
+
"mir": 0.029,
|
|
2291
|
+
"emit": 0.005,
|
|
2292
|
+
"total": 0.163
|
|
2293
|
+
},
|
|
2294
|
+
"fileCount": 7,
|
|
2295
|
+
"mcfunctionFileCount": 5,
|
|
2296
|
+
"instructionCount": 23,
|
|
2297
|
+
"totalBytes": 1831,
|
|
2298
|
+
"mcfunctionBytes": 1684,
|
|
2299
|
+
"warnings": 0
|
|
2300
|
+
},
|
|
2301
|
+
{
|
|
2302
|
+
"optLevel": "O1",
|
|
2303
|
+
"timingsMs": {
|
|
2304
|
+
"parse": 0.117,
|
|
2305
|
+
"hir": 0.002,
|
|
2306
|
+
"mir": 0.054,
|
|
2307
|
+
"emit": 0.003,
|
|
2308
|
+
"total": 0.179
|
|
2309
|
+
},
|
|
2310
|
+
"fileCount": 7,
|
|
2311
|
+
"mcfunctionFileCount": 5,
|
|
2312
|
+
"instructionCount": 14,
|
|
2313
|
+
"totalBytes": 1064,
|
|
2314
|
+
"mcfunctionBytes": 917,
|
|
2315
|
+
"warnings": 0
|
|
2316
|
+
},
|
|
2317
|
+
{
|
|
2318
|
+
"optLevel": "O2",
|
|
2319
|
+
"timingsMs": {
|
|
2320
|
+
"parse": 0.109,
|
|
2321
|
+
"hir": 0.006,
|
|
2322
|
+
"mir": 0.063,
|
|
2323
|
+
"emit": 0.003,
|
|
2324
|
+
"total": 0.182
|
|
2325
|
+
},
|
|
2326
|
+
"fileCount": 7,
|
|
2327
|
+
"mcfunctionFileCount": 5,
|
|
2328
|
+
"instructionCount": 14,
|
|
2329
|
+
"totalBytes": 1064,
|
|
2330
|
+
"mcfunctionBytes": 917,
|
|
2331
|
+
"warnings": 0
|
|
2332
|
+
}
|
|
2333
|
+
]
|
|
2334
|
+
},
|
|
2335
|
+
{
|
|
2336
|
+
"module": "tags.mcrs",
|
|
2337
|
+
"path": "/Users/yuzhe/projects/redscript/src/stdlib/tags.mcrs",
|
|
2338
|
+
"results": [
|
|
2339
|
+
{
|
|
2340
|
+
"optLevel": "O0",
|
|
2341
|
+
"timingsMs": {
|
|
2342
|
+
"parse": 1.034,
|
|
2343
|
+
"hir": 0.015,
|
|
2344
|
+
"mir": 0.011,
|
|
2345
|
+
"emit": 0.002,
|
|
2346
|
+
"total": 1.062
|
|
2347
|
+
},
|
|
2348
|
+
"fileCount": 3,
|
|
2349
|
+
"mcfunctionFileCount": 1,
|
|
2350
|
+
"instructionCount": 1,
|
|
2351
|
+
"totalBytes": 187,
|
|
2352
|
+
"mcfunctionBytes": 46,
|
|
2353
|
+
"warnings": 0
|
|
2354
|
+
},
|
|
2355
|
+
{
|
|
2356
|
+
"optLevel": "O1",
|
|
2357
|
+
"timingsMs": {
|
|
2358
|
+
"parse": 0.989,
|
|
2359
|
+
"hir": 0.005,
|
|
2360
|
+
"mir": 0.015,
|
|
2361
|
+
"emit": 0.002,
|
|
2362
|
+
"total": 1.012
|
|
2363
|
+
},
|
|
2364
|
+
"fileCount": 3,
|
|
2365
|
+
"mcfunctionFileCount": 1,
|
|
2366
|
+
"instructionCount": 1,
|
|
2367
|
+
"totalBytes": 187,
|
|
2368
|
+
"mcfunctionBytes": 46,
|
|
2369
|
+
"warnings": 0
|
|
2370
|
+
},
|
|
2371
|
+
{
|
|
2372
|
+
"optLevel": "O2",
|
|
2373
|
+
"timingsMs": {
|
|
2374
|
+
"parse": 0.855,
|
|
2375
|
+
"hir": 0.005,
|
|
2376
|
+
"mir": 0.012,
|
|
2377
|
+
"emit": 0.002,
|
|
2378
|
+
"total": 0.874
|
|
2379
|
+
},
|
|
2380
|
+
"fileCount": 3,
|
|
2381
|
+
"mcfunctionFileCount": 1,
|
|
2382
|
+
"instructionCount": 1,
|
|
2383
|
+
"totalBytes": 187,
|
|
2384
|
+
"mcfunctionBytes": 46,
|
|
2385
|
+
"warnings": 0
|
|
2386
|
+
}
|
|
2387
|
+
]
|
|
2388
|
+
},
|
|
2389
|
+
{
|
|
2390
|
+
"module": "teams.mcrs",
|
|
2391
|
+
"path": "/Users/yuzhe/projects/redscript/src/stdlib/teams.mcrs",
|
|
2392
|
+
"results": [
|
|
2393
|
+
{
|
|
2394
|
+
"optLevel": "O0",
|
|
2395
|
+
"timingsMs": {
|
|
2396
|
+
"parse": 0.11,
|
|
2397
|
+
"hir": 0.005,
|
|
2398
|
+
"mir": 0.149,
|
|
2399
|
+
"emit": 0.015,
|
|
2400
|
+
"total": 0.281
|
|
2401
|
+
},
|
|
2402
|
+
"fileCount": 13,
|
|
2403
|
+
"mcfunctionFileCount": 11,
|
|
2404
|
+
"instructionCount": 130,
|
|
2405
|
+
"totalBytes": 9075,
|
|
2406
|
+
"mcfunctionBytes": 8932,
|
|
2407
|
+
"warnings": 0
|
|
2408
|
+
},
|
|
2409
|
+
{
|
|
2410
|
+
"optLevel": "O1",
|
|
2411
|
+
"timingsMs": {
|
|
2412
|
+
"parse": 0.092,
|
|
2413
|
+
"hir": 0.004,
|
|
2414
|
+
"mir": 0.23,
|
|
2415
|
+
"emit": 0.008,
|
|
2416
|
+
"total": 0.334
|
|
2417
|
+
},
|
|
2418
|
+
"fileCount": 13,
|
|
2419
|
+
"mcfunctionFileCount": 11,
|
|
2420
|
+
"instructionCount": 71,
|
|
2421
|
+
"totalBytes": 3442,
|
|
2422
|
+
"mcfunctionBytes": 3299,
|
|
2423
|
+
"warnings": 0
|
|
2424
|
+
},
|
|
2425
|
+
{
|
|
2426
|
+
"optLevel": "O2",
|
|
2427
|
+
"timingsMs": {
|
|
2428
|
+
"parse": 0.09,
|
|
2429
|
+
"hir": 0.004,
|
|
2430
|
+
"mir": 0.258,
|
|
2431
|
+
"emit": 0.007,
|
|
2432
|
+
"total": 0.359
|
|
2433
|
+
},
|
|
2434
|
+
"fileCount": 13,
|
|
2435
|
+
"mcfunctionFileCount": 11,
|
|
2436
|
+
"instructionCount": 71,
|
|
2437
|
+
"totalBytes": 3442,
|
|
2438
|
+
"mcfunctionBytes": 3299,
|
|
2439
|
+
"warnings": 0
|
|
2440
|
+
}
|
|
2441
|
+
]
|
|
2442
|
+
},
|
|
2443
|
+
{
|
|
2444
|
+
"module": "timer.mcrs",
|
|
2445
|
+
"path": "/Users/yuzhe/projects/redscript/src/stdlib/timer.mcrs",
|
|
2446
|
+
"results": [
|
|
2447
|
+
{
|
|
2448
|
+
"optLevel": "O0",
|
|
2449
|
+
"timingsMs": {
|
|
2450
|
+
"parse": 0.361,
|
|
2451
|
+
"hir": 0.059,
|
|
2452
|
+
"mir": 0.482,
|
|
2453
|
+
"emit": 0.019,
|
|
2454
|
+
"total": 0.921
|
|
2455
|
+
},
|
|
2456
|
+
"fileCount": 24,
|
|
2457
|
+
"mcfunctionFileCount": 22,
|
|
2458
|
+
"instructionCount": 105,
|
|
2459
|
+
"totalBytes": 8491,
|
|
2460
|
+
"mcfunctionBytes": 8348,
|
|
2461
|
+
"warnings": 0
|
|
2462
|
+
},
|
|
2463
|
+
{
|
|
2464
|
+
"optLevel": "O1",
|
|
2465
|
+
"timingsMs": {
|
|
2466
|
+
"parse": 0.184,
|
|
2467
|
+
"hir": 0.016,
|
|
2468
|
+
"mir": 0.372,
|
|
2469
|
+
"emit": 0.022,
|
|
2470
|
+
"total": 0.594
|
|
2471
|
+
},
|
|
2472
|
+
"fileCount": 24,
|
|
2473
|
+
"mcfunctionFileCount": 22,
|
|
2474
|
+
"instructionCount": 80,
|
|
2475
|
+
"totalBytes": 6608,
|
|
2476
|
+
"mcfunctionBytes": 6465,
|
|
2477
|
+
"warnings": 0
|
|
2478
|
+
},
|
|
2479
|
+
{
|
|
2480
|
+
"optLevel": "O2",
|
|
2481
|
+
"timingsMs": {
|
|
2482
|
+
"parse": 0.208,
|
|
2483
|
+
"hir": 0.013,
|
|
2484
|
+
"mir": 0.408,
|
|
2485
|
+
"emit": 0.012,
|
|
2486
|
+
"total": 0.641
|
|
2487
|
+
},
|
|
2488
|
+
"fileCount": 24,
|
|
2489
|
+
"mcfunctionFileCount": 22,
|
|
2490
|
+
"instructionCount": 80,
|
|
2491
|
+
"totalBytes": 6608,
|
|
2492
|
+
"mcfunctionBytes": 6465,
|
|
2493
|
+
"warnings": 0
|
|
2494
|
+
}
|
|
2495
|
+
]
|
|
2496
|
+
},
|
|
2497
|
+
{
|
|
2498
|
+
"module": "vec.mcrs",
|
|
2499
|
+
"path": "/Users/yuzhe/projects/redscript/src/stdlib/vec.mcrs",
|
|
2500
|
+
"results": [
|
|
2501
|
+
{
|
|
2502
|
+
"optLevel": "O0",
|
|
2503
|
+
"timingsMs": {
|
|
2504
|
+
"parse": 0.755,
|
|
2505
|
+
"hir": 0.044,
|
|
2506
|
+
"mir": 2.831,
|
|
2507
|
+
"emit": 0.114,
|
|
2508
|
+
"total": 3.745
|
|
2509
|
+
},
|
|
2510
|
+
"fileCount": 166,
|
|
2511
|
+
"mcfunctionFileCount": 164,
|
|
2512
|
+
"instructionCount": 891,
|
|
2513
|
+
"totalBytes": 68740,
|
|
2514
|
+
"mcfunctionBytes": 68601,
|
|
2515
|
+
"warnings": 0
|
|
2516
|
+
},
|
|
2517
|
+
{
|
|
2518
|
+
"optLevel": "O1",
|
|
2519
|
+
"timingsMs": {
|
|
2520
|
+
"parse": 0.727,
|
|
2521
|
+
"hir": 0.044,
|
|
2522
|
+
"mir": 4.51,
|
|
2523
|
+
"emit": 0.099,
|
|
2524
|
+
"total": 5.384
|
|
2525
|
+
},
|
|
2526
|
+
"fileCount": 166,
|
|
2527
|
+
"mcfunctionFileCount": 164,
|
|
2528
|
+
"instructionCount": 820,
|
|
2529
|
+
"totalBytes": 63881,
|
|
2530
|
+
"mcfunctionBytes": 63742,
|
|
2531
|
+
"warnings": 0
|
|
2532
|
+
},
|
|
2533
|
+
{
|
|
2534
|
+
"optLevel": "O2",
|
|
2535
|
+
"timingsMs": {
|
|
2536
|
+
"parse": 0.781,
|
|
2537
|
+
"hir": 0.05,
|
|
2538
|
+
"mir": 3.979,
|
|
2539
|
+
"emit": 0.111,
|
|
2540
|
+
"total": 4.924
|
|
2541
|
+
},
|
|
2542
|
+
"fileCount": 166,
|
|
2543
|
+
"mcfunctionFileCount": 164,
|
|
2544
|
+
"instructionCount": 820,
|
|
2545
|
+
"totalBytes": 63881,
|
|
2546
|
+
"mcfunctionBytes": 63742,
|
|
2547
|
+
"warnings": 0
|
|
2548
|
+
}
|
|
2549
|
+
]
|
|
2550
|
+
},
|
|
2551
|
+
{
|
|
2552
|
+
"module": "world.mcrs",
|
|
2553
|
+
"path": "/Users/yuzhe/projects/redscript/src/stdlib/world.mcrs",
|
|
2554
|
+
"results": [
|
|
2555
|
+
{
|
|
2556
|
+
"optLevel": "O0",
|
|
2557
|
+
"timingsMs": {
|
|
2558
|
+
"parse": 0.195,
|
|
2559
|
+
"hir": 0.014,
|
|
2560
|
+
"mir": 0.205,
|
|
2561
|
+
"emit": 0.012,
|
|
2562
|
+
"total": 0.428
|
|
2563
|
+
},
|
|
2564
|
+
"fileCount": 23,
|
|
2565
|
+
"mcfunctionFileCount": 21,
|
|
2566
|
+
"instructionCount": 80,
|
|
2567
|
+
"totalBytes": 5055,
|
|
2568
|
+
"mcfunctionBytes": 4912,
|
|
2569
|
+
"warnings": 0
|
|
2570
|
+
},
|
|
2571
|
+
{
|
|
2572
|
+
"optLevel": "O1",
|
|
2573
|
+
"timingsMs": {
|
|
2574
|
+
"parse": 0.148,
|
|
2575
|
+
"hir": 0.01,
|
|
2576
|
+
"mir": 0.32,
|
|
2577
|
+
"emit": 0.008,
|
|
2578
|
+
"total": 0.487
|
|
2579
|
+
},
|
|
2580
|
+
"fileCount": 23,
|
|
2581
|
+
"mcfunctionFileCount": 21,
|
|
2582
|
+
"instructionCount": 42,
|
|
2583
|
+
"totalBytes": 2423,
|
|
2584
|
+
"mcfunctionBytes": 2280,
|
|
2585
|
+
"warnings": 0
|
|
2586
|
+
},
|
|
2587
|
+
{
|
|
2588
|
+
"optLevel": "O2",
|
|
2589
|
+
"timingsMs": {
|
|
2590
|
+
"parse": 0.14,
|
|
2591
|
+
"hir": 0.009,
|
|
2592
|
+
"mir": 0.703,
|
|
2593
|
+
"emit": 0.013,
|
|
2594
|
+
"total": 0.867
|
|
2595
|
+
},
|
|
2596
|
+
"fileCount": 23,
|
|
2597
|
+
"mcfunctionFileCount": 21,
|
|
2598
|
+
"instructionCount": 42,
|
|
2599
|
+
"totalBytes": 2423,
|
|
2600
|
+
"mcfunctionBytes": 2280,
|
|
2601
|
+
"warnings": 0
|
|
2602
|
+
}
|
|
2603
|
+
]
|
|
2604
|
+
}
|
|
2605
|
+
]
|
|
2606
|
+
}
|