basic101 0.4.0 → 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Changelog.md +7 -0
- data/Gemfile +3 -12
- data/Gemfile.lock +33 -72
- data/Rakefile +0 -8
- data/basic101.gemspec +63 -663
- data/lib/basic101.rb +3 -0
- data/lib/basic101/abs_function.rb +2 -0
- data/lib/basic101/argument_checker.rb +2 -0
- data/lib/basic101/arguments.rb +2 -0
- data/lib/basic101/array_reference.rb +2 -0
- data/lib/basic101/asc_function.rb +2 -0
- data/lib/basic101/basic_array.rb +2 -0
- data/lib/basic101/basic_comparisons.rb +2 -0
- data/lib/basic101/basic_float.rb +2 -0
- data/lib/basic101/basic_integer.rb +2 -0
- data/lib/basic101/basic_math.rb +2 -0
- data/lib/basic101/basic_numeric.rb +2 -0
- data/lib/basic101/basic_object.rb +2 -0
- data/lib/basic101/basic_string.rb +2 -0
- data/lib/basic101/binary_operation.rb +2 -0
- data/lib/basic101/binary_operations.rb +2 -0
- data/lib/basic101/built_in_functions.rb +2 -0
- data/lib/basic101/chr_function.rb +2 -0
- data/lib/basic101/cos_function.rb +2 -0
- data/lib/basic101/data_statement.rb +2 -0
- data/lib/basic101/define_function_statement.rb +2 -0
- data/lib/basic101/dim_statement.rb +2 -0
- data/lib/basic101/else_statement.rb +2 -0
- data/lib/basic101/end_statement.rb +2 -0
- data/lib/basic101/endif_statement.rb +2 -0
- data/lib/basic101/errors.rb +2 -0
- data/lib/basic101/exp_function.rb +2 -0
- data/lib/basic101/for_stack.rb +2 -0
- data/lib/basic101/for_statement.rb +2 -0
- data/lib/basic101/function.rb +2 -0
- data/lib/basic101/function_call.rb +2 -0
- data/lib/basic101/function_identifier.rb +2 -0
- data/lib/basic101/functions.rb +2 -0
- data/lib/basic101/gosub_statement.rb +2 -0
- data/lib/basic101/goto_statement.rb +2 -0
- data/lib/basic101/identifier.rb +2 -0
- data/lib/basic101/identity.rb +2 -0
- data/lib/basic101/if_statement.rb +3 -0
- data/lib/basic101/input.rb +2 -0
- data/lib/basic101/input_reader.rb +3 -1
- data/lib/basic101/input_statement.rb +2 -0
- data/lib/basic101/int_function.rb +2 -0
- data/lib/basic101/left_function.rb +2 -0
- data/lib/basic101/len_function.rb +2 -0
- data/lib/basic101/let_statement.rb +2 -0
- data/lib/basic101/line.rb +2 -0
- data/lib/basic101/log_function.rb +2 -0
- data/lib/basic101/main.rb +2 -0
- data/lib/basic101/mid_function.rb +2 -0
- data/lib/basic101/negate_operation.rb +2 -0
- data/lib/basic101/next_statement.rb +2 -0
- data/lib/basic101/not_operation.rb +2 -0
- data/lib/basic101/null_prompt_delimeter.rb +2 -0
- data/lib/basic101/null_transcript.rb +2 -0
- data/lib/basic101/numeric_identifier.rb +2 -0
- data/lib/basic101/on_goto_statement.rb +2 -0
- data/lib/basic101/output.rb +2 -0
- data/lib/basic101/parser.rb +2 -0
- data/lib/basic101/parser/data_statement.rb +2 -0
- data/lib/basic101/parser/define_function_statement.rb +2 -0
- data/lib/basic101/parser/dim_statement.rb +2 -0
- data/lib/basic101/parser/end_statement.rb +2 -0
- data/lib/basic101/parser/expression.rb +2 -0
- data/lib/basic101/parser/for_statement.rb +2 -0
- data/lib/basic101/parser/function_call.rb +2 -0
- data/lib/basic101/parser/gosub_statement.rb +2 -0
- data/lib/basic101/parser/goto_statement.rb +2 -0
- data/lib/basic101/parser/identifier.rb +2 -0
- data/lib/basic101/parser/if_statement.rb +2 -0
- data/lib/basic101/parser/input_statement.rb +2 -0
- data/lib/basic101/parser/let_statement.rb +2 -0
- data/lib/basic101/parser/next_statement.rb +2 -0
- data/lib/basic101/parser/numeric.rb +2 -0
- data/lib/basic101/parser/on_goto_statement.rb +2 -0
- data/lib/basic101/parser/print_statement.rb +2 -0
- data/lib/basic101/parser/program.rb +2 -0
- data/lib/basic101/parser/randomize_statement.rb +2 -0
- data/lib/basic101/parser/read_statement.rb +2 -0
- data/lib/basic101/parser/reference.rb +2 -0
- data/lib/basic101/parser/remark_statement.rb +2 -0
- data/lib/basic101/parser/restore_statement.rb +2 -0
- data/lib/basic101/parser/return_statement.rb +2 -0
- data/lib/basic101/parser/space.rb +2 -0
- data/lib/basic101/parser/statements.rb +2 -0
- data/lib/basic101/parser/stop_statement.rb +2 -0
- data/lib/basic101/parser/string.rb +2 -0
- data/lib/basic101/power_operation.rb +2 -0
- data/lib/basic101/print_comma.rb +2 -0
- data/lib/basic101/print_semicolon.rb +2 -0
- data/lib/basic101/print_statement.rb +2 -0
- data/lib/basic101/program.rb +2 -0
- data/lib/basic101/program_counter.rb +2 -0
- data/lib/basic101/prompt_delimeter.rb +2 -0
- data/lib/basic101/randomize_statement.rb +2 -0
- data/lib/basic101/read_statement.rb +2 -0
- data/lib/basic101/reference.rb +2 -0
- data/lib/basic101/release.rb +13 -0
- data/lib/basic101/remark_statement.rb +2 -0
- data/lib/basic101/restore_statement.rb +2 -0
- data/lib/basic101/return_statement.rb +2 -0
- data/lib/basic101/right_function.rb +2 -0
- data/lib/basic101/rnd_function.rb +2 -0
- data/lib/basic101/runtime.rb +2 -0
- data/lib/basic101/scalar_reference.rb +2 -0
- data/lib/basic101/sgn_function.rb +2 -0
- data/lib/basic101/sin_function.rb +2 -0
- data/lib/basic101/sqr_function.rb +2 -0
- data/lib/basic101/statement.rb +2 -0
- data/lib/basic101/stop_statement.rb +2 -0
- data/lib/basic101/str_function.rb +2 -0
- data/lib/basic101/string_identifier.rb +2 -0
- data/lib/basic101/tab.rb +2 -0
- data/lib/basic101/tab_function.rb +2 -0
- data/lib/basic101/tan_function.rb +2 -0
- data/lib/basic101/transcript.rb +2 -0
- data/lib/basic101/transform.rb +2 -0
- data/lib/basic101/user_defined_function.rb +2 -0
- data/lib/basic101/val_function.rb +2 -0
- metadata +27 -445
- data/.rspec +0 -2
- data/.simplecov +0 -1
- data/.travis.yml +0 -5
- data/.yardopts +0 -7
- data/rake_tasks/default.rake +0 -1
- data/rake_tasks/integration.rake +0 -8
- data/rake_tasks/jeweler.rake +0 -28
- data/rake_tasks/spec.rake +0 -8
- data/rake_tasks/test.rake +0 -2
- data/rake_tasks/yard.rake +0 -3
- data/test/integration/arguments.rb +0 -25
- data/test/integration/errors.rb +0 -7
- data/test/integration/integration_test.rb +0 -28
- data/test/integration/main.rb +0 -49
- data/test/integration/output_file.rb +0 -40
- data/test/integration/test.rb +0 -135
- data/test/integration/tests/basic_computer_games/23-match.input +0 -1
- data/test/integration/tests/basic_computer_games/23-match.output +0 -29
- data/test/integration/tests/basic_computer_games/3dplot.input +0 -0
- data/test/integration/tests/basic_computer_games/3dplot.output +0 -47
- data/test/integration/tests/basic_computer_games/aceyducy.input +0 -8
- data/test/integration/tests/basic_computer_games/aceyducy.output +0 -78
- data/test/integration/tests/basic_computer_games/amazing.input +0 -1
- data/test/integration/tests/basic_computer_games/amazing.output +0 -32
- data/test/integration/tests/basic_computer_games/animal.input +0 -17
- data/test/integration/tests/basic_computer_games/animal.output +0 -38
- data/test/integration/tests/basic_computer_games/awari.input +0 -11
- data/test/integration/tests/basic_computer_games/awari.output +0 -117
- data/test/integration/tests/basic_computer_games/bagels.input +0 -12
- data/test/integration/tests/basic_computer_games/bagels.output +0 -42
- data/test/integration/tests/basic_computer_games/banner.input +0 -6
- data/test/integration/tests/basic_computer_games/banner.output +0 -135
- data/test/integration/tests/basic_computer_games/basketbl.input +0 -46
- data/test/integration/tests/basic_computer_games/basketbl.output +0 -509
- data/test/integration/tests/basic_computer_games/batnum.input +0 -14
- data/test/integration/tests/basic_computer_games/batnum.output +0 -67
- data/test/integration/tests/basic_computer_games/battle.input +0 -21
- data/test/integration/tests/basic_computer_games/battle.output +0 -118
- data/test/integration/tests/basic_computer_games/blackjck.input +0 -26
- data/test/integration/tests/basic_computer_games/blackjck.output +0 -144
- data/test/integration/tests/basic_computer_games/bombard.input +0 -20
- data/test/integration/tests/basic_computer_games/bombard.output +0 -175
- data/test/integration/tests/basic_computer_games/bounce.input +0 -0
- data/test/integration/tests/basic_computer_games/bounce.output +0 -15
- data/test/integration/tests/basic_computer_games/bowling.input +0 -23
- data/test/integration/tests/basic_computer_games/bowling.output +0 -229
- data/test/integration/tests/basic_computer_games/boxing.input +0 -8
- data/test/integration/tests/basic_computer_games/boxing.output +0 -47
- data/test/integration/tests/basic_computer_games/bug.input +0 -17
- data/test/integration/tests/basic_computer_games/bug.output +0 -847
- data/test/integration/tests/basic_computer_games/bullfght.input +0 -4
- data/test/integration/tests/basic_computer_games/bullfght.output +0 -60
- data/test/integration/tests/basic_computer_games/bullseye.input +0 -10
- data/test/integration/tests/basic_computer_games/bullseye.output +0 -79
- data/test/integration/tests/basic_computer_games/bunny.input +0 -0
- data/test/integration/tests/basic_computer_games/bunny.output +0 -67
- data/test/integration/tests/basic_computer_games/buzzword.input +0 -4
- data/test/integration/tests/basic_computer_games/buzzword.output +0 -25
- data/test/integration/tests/basic_computer_games/calendar.input +0 -0
- data/test/integration/tests/basic_computer_games/calendar.output +0 -213
- data/test/integration/tests/basic_computer_games/change.input +0 -4
- data/test/integration/tests/basic_computer_games/change.output +0 -28
- data/test/integration/tests/basic_computer_games/checkers.input +0 -74
- data/test/integration/tests/basic_computer_games/checkers.output +0 -673
- data/test/integration/tests/basic_computer_games/chemist.input +0 -11
- data/test/integration/tests/basic_computer_games/chemist.output +0 -54
- data/test/integration/tests/basic_computer_games/chief.input +0 -5
- data/test/integration/tests/basic_computer_games/chief.output +0 -19
- data/test/integration/tests/basic_computer_games/chomp.input +0 -15
- data/test/integration/tests/basic_computer_games/chomp.output +0 -159
- data/test/integration/tests/basic_computer_games/combat.input +0 -7
- data/test/integration/tests/basic_computer_games/combat.output +0 -33
- data/test/integration/tests/basic_computer_games/craps.input +0 -9
- data/test/integration/tests/basic_computer_games/craps.output +0 -51
- data/test/integration/tests/basic_computer_games/cube.input +0 -25
- data/test/integration/tests/basic_computer_games/cube.output +0 -72
- data/test/integration/tests/basic_computer_games/depthchg.input +0 -16
- data/test/integration/tests/basic_computer_games/depthchg.output +0 -83
- data/test/integration/tests/basic_computer_games/diamond.input +0 -1
- data/test/integration/tests/basic_computer_games/diamond.output +0 -65
- data/test/integration/tests/basic_computer_games/dice.input +0 -4
- data/test/integration/tests/basic_computer_games/dice.output +0 -46
- data/test/integration/tests/basic_computer_games/digits.input +0 -5
- data/test/integration/tests/basic_computer_games/digits.output +0 -70
- data/test/integration/tests/basic_computer_games/evenwin1.input +0 -13
- data/test/integration/tests/basic_computer_games/evenwin1.output +0 -116
- data/test/integration/tests/basic_computer_games/evenwin2.input +0 -14
- data/test/integration/tests/basic_computer_games/evenwin2.output +0 -56
- data/test/integration/tests/basic_computer_games/flipflop.input +0 -8
- data/test/integration/tests/basic_computer_games/flipflop.output +0 -45
- data/test/integration/tests/basic_computer_games/footbal1.input +0 -13
- data/test/integration/tests/basic_computer_games/footbal1.output +0 -315
- data/test/integration/tests/basic_computer_games/footbal2.input +0 -23
- data/test/integration/tests/basic_computer_games/footbal2.output +0 -318
- data/test/integration/tests/basic_computer_games/furtradr.input +0 -20
- data/test/integration/tests/basic_computer_games/furtradr.output +0 -133
- data/test/integration/tests/basic_computer_games/golf.input +0 -11
- data/test/integration/tests/basic_computer_games/golf.output +0 -69
- data/test/integration/tests/basic_computer_games/gomoko.input +0 -6
- data/test/integration/tests/basic_computer_games/gomoko.output +0 -66
- data/test/integration/tests/basic_computer_games/guess.input +0 -8
- data/test/integration/tests/basic_computer_games/guess.output +0 -37
- data/test/integration/tests/basic_computer_games/gunner.input +0 -18
- data/test/integration/tests/basic_computer_games/gunner.output +0 -91
- data/test/integration/tests/basic_computer_games/hamurabi.input +0 -7
- data/test/integration/tests/basic_computer_games/hamurabi.output +0 -51
- data/test/integration/tests/basic_computer_games/hangman.input +0 -69
- data/test/integration/tests/basic_computer_games/hangman.output +0 -889
- data/test/integration/tests/basic_computer_games/hello.input +0 -7
- data/test/integration/tests/basic_computer_games/hello.output +0 -46
- data/test/integration/tests/basic_computer_games/hexapawn.input +0 -38
- data/test/integration/tests/basic_computer_games/hexapawn.output +0 -521
- data/test/integration/tests/basic_computer_games/hi-q.input +0 -14
- data/test/integration/tests/basic_computer_games/hi-q.output +0 -115
- data/test/integration/tests/basic_computer_games/hilo.input +0 -20
- data/test/integration/tests/basic_computer_games/hilo.output +0 -76
- data/test/integration/tests/basic_computer_games/hockey.input +0 -59
- data/test/integration/tests/basic_computer_games/hockey.output +0 -243
- data/test/integration/tests/basic_computer_games/horsrace.input +0 -11
- data/test/integration/tests/basic_computer_games/horsrace.output +0 -517
- data/test/integration/tests/basic_computer_games/hurkle.input +0 -16
- data/test/integration/tests/basic_computer_games/hurkle.output +0 -81
- data/test/integration/tests/basic_computer_games/kinema.input +0 -9
- data/test/integration/tests/basic_computer_games/kinema.output +0 -64
- data/test/integration/tests/basic_computer_games/king.input +0 -7
- data/test/integration/tests/basic_computer_games/king.output +0 -57
- data/test/integration/tests/basic_computer_games/lem.input +0 -4
- data/test/integration/tests/basic_computer_games/lem.output +0 -68
- data/test/integration/tests/basic_computer_games/letter.input +0 -24
- data/test/integration/tests/basic_computer_games/letter.output +0 -123
- data/test/integration/tests/basic_computer_games/life.input +0 -4
- data/test/integration/tests/basic_computer_games/life.options +0 -1
- data/test/integration/tests/basic_computer_games/life.output +0 -200
- data/test/integration/tests/basic_computer_games/life2.input +0 -17
- data/test/integration/tests/basic_computer_games/life2.output +0 -113
- data/test/integration/tests/basic_computer_games/litquiz.input +0 -4
- data/test/integration/tests/basic_computer_games/litquiz.output +0 -36
- data/test/integration/tests/basic_computer_games/love.input +0 -1
- data/test/integration/tests/basic_computer_games/love.output +0 -67
- data/test/integration/tests/basic_computer_games/lunar.input +0 -87
- data/test/integration/tests/basic_computer_games/lunar.output +0 -195
- data/test/integration/tests/basic_computer_games/mastrmnd.input +0 -18
- data/test/integration/tests/basic_computer_games/mastrmnd.output +0 -67
- data/test/integration/tests/basic_computer_games/mathdice.input +0 -4
- data/test/integration/tests/basic_computer_games/mathdice.output +0 -86
- data/test/integration/tests/basic_computer_games/mugwump.input +0 -16
- data/test/integration/tests/basic_computer_games/mugwump.output +0 -139
- data/test/integration/tests/basic_computer_games/name.input +0 -2
- data/test/integration/tests/basic_computer_games/name.output +0 -22
- data/test/integration/tests/basic_computer_games/nicoma.input +0 -8
- data/test/integration/tests/basic_computer_games/nicoma.output +0 -36
- data/test/integration/tests/basic_computer_games/nim.input +0 -8
- data/test/integration/tests/basic_computer_games/nim.output +0 -30
- data/test/integration/tests/basic_computer_games/number.input +0 -19
- data/test/integration/tests/basic_computer_games/number.output +0 -73
- data/test/integration/tests/basic_computer_games/onecheck.input +0 -6
- data/test/integration/tests/basic_computer_games/onecheck.output +0 -77
- data/test/integration/tests/basic_computer_games/orbit.input +0 -10
- data/test/integration/tests/basic_computer_games/orbit.output +0 -113
- data/test/integration/tests/basic_computer_games/pizza.input +0 -10
- data/test/integration/tests/basic_computer_games/pizza.output +0 -93
- data/test/integration/tests/basic_computer_games/poetry.input +0 -0
- data/test/integration/tests/basic_computer_games/poetry.options +0 -1
- data/test/integration/tests/basic_computer_games/poetry.output +0 -50
- data/test/integration/tests/basic_computer_games/poker.input +0 -34
- data/test/integration/tests/basic_computer_games/poker.output +0 -197
- data/test/integration/tests/basic_computer_games/queen.input +0 -10
- data/test/integration/tests/basic_computer_games/queen.output +0 -133
- data/test/integration/tests/basic_computer_games/reverse.input +0 -12
- data/test/integration/tests/basic_computer_games/reverse.output +0 -79
- data/test/integration/tests/basic_computer_games/rocket.input +0 -42
- data/test/integration/tests/basic_computer_games/rocket.output +0 -149
- data/test/integration/tests/basic_computer_games/rocksp.input +0 -9
- data/test/integration/tests/basic_computer_games/rocksp.output +0 -69
- data/test/integration/tests/basic_computer_games/roulette.input +0 -9
- data/test/integration/tests/basic_computer_games/roulette.output +0 -98
- data/test/integration/tests/basic_computer_games/rusrou.input +0 -9
- data/test/integration/tests/basic_computer_games/rusrou.output +0 -50
- data/test/integration/tests/basic_computer_games/salvo.input +0 -21
- data/test/integration/tests/basic_computer_games/salvo.output +0 -49
- data/test/integration/tests/basic_computer_games/sinewave.input +0 -0
- data/test/integration/tests/basic_computer_games/sinewave.output +0 -168
- data/test/integration/tests/basic_computer_games/slalom.input +0 -20
- data/test/integration/tests/basic_computer_games/slalom.output +0 -122
- data/test/integration/tests/basic_computer_games/slots.input +0 -2
- data/test/integration/tests/basic_computer_games/slots.output +0 -20
- data/test/integration/tests/basic_computer_games/splat.input +0 -9
- data/test/integration/tests/basic_computer_games/splat.output +0 -61
- data/test/integration/tests/basic_computer_games/stars.input +0 -15
- data/test/integration/tests/basic_computer_games/stars.output +0 -70
- data/test/integration/tests/basic_computer_games/stock.input +0 -30
- data/test/integration/tests/basic_computer_games/stock.output +0 -156
- data/test/integration/tests/basic_computer_games/superstartrek.input +0 -21
- data/test/integration/tests/basic_computer_games/superstartrek.output +0 -151
- data/test/integration/tests/basic_computer_games/superstartrekins.input +0 -1
- data/test/integration/tests/basic_computer_games/superstartrekins.output +0 -134
- data/test/integration/tests/basic_computer_games/synonym.input +0 -13
- data/test/integration/tests/basic_computer_games/synonym.output +0 -57
- data/test/integration/tests/basic_computer_games/target.input +0 -2
- data/test/integration/tests/basic_computer_games/target.output +0 -39
- data/test/integration/tests/basic_computer_games/tictac1.input +0 -10
- data/test/integration/tests/basic_computer_games/tictac1.output +0 -49
- data/test/integration/tests/basic_computer_games/tictac2.input +0 -6
- data/test/integration/tests/basic_computer_games/tictac2.output +0 -104
- data/test/integration/tests/basic_computer_games/towers.input +0 -9
- data/test/integration/tests/basic_computer_games/towers.output +0 -70
- data/test/integration/tests/basic_computer_games/train.input +0 -4
- data/test/integration/tests/basic_computer_games/train.output +0 -23
- data/test/integration/tests/basic_computer_games/trap.input +0 -7
- data/test/integration/tests/basic_computer_games/trap.output +0 -40
- data/test/integration/tests/basic_computer_games/war.input +0 -11
- data/test/integration/tests/basic_computer_games/war.output +0 -54
- data/test/integration/tests/basic_computer_games/weekday.input +0 -2
- data/test/integration/tests/basic_computer_games/weekday.output +0 -28
- data/test/integration/tests/basic_computer_games/word.input +0 -6
- data/test/integration/tests/basic_computer_games/word.output +0 -0
- data/test/integration/tests/fast/abs.bas +0 -5
- data/test/integration/tests/fast/abs.input +0 -0
- data/test/integration/tests/fast/abs.output +0 -5
- data/test/integration/tests/fast/add.bas +0 -5
- data/test/integration/tests/fast/add.input +0 -0
- data/test/integration/tests/fast/add.output +0 -5
- data/test/integration/tests/fast/and.bas +0 -5
- data/test/integration/tests/fast/and.input +0 -0
- data/test/integration/tests/fast/and.output +0 -5
- data/test/integration/tests/fast/array.bas +0 -11
- data/test/integration/tests/fast/array.input +0 -0
- data/test/integration/tests/fast/array.output +0 -6
- data/test/integration/tests/fast/asc.bas +0 -1
- data/test/integration/tests/fast/asc.input +0 -0
- data/test/integration/tests/fast/asc.output +0 -1
- data/test/integration/tests/fast/chr.bas +0 -1
- data/test/integration/tests/fast/chr.input +0 -0
- data/test/integration/tests/fast/chr.output +0 -1
- data/test/integration/tests/fast/cos.bas +0 -1
- data/test/integration/tests/fast/cos.input +0 -0
- data/test/integration/tests/fast/cos.output +0 -1
- data/test/integration/tests/fast/def_fn.bas +0 -9
- data/test/integration/tests/fast/def_fn.input +0 -0
- data/test/integration/tests/fast/def_fn.output +0 -5
- data/test/integration/tests/fast/divide.bas +0 -5
- data/test/integration/tests/fast/divide.input +0 -0
- data/test/integration/tests/fast/divide.output +0 -5
- data/test/integration/tests/fast/end.bas +0 -3
- data/test/integration/tests/fast/end.input +0 -0
- data/test/integration/tests/fast/end.output +0 -1
- data/test/integration/tests/fast/eq.bas +0 -3
- data/test/integration/tests/fast/eq.input +0 -0
- data/test/integration/tests/fast/eq.output +0 -3
- data/test/integration/tests/fast/exp.bas +0 -2
- data/test/integration/tests/fast/exp.input +0 -0
- data/test/integration/tests/fast/exp.output +0 -2
- data/test/integration/tests/fast/float.bas +0 -3
- data/test/integration/tests/fast/float.input +0 -0
- data/test/integration/tests/fast/float.output +0 -2
- data/test/integration/tests/fast/for_next.bas +0 -61
- data/test/integration/tests/fast/for_next.input +0 -0
- data/test/integration/tests/fast/for_next.output +0 -46
- data/test/integration/tests/fast/ge.bas +0 -3
- data/test/integration/tests/fast/ge.input +0 -0
- data/test/integration/tests/fast/ge.output +0 -3
- data/test/integration/tests/fast/gosub_return.bas +0 -10
- data/test/integration/tests/fast/gosub_return.input +0 -0
- data/test/integration/tests/fast/gosub_return.output +0 -4
- data/test/integration/tests/fast/goto.bas +0 -3
- data/test/integration/tests/fast/goto.input +0 -0
- data/test/integration/tests/fast/goto.output +0 -1
- data/test/integration/tests/fast/gt.bas +0 -3
- data/test/integration/tests/fast/gt.input +0 -0
- data/test/integration/tests/fast/gt.output +0 -3
- data/test/integration/tests/fast/if.bas +0 -25
- data/test/integration/tests/fast/if.input +0 -0
- data/test/integration/tests/fast/if.output +0 -8
- data/test/integration/tests/fast/input.bas +0 -24
- data/test/integration/tests/fast/input.input +0 -10
- data/test/integration/tests/fast/input.output +0 -28
- data/test/integration/tests/fast/int.bas +0 -5
- data/test/integration/tests/fast/int.input +0 -0
- data/test/integration/tests/fast/int.output +0 -5
- data/test/integration/tests/fast/integer_plus_string.bas +0 -1
- data/test/integration/tests/fast/integer_plus_string.input +0 -0
- data/test/integration/tests/fast/integer_plus_string.output +0 -1
- data/test/integration/tests/fast/invalid_argument.bas +0 -1
- data/test/integration/tests/fast/invalid_argument.input +0 -0
- data/test/integration/tests/fast/invalid_argument.output +0 -1
- data/test/integration/tests/fast/le.bas +0 -3
- data/test/integration/tests/fast/le.input +0 -0
- data/test/integration/tests/fast/le.output +0 -3
- data/test/integration/tests/fast/left.bas +0 -1
- data/test/integration/tests/fast/left.input +0 -0
- data/test/integration/tests/fast/left.output +0 -1
- data/test/integration/tests/fast/len.bas +0 -2
- data/test/integration/tests/fast/len.input +0 -0
- data/test/integration/tests/fast/len.output +0 -2
- data/test/integration/tests/fast/let.bas +0 -6
- data/test/integration/tests/fast/let.input +0 -0
- data/test/integration/tests/fast/let.output +0 -4
- data/test/integration/tests/fast/log.bas +0 -1
- data/test/integration/tests/fast/log.input +0 -0
- data/test/integration/tests/fast/log.output +0 -1
- data/test/integration/tests/fast/lt.bas +0 -3
- data/test/integration/tests/fast/lt.input +0 -0
- data/test/integration/tests/fast/lt.output +0 -3
- data/test/integration/tests/fast/math.output +0 -0
- data/test/integration/tests/fast/mid.bas +0 -2
- data/test/integration/tests/fast/mid.input +0 -0
- data/test/integration/tests/fast/mid.output +0 -2
- data/test/integration/tests/fast/multiply.bas +0 -5
- data/test/integration/tests/fast/multiply.input +0 -0
- data/test/integration/tests/fast/multiply.output +0 -5
- data/test/integration/tests/fast/ne.bas +0 -3
- data/test/integration/tests/fast/ne.input +0 -0
- data/test/integration/tests/fast/ne.output +0 -3
- data/test/integration/tests/fast/negate.bas +0 -4
- data/test/integration/tests/fast/negate.input +0 -0
- data/test/integration/tests/fast/negate.output +0 -3
- data/test/integration/tests/fast/not.bas +0 -4
- data/test/integration/tests/fast/not.input +0 -0
- data/test/integration/tests/fast/not.output +0 -4
- data/test/integration/tests/fast/on_goto.bas +0 -6
- data/test/integration/tests/fast/on_goto.input +0 -0
- data/test/integration/tests/fast/on_goto.output +0 -2
- data/test/integration/tests/fast/or.bas +0 -5
- data/test/integration/tests/fast/or.input +0 -0
- data/test/integration/tests/fast/or.output +0 -5
- data/test/integration/tests/fast/parentheses.bas +0 -1
- data/test/integration/tests/fast/parentheses.input +0 -0
- data/test/integration/tests/fast/parentheses.output +0 -1
- data/test/integration/tests/fast/power.bas +0 -4
- data/test/integration/tests/fast/power.input +0 -0
- data/test/integration/tests/fast/power.output +0 -4
- data/test/integration/tests/fast/print.bas +0 -6
- data/test/integration/tests/fast/print.input +0 -0
- data/test/integration/tests/fast/print.output +0 -4
- data/test/integration/tests/fast/read_data.bas +0 -15
- data/test/integration/tests/fast/read_data.input +0 -0
- data/test/integration/tests/fast/read_data.output +0 -4
- data/test/integration/tests/fast/rem.bas +0 -1
- 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 +0 -1
- data/test/integration/tests/fast/right.input +0 -0
- data/test/integration/tests/fast/right.output +0 -1
- data/test/integration/tests/fast/rnd.bas +0 -5
- data/test/integration/tests/fast/rnd.input +0 -0
- data/test/integration/tests/fast/rnd.output +0 -5
- data/test/integration/tests/fast/sgn.bas +0 -5
- data/test/integration/tests/fast/sgn.input +0 -0
- data/test/integration/tests/fast/sgn.output +0 -5
- data/test/integration/tests/fast/sin.bas +0 -1
- data/test/integration/tests/fast/sin.input +0 -0
- data/test/integration/tests/fast/sin.output +0 -1
- data/test/integration/tests/fast/sqr.bas +0 -2
- data/test/integration/tests/fast/sqr.input +0 -0
- data/test/integration/tests/fast/sqr.output +0 -2
- data/test/integration/tests/fast/stop.bas +0 -3
- data/test/integration/tests/fast/stop.input +0 -0
- data/test/integration/tests/fast/stop.output +0 -2
- data/test/integration/tests/fast/str.bas +0 -3
- data/test/integration/tests/fast/str.input +0 -0
- data/test/integration/tests/fast/str.output +0 -3
- data/test/integration/tests/fast/string_addition.bas +0 -1
- data/test/integration/tests/fast/string_addition.input +0 -0
- data/test/integration/tests/fast/string_addition.output +0 -1
- data/test/integration/tests/fast/string_comparisons.bas +0 -7
- data/test/integration/tests/fast/string_comparisons.input +0 -0
- data/test/integration/tests/fast/string_comparisons.output +0 -4
- data/test/integration/tests/fast/string_plus_integer.bas +0 -1
- data/test/integration/tests/fast/string_plus_integer.input +0 -0
- data/test/integration/tests/fast/string_plus_integer.output +0 -1
- data/test/integration/tests/fast/subtract.bas +0 -5
- data/test/integration/tests/fast/subtract.input +0 -0
- data/test/integration/tests/fast/subtract.output +0 -5
- data/test/integration/tests/fast/tab.bas +0 -4
- data/test/integration/tests/fast/tab.input +0 -0
- data/test/integration/tests/fast/tab.output +0 -3
- data/test/integration/tests/fast/tan.bas +0 -1
- data/test/integration/tests/fast/tan.input +0 -0
- data/test/integration/tests/fast/tan.output +0 -1
- data/test/integration/tests/fast/val.bas +0 -3
- data/test/integration/tests/fast/val.input +0 -0
- data/test/integration/tests/fast/val.output +0 -3
- data/test/spec/argument_checker_spec.rb +0 -128
- data/test/spec/basic_array_spec.rb +0 -100
- data/test/spec/basic_float_spec.rb +0 -168
- data/test/spec/basic_integer_spec.rb +0 -270
- data/test/spec/basic_numeric_spec.rb +0 -16
- data/test/spec/basic_object_spec.rb +0 -22
- data/test/spec/basic_string_spec.rb +0 -259
- data/test/spec/for_stack_spec.rb +0 -70
- data/test/spec/input_reader_spec.rb +0 -143
- data/test/spec/input_spec.rb +0 -102
- data/test/spec/line_spec.rb +0 -18
- data/test/spec/output_spec.rb +0 -153
- data/test/spec/parser_spec.rb +0 -562
- data/test/spec/program_spec.rb +0 -45
- data/test/spec/spec_helper.rb +0 -16
- data/test/spec/support/basic_numeric_helpers.rb +0 -327
- data/test/spec/support/basic_object_helpers.rb +0 -22
- data/test/spec/transcript_spec.rb +0 -37
- data/test/spec/transform_spec.rb +0 -513
data/test/spec/transform_spec.rb
DELETED
@@ -1,513 +0,0 @@
|
|
1
|
-
require_relative 'spec_helper'
|
2
|
-
|
3
|
-
module Basic101
|
4
|
-
|
5
|
-
describe Transform do
|
6
|
-
|
7
|
-
let(:parser) {Parser.new}
|
8
|
-
|
9
|
-
def self.parse(rule_name, s)
|
10
|
-
parser = Parser.new.send(rule_name)
|
11
|
-
parser.parse(s)
|
12
|
-
end
|
13
|
-
|
14
|
-
def self.transform(rule_name, s)
|
15
|
-
parse_tree = parse(rule_name, s)
|
16
|
-
Transform.new.apply(parse_tree)
|
17
|
-
end
|
18
|
-
|
19
|
-
def transform(s, rule_name = rule)
|
20
|
-
self.class.transform(rule_name, s)
|
21
|
-
end
|
22
|
-
|
23
|
-
def self.it_should_transform(s, expected_result)
|
24
|
-
it "should transform #{s.inspect}" do
|
25
|
-
expect(transform(s)).to eq expected_result
|
26
|
-
end
|
27
|
-
end
|
28
|
-
|
29
|
-
describe 'integer' do
|
30
|
-
let(:rule) {:integer}
|
31
|
-
it_should_transform('123', BasicInteger.new(123))
|
32
|
-
it_should_transform('-123', BasicInteger.new(-123))
|
33
|
-
it_should_transform('+123', BasicInteger.new(123))
|
34
|
-
end
|
35
|
-
|
36
|
-
describe 'float' do
|
37
|
-
let(:rule) {:float}
|
38
|
-
it_should_transform('.2', BasicFloat.new(0.2))
|
39
|
-
it_should_transform('1.2', BasicFloat.new(1.2))
|
40
|
-
it_should_transform('-1.2', BasicFloat.new(-1.2))
|
41
|
-
it_should_transform('+1.2', BasicFloat.new(1.2))
|
42
|
-
it_should_transform('1E-10', BasicFloat.new(1E-10))
|
43
|
-
end
|
44
|
-
|
45
|
-
describe 'quoted_string' do
|
46
|
-
let(:rule) {:unquoted_string}
|
47
|
-
it_should_transform('abc', BasicString.new('abc'))
|
48
|
-
end
|
49
|
-
|
50
|
-
describe 'quoted_string' do
|
51
|
-
let(:rule) {:quoted_string}
|
52
|
-
it_should_transform('"abc"', BasicString.new('abc'))
|
53
|
-
it_should_transform('""', BasicString.new(''))
|
54
|
-
end
|
55
|
-
|
56
|
-
describe 'data_item' do
|
57
|
-
let(:rule) {:data_item}
|
58
|
-
it_should_transform('abc', BasicString.new('abc'))
|
59
|
-
it_should_transform('"abc"', BasicString.new('abc'))
|
60
|
-
it_should_transform('123', BasicInteger.new(123))
|
61
|
-
it_should_transform('123.45', BasicFloat.new(123.45))
|
62
|
-
end
|
63
|
-
|
64
|
-
describe 'data_statement' do
|
65
|
-
let(:rule) {:data_statement}
|
66
|
-
it_should_transform('DATA 1',
|
67
|
-
DataStatement.new([
|
68
|
-
BasicInteger.new(1),
|
69
|
-
]))
|
70
|
-
it_should_transform('DATA 1, 2',
|
71
|
-
DataStatement.new([
|
72
|
-
BasicInteger.new(1),
|
73
|
-
BasicInteger.new(2),
|
74
|
-
]))
|
75
|
-
end
|
76
|
-
|
77
|
-
describe 'read_statement' do
|
78
|
-
let(:rule) {:read_statement}
|
79
|
-
it_should_transform('READ I',
|
80
|
-
ReadStatement.new([
|
81
|
-
ScalarReference.new(NumericIdentifier.new('I')),
|
82
|
-
]))
|
83
|
-
it_should_transform('READ I, J',
|
84
|
-
ReadStatement.new([
|
85
|
-
ScalarReference.new(NumericIdentifier.new('I')),
|
86
|
-
ScalarReference.new(NumericIdentifier.new('J')),
|
87
|
-
]))
|
88
|
-
end
|
89
|
-
|
90
|
-
describe 'gosub_statement' do
|
91
|
-
let(:rule) {:gosub_statement}
|
92
|
-
it_should_transform('GOSUB 100',
|
93
|
-
GosubStatement.new(100))
|
94
|
-
end
|
95
|
-
|
96
|
-
describe 'return_statement' do
|
97
|
-
let(:rule) {:return_statement}
|
98
|
-
it_should_transform('RETURN', ReturnStatement.new)
|
99
|
-
end
|
100
|
-
|
101
|
-
describe 'built_in_function_identifier' do
|
102
|
-
let(:rule) {:built_in_function_identifier}
|
103
|
-
it_should_transform('LEN', FunctionIdentifier.new('LEN'))
|
104
|
-
it_should_transform('STR$', FunctionIdentifier.new('STR$'))
|
105
|
-
end
|
106
|
-
|
107
|
-
describe 'user_defined_function_identifier' do
|
108
|
-
let(:rule) {:user_defined_function_identifier}
|
109
|
-
it_should_transform('FNA', FunctionIdentifier.new('FNA'))
|
110
|
-
it_should_transform('FNS$', FunctionIdentifier.new('FNS$'))
|
111
|
-
end
|
112
|
-
|
113
|
-
describe 'numeric_identifier' do
|
114
|
-
let(:rule) {:numeric_identifier}
|
115
|
-
it_should_transform('I', NumericIdentifier.new('I'))
|
116
|
-
end
|
117
|
-
|
118
|
-
describe 'string_identifier' do
|
119
|
-
let(:rule) {:string_identifier}
|
120
|
-
it_should_transform('A$', StringIdentifier.new('A$'))
|
121
|
-
end
|
122
|
-
|
123
|
-
describe 'scalar_reference' do
|
124
|
-
let(:rule) {:scalar_reference}
|
125
|
-
it_should_transform('A', ScalarReference.new(NumericIdentifier.new('A')))
|
126
|
-
end
|
127
|
-
|
128
|
-
describe 'array_reference' do
|
129
|
-
let(:rule) {:array_reference}
|
130
|
-
it_should_transform('A("a")',
|
131
|
-
ArrayReference.new(NumericIdentifier.new('A'), [
|
132
|
-
BasicString.new("a")
|
133
|
-
]))
|
134
|
-
it_should_transform('A("a", "b")',
|
135
|
-
ArrayReference.new(NumericIdentifier.new('A'), [
|
136
|
-
BasicString.new("a"),
|
137
|
-
BasicString.new("b"),
|
138
|
-
]))
|
139
|
-
end
|
140
|
-
|
141
|
-
describe 'function_call' do
|
142
|
-
let(:rule) {:function_call}
|
143
|
-
it_should_transform('LEN("a")',
|
144
|
-
FunctionCall.new(FunctionIdentifier.new('LEN'), [
|
145
|
-
BasicString.new("a")
|
146
|
-
]))
|
147
|
-
it_should_transform('FNA(1, 2)',
|
148
|
-
FunctionCall.new(FunctionIdentifier.new('FNA'), [
|
149
|
-
BasicInteger.new(1),
|
150
|
-
BasicInteger.new(2),
|
151
|
-
]))
|
152
|
-
|
153
|
-
end
|
154
|
-
|
155
|
-
describe 'power' do
|
156
|
-
let(:rule) {:power}
|
157
|
-
it_should_transform('1', BasicInteger.new(1))
|
158
|
-
it_should_transform('1^2',
|
159
|
-
PowerOperation.new(BasicInteger.new(1),
|
160
|
-
BasicInteger.new(2)))
|
161
|
-
it_should_transform('1^2^3',
|
162
|
-
PowerOperation.new(BasicInteger.new(1),
|
163
|
-
PowerOperation.new(BasicInteger.new(2),
|
164
|
-
BasicInteger.new(3))))
|
165
|
-
end
|
166
|
-
|
167
|
-
describe 'negation' do
|
168
|
-
let(:rule) {:negation}
|
169
|
-
it_should_transform('-1',
|
170
|
-
NegateOperation.new(BasicInteger.new(1)))
|
171
|
-
end
|
172
|
-
|
173
|
-
describe 'multiply_op' do
|
174
|
-
let(:rule) {:multiply_op}
|
175
|
-
it_should_transform('*', :*)
|
176
|
-
it_should_transform('/', :/)
|
177
|
-
end
|
178
|
-
|
179
|
-
describe 'addition_op' do
|
180
|
-
let(:rule) {:addition_op}
|
181
|
-
it_should_transform('+', :+)
|
182
|
-
it_should_transform('-', :-)
|
183
|
-
end
|
184
|
-
|
185
|
-
describe 'comparison_op' do
|
186
|
-
let(:rule) {:comparison_op}
|
187
|
-
it_should_transform('=', :eq)
|
188
|
-
it_should_transform('<>', :ne)
|
189
|
-
it_should_transform('<', :lt)
|
190
|
-
it_should_transform('<=', :le)
|
191
|
-
it_should_transform('>', :gt)
|
192
|
-
it_should_transform('>=', :ge)
|
193
|
-
end
|
194
|
-
|
195
|
-
describe 'and_op' do
|
196
|
-
let(:rule) {:and_op}
|
197
|
-
it_should_transform('AND', :and)
|
198
|
-
end
|
199
|
-
|
200
|
-
describe 'or_op' do
|
201
|
-
let(:rule) {:or_op}
|
202
|
-
it_should_transform('OR', :or)
|
203
|
-
end
|
204
|
-
|
205
|
-
describe 'term' do
|
206
|
-
let(:rule) {:term}
|
207
|
-
it_should_transform("1 * 2",
|
208
|
-
BinaryOperations.new(BasicInteger.new(1),
|
209
|
-
[
|
210
|
-
BinaryOperation.new(:*,
|
211
|
-
BasicInteger.new(2)),
|
212
|
-
]))
|
213
|
-
it_should_transform("1", BasicInteger.new(1))
|
214
|
-
end
|
215
|
-
|
216
|
-
describe 'simple_expression' do
|
217
|
-
let(:rule) {:simple_expression}
|
218
|
-
it_should_transform('"abc"', BasicString.new('abc'))
|
219
|
-
it_should_transform('1 + 2', BinaryOperations.new(BasicInteger.new(1),
|
220
|
-
[
|
221
|
-
BinaryOperation.new(:+,
|
222
|
-
BasicInteger.new(2)),
|
223
|
-
]))
|
224
|
-
end
|
225
|
-
|
226
|
-
describe 'comparison_expression' do
|
227
|
-
let(:rule) {:comparison_expression}
|
228
|
-
it_should_transform('"abc"', BasicString.new('abc'))
|
229
|
-
it_should_transform('1 < 2', BinaryOperations.new(BasicInteger.new(1),
|
230
|
-
[
|
231
|
-
BinaryOperation.new(:lt,
|
232
|
-
BasicInteger.new(2)),
|
233
|
-
]))
|
234
|
-
end
|
235
|
-
|
236
|
-
describe 'not_expression' do
|
237
|
-
let(:rule) {:not_expression}
|
238
|
-
it_should_transform('1', BasicInteger.new(1))
|
239
|
-
it_should_transform('NOT 1',
|
240
|
-
NotOperation.new(BasicInteger.new(1)))
|
241
|
-
end
|
242
|
-
|
243
|
-
describe 'and_expression' do
|
244
|
-
let(:rule) {:and_expression}
|
245
|
-
it_should_transform('1', BasicInteger.new(1))
|
246
|
-
it_should_transform('1 AND 0', BinaryOperations.new(BasicInteger.new(1),
|
247
|
-
[
|
248
|
-
BinaryOperation.new(:and,
|
249
|
-
BasicInteger.new(0)),
|
250
|
-
]))
|
251
|
-
end
|
252
|
-
|
253
|
-
describe 'or_expression' do
|
254
|
-
let(:rule) {:or_expression}
|
255
|
-
it_should_transform('1', BasicInteger.new(1))
|
256
|
-
it_should_transform('1 OR 0', BinaryOperations.new(BasicInteger.new(1),
|
257
|
-
[
|
258
|
-
BinaryOperation.new(:or,
|
259
|
-
BasicInteger.new(0)),
|
260
|
-
]))
|
261
|
-
end
|
262
|
-
|
263
|
-
describe 'remark_statement' do
|
264
|
-
let(:rule) {:remark_statement}
|
265
|
-
it_should_transform('REM THIS IS A REMARK',
|
266
|
-
RemarkStatement.new)
|
267
|
-
end
|
268
|
-
|
269
|
-
describe 'print_separator' do
|
270
|
-
let(:rule) {:print_separator}
|
271
|
-
it_should_transform(';', PrintSemicolon.new)
|
272
|
-
it_should_transform(',', PrintComma.new)
|
273
|
-
end
|
274
|
-
|
275
|
-
describe 'print_arguments' do
|
276
|
-
let(:rule) {:print_arguments}
|
277
|
-
it_should_transform('"a"', [BasicString.new('a')])
|
278
|
-
it_should_transform('"a",', [
|
279
|
-
BasicString.new('a'),
|
280
|
-
PrintComma.new,
|
281
|
-
])
|
282
|
-
end
|
283
|
-
|
284
|
-
describe 'print_statement' do
|
285
|
-
let(:rule) {:print_statement}
|
286
|
-
it_should_transform('PRINT',
|
287
|
-
PrintStatement.new)
|
288
|
-
it_should_transform('PRINT ,',
|
289
|
-
PrintStatement.new([
|
290
|
-
PrintComma.new
|
291
|
-
]))
|
292
|
-
it_should_transform('PRINT , 1',
|
293
|
-
PrintStatement.new([
|
294
|
-
PrintComma.new,
|
295
|
-
BasicInteger.new(1),
|
296
|
-
]))
|
297
|
-
it_should_transform('PRINT "ABC"',
|
298
|
-
PrintStatement.new([BasicString.new("ABC")]))
|
299
|
-
it_should_transform('PRINT 1;',
|
300
|
-
PrintStatement.new([
|
301
|
-
BasicInteger.new(1),
|
302
|
-
PrintSemicolon.new,
|
303
|
-
]))
|
304
|
-
it_should_transform('PRINT 1, 2',
|
305
|
-
PrintStatement.new([
|
306
|
-
BasicInteger.new(1),
|
307
|
-
PrintComma.new,
|
308
|
-
BasicInteger.new(2),
|
309
|
-
]))
|
310
|
-
end
|
311
|
-
|
312
|
-
describe 'let_statement' do
|
313
|
-
let(:rule) {:let_statement}
|
314
|
-
it_should_transform('I=1',
|
315
|
-
LetStatement.new(ScalarReference.new(NumericIdentifier.new('I')),
|
316
|
-
transform(:expression, '1')))
|
317
|
-
end
|
318
|
-
|
319
|
-
describe 'goto_statement' do
|
320
|
-
let(:rule) {:goto_statement}
|
321
|
-
it_should_transform('GOTO 10', GotoStatement.new(10))
|
322
|
-
end
|
323
|
-
|
324
|
-
describe 'if_block' do
|
325
|
-
let(:rule) {:if_block}
|
326
|
-
it_should_transform('10', GotoStatement.new(10))
|
327
|
-
it_should_transform('PRINT', PrintStatement.new)
|
328
|
-
it_should_transform('PRINT:PRINT', [
|
329
|
-
PrintStatement.new,
|
330
|
-
PrintStatement.new
|
331
|
-
])
|
332
|
-
end
|
333
|
-
|
334
|
-
describe 'if_statement' do
|
335
|
-
let(:rule) {:if_statement}
|
336
|
-
it_should_transform('IF 1 THEN 10', [
|
337
|
-
IfStatement.new(BasicInteger.new(1)),
|
338
|
-
GotoStatement.new(10),
|
339
|
-
ElseStatement.new,
|
340
|
-
EndifStatement.new,
|
341
|
-
])
|
342
|
-
it_should_transform('IF 0 THEN RANDOMIZE', [
|
343
|
-
IfStatement.new(BasicInteger.new(0)),
|
344
|
-
RandomizeStatement.new,
|
345
|
-
ElseStatement.new,
|
346
|
-
EndifStatement.new,
|
347
|
-
])
|
348
|
-
it_should_transform('IF 0 THEN RANDOMIZE : PRINT', [
|
349
|
-
IfStatement.new(BasicInteger.new(0)),
|
350
|
-
RandomizeStatement.new,
|
351
|
-
PrintStatement.new,
|
352
|
-
ElseStatement.new,
|
353
|
-
EndifStatement.new,
|
354
|
-
])
|
355
|
-
it_should_transform('IF 0 THEN RANDOMIZE ELSE PRINT', [
|
356
|
-
IfStatement.new(BasicInteger.new(0)),
|
357
|
-
RandomizeStatement.new,
|
358
|
-
ElseStatement.new,
|
359
|
-
PrintStatement.new,
|
360
|
-
EndifStatement.new,
|
361
|
-
])
|
362
|
-
end
|
363
|
-
|
364
|
-
describe 'randomize_statement' do
|
365
|
-
let(:rule) {:randomize_statement}
|
366
|
-
it_should_transform('RANDOMIZE', RandomizeStatement.new)
|
367
|
-
end
|
368
|
-
|
369
|
-
describe 'prompt_delimeter' do
|
370
|
-
let(:rule) {:prompt_delimeter}
|
371
|
-
it_should_transform(';', PromptDelimeter.new)
|
372
|
-
it_should_transform(',', NullPromptDelimeter.new)
|
373
|
-
end
|
374
|
-
|
375
|
-
describe 'input' do
|
376
|
-
let(:rule) {:input_statement}
|
377
|
-
it_should_transform('INPUT I',
|
378
|
-
InputStatement.new(nil, PromptDelimeter.new, [
|
379
|
-
ScalarReference.new(NumericIdentifier.new('I')),
|
380
|
-
]))
|
381
|
-
it_should_transform('INPUT "FOO"; I',
|
382
|
-
InputStatement.new(BasicString.new('FOO'),
|
383
|
-
PromptDelimeter.new,
|
384
|
-
[
|
385
|
-
ScalarReference.new(NumericIdentifier.new('I')),
|
386
|
-
]))
|
387
|
-
it_should_transform('INPUT I,J',
|
388
|
-
InputStatement.new(nil, PromptDelimeter.new, [
|
389
|
-
ScalarReference.new(NumericIdentifier.new('I')),
|
390
|
-
ScalarReference.new(NumericIdentifier.new('J')),
|
391
|
-
]))
|
392
|
-
end
|
393
|
-
|
394
|
-
describe 'end_statement' do
|
395
|
-
let(:rule) {:end_statement}
|
396
|
-
it_should_transform('END', EndStatement.new)
|
397
|
-
end
|
398
|
-
|
399
|
-
describe 'dim_statement' do
|
400
|
-
let(:rule) {:dim_statement}
|
401
|
-
it_should_transform('DIM A(10)',
|
402
|
-
DimStatement.new([
|
403
|
-
ArrayReference.new(NumericIdentifier.new('A'), [
|
404
|
-
BasicInteger.new(10),
|
405
|
-
]),
|
406
|
-
]))
|
407
|
-
it_should_transform('DIM A(10), B(20)',
|
408
|
-
DimStatement.new([
|
409
|
-
ArrayReference.new(NumericIdentifier.new('A'), [
|
410
|
-
BasicInteger.new(10),
|
411
|
-
]),
|
412
|
-
ArrayReference.new(NumericIdentifier.new('B'), [
|
413
|
-
BasicInteger.new(20),
|
414
|
-
]),
|
415
|
-
]))
|
416
|
-
end
|
417
|
-
|
418
|
-
describe 'for_statement' do
|
419
|
-
let(:rule) {:for_statement}
|
420
|
-
it_should_transform('FOR I = 1 TO 10',
|
421
|
-
ForStatement.new(ScalarReference.new(NumericIdentifier.new('I')),
|
422
|
-
BasicInteger.new(1),
|
423
|
-
BasicInteger.new(10),
|
424
|
-
nil))
|
425
|
-
it_should_transform('FOR I = 1 TO 10 STEP 2',
|
426
|
-
ForStatement.new(ScalarReference.new(NumericIdentifier.new('I')),
|
427
|
-
BasicInteger.new(1),
|
428
|
-
BasicInteger.new(10),
|
429
|
-
BasicInteger.new(2)))
|
430
|
-
end
|
431
|
-
|
432
|
-
describe 'next_statement' do
|
433
|
-
let(:rule) {:next_statement}
|
434
|
-
it_should_transform('NEXT', [
|
435
|
-
NextStatement.new(nil),
|
436
|
-
])
|
437
|
-
it_should_transform('NEXT I', [
|
438
|
-
NextStatement.new(ScalarReference.new(NumericIdentifier.new('I'))),
|
439
|
-
])
|
440
|
-
it_should_transform('NEXT I, J', [
|
441
|
-
NextStatement.new(ScalarReference.new(NumericIdentifier.new('I'))),
|
442
|
-
NextStatement.new(ScalarReference.new(NumericIdentifier.new('J'))),
|
443
|
-
])
|
444
|
-
end
|
445
|
-
|
446
|
-
describe 'on_goto_statement' do
|
447
|
-
let(:rule) {:on_goto_statement}
|
448
|
-
it_should_transform('ON I GOTO 10',
|
449
|
-
OnGotoStatement.new(ScalarReference.new(NumericIdentifier.new('I')),
|
450
|
-
[
|
451
|
-
BasicInteger.new(10),
|
452
|
-
]))
|
453
|
-
it_should_transform('ON I GOTO 10, 20',
|
454
|
-
OnGotoStatement.new(ScalarReference.new(NumericIdentifier.new('I')),
|
455
|
-
[
|
456
|
-
BasicInteger.new(10),
|
457
|
-
BasicInteger.new(20),
|
458
|
-
]))
|
459
|
-
end
|
460
|
-
|
461
|
-
describe 'stop_statement' do
|
462
|
-
let(:rule) {:stop_statement}
|
463
|
-
it_should_transform('STOP', StopStatement.new)
|
464
|
-
end
|
465
|
-
|
466
|
-
describe 'restore_statement' do
|
467
|
-
let(:rule) {:restore_statement}
|
468
|
-
it_should_transform('RESTORE', RestoreStatement.new(nil))
|
469
|
-
it_should_transform('RESTORE 10',
|
470
|
-
RestoreStatement.new(BasicInteger.new(10)))
|
471
|
-
end
|
472
|
-
|
473
|
-
describe 'define_function_statement' do
|
474
|
-
let(:rule) {:define_function_statement}
|
475
|
-
it_should_transform('DEF FNA$(A) = "."',
|
476
|
-
DefineFunctionStatement.new(FunctionIdentifier.new('FNA$'),
|
477
|
-
[
|
478
|
-
ScalarReference.new(NumericIdentifier.new('A')),
|
479
|
-
],
|
480
|
-
BasicString.new('.')))
|
481
|
-
it_should_transform('DEF FNA(I, J) = 1',
|
482
|
-
DefineFunctionStatement.new(FunctionIdentifier.new('FNA'),
|
483
|
-
[
|
484
|
-
ScalarReference.new(NumericIdentifier.new('I')),
|
485
|
-
ScalarReference.new(NumericIdentifier.new('J')),
|
486
|
-
],
|
487
|
-
BasicInteger.new(1)))
|
488
|
-
end
|
489
|
-
|
490
|
-
describe 'line' do
|
491
|
-
let(:rule) {:line}
|
492
|
-
it_should_transform('10 REM',
|
493
|
-
Line.new(10, [RemarkStatement.new]))
|
494
|
-
end
|
495
|
-
|
496
|
-
describe 'program' do
|
497
|
-
let(:rule) {:program}
|
498
|
-
it_should_transform('',
|
499
|
-
Program.new([]))
|
500
|
-
it_should_transform("10 REM\n",
|
501
|
-
Program.new([
|
502
|
-
Line.new(10, [RemarkStatement.new]),
|
503
|
-
]))
|
504
|
-
it_should_transform("10 REM\n20 PRINT",
|
505
|
-
Program.new([
|
506
|
-
Line.new(10, [RemarkStatement.new]),
|
507
|
-
Line.new(20, [PrintStatement.new]),
|
508
|
-
]))
|
509
|
-
end
|
510
|
-
|
511
|
-
end
|
512
|
-
|
513
|
-
end
|