language-ruby 0.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
 - data/.editorconfig +9 -0
 - data/.github/workflows/rspec.yml +14 -0
 - data/.gitignore +2 -0
 - data/.prettierrc +3 -0
 - data/.rspec +1 -0
 - data/CHANGELOG.md +55 -0
 - data/Gemfile +8 -0
 - data/Gemfile.lock +48 -0
 - data/LICENSE +7 -0
 - data/README.md +103 -0
 - data/TODO +17 -0
 - data/bin/code +76 -0
 - data/bin/format +3 -0
 - data/bin/template +85 -0
 - data/bin/test +17 -0
 - data/code-ruby.gemspec +17 -0
 - data/docs/class.code +9 -0
 - data/docs/euler/1.template +10 -0
 - data/docs/euler/2.template +16 -0
 - data/docs/euler/3.template +16 -0
 - data/docs/euler/4.template +10 -0
 - data/docs/euler/5.template +13 -0
 - data/docs/fibonnaci.template +14 -0
 - data/docs/meetup.code +12 -0
 - data/docs/precedence.template +36 -0
 - data/docs/rain.code +22 -0
 - data/docs/slack.code +17 -0
 - data/docs/stripe.code +7 -0
 - data/docs/twitter.code +9 -0
 - data/language-ruby.gemspec +18 -0
 - data/lib/code/error.rb +18 -0
 - data/lib/code/node/base_10.rb +29 -0
 - data/lib/code/node/base_16.rb +13 -0
 - data/lib/code/node/base_2.rb +13 -0
 - data/lib/code/node/base_8.rb +13 -0
 - data/lib/code/node/boolean.rb +22 -0
 - data/lib/code/node/call.rb +47 -0
 - data/lib/code/node/call_argument.rb +21 -0
 - data/lib/code/node/chained_call.rb +23 -0
 - data/lib/code/node/code.rb +20 -0
 - data/lib/code/node/decimal.rb +26 -0
 - data/lib/code/node/dictionnary.rb +33 -0
 - data/lib/code/node/equal.rb +34 -0
 - data/lib/code/node/function.rb +20 -0
 - data/lib/code/node/function_parameter.rb +31 -0
 - data/lib/code/node/if.rb +59 -0
 - data/lib/code/node/if_modifier.rb +47 -0
 - data/lib/code/node/list.rb +16 -0
 - data/lib/code/node/negation.rb +15 -0
 - data/lib/code/node/not.rb +15 -0
 - data/lib/code/node/nothing.rb +12 -0
 - data/lib/code/node/number.rb +25 -0
 - data/lib/code/node/operation.rb +38 -0
 - data/lib/code/node/power.rb +20 -0
 - data/lib/code/node/rescue.rb +17 -0
 - data/lib/code/node/splat.rb +15 -0
 - data/lib/code/node/statement.rb +59 -0
 - data/lib/code/node/string.rb +53 -0
 - data/lib/code/node/ternary.rb +24 -0
 - data/lib/code/node/unary_minus.rb +15 -0
 - data/lib/code/node/while.rb +35 -0
 - data/lib/code/node.rb +13 -0
 - data/lib/code/object/argument.rb +32 -0
 - data/lib/code/object/boolean.rb +27 -0
 - data/lib/code/object/decimal.rb +162 -0
 - data/lib/code/object/dictionnary.rb +96 -0
 - data/lib/code/object/function.rb +64 -0
 - data/lib/code/object/global.rb +42 -0
 - data/lib/code/object/integer.rb +221 -0
 - data/lib/code/object/list.rb +200 -0
 - data/lib/code/object/nothing.rb +23 -0
 - data/lib/code/object/number.rb +6 -0
 - data/lib/code/object/range.rb +146 -0
 - data/lib/code/object/ruby_function.rb +31 -0
 - data/lib/code/object/string.rb +88 -0
 - data/lib/code/object.rb +197 -0
 - data/lib/code/parser/addition.rb +21 -0
 - data/lib/code/parser/and_operator.rb +17 -0
 - data/lib/code/parser/bitwise_and.rb +17 -0
 - data/lib/code/parser/bitwise_or.rb +21 -0
 - data/lib/code/parser/boolean.rb +17 -0
 - data/lib/code/parser/call.rb +122 -0
 - data/lib/code/parser/chained_call.rb +47 -0
 - data/lib/code/parser/class.rb +45 -0
 - data/lib/code/parser/code.rb +25 -0
 - data/lib/code/parser/dictionnary.rb +67 -0
 - data/lib/code/parser/equal.rb +94 -0
 - data/lib/code/parser/equality.rb +35 -0
 - data/lib/code/parser/equality_lower.rb +9 -0
 - data/lib/code/parser/function.rb +85 -0
 - data/lib/code/parser/greater.rb +25 -0
 - data/lib/code/parser/group.rb +22 -0
 - data/lib/code/parser/if.rb +63 -0
 - data/lib/code/parser/if_modifier.rb +55 -0
 - data/lib/code/parser/list.rb +42 -0
 - data/lib/code/parser/multiplication.rb +25 -0
 - data/lib/code/parser/name.rb +101 -0
 - data/lib/code/parser/negation.rb +30 -0
 - data/lib/code/parser/not_keyword.rb +23 -0
 - data/lib/code/parser/nothing.rb +22 -0
 - data/lib/code/parser/number.rb +154 -0
 - data/lib/code/parser/operation.rb +35 -0
 - data/lib/code/parser/or_keyword.rb +21 -0
 - data/lib/code/parser/or_operator.rb +17 -0
 - data/lib/code/parser/power.rb +43 -0
 - data/lib/code/parser/range.rb +17 -0
 - data/lib/code/parser/rescue.rb +39 -0
 - data/lib/code/parser/shift.rb +21 -0
 - data/lib/code/parser/splat.rb +31 -0
 - data/lib/code/parser/statement.rb +9 -0
 - data/lib/code/parser/string.rb +78 -0
 - data/lib/code/parser/ternary.rb +46 -0
 - data/lib/code/parser/unary_minus.rb +31 -0
 - data/lib/code/parser/while.rb +36 -0
 - data/lib/code/parser/whitespace.rb +49 -0
 - data/lib/code/parser.rb +19 -0
 - data/lib/code/ruby.rb +162 -0
 - data/lib/code-ruby.rb +10 -0
 - data/lib/code.rb +47 -0
 - data/lib/language/atom.rb +343 -0
 - data/lib/language/output.rb +130 -0
 - data/lib/language/parser/absent/present.rb +8 -0
 - data/lib/language/parser/absent.rb +6 -0
 - data/lib/language/parser/end_of_input.rb +6 -0
 - data/lib/language/parser/interuption.rb +38 -0
 - data/lib/language/parser/not_end_of_input.rb +6 -0
 - data/lib/language/parser/str/not_found.rb +16 -0
 - data/lib/language/parser/str.rb +6 -0
 - data/lib/language/parser.rb +53 -0
 - data/lib/language-ruby.rb +10 -0
 - data/lib/language.rb +80 -0
 - data/lib/template/node/code_part.rb +13 -0
 - data/lib/template/node/part.rb +19 -0
 - data/lib/template/node/template.rb +15 -0
 - data/lib/template/node/text_part.rb +13 -0
 - data/lib/template/node.rb +4 -0
 - data/lib/template/parser/template.rb +39 -0
 - data/lib/template/parser.rb +19 -0
 - data/lib/template/version.rb +3 -0
 - data/lib/template-ruby.rb +10 -0
 - data/lib/template.rb +50 -0
 - data/spec/code/addition_spec.rb +13 -0
 - data/spec/code/and_operator_spec.rb +13 -0
 - data/spec/code/bitwise_and_spec.rb +13 -0
 - data/spec/code/bitwise_or_spec.rb +13 -0
 - data/spec/code/boolean_spec.rb +13 -0
 - data/spec/code/call_spec.rb +21 -0
 - data/spec/code/chained_call_spec.rb +16 -0
 - data/spec/code/dictionnary_spec.rb +17 -0
 - data/spec/code/equal_spec.rb +26 -0
 - data/spec/code/equality_spec.rb +13 -0
 - data/spec/code/function_spec.rb +18 -0
 - data/spec/code/greater_spec.rb +18 -0
 - data/spec/code/group_spec.rb +12 -0
 - data/spec/code/if_modifier_spec.rb +20 -0
 - data/spec/code/if_spec.rb +25 -0
 - data/spec/code/list_spec.rb +17 -0
 - data/spec/code/multiplication_spec.rb +18 -0
 - data/spec/code/negation_spec.rb +20 -0
 - data/spec/code/not_keyword_spec.rb +13 -0
 - data/spec/code/nothing_spec.rb +17 -0
 - data/spec/code/number_spec.rb +22 -0
 - data/spec/code/or_keyword_spec.rb +17 -0
 - data/spec/code/or_operator_spec.rb +16 -0
 - data/spec/code/parser/boolean_spec.rb +16 -0
 - data/spec/code/parser/call_spec.rb +26 -0
 - data/spec/code/parser/chained_call.rb +17 -0
 - data/spec/code/parser/dictionnary_spec.rb +18 -0
 - data/spec/code/parser/function_spec.rb +16 -0
 - data/spec/code/parser/group_spec.rb +18 -0
 - data/spec/code/parser/list_spec.rb +18 -0
 - data/spec/code/parser/number_spec.rb +12 -0
 - data/spec/code/parser/string_spec.rb +21 -0
 - data/spec/code/parser_spec.rb +23 -0
 - data/spec/code/power_spec.rb +13 -0
 - data/spec/code/range_spec.rb +16 -0
 - data/spec/code/rescue_spec.rb +13 -0
 - data/spec/code/shift_spec.rb +13 -0
 - data/spec/code/splat_spec.rb +13 -0
 - data/spec/code/string_spec.rb +25 -0
 - data/spec/code/ternary_spec.rb +18 -0
 - data/spec/code/unary_minus_spec.rb +13 -0
 - data/spec/code/while_spec.rb +18 -0
 - data/spec/spec_helper.rb +6 -0
 - data/template-ruby.gemspec +19 -0
 - metadata +284 -0
 
    
        data/lib/language.rb
    ADDED
    
    | 
         @@ -0,0 +1,80 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            class Language
         
     | 
| 
      
 2 
     | 
    
         
            +
              def self.parse(input)
         
     | 
| 
      
 3 
     | 
    
         
            +
                new.parse(input)
         
     | 
| 
      
 4 
     | 
    
         
            +
              end
         
     | 
| 
      
 5 
     | 
    
         
            +
             
     | 
| 
      
 6 
     | 
    
         
            +
              def self.absent
         
     | 
| 
      
 7 
     | 
    
         
            +
                Atom::Absent.new(parent: new)
         
     | 
| 
      
 8 
     | 
    
         
            +
              end
         
     | 
| 
      
 9 
     | 
    
         
            +
             
     | 
| 
      
 10 
     | 
    
         
            +
              def self.ignore
         
     | 
| 
      
 11 
     | 
    
         
            +
                Atom::Ignore.new(parent: new)
         
     | 
| 
      
 12 
     | 
    
         
            +
              end
         
     | 
| 
      
 13 
     | 
    
         
            +
             
     | 
| 
      
 14 
     | 
    
         
            +
              def self.maybe
         
     | 
| 
      
 15 
     | 
    
         
            +
                Atom::Maybe.new(parent: new)
         
     | 
| 
      
 16 
     | 
    
         
            +
              end
         
     | 
| 
      
 17 
     | 
    
         
            +
             
     | 
| 
      
 18 
     | 
    
         
            +
              def self.repeat(min = 0, max = nil)
         
     | 
| 
      
 19 
     | 
    
         
            +
                Atom::Repeat.new(parent: new, min: min, max: max)
         
     | 
| 
      
 20 
     | 
    
         
            +
              end
         
     | 
| 
      
 21 
     | 
    
         
            +
             
     | 
| 
      
 22 
     | 
    
         
            +
              def self.aka(name)
         
     | 
| 
      
 23 
     | 
    
         
            +
                Atom::Aka.new(parent: new, name: name)
         
     | 
| 
      
 24 
     | 
    
         
            +
              end
         
     | 
| 
      
 25 
     | 
    
         
            +
             
     | 
| 
      
 26 
     | 
    
         
            +
              def self.|(other)
         
     | 
| 
      
 27 
     | 
    
         
            +
                Atom::Or.new(left: new, right: other)
         
     | 
| 
      
 28 
     | 
    
         
            +
              end
         
     | 
| 
      
 29 
     | 
    
         
            +
             
     | 
| 
      
 30 
     | 
    
         
            +
              def self.>>(other)
         
     | 
| 
      
 31 
     | 
    
         
            +
                Atom::And.new(left: new, right: other)
         
     | 
| 
      
 32 
     | 
    
         
            +
              end
         
     | 
| 
      
 33 
     | 
    
         
            +
             
     | 
| 
      
 34 
     | 
    
         
            +
              def self.<<(other)
         
     | 
| 
      
 35 
     | 
    
         
            +
                Atom::And.new(left: new, right: other)
         
     | 
| 
      
 36 
     | 
    
         
            +
              end
         
     | 
| 
      
 37 
     | 
    
         
            +
             
     | 
| 
      
 38 
     | 
    
         
            +
              def self.then(&block)
         
     | 
| 
      
 39 
     | 
    
         
            +
                Atom::Then.new(parent: new, block: block)
         
     | 
| 
      
 40 
     | 
    
         
            +
              end
         
     | 
| 
      
 41 
     | 
    
         
            +
             
     | 
| 
      
 42 
     | 
    
         
            +
              def parse(input_or_parser)
         
     | 
| 
      
 43 
     | 
    
         
            +
                if input_or_parser.is_a?(Parser)
         
     | 
| 
      
 44 
     | 
    
         
            +
                  parser = input_or_parser
         
     | 
| 
      
 45 
     | 
    
         
            +
                  clone =
         
     | 
| 
      
 46 
     | 
    
         
            +
                    Parser.new(
         
     | 
| 
      
 47 
     | 
    
         
            +
                      root: root,
         
     | 
| 
      
 48 
     | 
    
         
            +
                      input: parser.input,
         
     | 
| 
      
 49 
     | 
    
         
            +
                      cursor: parser.cursor,
         
     | 
| 
      
 50 
     | 
    
         
            +
                      buffer: parser.buffer,
         
     | 
| 
      
 51 
     | 
    
         
            +
                      output: parser.output
         
     | 
| 
      
 52 
     | 
    
         
            +
                    )
         
     | 
| 
      
 53 
     | 
    
         
            +
             
     | 
| 
      
 54 
     | 
    
         
            +
                  clone.parse(check_end_of_input: false)
         
     | 
| 
      
 55 
     | 
    
         
            +
             
     | 
| 
      
 56 
     | 
    
         
            +
                  parser.cursor = clone.cursor
         
     | 
| 
      
 57 
     | 
    
         
            +
                  parser.buffer = clone.buffer
         
     | 
| 
      
 58 
     | 
    
         
            +
                  parser.output = clone.output
         
     | 
| 
      
 59 
     | 
    
         
            +
                else
         
     | 
| 
      
 60 
     | 
    
         
            +
                  input = input_or_parser
         
     | 
| 
      
 61 
     | 
    
         
            +
                  Parser.new(root: root, input: input).parse
         
     | 
| 
      
 62 
     | 
    
         
            +
                end
         
     | 
| 
      
 63 
     | 
    
         
            +
              end
         
     | 
| 
      
 64 
     | 
    
         
            +
             
     | 
| 
      
 65 
     | 
    
         
            +
              def str(string)
         
     | 
| 
      
 66 
     | 
    
         
            +
                Atom::Str.new(string: string)
         
     | 
| 
      
 67 
     | 
    
         
            +
              end
         
     | 
| 
      
 68 
     | 
    
         
            +
             
     | 
| 
      
 69 
     | 
    
         
            +
              def any
         
     | 
| 
      
 70 
     | 
    
         
            +
                Atom::Any.new
         
     | 
| 
      
 71 
     | 
    
         
            +
              end
         
     | 
| 
      
 72 
     | 
    
         
            +
             
     | 
| 
      
 73 
     | 
    
         
            +
              def to_s
         
     | 
| 
      
 74 
     | 
    
         
            +
                "<#{self.class.name}>"
         
     | 
| 
      
 75 
     | 
    
         
            +
              end
         
     | 
| 
      
 76 
     | 
    
         
            +
             
     | 
| 
      
 77 
     | 
    
         
            +
              def inspect
         
     | 
| 
      
 78 
     | 
    
         
            +
                to_s
         
     | 
| 
      
 79 
     | 
    
         
            +
              end
         
     | 
| 
      
 80 
     | 
    
         
            +
            end
         
     | 
| 
         @@ -0,0 +1,19 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            class Template
         
     | 
| 
      
 2 
     | 
    
         
            +
              class Node
         
     | 
| 
      
 3 
     | 
    
         
            +
                class Part < Node
         
     | 
| 
      
 4 
     | 
    
         
            +
                  def initialize(part)
         
     | 
| 
      
 5 
     | 
    
         
            +
                    if part.key?(:text)
         
     | 
| 
      
 6 
     | 
    
         
            +
                      @part = ::Template::Node::TextPart.new(part[:text])
         
     | 
| 
      
 7 
     | 
    
         
            +
                    elsif part.key?(:code)
         
     | 
| 
      
 8 
     | 
    
         
            +
                      @part = ::Template::Node::CodePart.new(part[:code])
         
     | 
| 
      
 9 
     | 
    
         
            +
                    else
         
     | 
| 
      
 10 
     | 
    
         
            +
                      raise NotImplementedError.new(part.inspect)
         
     | 
| 
      
 11 
     | 
    
         
            +
                    end
         
     | 
| 
      
 12 
     | 
    
         
            +
                  end
         
     | 
| 
      
 13 
     | 
    
         
            +
             
     | 
| 
      
 14 
     | 
    
         
            +
                  def evaluate(**args)
         
     | 
| 
      
 15 
     | 
    
         
            +
                    @part.evaluate(**args)
         
     | 
| 
      
 16 
     | 
    
         
            +
                  end
         
     | 
| 
      
 17 
     | 
    
         
            +
                end
         
     | 
| 
      
 18 
     | 
    
         
            +
              end
         
     | 
| 
      
 19 
     | 
    
         
            +
            end
         
     | 
| 
         @@ -0,0 +1,15 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            class Template
         
     | 
| 
      
 2 
     | 
    
         
            +
              class Node
         
     | 
| 
      
 3 
     | 
    
         
            +
                class Template < Node
         
     | 
| 
      
 4 
     | 
    
         
            +
                  def initialize(parts)
         
     | 
| 
      
 5 
     | 
    
         
            +
                    @parts = parts.map { |part| ::Template::Node::Part.new(part) }
         
     | 
| 
      
 6 
     | 
    
         
            +
                  end
         
     | 
| 
      
 7 
     | 
    
         
            +
             
     | 
| 
      
 8 
     | 
    
         
            +
                  def evaluate(**args)
         
     | 
| 
      
 9 
     | 
    
         
            +
                    io = args.fetch(:io)
         
     | 
| 
      
 10 
     | 
    
         
            +
             
     | 
| 
      
 11 
     | 
    
         
            +
                    @parts.each { |part| io.print(part.evaluate(**args)) }
         
     | 
| 
      
 12 
     | 
    
         
            +
                  end
         
     | 
| 
      
 13 
     | 
    
         
            +
                end
         
     | 
| 
      
 14 
     | 
    
         
            +
              end
         
     | 
| 
      
 15 
     | 
    
         
            +
            end
         
     | 
| 
         @@ -0,0 +1,39 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            class Template
         
     | 
| 
      
 2 
     | 
    
         
            +
              class Parser
         
     | 
| 
      
 3 
     | 
    
         
            +
                class Template < Language
         
     | 
| 
      
 4 
     | 
    
         
            +
                  def code
         
     | 
| 
      
 5 
     | 
    
         
            +
                    ::Code::Parser::Code
         
     | 
| 
      
 6 
     | 
    
         
            +
                  end
         
     | 
| 
      
 7 
     | 
    
         
            +
             
     | 
| 
      
 8 
     | 
    
         
            +
                  def opening_curly_bracket
         
     | 
| 
      
 9 
     | 
    
         
            +
                    str("{")
         
     | 
| 
      
 10 
     | 
    
         
            +
                  end
         
     | 
| 
      
 11 
     | 
    
         
            +
             
     | 
| 
      
 12 
     | 
    
         
            +
                  def closing_curly_bracket
         
     | 
| 
      
 13 
     | 
    
         
            +
                    str("}")
         
     | 
| 
      
 14 
     | 
    
         
            +
                  end
         
     | 
| 
      
 15 
     | 
    
         
            +
             
     | 
| 
      
 16 
     | 
    
         
            +
                  def backslash
         
     | 
| 
      
 17 
     | 
    
         
            +
                    str("\\")
         
     | 
| 
      
 18 
     | 
    
         
            +
                  end
         
     | 
| 
      
 19 
     | 
    
         
            +
             
     | 
| 
      
 20 
     | 
    
         
            +
                  def code_part
         
     | 
| 
      
 21 
     | 
    
         
            +
                    opening_curly_bracket << code << (closing_curly_bracket | any.absent)
         
     | 
| 
      
 22 
     | 
    
         
            +
                  end
         
     | 
| 
      
 23 
     | 
    
         
            +
             
     | 
| 
      
 24 
     | 
    
         
            +
                  def text_character
         
     | 
| 
      
 25 
     | 
    
         
            +
                    (backslash.ignore << opening_curly_bracket) |
         
     | 
| 
      
 26 
     | 
    
         
            +
                      (opening_curly_bracket.absent << any)
         
     | 
| 
      
 27 
     | 
    
         
            +
                  end
         
     | 
| 
      
 28 
     | 
    
         
            +
             
     | 
| 
      
 29 
     | 
    
         
            +
                  def text_part
         
     | 
| 
      
 30 
     | 
    
         
            +
                    text_character.repeat(1)
         
     | 
| 
      
 31 
     | 
    
         
            +
                  end
         
     | 
| 
      
 32 
     | 
    
         
            +
             
     | 
| 
      
 33 
     | 
    
         
            +
                  def root
         
     | 
| 
      
 34 
     | 
    
         
            +
                    (code_part.aka(:code) | text_part.aka(:text)).repeat |
         
     | 
| 
      
 35 
     | 
    
         
            +
                      str("").aka(:text).repeat(1, 1)
         
     | 
| 
      
 36 
     | 
    
         
            +
                  end
         
     | 
| 
      
 37 
     | 
    
         
            +
                end
         
     | 
| 
      
 38 
     | 
    
         
            +
              end
         
     | 
| 
      
 39 
     | 
    
         
            +
            end
         
     | 
| 
         @@ -0,0 +1,19 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            class Template
         
     | 
| 
      
 2 
     | 
    
         
            +
              class Parser
         
     | 
| 
      
 3 
     | 
    
         
            +
                def initialize(input)
         
     | 
| 
      
 4 
     | 
    
         
            +
                  @input = input
         
     | 
| 
      
 5 
     | 
    
         
            +
                end
         
     | 
| 
      
 6 
     | 
    
         
            +
             
     | 
| 
      
 7 
     | 
    
         
            +
                def self.parse(input)
         
     | 
| 
      
 8 
     | 
    
         
            +
                  new(input).parse
         
     | 
| 
      
 9 
     | 
    
         
            +
                end
         
     | 
| 
      
 10 
     | 
    
         
            +
             
     | 
| 
      
 11 
     | 
    
         
            +
                def parse
         
     | 
| 
      
 12 
     | 
    
         
            +
                  ::Template::Parser::Template.parse(input)
         
     | 
| 
      
 13 
     | 
    
         
            +
                end
         
     | 
| 
      
 14 
     | 
    
         
            +
             
     | 
| 
      
 15 
     | 
    
         
            +
                private
         
     | 
| 
      
 16 
     | 
    
         
            +
             
     | 
| 
      
 17 
     | 
    
         
            +
                attr_reader :input
         
     | 
| 
      
 18 
     | 
    
         
            +
              end
         
     | 
| 
      
 19 
     | 
    
         
            +
            end
         
     | 
| 
         @@ -0,0 +1,10 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            require "bigdecimal"
         
     | 
| 
      
 2 
     | 
    
         
            +
            require "stringio"
         
     | 
| 
      
 3 
     | 
    
         
            +
            require "timeout"
         
     | 
| 
      
 4 
     | 
    
         
            +
            require "zeitwerk"
         
     | 
| 
      
 5 
     | 
    
         
            +
             
     | 
| 
      
 6 
     | 
    
         
            +
            loader = Zeitwerk::Loader.for_gem(warn_on_extra_files: false)
         
     | 
| 
      
 7 
     | 
    
         
            +
            loader.ignore("#{__dir__}/template-ruby.rb")
         
     | 
| 
      
 8 
     | 
    
         
            +
            loader.ignore("#{__dir__}/code-ruby.rb")
         
     | 
| 
      
 9 
     | 
    
         
            +
            loader.ignore("#{__dir__}/language-ruby.rb")
         
     | 
| 
      
 10 
     | 
    
         
            +
            loader.setup
         
     | 
    
        data/lib/template.rb
    ADDED
    
    | 
         @@ -0,0 +1,50 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            class Template
         
     | 
| 
      
 2 
     | 
    
         
            +
              DEFAULT_TIMEOUT = 10
         
     | 
| 
      
 3 
     | 
    
         
            +
             
     | 
| 
      
 4 
     | 
    
         
            +
              def initialize(input, io: StringIO.new, timeout: DEFAULT_TIMEOUT, ruby: {})
         
     | 
| 
      
 5 
     | 
    
         
            +
                @input = input
         
     | 
| 
      
 6 
     | 
    
         
            +
                @parsed =
         
     | 
| 
      
 7 
     | 
    
         
            +
                  Timeout.timeout(timeout) { ::Template::Parser.parse(@input).to_raw }
         
     | 
| 
      
 8 
     | 
    
         
            +
                @io = io
         
     | 
| 
      
 9 
     | 
    
         
            +
                @timeout = timeout || DEFAULT_TIMEOUT
         
     | 
| 
      
 10 
     | 
    
         
            +
                @ruby = ::Code::Ruby.to_code(ruby || {})
         
     | 
| 
      
 11 
     | 
    
         
            +
              end
         
     | 
| 
      
 12 
     | 
    
         
            +
             
     | 
| 
      
 13 
     | 
    
         
            +
              def self.render(
         
     | 
| 
      
 14 
     | 
    
         
            +
                input,
         
     | 
| 
      
 15 
     | 
    
         
            +
                context = "",
         
     | 
| 
      
 16 
     | 
    
         
            +
                io: StringIO.new,
         
     | 
| 
      
 17 
     | 
    
         
            +
                timeout: DEFAULT_TIMEOUT,
         
     | 
| 
      
 18 
     | 
    
         
            +
                ruby: {}
         
     | 
| 
      
 19 
     | 
    
         
            +
              )
         
     | 
| 
      
 20 
     | 
    
         
            +
                new(input, io: io, timeout: timeout, ruby: ruby).render(context)
         
     | 
| 
      
 21 
     | 
    
         
            +
              end
         
     | 
| 
      
 22 
     | 
    
         
            +
             
     | 
| 
      
 23 
     | 
    
         
            +
              def render(context = "")
         
     | 
| 
      
 24 
     | 
    
         
            +
                Timeout.timeout(timeout) do
         
     | 
| 
      
 25 
     | 
    
         
            +
                  if context != ""
         
     | 
| 
      
 26 
     | 
    
         
            +
                    context = ::Code.evaluate(context, timeout: timeout, io: io, ruby: ruby)
         
     | 
| 
      
 27 
     | 
    
         
            +
                  else
         
     | 
| 
      
 28 
     | 
    
         
            +
                    context = ::Code::Object::Dictionnary.new
         
     | 
| 
      
 29 
     | 
    
         
            +
                  end
         
     | 
| 
      
 30 
     | 
    
         
            +
             
     | 
| 
      
 31 
     | 
    
         
            +
                  if !context.is_a?(::Code::Object::Dictionnary)
         
     | 
| 
      
 32 
     | 
    
         
            +
                    raise ::Code::Template::IncompatibleContext.new(
         
     | 
| 
      
 33 
     | 
    
         
            +
                            "context must be a dictionnary"
         
     | 
| 
      
 34 
     | 
    
         
            +
                          )
         
     | 
| 
      
 35 
     | 
    
         
            +
                  end
         
     | 
| 
      
 36 
     | 
    
         
            +
             
     | 
| 
      
 37 
     | 
    
         
            +
                  context = context.merge(ruby)
         
     | 
| 
      
 38 
     | 
    
         
            +
             
     | 
| 
      
 39 
     | 
    
         
            +
                  ::Template::Node::Template.new(parsed).evaluate(context: context, io: io)
         
     | 
| 
      
 40 
     | 
    
         
            +
             
     | 
| 
      
 41 
     | 
    
         
            +
                  io.is_a?(StringIO) ? io.string : nil
         
     | 
| 
      
 42 
     | 
    
         
            +
                end
         
     | 
| 
      
 43 
     | 
    
         
            +
              end
         
     | 
| 
      
 44 
     | 
    
         
            +
             
     | 
| 
      
 45 
     | 
    
         
            +
              private
         
     | 
| 
      
 46 
     | 
    
         
            +
             
     | 
| 
      
 47 
     | 
    
         
            +
              attr_reader :parsed, :io, :timeout, :ruby
         
     | 
| 
      
 48 
     | 
    
         
            +
            end
         
     | 
| 
      
 49 
     | 
    
         
            +
             
     | 
| 
      
 50 
     | 
    
         
            +
            require_relative "template/version"
         
     | 
| 
         @@ -0,0 +1,13 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            require "spec_helper"
         
     | 
| 
      
 2 
     | 
    
         
            +
             
     | 
| 
      
 3 
     | 
    
         
            +
            RSpec.describe "function" do
         
     | 
| 
      
 4 
     | 
    
         
            +
              let(:timeout) { 0 }
         
     | 
| 
      
 5 
     | 
    
         
            +
              subject { Code.evaluate(input, timeout: timeout).to_s }
         
     | 
| 
      
 6 
     | 
    
         
            +
             
     | 
| 
      
 7 
     | 
    
         
            +
              [["1 + 2", "3"], ["2 - 1", "1"], ["a = 2 - 1 a", "1"]].each do |input, output|
         
     | 
| 
      
 8 
     | 
    
         
            +
                context input do
         
     | 
| 
      
 9 
     | 
    
         
            +
                  let(:input) { input }
         
     | 
| 
      
 10 
     | 
    
         
            +
                  it { expect(subject).to eq(output) }
         
     | 
| 
      
 11 
     | 
    
         
            +
                end
         
     | 
| 
      
 12 
     | 
    
         
            +
              end
         
     | 
| 
      
 13 
     | 
    
         
            +
            end
         
     | 
| 
         @@ -0,0 +1,13 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            require "spec_helper"
         
     | 
| 
      
 2 
     | 
    
         
            +
             
     | 
| 
      
 3 
     | 
    
         
            +
            RSpec.describe "and operator" do
         
     | 
| 
      
 4 
     | 
    
         
            +
              let(:timeout) { 0 }
         
     | 
| 
      
 5 
     | 
    
         
            +
              subject { Code.evaluate(input, timeout: timeout).to_s }
         
     | 
| 
      
 6 
     | 
    
         
            +
             
     | 
| 
      
 7 
     | 
    
         
            +
              [["true && false", "false"], ["true && true", "true"]].each do |input, output|
         
     | 
| 
      
 8 
     | 
    
         
            +
                context input do
         
     | 
| 
      
 9 
     | 
    
         
            +
                  let(:input) { input }
         
     | 
| 
      
 10 
     | 
    
         
            +
                  it { expect(subject).to eq(output) }
         
     | 
| 
      
 11 
     | 
    
         
            +
                end
         
     | 
| 
      
 12 
     | 
    
         
            +
              end
         
     | 
| 
      
 13 
     | 
    
         
            +
            end
         
     | 
| 
         @@ -0,0 +1,13 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            require "spec_helper"
         
     | 
| 
      
 2 
     | 
    
         
            +
             
     | 
| 
      
 3 
     | 
    
         
            +
            RSpec.describe "bitwise and" do
         
     | 
| 
      
 4 
     | 
    
         
            +
              let(:timeout) { 0 }
         
     | 
| 
      
 5 
     | 
    
         
            +
              subject { Code.evaluate(input, timeout: timeout).to_s }
         
     | 
| 
      
 6 
     | 
    
         
            +
             
     | 
| 
      
 7 
     | 
    
         
            +
              [["1 & 1", "1"]].each do |input, output|
         
     | 
| 
      
 8 
     | 
    
         
            +
                context input do
         
     | 
| 
      
 9 
     | 
    
         
            +
                  let(:input) { input }
         
     | 
| 
      
 10 
     | 
    
         
            +
                  it { expect(subject).to eq(output) }
         
     | 
| 
      
 11 
     | 
    
         
            +
                end
         
     | 
| 
      
 12 
     | 
    
         
            +
              end
         
     | 
| 
      
 13 
     | 
    
         
            +
            end
         
     | 
| 
         @@ -0,0 +1,13 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            require "spec_helper"
         
     | 
| 
      
 2 
     | 
    
         
            +
             
     | 
| 
      
 3 
     | 
    
         
            +
            RSpec.describe "bitwise or" do
         
     | 
| 
      
 4 
     | 
    
         
            +
              let(:timeout) { 0 }
         
     | 
| 
      
 5 
     | 
    
         
            +
              subject { Code.evaluate(input, timeout: timeout).to_s }
         
     | 
| 
      
 6 
     | 
    
         
            +
             
     | 
| 
      
 7 
     | 
    
         
            +
              [["1 | 2", "3"], ["1 ^ 2", "3"]].each do |input, output|
         
     | 
| 
      
 8 
     | 
    
         
            +
                context input do
         
     | 
| 
      
 9 
     | 
    
         
            +
                  let(:input) { input }
         
     | 
| 
      
 10 
     | 
    
         
            +
                  it { expect(subject).to eq(output) }
         
     | 
| 
      
 11 
     | 
    
         
            +
                end
         
     | 
| 
      
 12 
     | 
    
         
            +
              end
         
     | 
| 
      
 13 
     | 
    
         
            +
            end
         
     | 
| 
         @@ -0,0 +1,13 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            require "spec_helper"
         
     | 
| 
      
 2 
     | 
    
         
            +
             
     | 
| 
      
 3 
     | 
    
         
            +
            RSpec.describe "boolean" do
         
     | 
| 
      
 4 
     | 
    
         
            +
              let(:timeout) { 0 }
         
     | 
| 
      
 5 
     | 
    
         
            +
              subject { Code.evaluate(input, timeout: timeout).to_s }
         
     | 
| 
      
 6 
     | 
    
         
            +
             
     | 
| 
      
 7 
     | 
    
         
            +
              [%w[true true], %w[false false]].each do |input, output|
         
     | 
| 
      
 8 
     | 
    
         
            +
                context input do
         
     | 
| 
      
 9 
     | 
    
         
            +
                  let(:input) { input }
         
     | 
| 
      
 10 
     | 
    
         
            +
                  it { expect(subject).to eq(output) }
         
     | 
| 
      
 11 
     | 
    
         
            +
                end
         
     | 
| 
      
 12 
     | 
    
         
            +
              end
         
     | 
| 
      
 13 
     | 
    
         
            +
            end
         
     | 
| 
         @@ -0,0 +1,21 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            require "spec_helper"
         
     | 
| 
      
 2 
     | 
    
         
            +
             
     | 
| 
      
 3 
     | 
    
         
            +
            RSpec.describe "call" do
         
     | 
| 
      
 4 
     | 
    
         
            +
              let(:timeout) { 0 }
         
     | 
| 
      
 5 
     | 
    
         
            +
             
     | 
| 
      
 6 
     | 
    
         
            +
              context "inspecting the io" do
         
     | 
| 
      
 7 
     | 
    
         
            +
                let(:io) { StringIO.new }
         
     | 
| 
      
 8 
     | 
    
         
            +
             
     | 
| 
      
 9 
     | 
    
         
            +
                subject do
         
     | 
| 
      
 10 
     | 
    
         
            +
                  Code.evaluate(input, io: io, timeout: timeout)
         
     | 
| 
      
 11 
     | 
    
         
            +
                  io.string
         
     | 
| 
      
 12 
     | 
    
         
            +
                end
         
     | 
| 
      
 13 
     | 
    
         
            +
             
     | 
| 
      
 14 
     | 
    
         
            +
                [["puts(true)", "true\n"], %w[print(false) false]].each do |input, output|
         
     | 
| 
      
 15 
     | 
    
         
            +
                  context input do
         
     | 
| 
      
 16 
     | 
    
         
            +
                    let(:input) { input }
         
     | 
| 
      
 17 
     | 
    
         
            +
                    it { expect(subject).to eq(output) }
         
     | 
| 
      
 18 
     | 
    
         
            +
                  end
         
     | 
| 
      
 19 
     | 
    
         
            +
                end
         
     | 
| 
      
 20 
     | 
    
         
            +
              end
         
     | 
| 
      
 21 
     | 
    
         
            +
            end
         
     | 
| 
         @@ -0,0 +1,16 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            require "spec_helper"
         
     | 
| 
      
 2 
     | 
    
         
            +
             
     | 
| 
      
 3 
     | 
    
         
            +
            RSpec.describe "chained call" do
         
     | 
| 
      
 4 
     | 
    
         
            +
              let(:timeout) { 0 }
         
     | 
| 
      
 5 
     | 
    
         
            +
              subject { Code.evaluate(input, timeout: timeout).to_s }
         
     | 
| 
      
 6 
     | 
    
         
            +
             
     | 
| 
      
 7 
     | 
    
         
            +
              [
         
     | 
| 
      
 8 
     | 
    
         
            +
                ["[1, 2, 3].select { |n| n.even? }", "[2]"],
         
     | 
| 
      
 9 
     | 
    
         
            +
                ["[1, 2, 3].select { |n| n.even? }.select { |n| n.odd? }", "[]"]
         
     | 
| 
      
 10 
     | 
    
         
            +
              ].each do |input, output|
         
     | 
| 
      
 11 
     | 
    
         
            +
                context input do
         
     | 
| 
      
 12 
     | 
    
         
            +
                  let(:input) { input }
         
     | 
| 
      
 13 
     | 
    
         
            +
                  it { expect(subject).to eq(output) }
         
     | 
| 
      
 14 
     | 
    
         
            +
                end
         
     | 
| 
      
 15 
     | 
    
         
            +
              end
         
     | 
| 
      
 16 
     | 
    
         
            +
            end
         
     | 
| 
         @@ -0,0 +1,17 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            require "spec_helper"
         
     | 
| 
      
 2 
     | 
    
         
            +
             
     | 
| 
      
 3 
     | 
    
         
            +
            RSpec.describe "dictionnary" do
         
     | 
| 
      
 4 
     | 
    
         
            +
              let(:timeout) { 0 }
         
     | 
| 
      
 5 
     | 
    
         
            +
              subject { Code.evaluate(input, timeout: timeout).to_s }
         
     | 
| 
      
 6 
     | 
    
         
            +
             
     | 
| 
      
 7 
     | 
    
         
            +
              [
         
     | 
| 
      
 8 
     | 
    
         
            +
                %w[{} {}],
         
     | 
| 
      
 9 
     | 
    
         
            +
                ["{ a: 1, b: 2, c: 3 }", '{"a" => 1, "b" => 2, "c" => 3}'],
         
     | 
| 
      
 10 
     | 
    
         
            +
                ['{ "first_name": "Dorian" }', '{"first_name" => "Dorian"}']
         
     | 
| 
      
 11 
     | 
    
         
            +
              ].each do |input, output|
         
     | 
| 
      
 12 
     | 
    
         
            +
                context input do
         
     | 
| 
      
 13 
     | 
    
         
            +
                  let(:input) { input }
         
     | 
| 
      
 14 
     | 
    
         
            +
                  it { expect(subject).to eq(output) }
         
     | 
| 
      
 15 
     | 
    
         
            +
                end
         
     | 
| 
      
 16 
     | 
    
         
            +
              end
         
     | 
| 
      
 17 
     | 
    
         
            +
            end
         
     | 
| 
         @@ -0,0 +1,26 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            require "spec_helper"
         
     | 
| 
      
 2 
     | 
    
         
            +
             
     | 
| 
      
 3 
     | 
    
         
            +
            RSpec.describe "function" do
         
     | 
| 
      
 4 
     | 
    
         
            +
              let(:timeout) { 0 }
         
     | 
| 
      
 5 
     | 
    
         
            +
              subject { Code.evaluate(input, timeout: timeout).to_s }
         
     | 
| 
      
 6 
     | 
    
         
            +
             
     | 
| 
      
 7 
     | 
    
         
            +
              [
         
     | 
| 
      
 8 
     | 
    
         
            +
                ["a = 1 a", "1"],
         
     | 
| 
      
 9 
     | 
    
         
            +
                ["a = 1 a += 1 a", "2"],
         
     | 
| 
      
 10 
     | 
    
         
            +
                ["a = 1 a -= 1 a", "0"],
         
     | 
| 
      
 11 
     | 
    
         
            +
                ["a = 1 a *= 2 a", "2"],
         
     | 
| 
      
 12 
     | 
    
         
            +
                ["a = 1 a /= 2 a", "0.5"],
         
     | 
| 
      
 13 
     | 
    
         
            +
                ["a = 10 a %= 2 a", "0"],
         
     | 
| 
      
 14 
     | 
    
         
            +
                ["a = 1 a >>= 1 a", "0"],
         
     | 
| 
      
 15 
     | 
    
         
            +
                ["a = 1 a <<= 1 a", "2"],
         
     | 
| 
      
 16 
     | 
    
         
            +
                ["a = 1 a |= 2 a", "3"],
         
     | 
| 
      
 17 
     | 
    
         
            +
                ["a = 1 a ^= 2 a", "3"],
         
     | 
| 
      
 18 
     | 
    
         
            +
                ["a = false a ||= true a", "true"],
         
     | 
| 
      
 19 
     | 
    
         
            +
                ["a = false a &&= true a", "false"]
         
     | 
| 
      
 20 
     | 
    
         
            +
              ].each do |input, output|
         
     | 
| 
      
 21 
     | 
    
         
            +
                context input do
         
     | 
| 
      
 22 
     | 
    
         
            +
                  let(:input) { input }
         
     | 
| 
      
 23 
     | 
    
         
            +
                  it { expect(subject).to eq(output) }
         
     | 
| 
      
 24 
     | 
    
         
            +
                end
         
     | 
| 
      
 25 
     | 
    
         
            +
              end
         
     | 
| 
      
 26 
     | 
    
         
            +
            end
         
     | 
| 
         @@ -0,0 +1,13 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            require "spec_helper"
         
     | 
| 
      
 2 
     | 
    
         
            +
             
     | 
| 
      
 3 
     | 
    
         
            +
            RSpec.describe "while" do
         
     | 
| 
      
 4 
     | 
    
         
            +
              let(:timeout) { 0 }
         
     | 
| 
      
 5 
     | 
    
         
            +
              subject { Code.evaluate(input, timeout: timeout).to_s }
         
     | 
| 
      
 6 
     | 
    
         
            +
             
     | 
| 
      
 7 
     | 
    
         
            +
              [["1 == 1", "true"], ["1 == 1 and 2 == 2", "true"]].each do |input, output|
         
     | 
| 
      
 8 
     | 
    
         
            +
                context input do
         
     | 
| 
      
 9 
     | 
    
         
            +
                  let(:input) { input }
         
     | 
| 
      
 10 
     | 
    
         
            +
                  it { expect(subject).to eq(output) }
         
     | 
| 
      
 11 
     | 
    
         
            +
                end
         
     | 
| 
      
 12 
     | 
    
         
            +
              end
         
     | 
| 
      
 13 
     | 
    
         
            +
            end
         
     | 
| 
         @@ -0,0 +1,18 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            require "spec_helper"
         
     | 
| 
      
 2 
     | 
    
         
            +
             
     | 
| 
      
 3 
     | 
    
         
            +
            RSpec.describe "function" do
         
     | 
| 
      
 4 
     | 
    
         
            +
              let(:timeout) { 0 }
         
     | 
| 
      
 5 
     | 
    
         
            +
              subject { Code.evaluate(input, timeout: timeout).to_s }
         
     | 
| 
      
 6 
     | 
    
         
            +
             
     | 
| 
      
 7 
     | 
    
         
            +
              [
         
     | 
| 
      
 8 
     | 
    
         
            +
                ["even? = (i) => { i.even? } even?(2)", "true"],
         
     | 
| 
      
 9 
     | 
    
         
            +
                ["even? = (i:) => { i.even? } even?(i: 2)", "true"],
         
     | 
| 
      
 10 
     | 
    
         
            +
                ["add = (a, b) => { a + b } add(1, 2)", "3"],
         
     | 
| 
      
 11 
     | 
    
         
            +
                ["minus = (a:, b:) => { a - b } minus(b: 1, a: 2)", "1"]
         
     | 
| 
      
 12 
     | 
    
         
            +
              ].each do |input, output|
         
     | 
| 
      
 13 
     | 
    
         
            +
                context input do
         
     | 
| 
      
 14 
     | 
    
         
            +
                  let(:input) { input }
         
     | 
| 
      
 15 
     | 
    
         
            +
                  it { expect(subject).to eq(output) }
         
     | 
| 
      
 16 
     | 
    
         
            +
                end
         
     | 
| 
      
 17 
     | 
    
         
            +
              end
         
     | 
| 
      
 18 
     | 
    
         
            +
            end
         
     | 
| 
         @@ -0,0 +1,18 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            require "spec_helper"
         
     | 
| 
      
 2 
     | 
    
         
            +
             
     | 
| 
      
 3 
     | 
    
         
            +
            RSpec.describe "greater" do
         
     | 
| 
      
 4 
     | 
    
         
            +
              let(:timeout) { 0 }
         
     | 
| 
      
 5 
     | 
    
         
            +
              subject { Code.evaluate(input, timeout: timeout).to_s }
         
     | 
| 
      
 6 
     | 
    
         
            +
             
     | 
| 
      
 7 
     | 
    
         
            +
              [
         
     | 
| 
      
 8 
     | 
    
         
            +
                ["1 > 2", "false"],
         
     | 
| 
      
 9 
     | 
    
         
            +
                ["1 < 2", "true"],
         
     | 
| 
      
 10 
     | 
    
         
            +
                ["1 <= 1", "true"],
         
     | 
| 
      
 11 
     | 
    
         
            +
                ["1 >= 1", "true"]
         
     | 
| 
      
 12 
     | 
    
         
            +
              ].each do |input, output|
         
     | 
| 
      
 13 
     | 
    
         
            +
                context input do
         
     | 
| 
      
 14 
     | 
    
         
            +
                  let(:input) { input }
         
     | 
| 
      
 15 
     | 
    
         
            +
                  it { expect(subject).to eq(output) }
         
     | 
| 
      
 16 
     | 
    
         
            +
                end
         
     | 
| 
      
 17 
     | 
    
         
            +
              end
         
     | 
| 
      
 18 
     | 
    
         
            +
            end
         
     | 
| 
         @@ -0,0 +1,20 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            require "spec_helper"
         
     | 
| 
      
 2 
     | 
    
         
            +
             
     | 
| 
      
 3 
     | 
    
         
            +
            RSpec.describe "if modifier" do
         
     | 
| 
      
 4 
     | 
    
         
            +
              let(:timeout) { 0 }
         
     | 
| 
      
 5 
     | 
    
         
            +
              subject { Code.evaluate(input, timeout: timeout).to_s }
         
     | 
| 
      
 6 
     | 
    
         
            +
             
     | 
| 
      
 7 
     | 
    
         
            +
              [
         
     | 
| 
      
 8 
     | 
    
         
            +
                ["1 if true", "1"],
         
     | 
| 
      
 9 
     | 
    
         
            +
                ["1 if false", ""],
         
     | 
| 
      
 10 
     | 
    
         
            +
                ["1 unless true", ""],
         
     | 
| 
      
 11 
     | 
    
         
            +
                ["1 unless false", "1"],
         
     | 
| 
      
 12 
     | 
    
         
            +
                ["a = 0 a += 1 while a < 10 a", "10"],
         
     | 
| 
      
 13 
     | 
    
         
            +
                ["a = 0 a += 1 until a > 10 a", "11"]
         
     | 
| 
      
 14 
     | 
    
         
            +
              ].each do |input, output|
         
     | 
| 
      
 15 
     | 
    
         
            +
                context input do
         
     | 
| 
      
 16 
     | 
    
         
            +
                  let(:input) { input }
         
     | 
| 
      
 17 
     | 
    
         
            +
                  it { expect(subject).to eq(output) }
         
     | 
| 
      
 18 
     | 
    
         
            +
                end
         
     | 
| 
      
 19 
     | 
    
         
            +
              end
         
     | 
| 
      
 20 
     | 
    
         
            +
            end
         
     | 
| 
         @@ -0,0 +1,25 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            require "spec_helper"
         
     | 
| 
      
 2 
     | 
    
         
            +
             
     | 
| 
      
 3 
     | 
    
         
            +
            RSpec.describe "if" do
         
     | 
| 
      
 4 
     | 
    
         
            +
              let(:timeout) { 0 }
         
     | 
| 
      
 5 
     | 
    
         
            +
              subject { Code.evaluate(input, timeout: timeout).to_s }
         
     | 
| 
      
 6 
     | 
    
         
            +
             
     | 
| 
      
 7 
     | 
    
         
            +
              [
         
     | 
| 
      
 8 
     | 
    
         
            +
                ["if true 1", "1"],
         
     | 
| 
      
 9 
     | 
    
         
            +
                ["unless false 1", "1"],
         
     | 
| 
      
 10 
     | 
    
         
            +
                ["if false 1", ""],
         
     | 
| 
      
 11 
     | 
    
         
            +
                ["unless true 1", ""],
         
     | 
| 
      
 12 
     | 
    
         
            +
                ["if false 1 else 2", "2"],
         
     | 
| 
      
 13 
     | 
    
         
            +
                ["if false 1 elsif true 2", "2"],
         
     | 
| 
      
 14 
     | 
    
         
            +
                ["if false 1 elsif false 2", ""],
         
     | 
| 
      
 15 
     | 
    
         
            +
                ["if false 1 else if true 2", "2"],
         
     | 
| 
      
 16 
     | 
    
         
            +
                ["if false 1 else if false 2", ""],
         
     | 
| 
      
 17 
     | 
    
         
            +
                ["if false 1 else unless false 2", "2"],
         
     | 
| 
      
 18 
     | 
    
         
            +
                ["if false 1 else unless true 2", ""]
         
     | 
| 
      
 19 
     | 
    
         
            +
              ].each do |input, output|
         
     | 
| 
      
 20 
     | 
    
         
            +
                context input do
         
     | 
| 
      
 21 
     | 
    
         
            +
                  let(:input) { input }
         
     | 
| 
      
 22 
     | 
    
         
            +
                  it { expect(subject).to eq(output) }
         
     | 
| 
      
 23 
     | 
    
         
            +
                end
         
     | 
| 
      
 24 
     | 
    
         
            +
              end
         
     | 
| 
      
 25 
     | 
    
         
            +
            end
         
     | 
| 
         @@ -0,0 +1,17 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            require "spec_helper"
         
     | 
| 
      
 2 
     | 
    
         
            +
             
     | 
| 
      
 3 
     | 
    
         
            +
            RSpec.describe "list" do
         
     | 
| 
      
 4 
     | 
    
         
            +
              let(:timeout) { 0 }
         
     | 
| 
      
 5 
     | 
    
         
            +
              subject { Code.evaluate(input, timeout: timeout).to_s }
         
     | 
| 
      
 6 
     | 
    
         
            +
             
     | 
| 
      
 7 
     | 
    
         
            +
              [
         
     | 
| 
      
 8 
     | 
    
         
            +
                ["[]", "[]"],
         
     | 
| 
      
 9 
     | 
    
         
            +
                ["[1, 2, 3]", "[1, 2, 3]"],
         
     | 
| 
      
 10 
     | 
    
         
            +
                ["[[true]]", "[[true]]"]
         
     | 
| 
      
 11 
     | 
    
         
            +
              ].each do |input, output|
         
     | 
| 
      
 12 
     | 
    
         
            +
                context input do
         
     | 
| 
      
 13 
     | 
    
         
            +
                  let(:input) { input }
         
     | 
| 
      
 14 
     | 
    
         
            +
                  it { expect(subject).to eq(output) }
         
     | 
| 
      
 15 
     | 
    
         
            +
                end
         
     | 
| 
      
 16 
     | 
    
         
            +
              end
         
     | 
| 
      
 17 
     | 
    
         
            +
            end
         
     | 
| 
         @@ -0,0 +1,18 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            require "spec_helper"
         
     | 
| 
      
 2 
     | 
    
         
            +
             
     | 
| 
      
 3 
     | 
    
         
            +
            RSpec.describe "multiplication" do
         
     | 
| 
      
 4 
     | 
    
         
            +
              let(:timeout) { 0 }
         
     | 
| 
      
 5 
     | 
    
         
            +
              subject { Code.evaluate(input, timeout: timeout).to_s }
         
     | 
| 
      
 6 
     | 
    
         
            +
             
     | 
| 
      
 7 
     | 
    
         
            +
              [
         
     | 
| 
      
 8 
     | 
    
         
            +
                ["2 * 3", "6"],
         
     | 
| 
      
 9 
     | 
    
         
            +
                ["2 * 3 + 2", "8"],
         
     | 
| 
      
 10 
     | 
    
         
            +
                ["2 / 4", "0.5"],
         
     | 
| 
      
 11 
     | 
    
         
            +
                ["4 % 3", "1"]
         
     | 
| 
      
 12 
     | 
    
         
            +
              ].each do |input, output|
         
     | 
| 
      
 13 
     | 
    
         
            +
                context input do
         
     | 
| 
      
 14 
     | 
    
         
            +
                  let(:input) { input }
         
     | 
| 
      
 15 
     | 
    
         
            +
                  it { expect(subject).to eq(output) }
         
     | 
| 
      
 16 
     | 
    
         
            +
                end
         
     | 
| 
      
 17 
     | 
    
         
            +
              end
         
     | 
| 
      
 18 
     | 
    
         
            +
            end
         
     | 
| 
         @@ -0,0 +1,20 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            require "spec_helper"
         
     | 
| 
      
 2 
     | 
    
         
            +
             
     | 
| 
      
 3 
     | 
    
         
            +
            RSpec.describe "function" do
         
     | 
| 
      
 4 
     | 
    
         
            +
              let(:timeout) { 0 }
         
     | 
| 
      
 5 
     | 
    
         
            +
              subject { Code.evaluate(input, timeout: timeout).to_s }
         
     | 
| 
      
 6 
     | 
    
         
            +
             
     | 
| 
      
 7 
     | 
    
         
            +
              [
         
     | 
| 
      
 8 
     | 
    
         
            +
                %w[!false true],
         
     | 
| 
      
 9 
     | 
    
         
            +
                %w[!!true true],
         
     | 
| 
      
 10 
     | 
    
         
            +
                %w[!!1 true],
         
     | 
| 
      
 11 
     | 
    
         
            +
                %w[+1 1],
         
     | 
| 
      
 12 
     | 
    
         
            +
                %w[+1.0 1.0],
         
     | 
| 
      
 13 
     | 
    
         
            +
                %w[+true true]
         
     | 
| 
      
 14 
     | 
    
         
            +
              ].each do |input, output|
         
     | 
| 
      
 15 
     | 
    
         
            +
                context input do
         
     | 
| 
      
 16 
     | 
    
         
            +
                  let(:input) { input }
         
     | 
| 
      
 17 
     | 
    
         
            +
                  it { expect(subject).to eq(output) }
         
     | 
| 
      
 18 
     | 
    
         
            +
                end
         
     | 
| 
      
 19 
     | 
    
         
            +
              end
         
     | 
| 
      
 20 
     | 
    
         
            +
            end
         
     | 
| 
         @@ -0,0 +1,13 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            require "spec_helper"
         
     | 
| 
      
 2 
     | 
    
         
            +
             
     | 
| 
      
 3 
     | 
    
         
            +
            RSpec.describe "not keyword" do
         
     | 
| 
      
 4 
     | 
    
         
            +
              let(:timeout) { 0 }
         
     | 
| 
      
 5 
     | 
    
         
            +
              subject { Code.evaluate(input, timeout: timeout).to_s }
         
     | 
| 
      
 6 
     | 
    
         
            +
             
     | 
| 
      
 7 
     | 
    
         
            +
              [["not true", "false"], ["not not false", "false"]].each do |input, output|
         
     | 
| 
      
 8 
     | 
    
         
            +
                context input do
         
     | 
| 
      
 9 
     | 
    
         
            +
                  let(:input) { input }
         
     | 
| 
      
 10 
     | 
    
         
            +
                  it { expect(subject).to eq(output) }
         
     | 
| 
      
 11 
     | 
    
         
            +
                end
         
     | 
| 
      
 12 
     | 
    
         
            +
              end
         
     | 
| 
      
 13 
     | 
    
         
            +
            end
         
     | 
| 
         @@ -0,0 +1,17 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            require "spec_helper"
         
     | 
| 
      
 2 
     | 
    
         
            +
             
     | 
| 
      
 3 
     | 
    
         
            +
            RSpec.describe "nothing" do
         
     | 
| 
      
 4 
     | 
    
         
            +
              subject { Code.evaluate(input).to_s }
         
     | 
| 
      
 5 
     | 
    
         
            +
             
     | 
| 
      
 6 
     | 
    
         
            +
              [
         
     | 
| 
      
 7 
     | 
    
         
            +
                ["nothing", ""],
         
     | 
| 
      
 8 
     | 
    
         
            +
                ["null", ""],
         
     | 
| 
      
 9 
     | 
    
         
            +
                ["nil", ""],
         
     | 
| 
      
 10 
     | 
    
         
            +
                ["nothing null", ""]
         
     | 
| 
      
 11 
     | 
    
         
            +
              ].each do |input, output|
         
     | 
| 
      
 12 
     | 
    
         
            +
                context input do
         
     | 
| 
      
 13 
     | 
    
         
            +
                  let(:input) { input }
         
     | 
| 
      
 14 
     | 
    
         
            +
                  it { expect(subject).to eq(output) }
         
     | 
| 
      
 15 
     | 
    
         
            +
                end
         
     | 
| 
      
 16 
     | 
    
         
            +
              end
         
     | 
| 
      
 17 
     | 
    
         
            +
            end
         
     | 
| 
         @@ -0,0 +1,22 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            require "spec_helper"
         
     | 
| 
      
 2 
     | 
    
         
            +
             
     | 
| 
      
 3 
     | 
    
         
            +
            RSpec.describe "number" do
         
     | 
| 
      
 4 
     | 
    
         
            +
              let(:timeout) { 0 }
         
     | 
| 
      
 5 
     | 
    
         
            +
              subject { Code.evaluate(input, timeout: timeout).to_s }
         
     | 
| 
      
 6 
     | 
    
         
            +
             
     | 
| 
      
 7 
     | 
    
         
            +
              [
         
     | 
| 
      
 8 
     | 
    
         
            +
                %w[0 0],
         
     | 
| 
      
 9 
     | 
    
         
            +
                %w[1.1 1.1],
         
     | 
| 
      
 10 
     | 
    
         
            +
                %w[0x10 16],
         
     | 
| 
      
 11 
     | 
    
         
            +
                %w[0o10 8],
         
     | 
| 
      
 12 
     | 
    
         
            +
                %w[0b10 2],
         
     | 
| 
      
 13 
     | 
    
         
            +
                %w[1e1 10],
         
     | 
| 
      
 14 
     | 
    
         
            +
                %w[1.0e1 10.0],
         
     | 
| 
      
 15 
     | 
    
         
            +
                %w[10e1.0 100.0]
         
     | 
| 
      
 16 
     | 
    
         
            +
              ].each do |input, output|
         
     | 
| 
      
 17 
     | 
    
         
            +
                context input do
         
     | 
| 
      
 18 
     | 
    
         
            +
                  let(:input) { input }
         
     | 
| 
      
 19 
     | 
    
         
            +
                  it { expect(subject).to eq(output) }
         
     | 
| 
      
 20 
     | 
    
         
            +
                end
         
     | 
| 
      
 21 
     | 
    
         
            +
              end
         
     | 
| 
      
 22 
     | 
    
         
            +
            end
         
     |