basic101 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.rspec +2 -0
- data/.simplecov +1 -0
- data/.yardopts +7 -0
- data/Changelog.md +3 -0
- data/Gemfile +12 -0
- data/Gemfile.lock +75 -0
- data/LICENSE.md +9 -0
- data/README.md +193 -0
- data/Rakefile +14 -0
- data/VERSION +1 -0
- data/bin/basic101 +10 -0
- data/lib/basic101/abs_function.rb +19 -0
- data/lib/basic101/argument_checker.rb +61 -0
- data/lib/basic101/arguments.rb +32 -0
- data/lib/basic101/array_reference.rb +52 -0
- data/lib/basic101/asc_function.rb +17 -0
- data/lib/basic101/basic_array.rb +69 -0
- data/lib/basic101/basic_comparisons.rb +20 -0
- data/lib/basic101/basic_float.rb +48 -0
- data/lib/basic101/basic_integer.rb +48 -0
- data/lib/basic101/basic_math.rb +22 -0
- data/lib/basic101/basic_numeric.rb +96 -0
- data/lib/basic101/basic_object.rb +35 -0
- data/lib/basic101/basic_string.rb +85 -0
- data/lib/basic101/binary_operation.rb +32 -0
- data/lib/basic101/binary_operations.rb +26 -0
- data/lib/basic101/built_in_functions.rb +31 -0
- data/lib/basic101/chr_function.rb +17 -0
- data/lib/basic101/cos_function.rb +17 -0
- data/lib/basic101/data_statement.rb +24 -0
- data/lib/basic101/define_function_statement.rb +23 -0
- data/lib/basic101/dim_statement.rb +25 -0
- data/lib/basic101/else_statement.rb +22 -0
- data/lib/basic101/end_statement.rb +13 -0
- data/lib/basic101/endif_statement.rb +19 -0
- data/lib/basic101/errors.rb +50 -0
- data/lib/basic101/exp_function.rb +17 -0
- data/lib/basic101/for_stack.rb +48 -0
- data/lib/basic101/for_statement.rb +57 -0
- data/lib/basic101/function.rb +11 -0
- data/lib/basic101/function_call.rb +32 -0
- data/lib/basic101/function_identifier.rb +8 -0
- data/lib/basic101/functions.rb +39 -0
- data/lib/basic101/gosub_statement.rb +23 -0
- data/lib/basic101/goto_statement.rb +23 -0
- data/lib/basic101/identifier.rb +23 -0
- data/lib/basic101/identity.rb +18 -0
- data/lib/basic101/if_statement.rb +31 -0
- data/lib/basic101/input.rb +44 -0
- data/lib/basic101/input_reader.rb +55 -0
- data/lib/basic101/input_statement.rb +46 -0
- data/lib/basic101/int_function.rb +17 -0
- data/lib/basic101/left_function.rb +19 -0
- data/lib/basic101/len_function.rb +18 -0
- data/lib/basic101/let_statement.rb +24 -0
- data/lib/basic101/line.rb +32 -0
- data/lib/basic101/log_function.rb +17 -0
- data/lib/basic101/main.rb +24 -0
- data/lib/basic101/mid_function.rb +20 -0
- data/lib/basic101/negate_operation.rb +21 -0
- data/lib/basic101/next_statement.rb +34 -0
- data/lib/basic101/not_operation.rb +23 -0
- data/lib/basic101/null_prompt_delimeter.rb +12 -0
- data/lib/basic101/null_transcript.rb +20 -0
- data/lib/basic101/numeric_identifier.rb +16 -0
- data/lib/basic101/on_goto_statement.rb +29 -0
- data/lib/basic101/output.rb +73 -0
- data/lib/basic101/parser.rb +457 -0
- data/lib/basic101/power_operation.rb +24 -0
- data/lib/basic101/print_comma.rb +20 -0
- data/lib/basic101/print_semicolon.rb +19 -0
- data/lib/basic101/print_statement.rb +33 -0
- data/lib/basic101/program.rb +100 -0
- data/lib/basic101/program_counter.rb +52 -0
- data/lib/basic101/prompt_delimeter.rb +13 -0
- data/lib/basic101/randomize_statement.rb +13 -0
- data/lib/basic101/read_statement.rb +25 -0
- data/lib/basic101/reference.rb +25 -0
- data/lib/basic101/remark_statement.rb +12 -0
- data/lib/basic101/restore_statement.rb +23 -0
- data/lib/basic101/return_statement.rb +16 -0
- data/lib/basic101/right_function.rb +19 -0
- data/lib/basic101/rnd_function.rb +24 -0
- data/lib/basic101/runtime.rb +132 -0
- data/lib/basic101/scalar_reference.rb +19 -0
- data/lib/basic101/sgn_function.rb +17 -0
- data/lib/basic101/sin_function.rb +17 -0
- data/lib/basic101/sqr_function.rb +17 -0
- data/lib/basic101/statement.rb +36 -0
- data/lib/basic101/stop_statement.rb +14 -0
- data/lib/basic101/str_function.rb +16 -0
- data/lib/basic101/string_identifier.rb +16 -0
- data/lib/basic101/tab.rb +18 -0
- data/lib/basic101/tab_function.rb +17 -0
- data/lib/basic101/tan_function.rb +17 -0
- data/lib/basic101/transcript.rb +37 -0
- data/lib/basic101/transform.rb +264 -0
- data/lib/basic101/user_defined_function.rb +54 -0
- data/lib/basic101/val_function.rb +16 -0
- data/lib/basic101.rb +93 -0
- data/rake_tasks/default.rake +1 -0
- data/rake_tasks/integration.rake +8 -0
- data/rake_tasks/jeweler.rake +28 -0
- data/rake_tasks/spec.rake +8 -0
- data/rake_tasks/test.rake +2 -0
- data/rake_tasks/yard.rake +3 -0
- data/test/integration/arguments.rb +25 -0
- data/test/integration/errors.rb +7 -0
- data/test/integration/integration_test.rb +28 -0
- data/test/integration/main.rb +49 -0
- data/test/integration/output_file.rb +40 -0
- data/test/integration/test.rb +135 -0
- data/test/integration/tests/basic_computer_games/23-match.bas +64 -0
- data/test/integration/tests/basic_computer_games/23-match.input +1 -0
- data/test/integration/tests/basic_computer_games/23-match.output +29 -0
- data/test/integration/tests/basic_computer_games/3dplot.bas +17 -0
- data/test/integration/tests/basic_computer_games/3dplot.input +0 -0
- data/test/integration/tests/basic_computer_games/3dplot.output +47 -0
- data/test/integration/tests/basic_computer_games/aceyducy.bas +100 -0
- data/test/integration/tests/basic_computer_games/aceyducy.input +8 -0
- data/test/integration/tests/basic_computer_games/aceyducy.output +78 -0
- data/test/integration/tests/basic_computer_games/amazing.bas +138 -0
- data/test/integration/tests/basic_computer_games/amazing.input +1 -0
- data/test/integration/tests/basic_computer_games/amazing.output +32 -0
- data/test/integration/tests/basic_computer_games/animal.bas +71 -0
- data/test/integration/tests/basic_computer_games/animal.input +17 -0
- data/test/integration/tests/basic_computer_games/animal.output +38 -0
- data/test/integration/tests/basic_computer_games/awari.bas +70 -0
- data/test/integration/tests/basic_computer_games/awari.input +11 -0
- data/test/integration/tests/basic_computer_games/awari.output +117 -0
- data/test/integration/tests/basic_computer_games/bagels.bas +81 -0
- data/test/integration/tests/basic_computer_games/bagels.input +12 -0
- data/test/integration/tests/basic_computer_games/bagels.output +42 -0
- data/test/integration/tests/basic_computer_games/banner.bas +94 -0
- data/test/integration/tests/basic_computer_games/banner.input +6 -0
- data/test/integration/tests/basic_computer_games/banner.output +135 -0
- data/test/integration/tests/basic_computer_games/basketbl.bas +196 -0
- data/test/integration/tests/basic_computer_games/basketbl.input +46 -0
- data/test/integration/tests/basic_computer_games/basketbl.output +509 -0
- data/test/integration/tests/basic_computer_games/batnum.bas +90 -0
- data/test/integration/tests/basic_computer_games/batnum.input +14 -0
- data/test/integration/tests/basic_computer_games/batnum.output +67 -0
- data/test/integration/tests/basic_computer_games/battle.bas +196 -0
- data/test/integration/tests/basic_computer_games/battle.input +21 -0
- data/test/integration/tests/basic_computer_games/battle.output +118 -0
- data/test/integration/tests/basic_computer_games/blackjck.bas +321 -0
- data/test/integration/tests/basic_computer_games/blackjck.input +26 -0
- data/test/integration/tests/basic_computer_games/blackjck.output +144 -0
- data/test/integration/tests/basic_computer_games/bombard.bas +93 -0
- data/test/integration/tests/basic_computer_games/bombard.input +20 -0
- data/test/integration/tests/basic_computer_games/bombard.output +175 -0
- data/test/integration/tests/basic_computer_games/bounce.bas +53 -0
- data/test/integration/tests/basic_computer_games/bounce.input +0 -0
- data/test/integration/tests/basic_computer_games/bounce.output +15 -0
- data/test/integration/tests/basic_computer_games/bowling.bas +101 -0
- data/test/integration/tests/basic_computer_games/bowling.input +23 -0
- data/test/integration/tests/basic_computer_games/bowling.output +229 -0
- data/test/integration/tests/basic_computer_games/boxing.bas +142 -0
- data/test/integration/tests/basic_computer_games/boxing.input +8 -0
- data/test/integration/tests/basic_computer_games/boxing.output +47 -0
- data/test/integration/tests/basic_computer_games/bug.bas +256 -0
- data/test/integration/tests/basic_computer_games/bug.input +17 -0
- data/test/integration/tests/basic_computer_games/bug.output +847 -0
- data/test/integration/tests/basic_computer_games/bullfght.bas +193 -0
- data/test/integration/tests/basic_computer_games/bullfght.input +4 -0
- data/test/integration/tests/basic_computer_games/bullfght.output +60 -0
- data/test/integration/tests/basic_computer_games/bullseye.bas +37 -0
- data/test/integration/tests/basic_computer_games/bullseye.input +10 -0
- data/test/integration/tests/basic_computer_games/bullseye.output +79 -0
- data/test/integration/tests/basic_computer_games/bunny.bas +40 -0
- data/test/integration/tests/basic_computer_games/bunny.input +0 -0
- data/test/integration/tests/basic_computer_games/bunny.output +67 -0
- data/test/integration/tests/basic_computer_games/buzzword.bas +25 -0
- data/test/integration/tests/basic_computer_games/buzzword.input +4 -0
- data/test/integration/tests/basic_computer_games/buzzword.output +25 -0
- data/test/integration/tests/basic_computer_games/calendar.bas +58 -0
- data/test/integration/tests/basic_computer_games/calendar.input +0 -0
- data/test/integration/tests/basic_computer_games/calendar.output +213 -0
- data/test/integration/tests/basic_computer_games/change.bas +51 -0
- data/test/integration/tests/basic_computer_games/change.input +4 -0
- data/test/integration/tests/basic_computer_games/change.output +28 -0
- data/test/integration/tests/basic_computer_games/checkers.bas +82 -0
- data/test/integration/tests/basic_computer_games/checkers.input +74 -0
- data/test/integration/tests/basic_computer_games/checkers.output +673 -0
- data/test/integration/tests/basic_computer_games/chemist.bas +27 -0
- data/test/integration/tests/basic_computer_games/chemist.input +11 -0
- data/test/integration/tests/basic_computer_games/chemist.output +54 -0
- data/test/integration/tests/basic_computer_games/chief.bas +51 -0
- data/test/integration/tests/basic_computer_games/chief.input +5 -0
- data/test/integration/tests/basic_computer_games/chief.output +19 -0
- data/test/integration/tests/basic_computer_games/chomp.bas +104 -0
- data/test/integration/tests/basic_computer_games/chomp.input +15 -0
- data/test/integration/tests/basic_computer_games/chomp.output +159 -0
- data/test/integration/tests/basic_computer_games/combat.bas +124 -0
- data/test/integration/tests/basic_computer_games/combat.input +7 -0
- data/test/integration/tests/basic_computer_games/combat.output +33 -0
- data/test/integration/tests/basic_computer_games/craps.bas +82 -0
- data/test/integration/tests/basic_computer_games/craps.input +9 -0
- data/test/integration/tests/basic_computer_games/craps.output +51 -0
- data/test/integration/tests/basic_computer_games/cube.bas +161 -0
- data/test/integration/tests/basic_computer_games/cube.input +25 -0
- data/test/integration/tests/basic_computer_games/cube.output +72 -0
- data/test/integration/tests/basic_computer_games/depthchg.bas +33 -0
- data/test/integration/tests/basic_computer_games/depthchg.input +16 -0
- data/test/integration/tests/basic_computer_games/depthchg.output +83 -0
- data/test/integration/tests/basic_computer_games/diamond.bas +27 -0
- data/test/integration/tests/basic_computer_games/diamond.input +1 -0
- data/test/integration/tests/basic_computer_games/diamond.output +65 -0
- data/test/integration/tests/basic_computer_games/dice.bas +31 -0
- data/test/integration/tests/basic_computer_games/dice.input +4 -0
- data/test/integration/tests/basic_computer_games/dice.output +46 -0
- data/test/integration/tests/basic_computer_games/digits.bas +78 -0
- data/test/integration/tests/basic_computer_games/digits.input +5 -0
- data/test/integration/tests/basic_computer_games/digits.output +70 -0
- data/test/integration/tests/basic_computer_games/evenwin1.bas +128 -0
- data/test/integration/tests/basic_computer_games/evenwin1.input +13 -0
- data/test/integration/tests/basic_computer_games/evenwin1.output +116 -0
- data/test/integration/tests/basic_computer_games/evenwin2.bas +70 -0
- data/test/integration/tests/basic_computer_games/evenwin2.input +14 -0
- data/test/integration/tests/basic_computer_games/evenwin2.output +56 -0
- data/test/integration/tests/basic_computer_games/flipflop.bas +79 -0
- data/test/integration/tests/basic_computer_games/flipflop.input +8 -0
- data/test/integration/tests/basic_computer_games/flipflop.output +45 -0
- data/test/integration/tests/basic_computer_games/footbal1.bas +298 -0
- data/test/integration/tests/basic_computer_games/footbal1.input +13 -0
- data/test/integration/tests/basic_computer_games/footbal1.output +315 -0
- data/test/integration/tests/basic_computer_games/footbal2.bas +181 -0
- data/test/integration/tests/basic_computer_games/footbal2.input +23 -0
- data/test/integration/tests/basic_computer_games/footbal2.output +318 -0
- data/test/integration/tests/basic_computer_games/furtradr.bas +170 -0
- data/test/integration/tests/basic_computer_games/furtradr.input +20 -0
- data/test/integration/tests/basic_computer_games/furtradr.output +133 -0
- data/test/integration/tests/basic_computer_games/golf.bas +244 -0
- data/test/integration/tests/basic_computer_games/golf.input +11 -0
- data/test/integration/tests/basic_computer_games/golf.output +69 -0
- data/test/integration/tests/basic_computer_games/gomoko.bas +54 -0
- data/test/integration/tests/basic_computer_games/gomoko.input +6 -0
- data/test/integration/tests/basic_computer_games/gomoko.output +66 -0
- data/test/integration/tests/basic_computer_games/guess.bas +40 -0
- data/test/integration/tests/basic_computer_games/guess.input +8 -0
- data/test/integration/tests/basic_computer_games/guess.output +37 -0
- data/test/integration/tests/basic_computer_games/gunner.bas +52 -0
- data/test/integration/tests/basic_computer_games/gunner.input +18 -0
- data/test/integration/tests/basic_computer_games/gunner.output +91 -0
- data/test/integration/tests/basic_computer_games/hamurabi.bas +119 -0
- data/test/integration/tests/basic_computer_games/hamurabi.input +7 -0
- data/test/integration/tests/basic_computer_games/hamurabi.output +51 -0
- data/test/integration/tests/basic_computer_games/hangman.bas +81 -0
- data/test/integration/tests/basic_computer_games/hangman.input +69 -0
- data/test/integration/tests/basic_computer_games/hangman.output +889 -0
- data/test/integration/tests/basic_computer_games/hello.bas +83 -0
- data/test/integration/tests/basic_computer_games/hello.input +7 -0
- data/test/integration/tests/basic_computer_games/hello.output +46 -0
- data/test/integration/tests/basic_computer_games/hexapawn.bas +174 -0
- data/test/integration/tests/basic_computer_games/hexapawn.input +38 -0
- data/test/integration/tests/basic_computer_games/hexapawn.output +521 -0
- data/test/integration/tests/basic_computer_games/hi-q.bas +135 -0
- data/test/integration/tests/basic_computer_games/hi-q.input +14 -0
- data/test/integration/tests/basic_computer_games/hi-q.output +115 -0
- data/test/integration/tests/basic_computer_games/hilo.bas +29 -0
- data/test/integration/tests/basic_computer_games/hilo.input +20 -0
- data/test/integration/tests/basic_computer_games/hilo.output +76 -0
- data/test/integration/tests/basic_computer_games/hockey.bas +210 -0
- data/test/integration/tests/basic_computer_games/hockey.input +59 -0
- data/test/integration/tests/basic_computer_games/hockey.output +243 -0
- data/test/integration/tests/basic_computer_games/horsrace.bas +130 -0
- data/test/integration/tests/basic_computer_games/horsrace.input +11 -0
- data/test/integration/tests/basic_computer_games/horsrace.output +517 -0
- data/test/integration/tests/basic_computer_games/hurkle.bas +51 -0
- data/test/integration/tests/basic_computer_games/hurkle.input +16 -0
- data/test/integration/tests/basic_computer_games/hurkle.output +81 -0
- data/test/integration/tests/basic_computer_games/kinema.bas +34 -0
- data/test/integration/tests/basic_computer_games/kinema.input +9 -0
- data/test/integration/tests/basic_computer_games/kinema.output +64 -0
- data/test/integration/tests/basic_computer_games/king.bas +268 -0
- data/test/integration/tests/basic_computer_games/king.input +7 -0
- data/test/integration/tests/basic_computer_games/king.output +57 -0
- data/test/integration/tests/basic_computer_games/lem.bas +246 -0
- data/test/integration/tests/basic_computer_games/lem.input +4 -0
- data/test/integration/tests/basic_computer_games/lem.output +68 -0
- data/test/integration/tests/basic_computer_games/letter.bas +26 -0
- data/test/integration/tests/basic_computer_games/letter.input +24 -0
- data/test/integration/tests/basic_computer_games/letter.output +123 -0
- data/test/integration/tests/basic_computer_games/life.bas +66 -0
- data/test/integration/tests/basic_computer_games/life.input +4 -0
- data/test/integration/tests/basic_computer_games/life.options +1 -0
- data/test/integration/tests/basic_computer_games/life.output +200 -0
- data/test/integration/tests/basic_computer_games/life2.bas +83 -0
- data/test/integration/tests/basic_computer_games/life2.input +17 -0
- data/test/integration/tests/basic_computer_games/life2.output +113 -0
- data/test/integration/tests/basic_computer_games/litquiz.bas +49 -0
- data/test/integration/tests/basic_computer_games/litquiz.input +4 -0
- data/test/integration/tests/basic_computer_games/litquiz.output +36 -0
- data/test/integration/tests/basic_computer_games/love.bas +34 -0
- data/test/integration/tests/basic_computer_games/love.input +1 -0
- data/test/integration/tests/basic_computer_games/love.output +67 -0
- data/test/integration/tests/basic_computer_games/lunar.bas +48 -0
- data/test/integration/tests/basic_computer_games/lunar.input +87 -0
- data/test/integration/tests/basic_computer_games/lunar.output +195 -0
- data/test/integration/tests/basic_computer_games/mastrmnd.bas +232 -0
- data/test/integration/tests/basic_computer_games/mastrmnd.input +18 -0
- data/test/integration/tests/basic_computer_games/mastrmnd.output +67 -0
- data/test/integration/tests/basic_computer_games/mathdice.bas +60 -0
- data/test/integration/tests/basic_computer_games/mathdice.input +4 -0
- data/test/integration/tests/basic_computer_games/mathdice.output +86 -0
- data/test/integration/tests/basic_computer_games/mugwump.bas +56 -0
- data/test/integration/tests/basic_computer_games/mugwump.input +16 -0
- data/test/integration/tests/basic_computer_games/mugwump.output +139 -0
- data/test/integration/tests/basic_computer_games/name.bas +25 -0
- data/test/integration/tests/basic_computer_games/name.input +2 -0
- data/test/integration/tests/basic_computer_games/name.output +22 -0
- data/test/integration/tests/basic_computer_games/nicoma.bas +34 -0
- data/test/integration/tests/basic_computer_games/nicoma.input +8 -0
- data/test/integration/tests/basic_computer_games/nicoma.output +36 -0
- data/test/integration/tests/basic_computer_games/nim.bas +156 -0
- data/test/integration/tests/basic_computer_games/nim.input +8 -0
- data/test/integration/tests/basic_computer_games/nim.output +30 -0
- data/test/integration/tests/basic_computer_games/number.bas +37 -0
- data/test/integration/tests/basic_computer_games/number.input +19 -0
- data/test/integration/tests/basic_computer_games/number.output +73 -0
- data/test/integration/tests/basic_computer_games/onecheck.bas +86 -0
- data/test/integration/tests/basic_computer_games/onecheck.input +6 -0
- data/test/integration/tests/basic_computer_games/onecheck.output +77 -0
- data/test/integration/tests/basic_computer_games/orbit.bas +96 -0
- data/test/integration/tests/basic_computer_games/orbit.input +10 -0
- data/test/integration/tests/basic_computer_games/orbit.output +113 -0
- data/test/integration/tests/basic_computer_games/pizza.bas +68 -0
- data/test/integration/tests/basic_computer_games/pizza.input +10 -0
- data/test/integration/tests/basic_computer_games/pizza.output +93 -0
- data/test/integration/tests/basic_computer_games/poetry.bas +42 -0
- data/test/integration/tests/basic_computer_games/poetry.input +0 -0
- data/test/integration/tests/basic_computer_games/poetry.options +1 -0
- data/test/integration/tests/basic_computer_games/poetry.output +50 -0
- data/test/integration/tests/basic_computer_games/poker.bas +416 -0
- data/test/integration/tests/basic_computer_games/poker.input +34 -0
- data/test/integration/tests/basic_computer_games/poker.output +197 -0
- data/test/integration/tests/basic_computer_games/queen.bas +168 -0
- data/test/integration/tests/basic_computer_games/queen.input +10 -0
- data/test/integration/tests/basic_computer_games/queen.output +133 -0
- data/test/integration/tests/basic_computer_games/reverse.bas +62 -0
- data/test/integration/tests/basic_computer_games/reverse.input +12 -0
- data/test/integration/tests/basic_computer_games/reverse.output +79 -0
- data/test/integration/tests/basic_computer_games/rocket.bas +71 -0
- data/test/integration/tests/basic_computer_games/rocket.input +42 -0
- data/test/integration/tests/basic_computer_games/rocket.output +149 -0
- data/test/integration/tests/basic_computer_games/rocksp.bas +33 -0
- data/test/integration/tests/basic_computer_games/rocksp.input +9 -0
- data/test/integration/tests/basic_computer_games/rocksp.output +69 -0
- data/test/integration/tests/basic_computer_games/roulette.bas +239 -0
- data/test/integration/tests/basic_computer_games/roulette.input +9 -0
- data/test/integration/tests/basic_computer_games/roulette.output +98 -0
- data/test/integration/tests/basic_computer_games/rusrou.bas +26 -0
- data/test/integration/tests/basic_computer_games/rusrou.input +9 -0
- data/test/integration/tests/basic_computer_games/rusrou.output +50 -0
- data/test/integration/tests/basic_computer_games/salvo.bas +329 -0
- data/test/integration/tests/basic_computer_games/salvo.input +21 -0
- data/test/integration/tests/basic_computer_games/salvo.output +49 -0
- data/test/integration/tests/basic_computer_games/sinewave.bas +17 -0
- data/test/integration/tests/basic_computer_games/sinewave.input +0 -0
- data/test/integration/tests/basic_computer_games/sinewave.output +168 -0
- data/test/integration/tests/basic_computer_games/slalom.bas +165 -0
- data/test/integration/tests/basic_computer_games/slalom.input +20 -0
- data/test/integration/tests/basic_computer_games/slalom.output +122 -0
- data/test/integration/tests/basic_computer_games/slots.bas +134 -0
- data/test/integration/tests/basic_computer_games/slots.input +2 -0
- data/test/integration/tests/basic_computer_games/slots.output +20 -0
- data/test/integration/tests/basic_computer_games/splat.bas +128 -0
- data/test/integration/tests/basic_computer_games/splat.input +9 -0
- data/test/integration/tests/basic_computer_games/splat.output +61 -0
- data/test/integration/tests/basic_computer_games/stars.bas +54 -0
- data/test/integration/tests/basic_computer_games/stars.input +15 -0
- data/test/integration/tests/basic_computer_games/stars.output +70 -0
- data/test/integration/tests/basic_computer_games/stock.bas +232 -0
- data/test/integration/tests/basic_computer_games/stock.input +30 -0
- data/test/integration/tests/basic_computer_games/stock.output +156 -0
- data/test/integration/tests/basic_computer_games/superstartrek.bas +425 -0
- data/test/integration/tests/basic_computer_games/superstartrek.input +21 -0
- data/test/integration/tests/basic_computer_games/superstartrek.output +151 -0
- data/test/integration/tests/basic_computer_games/superstartrekins.bas +127 -0
- data/test/integration/tests/basic_computer_games/superstartrekins.input +1 -0
- data/test/integration/tests/basic_computer_games/superstartrekins.output +134 -0
- data/test/integration/tests/basic_computer_games/synonym.bas +53 -0
- data/test/integration/tests/basic_computer_games/synonym.input +13 -0
- data/test/integration/tests/basic_computer_games/synonym.output +57 -0
- data/test/integration/tests/basic_computer_games/target.bas +51 -0
- data/test/integration/tests/basic_computer_games/target.input +2 -0
- data/test/integration/tests/basic_computer_games/target.output +39 -0
- data/test/integration/tests/basic_computer_games/tictac1.bas +69 -0
- data/test/integration/tests/basic_computer_games/tictac1.input +10 -0
- data/test/integration/tests/basic_computer_games/tictac1.output +49 -0
- data/test/integration/tests/basic_computer_games/tictac2.bas +114 -0
- data/test/integration/tests/basic_computer_games/tictac2.input +6 -0
- data/test/integration/tests/basic_computer_games/tictac2.output +104 -0
- data/test/integration/tests/basic_computer_games/towers.bas +125 -0
- data/test/integration/tests/basic_computer_games/towers.input +9 -0
- data/test/integration/tests/basic_computer_games/towers.output +70 -0
- data/test/integration/tests/basic_computer_games/train.bas +24 -0
- data/test/integration/tests/basic_computer_games/train.input +4 -0
- data/test/integration/tests/basic_computer_games/train.output +23 -0
- data/test/integration/tests/basic_computer_games/trap.bas +49 -0
- data/test/integration/tests/basic_computer_games/trap.input +7 -0
- data/test/integration/tests/basic_computer_games/trap.output +40 -0
- data/test/integration/tests/basic_computer_games/war.bas +68 -0
- data/test/integration/tests/basic_computer_games/war.input +11 -0
- data/test/integration/tests/basic_computer_games/war.output +54 -0
- data/test/integration/tests/basic_computer_games/weekday.bas +150 -0
- data/test/integration/tests/basic_computer_games/weekday.input +2 -0
- data/test/integration/tests/basic_computer_games/weekday.output +28 -0
- data/test/integration/tests/basic_computer_games/word.bas +65 -0
- data/test/integration/tests/basic_computer_games/word.input +6 -0
- data/test/integration/tests/basic_computer_games/word.output +0 -0
- data/test/integration/tests/fast/abs.bas +5 -0
- data/test/integration/tests/fast/abs.input +0 -0
- data/test/integration/tests/fast/abs.output +5 -0
- data/test/integration/tests/fast/add.bas +5 -0
- data/test/integration/tests/fast/add.input +0 -0
- data/test/integration/tests/fast/add.output +5 -0
- data/test/integration/tests/fast/and.bas +5 -0
- data/test/integration/tests/fast/and.input +0 -0
- data/test/integration/tests/fast/and.output +5 -0
- data/test/integration/tests/fast/array.bas +11 -0
- data/test/integration/tests/fast/array.input +0 -0
- data/test/integration/tests/fast/array.output +6 -0
- data/test/integration/tests/fast/asc.bas +1 -0
- data/test/integration/tests/fast/asc.input +0 -0
- data/test/integration/tests/fast/asc.output +1 -0
- data/test/integration/tests/fast/chr.bas +1 -0
- data/test/integration/tests/fast/chr.input +0 -0
- data/test/integration/tests/fast/chr.output +1 -0
- data/test/integration/tests/fast/cos.bas +1 -0
- data/test/integration/tests/fast/cos.input +0 -0
- data/test/integration/tests/fast/cos.output +1 -0
- data/test/integration/tests/fast/def_fn.bas +9 -0
- data/test/integration/tests/fast/def_fn.input +0 -0
- data/test/integration/tests/fast/def_fn.output +5 -0
- data/test/integration/tests/fast/divide.bas +5 -0
- data/test/integration/tests/fast/divide.input +0 -0
- data/test/integration/tests/fast/divide.output +5 -0
- data/test/integration/tests/fast/end.bas +3 -0
- data/test/integration/tests/fast/end.input +0 -0
- data/test/integration/tests/fast/end.output +1 -0
- data/test/integration/tests/fast/eq.bas +3 -0
- data/test/integration/tests/fast/eq.input +0 -0
- data/test/integration/tests/fast/eq.output +3 -0
- data/test/integration/tests/fast/exp.bas +2 -0
- data/test/integration/tests/fast/exp.input +0 -0
- data/test/integration/tests/fast/exp.output +2 -0
- data/test/integration/tests/fast/float.bas +3 -0
- data/test/integration/tests/fast/float.input +0 -0
- data/test/integration/tests/fast/float.output +2 -0
- data/test/integration/tests/fast/for_next.bas +61 -0
- data/test/integration/tests/fast/for_next.input +0 -0
- data/test/integration/tests/fast/for_next.output +46 -0
- data/test/integration/tests/fast/ge.bas +3 -0
- data/test/integration/tests/fast/ge.input +0 -0
- data/test/integration/tests/fast/ge.output +3 -0
- data/test/integration/tests/fast/gosub_return.bas +10 -0
- data/test/integration/tests/fast/gosub_return.input +0 -0
- data/test/integration/tests/fast/gosub_return.output +4 -0
- data/test/integration/tests/fast/goto.bas +3 -0
- data/test/integration/tests/fast/goto.input +0 -0
- data/test/integration/tests/fast/goto.output +1 -0
- data/test/integration/tests/fast/gt.bas +3 -0
- data/test/integration/tests/fast/gt.input +0 -0
- data/test/integration/tests/fast/gt.output +3 -0
- data/test/integration/tests/fast/if.bas +25 -0
- data/test/integration/tests/fast/if.input +0 -0
- data/test/integration/tests/fast/if.output +8 -0
- data/test/integration/tests/fast/input.bas +24 -0
- data/test/integration/tests/fast/input.input +10 -0
- data/test/integration/tests/fast/input.output +28 -0
- data/test/integration/tests/fast/int.bas +5 -0
- data/test/integration/tests/fast/int.input +0 -0
- data/test/integration/tests/fast/int.output +5 -0
- data/test/integration/tests/fast/integer_plus_string.bas +1 -0
- data/test/integration/tests/fast/integer_plus_string.input +0 -0
- data/test/integration/tests/fast/integer_plus_string.output +1 -0
- data/test/integration/tests/fast/invalid_argument.bas +1 -0
- data/test/integration/tests/fast/invalid_argument.input +0 -0
- data/test/integration/tests/fast/invalid_argument.output +1 -0
- data/test/integration/tests/fast/le.bas +3 -0
- data/test/integration/tests/fast/le.input +0 -0
- data/test/integration/tests/fast/le.output +3 -0
- data/test/integration/tests/fast/left.bas +1 -0
- data/test/integration/tests/fast/left.input +0 -0
- data/test/integration/tests/fast/left.output +1 -0
- data/test/integration/tests/fast/len.bas +2 -0
- data/test/integration/tests/fast/len.input +0 -0
- data/test/integration/tests/fast/len.output +2 -0
- data/test/integration/tests/fast/let.bas +6 -0
- data/test/integration/tests/fast/let.input +0 -0
- data/test/integration/tests/fast/let.output +4 -0
- data/test/integration/tests/fast/log.bas +1 -0
- data/test/integration/tests/fast/log.input +0 -0
- data/test/integration/tests/fast/log.output +1 -0
- data/test/integration/tests/fast/lt.bas +3 -0
- data/test/integration/tests/fast/lt.input +0 -0
- data/test/integration/tests/fast/lt.output +3 -0
- data/test/integration/tests/fast/math.output +0 -0
- data/test/integration/tests/fast/mid.bas +2 -0
- data/test/integration/tests/fast/mid.input +0 -0
- data/test/integration/tests/fast/mid.output +2 -0
- data/test/integration/tests/fast/multiply.bas +5 -0
- data/test/integration/tests/fast/multiply.input +0 -0
- data/test/integration/tests/fast/multiply.output +5 -0
- data/test/integration/tests/fast/ne.bas +3 -0
- data/test/integration/tests/fast/ne.input +0 -0
- data/test/integration/tests/fast/ne.output +3 -0
- data/test/integration/tests/fast/negate.bas +4 -0
- data/test/integration/tests/fast/negate.input +0 -0
- data/test/integration/tests/fast/negate.output +3 -0
- data/test/integration/tests/fast/not.bas +4 -0
- data/test/integration/tests/fast/not.input +0 -0
- data/test/integration/tests/fast/not.output +4 -0
- data/test/integration/tests/fast/on_goto.bas +6 -0
- data/test/integration/tests/fast/on_goto.input +0 -0
- data/test/integration/tests/fast/on_goto.output +2 -0
- data/test/integration/tests/fast/or.bas +5 -0
- data/test/integration/tests/fast/or.input +0 -0
- data/test/integration/tests/fast/or.output +5 -0
- data/test/integration/tests/fast/parentheses.bas +1 -0
- data/test/integration/tests/fast/parentheses.input +0 -0
- data/test/integration/tests/fast/parentheses.output +1 -0
- data/test/integration/tests/fast/power.bas +4 -0
- data/test/integration/tests/fast/power.input +0 -0
- data/test/integration/tests/fast/power.output +4 -0
- data/test/integration/tests/fast/print.bas +6 -0
- data/test/integration/tests/fast/print.input +0 -0
- data/test/integration/tests/fast/print.output +4 -0
- data/test/integration/tests/fast/read_data.bas +15 -0
- data/test/integration/tests/fast/read_data.input +0 -0
- data/test/integration/tests/fast/read_data.output +4 -0
- data/test/integration/tests/fast/rem.bas +1 -0
- data/test/integration/tests/fast/rem.input +0 -0
- data/test/integration/tests/fast/rem.output +0 -0
- data/test/integration/tests/fast/right.bas +1 -0
- data/test/integration/tests/fast/right.input +0 -0
- data/test/integration/tests/fast/right.output +1 -0
- data/test/integration/tests/fast/rnd.bas +5 -0
- data/test/integration/tests/fast/rnd.input +0 -0
- data/test/integration/tests/fast/rnd.output +5 -0
- data/test/integration/tests/fast/sgn.bas +5 -0
- data/test/integration/tests/fast/sgn.input +0 -0
- data/test/integration/tests/fast/sgn.output +5 -0
- data/test/integration/tests/fast/sin.bas +1 -0
- data/test/integration/tests/fast/sin.input +0 -0
- data/test/integration/tests/fast/sin.output +1 -0
- data/test/integration/tests/fast/sqr.bas +2 -0
- data/test/integration/tests/fast/sqr.input +0 -0
- data/test/integration/tests/fast/sqr.output +2 -0
- data/test/integration/tests/fast/stop.bas +3 -0
- data/test/integration/tests/fast/stop.input +0 -0
- data/test/integration/tests/fast/stop.output +2 -0
- data/test/integration/tests/fast/str.bas +3 -0
- data/test/integration/tests/fast/str.input +0 -0
- data/test/integration/tests/fast/str.output +3 -0
- data/test/integration/tests/fast/string_addition.bas +1 -0
- data/test/integration/tests/fast/string_addition.input +0 -0
- data/test/integration/tests/fast/string_addition.output +1 -0
- data/test/integration/tests/fast/string_comparisons.bas +7 -0
- data/test/integration/tests/fast/string_comparisons.input +0 -0
- data/test/integration/tests/fast/string_comparisons.output +4 -0
- data/test/integration/tests/fast/string_plus_integer.bas +1 -0
- data/test/integration/tests/fast/string_plus_integer.input +0 -0
- data/test/integration/tests/fast/string_plus_integer.output +1 -0
- data/test/integration/tests/fast/subtract.bas +5 -0
- data/test/integration/tests/fast/subtract.input +0 -0
- data/test/integration/tests/fast/subtract.output +5 -0
- data/test/integration/tests/fast/tab.bas +4 -0
- data/test/integration/tests/fast/tab.input +0 -0
- data/test/integration/tests/fast/tab.output +3 -0
- data/test/integration/tests/fast/tan.bas +1 -0
- data/test/integration/tests/fast/tan.input +0 -0
- data/test/integration/tests/fast/tan.output +1 -0
- data/test/integration/tests/fast/val.bas +3 -0
- data/test/integration/tests/fast/val.input +0 -0
- data/test/integration/tests/fast/val.output +3 -0
- data/test/spec/argument_checker_spec.rb +128 -0
- data/test/spec/basic_array_spec.rb +100 -0
- data/test/spec/basic_float_spec.rb +168 -0
- data/test/spec/basic_integer_spec.rb +270 -0
- data/test/spec/basic_numeric_spec.rb +16 -0
- data/test/spec/basic_object_spec.rb +22 -0
- data/test/spec/basic_string_spec.rb +259 -0
- data/test/spec/for_stack_spec.rb +70 -0
- data/test/spec/input_reader_spec.rb +143 -0
- data/test/spec/input_spec.rb +102 -0
- data/test/spec/line_spec.rb +18 -0
- data/test/spec/output_spec.rb +153 -0
- data/test/spec/parser_spec.rb +562 -0
- data/test/spec/program_spec.rb +45 -0
- data/test/spec/spec_helper.rb +15 -0
- data/test/spec/support/basic_numeric_helpers.rb +327 -0
- data/test/spec/support/basic_object_helpers.rb +22 -0
- data/test/spec/transcript_spec.rb +37 -0
- data/test/spec/transform_spec.rb +513 -0
- metadata +742 -0
@@ -0,0 +1,153 @@
|
|
1
|
+
require_relative 'spec_helper'
|
2
|
+
|
3
|
+
module Basic101
|
4
|
+
|
5
|
+
describe Output do
|
6
|
+
|
7
|
+
let(:file) {StringIO.new}
|
8
|
+
subject(:output) {described_class.new(file)}
|
9
|
+
|
10
|
+
describe '#puts' do
|
11
|
+
|
12
|
+
context 'with no string' do
|
13
|
+
specify do
|
14
|
+
output.puts
|
15
|
+
expect(file.string).to eq "\n"
|
16
|
+
end
|
17
|
+
end
|
18
|
+
|
19
|
+
context 'with string' do
|
20
|
+
specify do
|
21
|
+
output.puts "abc"
|
22
|
+
expect(file.string).to eq "abc\n"
|
23
|
+
end
|
24
|
+
end
|
25
|
+
|
26
|
+
end
|
27
|
+
|
28
|
+
describe '#print' do
|
29
|
+
|
30
|
+
context 'when string' do
|
31
|
+
specify do
|
32
|
+
output.print 'abc'
|
33
|
+
expect(file.string).to eq 'abc'
|
34
|
+
end
|
35
|
+
end
|
36
|
+
|
37
|
+
context 'when new line' do
|
38
|
+
specify do
|
39
|
+
output.print "\n"
|
40
|
+
expect(file.string).to eq "\n"
|
41
|
+
end
|
42
|
+
end
|
43
|
+
|
44
|
+
context 'when tab' do
|
45
|
+
|
46
|
+
specify do
|
47
|
+
output.print "\tx"
|
48
|
+
expect(file.string).to eq " x"
|
49
|
+
end
|
50
|
+
|
51
|
+
specify do
|
52
|
+
output.print "abcdefghijklm\tx"
|
53
|
+
expect(file.string).to eq "abcdefghijklm x"
|
54
|
+
end
|
55
|
+
|
56
|
+
specify do
|
57
|
+
output.print "abcdefghijklmn\tx"
|
58
|
+
expect(file.string).to eq "abcdefghijklmn x"
|
59
|
+
end
|
60
|
+
|
61
|
+
end
|
62
|
+
|
63
|
+
end
|
64
|
+
|
65
|
+
describe '#tab_to' do
|
66
|
+
|
67
|
+
context 'when tab to following column' do
|
68
|
+
specify do
|
69
|
+
output.tab_to(3)
|
70
|
+
output.print('x')
|
71
|
+
expect(file.string).to eq ' x'
|
72
|
+
end
|
73
|
+
end
|
74
|
+
|
75
|
+
context 'when tab to current column' do
|
76
|
+
specify do
|
77
|
+
output.print(' ')
|
78
|
+
output.tab_to(3)
|
79
|
+
output.print('x')
|
80
|
+
expect(file.string).to eq ' x'
|
81
|
+
end
|
82
|
+
end
|
83
|
+
|
84
|
+
context 'when tab to previous column' do
|
85
|
+
specify do
|
86
|
+
output.print(' x')
|
87
|
+
output.tab_to(3)
|
88
|
+
output.print('y')
|
89
|
+
expect(file.string).to eq " xy"
|
90
|
+
end
|
91
|
+
end
|
92
|
+
|
93
|
+
context 'when tab to first column' do
|
94
|
+
specify do
|
95
|
+
output.tab_to(0)
|
96
|
+
output.print('x')
|
97
|
+
expect(file.string).to eq "x"
|
98
|
+
end
|
99
|
+
end
|
100
|
+
|
101
|
+
context 'when tab to negative column' do
|
102
|
+
specify do
|
103
|
+
output.tab_to(-1)
|
104
|
+
output.print('x')
|
105
|
+
expect(file.string).to eq "x"
|
106
|
+
end
|
107
|
+
end
|
108
|
+
|
109
|
+
end
|
110
|
+
|
111
|
+
describe 'transcript' do
|
112
|
+
|
113
|
+
let(:input_file) {StringIO.new}
|
114
|
+
let(:output_file) {StringIO.new}
|
115
|
+
let(:transcript) {Transcript.new(input_file, output_file)}
|
116
|
+
|
117
|
+
context 'when puts called' do
|
118
|
+
it 'should echo to the transcript' do
|
119
|
+
output.transcript = transcript
|
120
|
+
output.puts "abc"
|
121
|
+
expect(output_file.string).to eq "abc\n"
|
122
|
+
end
|
123
|
+
end
|
124
|
+
|
125
|
+
context 'when echo called' do
|
126
|
+
it 'should not echo to the transcript' do
|
127
|
+
output.transcript = transcript
|
128
|
+
output.echo "abc"
|
129
|
+
expect(output_file.string).to eq ""
|
130
|
+
end
|
131
|
+
end
|
132
|
+
|
133
|
+
end
|
134
|
+
|
135
|
+
describe '#isatty' do
|
136
|
+
|
137
|
+
before(:each) {file.stub(:isatty => file_isatty)}
|
138
|
+
|
139
|
+
context 'when file is tty' do
|
140
|
+
let(:file_isatty) {true}
|
141
|
+
its(:isatty) {should be_true}
|
142
|
+
end
|
143
|
+
|
144
|
+
context 'when file is tty' do
|
145
|
+
let(:file_isatty) {false}
|
146
|
+
its(:isatty) {should be_false}
|
147
|
+
end
|
148
|
+
|
149
|
+
end
|
150
|
+
|
151
|
+
end
|
152
|
+
|
153
|
+
end
|
@@ -0,0 +1,562 @@
|
|
1
|
+
require_relative 'spec_helper'
|
2
|
+
|
3
|
+
module Basic101
|
4
|
+
|
5
|
+
describe Parser do
|
6
|
+
|
7
|
+
def self.it_should_match(s)
|
8
|
+
it "should consume #{s.inspect}" do
|
9
|
+
expect {rule.parse(s)}.to_not raise_error
|
10
|
+
end
|
11
|
+
end
|
12
|
+
|
13
|
+
def self.it_should_not_match(s)
|
14
|
+
it "should not consume #{s.inspect}" do
|
15
|
+
expect{rule.parse(s)}.to raise_error Parslet::ParseFailed
|
16
|
+
end
|
17
|
+
end
|
18
|
+
|
19
|
+
let(:parser) {Parser.new}
|
20
|
+
|
21
|
+
describe 'new_line' do
|
22
|
+
let(:rule) {parser.new_line}
|
23
|
+
it_should_match "\n"
|
24
|
+
it_should_match "\r\n"
|
25
|
+
end
|
26
|
+
|
27
|
+
describe 'space' do
|
28
|
+
let(:rule) {parser.space}
|
29
|
+
it_should_not_match ''
|
30
|
+
it_should_match ' '
|
31
|
+
it_should_match ' '
|
32
|
+
end
|
33
|
+
|
34
|
+
describe 'space?' do
|
35
|
+
let(:rule) {parser.space?}
|
36
|
+
it_should_match ''
|
37
|
+
it_should_match ' '
|
38
|
+
it_should_match ' '
|
39
|
+
end
|
40
|
+
|
41
|
+
describe 'printable' do
|
42
|
+
let(:rule) {parser.printable}
|
43
|
+
it_should_not_match "\x1f"
|
44
|
+
it_should_match "\x20"
|
45
|
+
it_should_match "\x7e"
|
46
|
+
it_should_not_match "\x7f"
|
47
|
+
end
|
48
|
+
|
49
|
+
describe 'decimal' do
|
50
|
+
let(:rule) {parser.decimal}
|
51
|
+
it_should_match '0'
|
52
|
+
it_should_match '123'
|
53
|
+
end
|
54
|
+
|
55
|
+
describe 'sign' do
|
56
|
+
let(:rule) {parser.sign}
|
57
|
+
it_should_match '+'
|
58
|
+
it_should_match '-'
|
59
|
+
end
|
60
|
+
|
61
|
+
describe 'integer' do
|
62
|
+
let(:rule) {parser.integer}
|
63
|
+
it_should_match '123'
|
64
|
+
it_should_match '-123'
|
65
|
+
it_should_match '+123'
|
66
|
+
end
|
67
|
+
|
68
|
+
describe 'fixed' do
|
69
|
+
let(:rule) {parser.float}
|
70
|
+
it_should_match '.2'
|
71
|
+
it_should_match '2.'
|
72
|
+
it_should_match '1.2'
|
73
|
+
it_should_match '-1.2'
|
74
|
+
it_should_match '+1.2'
|
75
|
+
it_should_not_match '1'
|
76
|
+
end
|
77
|
+
|
78
|
+
describe 'exponent' do
|
79
|
+
let(:rule) {parser.exponent}
|
80
|
+
it_should_match 'E10'
|
81
|
+
it_should_match 'E-10'
|
82
|
+
it_should_match 'E+10'
|
83
|
+
end
|
84
|
+
|
85
|
+
describe 'float' do
|
86
|
+
let(:rule) {parser.float}
|
87
|
+
it_should_match '1.2'
|
88
|
+
it_should_match '1E10'
|
89
|
+
it_should_match '1E+10'
|
90
|
+
it_should_match '1E-10'
|
91
|
+
it_should_not_match '1'
|
92
|
+
end
|
93
|
+
|
94
|
+
describe 'line_number' do
|
95
|
+
let(:rule) {parser.integer}
|
96
|
+
it_should_match '10'
|
97
|
+
it_should_match '20'
|
98
|
+
end
|
99
|
+
|
100
|
+
describe 'unquoted_string' do
|
101
|
+
let(:rule) {parser.unquoted_string}
|
102
|
+
it_should_match 'abc'
|
103
|
+
it_should_match ''
|
104
|
+
it_should_not_match ','
|
105
|
+
it_should_not_match '"'
|
106
|
+
it_should_not_match ':'
|
107
|
+
it_should_not_match ' '
|
108
|
+
it_should_not_match "\n"
|
109
|
+
it_should_not_match "\r"
|
110
|
+
end
|
111
|
+
|
112
|
+
describe 'quoted_string' do
|
113
|
+
let(:rule) {parser.quoted_string}
|
114
|
+
it_should_match '""'
|
115
|
+
it_should_match '"abc"'
|
116
|
+
it_should_not_match %Q'"\n"'
|
117
|
+
end
|
118
|
+
|
119
|
+
describe 'user_defined_function_identifier' do
|
120
|
+
let(:rule) {parser.user_defined_function_identifier}
|
121
|
+
it_should_match 'FNA'
|
122
|
+
it_should_match 'FNB1'
|
123
|
+
it_should_match 'FNS$'
|
124
|
+
end
|
125
|
+
|
126
|
+
describe 'built_in_function_identifier' do
|
127
|
+
let(:rule) {parser.built_in_function_identifier}
|
128
|
+
it_should_match 'LEN'
|
129
|
+
it_should_match 'RIGHT$'
|
130
|
+
end
|
131
|
+
|
132
|
+
describe 'function_identifier' do
|
133
|
+
let(:rule) {parser.function_identifier}
|
134
|
+
it_should_match 'FNA'
|
135
|
+
it_should_match 'LEN'
|
136
|
+
end
|
137
|
+
|
138
|
+
describe 'base_identifier' do
|
139
|
+
let(:rule) {parser.base_identifier}
|
140
|
+
it_should_match 'A'
|
141
|
+
it_should_match 'A1'
|
142
|
+
it_should_match 'AZ'
|
143
|
+
it_should_not_match 'ELSE'
|
144
|
+
end
|
145
|
+
|
146
|
+
describe 'built_in_function_identifier' do
|
147
|
+
let(:rule) {parser.built_in_function_identifier}
|
148
|
+
it_should_match 'ABS'
|
149
|
+
it_should_match 'ASC'
|
150
|
+
it_should_match 'CHR$'
|
151
|
+
it_should_match 'COS'
|
152
|
+
it_should_match 'EXP'
|
153
|
+
it_should_match 'INT'
|
154
|
+
it_should_match 'LEFT$'
|
155
|
+
it_should_match 'LEN'
|
156
|
+
it_should_match 'LOG'
|
157
|
+
it_should_match 'MID$'
|
158
|
+
it_should_match 'RIGHT$'
|
159
|
+
it_should_match 'RND'
|
160
|
+
it_should_match 'SGN'
|
161
|
+
it_should_match 'SIN'
|
162
|
+
it_should_match 'SQR'
|
163
|
+
it_should_match 'STR$'
|
164
|
+
it_should_match 'TAB'
|
165
|
+
it_should_match 'TAN'
|
166
|
+
it_should_match 'VAL'
|
167
|
+
end
|
168
|
+
|
169
|
+
describe 'numeric_identifier' do
|
170
|
+
let(:rule) {parser.numeric_identifier}
|
171
|
+
it_should_match 'A'
|
172
|
+
it_should_match 'A1'
|
173
|
+
end
|
174
|
+
|
175
|
+
describe 'string_identifier' do
|
176
|
+
let(:rule) {parser.string_identifier}
|
177
|
+
it_should_match 'A$'
|
178
|
+
it_should_match 'A1$'
|
179
|
+
end
|
180
|
+
|
181
|
+
describe 'identifier' do
|
182
|
+
let(:rule) {parser.identifier}
|
183
|
+
it_should_match 'A'
|
184
|
+
it_should_match 'A$'
|
185
|
+
end
|
186
|
+
|
187
|
+
describe 'argument_list' do
|
188
|
+
let(:rule) {parser.argument_list}
|
189
|
+
it_should_match '"a"'
|
190
|
+
it_should_match '"a" , "b"'
|
191
|
+
it_should_match '"a","b"'
|
192
|
+
end
|
193
|
+
|
194
|
+
describe 'array_reference' do
|
195
|
+
let(:rule) {parser.array_reference}
|
196
|
+
it_should_match 'A("a")'
|
197
|
+
it_should_match 'A ( "a", "b" )'
|
198
|
+
it_should_match 'A("a","b")'
|
199
|
+
end
|
200
|
+
|
201
|
+
describe 'scalar_reference' do
|
202
|
+
let(:rule) {parser.scalar_reference}
|
203
|
+
it_should_match 'A'
|
204
|
+
it_should_match 'S$'
|
205
|
+
end
|
206
|
+
|
207
|
+
describe 'scalar_reference_list' do
|
208
|
+
let(:rule) {parser.scalar_reference_list}
|
209
|
+
it_should_match 'I'
|
210
|
+
it_should_match 'I , J'
|
211
|
+
it_should_match 'I,J'
|
212
|
+
end
|
213
|
+
|
214
|
+
describe 'reference' do
|
215
|
+
let(:rule) {parser.reference}
|
216
|
+
it_should_match 'A ( 1 )'
|
217
|
+
it_should_match 'A(1)'
|
218
|
+
it_should_match 'S$'
|
219
|
+
end
|
220
|
+
|
221
|
+
describe 'reference_list' do
|
222
|
+
let(:rule) {parser.reference_list}
|
223
|
+
it_should_match 'A(1)'
|
224
|
+
it_should_match 'I,J'
|
225
|
+
end
|
226
|
+
|
227
|
+
describe 'let_statement' do
|
228
|
+
let(:rule) {parser.let_statement}
|
229
|
+
it_should_match 'LET I = 1'
|
230
|
+
it_should_match 'LETI=1'
|
231
|
+
it_should_match 'I = 1'
|
232
|
+
it_should_match 'A(10) = 1'
|
233
|
+
it_should_match 'A$(10) = 1'
|
234
|
+
it_should_match 'S$ = "FOO"'
|
235
|
+
end
|
236
|
+
|
237
|
+
describe 'multiply_op' do
|
238
|
+
let(:rule) {parser.multiply_op}
|
239
|
+
it_should_match '*'
|
240
|
+
it_should_match '/'
|
241
|
+
end
|
242
|
+
|
243
|
+
describe 'addition_op' do
|
244
|
+
let(:rule) {parser.addition_op}
|
245
|
+
it_should_match '+'
|
246
|
+
it_should_match '-'
|
247
|
+
end
|
248
|
+
|
249
|
+
describe 'comparison_op' do
|
250
|
+
let(:rule) {parser.comparison_op}
|
251
|
+
it_should_match '='
|
252
|
+
it_should_match '<>'
|
253
|
+
it_should_match '>'
|
254
|
+
it_should_match '>='
|
255
|
+
it_should_match '<'
|
256
|
+
it_should_match '<='
|
257
|
+
end
|
258
|
+
|
259
|
+
describe 'and_op' do
|
260
|
+
let(:rule) {parser.and_op}
|
261
|
+
it_should_match 'AND'
|
262
|
+
end
|
263
|
+
|
264
|
+
describe 'or_op' do
|
265
|
+
let(:rule) {parser.or_op}
|
266
|
+
it_should_match 'OR'
|
267
|
+
end
|
268
|
+
|
269
|
+
describe 'function_call' do
|
270
|
+
let(:rule) {parser.function_call}
|
271
|
+
it_should_match 'FNA(1, 2)'
|
272
|
+
it_should_match 'STR$("abc")'
|
273
|
+
end
|
274
|
+
|
275
|
+
describe 'factor' do
|
276
|
+
let(:rule) {parser.factor}
|
277
|
+
it_should_match '"abc"'
|
278
|
+
it_should_match '1.2'
|
279
|
+
it_should_match '123'
|
280
|
+
it_should_match 'I'
|
281
|
+
it_should_match 'FNA(1)'
|
282
|
+
it_should_match '( 1 + 2 )'
|
283
|
+
it_should_match '(1+2)'
|
284
|
+
end
|
285
|
+
|
286
|
+
describe 'power' do
|
287
|
+
let(:rule) {parser.power}
|
288
|
+
it_should_match '1^2'
|
289
|
+
it_should_match '1^2^3'
|
290
|
+
it_should_match 'I'
|
291
|
+
end
|
292
|
+
|
293
|
+
describe 'negation' do
|
294
|
+
let(:rule) {parser.negation}
|
295
|
+
it_should_match '-I'
|
296
|
+
it_should_match 'I'
|
297
|
+
end
|
298
|
+
|
299
|
+
describe 'term' do
|
300
|
+
let(:rule) {parser.term}
|
301
|
+
it_should_match '1'
|
302
|
+
it_should_match '1 * 2'
|
303
|
+
it_should_match '1 * 2 / 3'
|
304
|
+
it_should_match '1*2/3'
|
305
|
+
end
|
306
|
+
|
307
|
+
describe 'simple_expression' do
|
308
|
+
let(:rule) {parser.simple_expression}
|
309
|
+
it_should_match '1'
|
310
|
+
it_should_match '1 + 2'
|
311
|
+
it_should_match '1 + 2 - 3'
|
312
|
+
it_should_match '1+2-3'
|
313
|
+
end
|
314
|
+
|
315
|
+
describe 'comparison_expression' do
|
316
|
+
let(:rule) {parser.comparison_expression}
|
317
|
+
it_should_match '1'
|
318
|
+
it_should_match '1 > 2'
|
319
|
+
it_should_match '1 + 2 > 2 + 3'
|
320
|
+
it_should_match '1+2>2+3'
|
321
|
+
end
|
322
|
+
|
323
|
+
describe 'not_expression' do
|
324
|
+
let(:rule) {parser.not_expression}
|
325
|
+
it_should_match '1'
|
326
|
+
it_should_match 'NOT 1'
|
327
|
+
it_should_match 'NOT1'
|
328
|
+
end
|
329
|
+
|
330
|
+
describe 'and_expression' do
|
331
|
+
let(:rule) {parser.and_expression}
|
332
|
+
it_should_match '1'
|
333
|
+
it_should_match '1 AND 1'
|
334
|
+
it_should_match '1 AND 1 AND 0'
|
335
|
+
it_should_match '1AND1AND0'
|
336
|
+
end
|
337
|
+
|
338
|
+
describe 'or_expression' do
|
339
|
+
let(:rule) {parser.or_expression}
|
340
|
+
it_should_match '1'
|
341
|
+
it_should_match '1 OR 0'
|
342
|
+
it_should_match '1 OR 0 OR 1'
|
343
|
+
it_should_match '1OR0OR1'
|
344
|
+
end
|
345
|
+
|
346
|
+
describe 'expression' do
|
347
|
+
let(:rule) {parser.expression}
|
348
|
+
it_should_match 'NOT 2 * (3 + 1) + 4 > 5 AND 1 OR 0'
|
349
|
+
it_should_match 'NOT2*(3+1)+4>5AND1OR0'
|
350
|
+
end
|
351
|
+
|
352
|
+
describe 'remark_statement' do
|
353
|
+
let(:rule) {parser.remark_statement}
|
354
|
+
it_should_match 'REM'
|
355
|
+
it_should_match 'REM THIS IS A REMARK'
|
356
|
+
it_should_match 'REMTHISISAREMARK'
|
357
|
+
end
|
358
|
+
|
359
|
+
describe 'print_separator' do
|
360
|
+
let(:rule) {parser.print_separator}
|
361
|
+
it_should_match ';'
|
362
|
+
it_should_match ','
|
363
|
+
end
|
364
|
+
|
365
|
+
describe 'print_arguments' do
|
366
|
+
let(:rule) {parser.print_arguments}
|
367
|
+
it_should_match ''
|
368
|
+
it_should_match ';'
|
369
|
+
it_should_match '1'
|
370
|
+
it_should_match '1 "FOO" , A'
|
371
|
+
end
|
372
|
+
|
373
|
+
describe 'print_statement' do
|
374
|
+
let(:rule) {parser.print_statement}
|
375
|
+
it_should_match 'PRINT'
|
376
|
+
it_should_match 'PRINT ,'
|
377
|
+
it_should_match 'PRINT , "A"'
|
378
|
+
it_should_match 'PRINT "A"'
|
379
|
+
it_should_match 'PRINT "A" ;'
|
380
|
+
it_should_match 'PRINT "A", 1'
|
381
|
+
it_should_match 'PRINT "A", 1 ;'
|
382
|
+
it_should_match 'PRINT1,"A";'
|
383
|
+
it_should_not_match 'PRINT "ok" ELSE'
|
384
|
+
end
|
385
|
+
|
386
|
+
describe 'goto_statement' do
|
387
|
+
let(:rule) {parser.goto_statement}
|
388
|
+
it_should_match 'GOTO 10'
|
389
|
+
it_should_match 'GOTO10'
|
390
|
+
end
|
391
|
+
|
392
|
+
describe 'if_block' do
|
393
|
+
let(:rule) {parser.if_block}
|
394
|
+
it_should_match '123'
|
395
|
+
it_should_match 'GOTO 10'
|
396
|
+
it_should_match 'PRINT:PRINT'
|
397
|
+
end
|
398
|
+
|
399
|
+
describe 'if_statement' do
|
400
|
+
let(:rule) {parser.if_statement}
|
401
|
+
it_should_match 'IF 1 THEN 20'
|
402
|
+
it_should_match 'IF 1 THEN PRINT "FOO"'
|
403
|
+
it_should_match 'IF 1 THEN PRINT "FOO" ELSE PRINT "BAR"'
|
404
|
+
it_should_match 'IF1THENPRINT"FOO"ELSEPRINT"BAR"'
|
405
|
+
it_should_match 'IFK9>T9THENT9=K9+1'
|
406
|
+
end
|
407
|
+
|
408
|
+
describe 'randomize_statement' do
|
409
|
+
let(:rule) {parser.randomize_statement}
|
410
|
+
it_should_match 'RANDOMIZE'
|
411
|
+
end
|
412
|
+
|
413
|
+
describe 'prompt_delimeter' do
|
414
|
+
let(:rule) {parser.prompt_delimeter}
|
415
|
+
it_should_match ','
|
416
|
+
it_should_match ';'
|
417
|
+
end
|
418
|
+
|
419
|
+
describe 'input_statement' do
|
420
|
+
let(:rule) {parser.input_statement}
|
421
|
+
it_should_match 'INPUT I'
|
422
|
+
it_should_match 'INPUT I, J'
|
423
|
+
it_should_match 'INPUT "FOO", A$'
|
424
|
+
it_should_match 'INPUT "FOO" ; A$'
|
425
|
+
it_should_match 'INPUT"FOO";A$'
|
426
|
+
end
|
427
|
+
|
428
|
+
describe 'end_statement' do
|
429
|
+
let(:rule) {parser.end_statement}
|
430
|
+
it_should_match 'END'
|
431
|
+
end
|
432
|
+
|
433
|
+
describe 'dim_statement' do
|
434
|
+
let(:rule) {parser.dim_statement}
|
435
|
+
it_should_match 'DIM A(20)'
|
436
|
+
it_should_match 'DIM A(X, Y)'
|
437
|
+
it_should_match 'DIM A ( 10 ), B ( 10 )'
|
438
|
+
it_should_match 'DIMA(10),B(10)'
|
439
|
+
end
|
440
|
+
|
441
|
+
describe 'for_statement' do
|
442
|
+
let(:rule) {parser.for_statement}
|
443
|
+
it_should_match 'FOR I = 1 TO 10'
|
444
|
+
it_should_match 'FOR I = 1 TO 10 STEP 2'
|
445
|
+
it_should_match 'FORI=1TO10STEP-2'
|
446
|
+
end
|
447
|
+
|
448
|
+
describe 'next_statement' do
|
449
|
+
let(:rule) {parser.next_statement}
|
450
|
+
it_should_match 'NEXT'
|
451
|
+
it_should_match 'NEXT I'
|
452
|
+
it_should_match 'NEXT I, J'
|
453
|
+
it_should_match 'NEXTI,J'
|
454
|
+
end
|
455
|
+
|
456
|
+
describe 'on_goto_statement' do
|
457
|
+
let(:rule) {parser.on_goto_statement}
|
458
|
+
it_should_match 'ON I GOTO 10'
|
459
|
+
it_should_match 'ON I + 1 GOTO 10, 20'
|
460
|
+
it_should_match 'ONI+1GOTO10,20'
|
461
|
+
end
|
462
|
+
|
463
|
+
describe 'data_item' do
|
464
|
+
let(:rule) {parser.data_item}
|
465
|
+
it_should_match 'abc'
|
466
|
+
it_should_match '"abc"'
|
467
|
+
it_should_match '123'
|
468
|
+
it_should_match '123.45'
|
469
|
+
end
|
470
|
+
|
471
|
+
describe 'data_statement' do
|
472
|
+
let(:rule) {parser.data_statement}
|
473
|
+
it_should_match 'DATA 1'
|
474
|
+
it_should_match 'DATA 1.23,"ABC",def'
|
475
|
+
end
|
476
|
+
|
477
|
+
describe 'read_statement' do
|
478
|
+
let(:rule) {parser.read_statement}
|
479
|
+
it_should_match 'READ I'
|
480
|
+
it_should_match 'READ I, A ( 1 )'
|
481
|
+
it_should_match 'READI,A(1)'
|
482
|
+
end
|
483
|
+
|
484
|
+
describe 'gosub_statement' do
|
485
|
+
let(:rule) {parser.gosub_statement}
|
486
|
+
it_should_match 'GOSUB 100'
|
487
|
+
it_should_match 'GOSUB100'
|
488
|
+
end
|
489
|
+
|
490
|
+
describe 'return_statement' do
|
491
|
+
let(:rule) {parser.return_statement}
|
492
|
+
it_should_match 'RETURN'
|
493
|
+
end
|
494
|
+
|
495
|
+
describe 'stop_statement' do
|
496
|
+
let(:rule) {parser.stop_statement}
|
497
|
+
it_should_match 'STOP'
|
498
|
+
end
|
499
|
+
|
500
|
+
describe 'restore_statement' do
|
501
|
+
let(:rule) {parser.restore_statement}
|
502
|
+
it_should_match 'RESTORE'
|
503
|
+
it_should_match 'RESTORE 100'
|
504
|
+
it_should_match 'RESTORE100'
|
505
|
+
end
|
506
|
+
|
507
|
+
describe 'define_function_statement' do
|
508
|
+
let(:rule) {parser.define_function_statement}
|
509
|
+
it_should_match 'DEF FNS$(S) = "FOO"'
|
510
|
+
it_should_match 'DEF FNA(I) = 2 * I'
|
511
|
+
it_should_match 'DEF FNA ( I , J ) = I + J'
|
512
|
+
it_should_match 'DEFFNA(I,J)=I+J'
|
513
|
+
end
|
514
|
+
|
515
|
+
describe 'statement' do
|
516
|
+
let(:rule) {parser.statement}
|
517
|
+
it_should_match 'REM'
|
518
|
+
it_should_match 'PRINT'
|
519
|
+
it_should_match 'I=1'
|
520
|
+
it_should_match 'GOTO 10'
|
521
|
+
it_should_match 'IF 1 THEN 20'
|
522
|
+
it_should_match 'RANDOMIZE'
|
523
|
+
it_should_match 'INPUT I'
|
524
|
+
it_should_match 'END'
|
525
|
+
it_should_match 'DIM A(10)'
|
526
|
+
it_should_match 'FOR I = 1 TO 10'
|
527
|
+
it_should_match 'NEXT'
|
528
|
+
it_should_match 'ON I GOTO 10, 20'
|
529
|
+
it_should_match 'DATA 1'
|
530
|
+
it_should_match 'READ I'
|
531
|
+
it_should_match 'GOSUB 100'
|
532
|
+
it_should_match 'RETURN'
|
533
|
+
it_should_match 'STOP'
|
534
|
+
it_should_match 'RESTORE'
|
535
|
+
it_should_match 'DEF FNA(I) = 2 * I'
|
536
|
+
end
|
537
|
+
|
538
|
+
describe 'statements' do
|
539
|
+
let(:rule) {parser.statements}
|
540
|
+
it_should_match 'REM'
|
541
|
+
it_should_match 'PRINT:PRINT'
|
542
|
+
it_should_match 'PRINT:PRINT:'
|
543
|
+
it_should_match 'PRINT : PRINT :'
|
544
|
+
end
|
545
|
+
|
546
|
+
describe 'line' do
|
547
|
+
let(:rule) {parser.line}
|
548
|
+
it_should_match '10REM'
|
549
|
+
it_should_match '10 REM'
|
550
|
+
it_should_match '20 PRINT:PRINT'
|
551
|
+
end
|
552
|
+
|
553
|
+
describe 'program' do
|
554
|
+
let(:rule) {parser.program}
|
555
|
+
it_should_match ""
|
556
|
+
it_should_match "10 REM\n"
|
557
|
+
it_should_match "10 REM\n20 PRINT\n"
|
558
|
+
end
|
559
|
+
|
560
|
+
end
|
561
|
+
|
562
|
+
end
|