code-ruby 0.3.1 → 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 +4 -4
 - data/.gitignore +1 -1
 - data/CHANGELOG.md +5 -0
 - data/Gemfile +4 -0
 - data/Gemfile.lock +28 -55
 - data/TODO +17 -0
 - data/bin/code +56 -31
 - data/bin/format +3 -0
 - data/bin/template +62 -20
 - data/bin/test +17 -0
 - data/code-ruby.gemspec +1 -6
 - data/docs/class.code +9 -0
 - data/docs/euler/1.template +1 -5
 - data/docs/euler/5.template +0 -1
 - data/docs/meetup.code +12 -0
 - data/docs/precedence.template +6 -39
 - 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 +3 -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 +7 -7
 - data/lib/code/node/call.rb +32 -37
 - data/lib/code/node/call_argument.rb +11 -27
 - data/lib/code/node/chained_call.rb +10 -25
 - data/lib/code/node/code.rb +4 -6
 - data/lib/code/node/decimal.rb +26 -0
 - data/lib/code/node/dictionnary.rb +20 -9
 - data/lib/code/node/equal.rb +18 -20
 - data/lib/code/node/function.rb +10 -7
 - data/lib/code/node/function_parameter.rb +31 -0
 - data/lib/code/node/if.rb +36 -32
 - data/lib/code/node/if_modifier.rb +35 -36
 - data/lib/code/node/list.rb +6 -9
 - data/lib/code/node/negation.rb +5 -23
 - data/lib/code/node/not.rb +15 -0
 - data/lib/code/node/nothing.rb +1 -1
 - data/lib/code/node/number.rb +14 -12
 - data/lib/code/node/operation.rb +21 -16
 - data/lib/code/node/power.rb +10 -6
 - data/lib/code/node/rescue.rb +4 -3
 - data/lib/code/node/splat.rb +15 -0
 - data/lib/code/node/statement.rb +47 -69
 - data/lib/code/node/string.rb +41 -10
 - data/lib/code/node/ternary.rb +7 -9
 - data/lib/code/node/unary_minus.rb +5 -12
 - data/lib/code/node/while.rb +17 -24
 - data/lib/code/node.rb +7 -8
 - data/lib/code/object/argument.rb +3 -12
 - data/lib/code/object/decimal.rb +114 -27
 - data/lib/code/object/dictionnary.rb +29 -12
 - data/lib/code/object/function.rb +23 -24
 - data/lib/code/object/global.rb +42 -0
 - data/lib/code/object/integer.rb +142 -35
 - data/lib/code/object/list.rb +74 -95
 - data/lib/code/object/range.rb +38 -50
 - data/lib/code/object/ruby_function.rb +31 -0
 - data/lib/code/object/string.rb +36 -16
 - data/lib/code/object.rb +114 -54
 - data/lib/code/parser/addition.rb +12 -20
 - data/lib/code/parser/and_operator.rb +9 -20
 - data/lib/code/parser/bitwise_and.rb +9 -20
 - data/lib/code/parser/bitwise_or.rb +12 -20
 - data/lib/code/parser/boolean.rb +10 -7
 - data/lib/code/parser/call.rb +92 -60
 - data/lib/code/parser/chained_call.rb +47 -0
 - data/lib/code/parser/class.rb +45 -0
 - data/lib/code/parser/code.rb +17 -10
 - data/lib/code/parser/dictionnary.rb +56 -30
 - data/lib/code/parser/equal.rb +87 -35
 - data/lib/code/parser/equality.rb +23 -24
 - data/lib/code/parser/equality_lower.rb +9 -0
 - data/lib/code/parser/function.rb +67 -40
 - data/lib/code/parser/greater.rb +25 -0
 - data/lib/code/parser/group.rb +13 -8
 - data/lib/code/parser/if.rb +51 -21
 - data/lib/code/parser/if_modifier.rb +43 -16
 - data/lib/code/parser/list.rb +32 -19
 - data/lib/code/parser/multiplication.rb +15 -20
 - data/lib/code/parser/name.rb +96 -84
 - data/lib/code/parser/negation.rb +20 -9
 - data/lib/code/parser/not_keyword.rb +14 -12
 - data/lib/code/parser/nothing.rb +13 -8
 - data/lib/code/parser/number.rb +124 -68
 - data/lib/code/parser/operation.rb +35 -0
 - data/lib/code/parser/or_keyword.rb +12 -20
 - data/lib/code/parser/or_operator.rb +9 -20
 - data/lib/code/parser/power.rb +32 -14
 - data/lib/code/parser/range.rb +9 -17
 - data/lib/code/parser/rescue.rb +29 -13
 - data/lib/code/parser/shift.rb +11 -21
 - data/lib/code/parser/splat.rb +31 -0
 - data/lib/code/parser/statement.rb +4 -3
 - data/lib/code/parser/string.rb +53 -62
 - data/lib/code/parser/ternary.rb +36 -15
 - data/lib/code/parser/unary_minus.rb +23 -5
 - data/lib/code/parser/while.rb +26 -15
 - data/lib/code/parser/whitespace.rb +49 -0
 - data/lib/code/parser.rb +15 -0
 - data/lib/code/ruby.rb +162 -0
 - data/lib/code-ruby.rb +2 -5
 - data/lib/code.rb +24 -7
 - 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 +1 -1
 - data/lib/template/node/part.rb +1 -1
 - data/lib/template/node/template.rb +1 -1
 - data/lib/template/node/text_part.rb +1 -1
 - data/lib/template/node.rb +1 -1
 - data/lib/template/parser/template.rb +26 -17
 - data/lib/template/parser.rb +15 -0
 - data/lib/template/version.rb +1 -1
 - data/lib/template-ruby.rb +2 -5
 - data/lib/template.rb +23 -13
 - 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 +5 -7
 - data/spec/code/parser/call_spec.rb +16 -56
 - data/spec/code/parser/chained_call.rb +17 -0
 - data/spec/code/parser/dictionnary_spec.rb +8 -9
 - data/spec/code/parser/function_spec.rb +5 -21
 - data/spec/code/parser/group_spec.rb +18 -0
 - data/spec/code/parser/list_spec.rb +9 -20
 - data/spec/code/parser/number_spec.rb +4 -109
 - data/spec/code/parser/string_spec.rb +9 -17
 - 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 +4 -1
 - data/template-ruby.gemspec +2 -7
 - metadata +113 -99
 - data/lib/code/node/base_10_decimal.rb +0 -32
 - data/lib/code/node/base_10_integer.rb +0 -32
 - data/lib/code/node/base_10_number.rb +0 -19
 - data/lib/code/node/base_16_number.rb +0 -19
 - data/lib/code/node/base_2_number.rb +0 -19
 - data/lib/code/node/base_8_number.rb +0 -19
 - data/lib/code/node/block.rb +0 -17
 - data/lib/code/node/defined.rb +0 -19
 - data/lib/code/node/dictionnary_key_value.rb +0 -23
 - data/lib/code/node/function_argument.rb +0 -45
 - data/lib/code/node/group.rb +0 -13
 - data/lib/code/node/keyword_call_argument.rb +0 -30
 - data/lib/code/node/keyword_function_argument.rb +0 -33
 - data/lib/code/node/name.rb +0 -55
 - data/lib/code/node/not_keyword.rb +0 -13
 - data/lib/code/node/or_keyword.rb +0 -34
 - data/lib/code/node/range.rb +0 -31
 - data/lib/code/node/regular_call_argument.rb +0 -34
 - data/lib/code/node/regular_function_argument.rb +0 -36
 - data/lib/code/node/string_characters.rb +0 -13
 - data/lib/code/node/string_component.rb +0 -23
 - data/lib/code/node/string_interpolation.rb +0 -13
 - data/lib/code/parser/defined.rb +0 -20
 - data/lib/code/parser/greater_than.rb +0 -33
 - data/spec/call_spec.rb +0 -22
 - data/spec/code/error/type_error_spec.rb +0 -63
 - data/spec/code/parser/name_spec.rb +0 -15
 - data/spec/code/parser/nothing_spec.rb +0 -19
 - data/spec/code_spec.rb +0 -120
 - data/spec/function_spec.rb +0 -26
 - data/spec/template/parser/template_spec.rb +0 -19
 - data/spec/template_spec.rb +0 -33
 
    
        data/lib/code/object.rb
    CHANGED
    
    | 
         @@ -5,38 +5,48 @@ class Code 
     | 
|
| 
       5 
5 
     | 
    
         
             
                def call(**args)
         
     | 
| 
       6 
6 
     | 
    
         
             
                  operator = args.fetch(:operator, nil)
         
     | 
| 
       7 
7 
     | 
    
         
             
                  arguments = args.fetch(:arguments, [])
         
     | 
| 
       8 
     | 
    
         
            -
                   
     | 
| 
       9 
     | 
    
         
            -
             
     | 
| 
      
 8 
     | 
    
         
            +
                  value = arguments.first&.value
         
     | 
| 
      
 9 
     | 
    
         
            +
             
     | 
| 
      
 10 
     | 
    
         
            +
                  if operator == "=="
         
     | 
| 
      
 11 
     | 
    
         
            +
                    sig(arguments) { ::Code::Object }
         
     | 
| 
      
 12 
     | 
    
         
            +
                    equal(value)
         
     | 
| 
      
 13 
     | 
    
         
            +
                  elsif operator == "==="
         
     | 
| 
      
 14 
     | 
    
         
            +
                    sig(arguments) { ::Code::Object }
         
     | 
| 
      
 15 
     | 
    
         
            +
                    strict_equal(value)
         
     | 
| 
      
 16 
     | 
    
         
            +
                  elsif operator == "!="
         
     | 
| 
      
 17 
     | 
    
         
            +
                    sig(arguments) { ::Code::Object }
         
     | 
| 
      
 18 
     | 
    
         
            +
                    different(value)
         
     | 
| 
       10 
19 
     | 
    
         
             
                  elsif operator == "<=>"
         
     | 
| 
       11 
     | 
    
         
            -
                     
     | 
| 
       12 
     | 
    
         
            -
             
     | 
| 
       13 
     | 
    
         
            -
             
     | 
| 
       14 
     | 
    
         
            -
             
     | 
| 
       15 
     | 
    
         
            -
                     
     | 
| 
      
 20 
     | 
    
         
            +
                    sig(arguments) { ::Code::Object }
         
     | 
| 
      
 21 
     | 
    
         
            +
                    compare(value)
         
     | 
| 
      
 22 
     | 
    
         
            +
                  elsif operator == "&&" || operator == "and"
         
     | 
| 
      
 23 
     | 
    
         
            +
                    sig(arguments) { ::Code::Object }
         
     | 
| 
      
 24 
     | 
    
         
            +
                    and_operator(value)
         
     | 
| 
      
 25 
     | 
    
         
            +
                  elsif operator == "||" || operator == "or"
         
     | 
| 
      
 26 
     | 
    
         
            +
                    sig(arguments) { ::Code::Object }
         
     | 
| 
      
 27 
     | 
    
         
            +
                    or_operator(value)
         
     | 
| 
      
 28 
     | 
    
         
            +
                  elsif operator == "!" || operator == "not"
         
     | 
| 
      
 29 
     | 
    
         
            +
                    sig(arguments)
         
     | 
| 
      
 30 
     | 
    
         
            +
                    exclamation_point
         
     | 
| 
      
 31 
     | 
    
         
            +
                  elsif operator == "+"
         
     | 
| 
      
 32 
     | 
    
         
            +
                    sig(arguments)
         
     | 
| 
      
 33 
     | 
    
         
            +
                    self
         
     | 
| 
      
 34 
     | 
    
         
            +
                  elsif operator == ".."
         
     | 
| 
      
 35 
     | 
    
         
            +
                    sig(arguments) { ::Code::Object }
         
     | 
| 
      
 36 
     | 
    
         
            +
                    inclusive_range(value)
         
     | 
| 
      
 37 
     | 
    
         
            +
                  elsif operator == "..."
         
     | 
| 
      
 38 
     | 
    
         
            +
                    sig(arguments) { ::Code::Object }
         
     | 
| 
      
 39 
     | 
    
         
            +
                    exclusive_range(value)
         
     | 
| 
       16 
40 
     | 
    
         
             
                  elsif operator == "to_string"
         
     | 
| 
       17 
     | 
    
         
            -
                     
     | 
| 
      
 41 
     | 
    
         
            +
                    sig(arguments)
         
     | 
| 
      
 42 
     | 
    
         
            +
                    to_string
         
     | 
| 
       18 
43 
     | 
    
         
             
                  else
         
     | 
| 
       19 
     | 
    
         
            -
                    raise 
     | 
| 
       20 
     | 
    
         
            -
             
     | 
| 
       21 
     | 
    
         
            -
             
     | 
| 
      
 44 
     | 
    
         
            +
                    raise(
         
     | 
| 
      
 45 
     | 
    
         
            +
                      Code::Error::Undefined.new("#{operator} not defined on #{inspect}")
         
     | 
| 
      
 46 
     | 
    
         
            +
                    )
         
     | 
| 
       22 
47 
     | 
    
         
             
                  end
         
     | 
| 
       23 
48 
     | 
    
         
             
                end
         
     | 
| 
       24 
49 
     | 
    
         | 
| 
       25 
     | 
    
         
            -
                def []=(key, value)
         
     | 
| 
       26 
     | 
    
         
            -
                  @attributes ||= {}
         
     | 
| 
       27 
     | 
    
         
            -
                  @attributes[key] = value
         
     | 
| 
       28 
     | 
    
         
            -
                end
         
     | 
| 
       29 
     | 
    
         
            -
             
     | 
| 
       30 
     | 
    
         
            -
                def [](key)
         
     | 
| 
       31 
     | 
    
         
            -
                  @attributes ||= {}
         
     | 
| 
       32 
     | 
    
         
            -
                  @attributes[key]
         
     | 
| 
       33 
     | 
    
         
            -
                end
         
     | 
| 
       34 
     | 
    
         
            -
             
     | 
| 
       35 
     | 
    
         
            -
                def key?(key)
         
     | 
| 
       36 
     | 
    
         
            -
                  @attributes ||= {}
         
     | 
| 
       37 
     | 
    
         
            -
                  @attributes.key?(key)
         
     | 
| 
       38 
     | 
    
         
            -
                end
         
     | 
| 
       39 
     | 
    
         
            -
             
     | 
| 
       40 
50 
     | 
    
         
             
                def truthy?
         
     | 
| 
       41 
51 
     | 
    
         
             
                  true
         
     | 
| 
       42 
52 
     | 
    
         
             
                end
         
     | 
| 
         @@ -66,22 +76,53 @@ class Code 
     | 
|
| 
       66 
76 
     | 
    
         
             
                  if respond_to?(:raw)
         
     | 
| 
       67 
77 
     | 
    
         
             
                    [self.class, raw].hash
         
     | 
| 
       68 
78 
     | 
    
         
             
                  else
         
     | 
| 
       69 
     | 
    
         
            -
                    raise NotImplementedError
         
     | 
| 
      
 79 
     | 
    
         
            +
                    raise NotImplementedError.new(self.class.name)
         
     | 
| 
       70 
80 
     | 
    
         
             
                  end
         
     | 
| 
       71 
81 
     | 
    
         
             
                end
         
     | 
| 
       72 
82 
     | 
    
         | 
| 
       73 
83 
     | 
    
         
             
                def to_s
         
     | 
| 
       74 
     | 
    
         
            -
                  raise NotImplementedError
         
     | 
| 
      
 84 
     | 
    
         
            +
                  raise NotImplementedError.new(self.class.name)
         
     | 
| 
       75 
85 
     | 
    
         
             
                end
         
     | 
| 
       76 
86 
     | 
    
         | 
| 
       77 
87 
     | 
    
         
             
                private
         
     | 
| 
       78 
88 
     | 
    
         | 
| 
       79 
     | 
    
         
            -
                def  
     | 
| 
      
 89 
     | 
    
         
            +
                def multi_fetch(hash, *keys)
         
     | 
| 
      
 90 
     | 
    
         
            +
                  keys.map { |key| [key, hash.fetch(key)] }.to_h
         
     | 
| 
      
 91 
     | 
    
         
            +
                end
         
     | 
| 
      
 92 
     | 
    
         
            +
             
     | 
| 
      
 93 
     | 
    
         
            +
                def deep_dup(object)
         
     | 
| 
      
 94 
     | 
    
         
            +
                  if object.is_a?(Array)
         
     | 
| 
      
 95 
     | 
    
         
            +
                    object.map { |element| deep_dup(o) }
         
     | 
| 
      
 96 
     | 
    
         
            +
                  elsif object.is_a?(Hash)
         
     | 
| 
      
 97 
     | 
    
         
            +
                    object.map { |key, value| [deep_dup(key), deep_dup(value)] }.to_h
         
     | 
| 
      
 98 
     | 
    
         
            +
                  elsif object.is_a?(::Code::Object::List)
         
     | 
| 
      
 99 
     | 
    
         
            +
                    ::Code::Object::List.new(object.raw.map { |element| deep_dup(o) })
         
     | 
| 
      
 100 
     | 
    
         
            +
                  elsif object.is_a?(::Code::Object::Dictionnary)
         
     | 
| 
      
 101 
     | 
    
         
            +
                    ::Code::Object::Dictionnary.new(
         
     | 
| 
      
 102 
     | 
    
         
            +
                      object.raw.map { |key, value| [deep_dup(key), deep_dup(value)] }.to_h
         
     | 
| 
      
 103 
     | 
    
         
            +
                    )
         
     | 
| 
      
 104 
     | 
    
         
            +
                  else
         
     | 
| 
      
 105 
     | 
    
         
            +
                    object.dup
         
     | 
| 
      
 106 
     | 
    
         
            +
                  end
         
     | 
| 
      
 107 
     | 
    
         
            +
                end
         
     | 
| 
      
 108 
     | 
    
         
            +
             
     | 
| 
      
 109 
     | 
    
         
            +
                def sig(actual_arguments, &block)
         
     | 
| 
      
 110 
     | 
    
         
            +
                  if block
         
     | 
| 
      
 111 
     | 
    
         
            +
                    expected_arguments = block.call
         
     | 
| 
      
 112 
     | 
    
         
            +
                    expected_arguments = [
         
     | 
| 
      
 113 
     | 
    
         
            +
                      expected_arguments
         
     | 
| 
      
 114 
     | 
    
         
            +
                    ] unless expected_arguments.is_a?(Array)
         
     | 
| 
      
 115 
     | 
    
         
            +
                  else
         
     | 
| 
      
 116 
     | 
    
         
            +
                    expected_arguments = []
         
     | 
| 
      
 117 
     | 
    
         
            +
                  end
         
     | 
| 
      
 118 
     | 
    
         
            +
             
     | 
| 
       80 
119 
     | 
    
         
             
                  if actual_arguments.size != expected_arguments.size
         
     | 
| 
       81 
     | 
    
         
            -
                    raise 
     | 
| 
       82 
     | 
    
         
            -
             
     | 
| 
       83 
     | 
    
         
            -
             
     | 
| 
       84 
     | 
    
         
            -
                           
     | 
| 
      
 120 
     | 
    
         
            +
                    raise(
         
     | 
| 
      
 121 
     | 
    
         
            +
                      ::Code::Error::ArgumentError.new(
         
     | 
| 
      
 122 
     | 
    
         
            +
                        "Expected #{expected_arguments.size} arguments, " \
         
     | 
| 
      
 123 
     | 
    
         
            +
                          "got #{actual_arguments.size} arguments"
         
     | 
| 
      
 124 
     | 
    
         
            +
                      )
         
     | 
| 
      
 125 
     | 
    
         
            +
                    )
         
     | 
| 
       85 
126 
     | 
    
         
             
                  end
         
     | 
| 
       86 
127 
     | 
    
         | 
| 
       87 
128 
     | 
    
         
             
                  expected_arguments.each.with_index do |expected_argument, index|
         
     | 
| 
         @@ -91,47 +132,66 @@ class Code 
     | 
|
| 
       91 
132 
     | 
    
         
             
                      if expected_argument.none? { |expected_arg|
         
     | 
| 
       92 
133 
     | 
    
         
             
                           actual_argument.is_a?(expected_arg)
         
     | 
| 
       93 
134 
     | 
    
         
             
                         }
         
     | 
| 
       94 
     | 
    
         
            -
                        raise 
     | 
| 
       95 
     | 
    
         
            -
             
     | 
| 
       96 
     | 
    
         
            -
             
     | 
| 
      
 135 
     | 
    
         
            +
                        raise(
         
     | 
| 
      
 136 
     | 
    
         
            +
                          ::Code::Error::TypeError.new(
         
     | 
| 
      
 137 
     | 
    
         
            +
                            "Expected #{expected_argument}, got #{actual_argument.class}"
         
     | 
| 
      
 138 
     | 
    
         
            +
                          )
         
     | 
| 
      
 139 
     | 
    
         
            +
                        )
         
     | 
| 
       97 
140 
     | 
    
         
             
                      end
         
     | 
| 
       98 
141 
     | 
    
         
             
                    else
         
     | 
| 
       99 
142 
     | 
    
         
             
                      if !actual_argument.is_a?(expected_argument)
         
     | 
| 
       100 
     | 
    
         
            -
                        raise 
     | 
| 
       101 
     | 
    
         
            -
             
     | 
| 
       102 
     | 
    
         
            -
             
     | 
| 
      
 143 
     | 
    
         
            +
                        raise(
         
     | 
| 
      
 144 
     | 
    
         
            +
                          ::Code::Error::TypeError.new(
         
     | 
| 
      
 145 
     | 
    
         
            +
                            "Expected #{expected_argument}, got #{actual_argument.class}"
         
     | 
| 
      
 146 
     | 
    
         
            +
                          )
         
     | 
| 
      
 147 
     | 
    
         
            +
                        )
         
     | 
| 
       103 
148 
     | 
    
         
             
                      end
         
     | 
| 
       104 
149 
     | 
    
         
             
                    end
         
     | 
| 
       105 
150 
     | 
    
         
             
                  end
         
     | 
| 
       106 
151 
     | 
    
         
             
                end
         
     | 
| 
       107 
152 
     | 
    
         | 
| 
       108 
     | 
    
         
            -
                def  
     | 
| 
       109 
     | 
    
         
            -
                   
     | 
| 
       110 
     | 
    
         
            -
             
     | 
| 
       111 
     | 
    
         
            -
             
     | 
| 
      
 153 
     | 
    
         
            +
                def equal(other)
         
     | 
| 
      
 154 
     | 
    
         
            +
                  ::Code::Object::Boolean.new(self == other)
         
     | 
| 
      
 155 
     | 
    
         
            +
                end
         
     | 
| 
      
 156 
     | 
    
         
            +
             
     | 
| 
      
 157 
     | 
    
         
            +
                def strict_equal(other)
         
     | 
| 
      
 158 
     | 
    
         
            +
                  ::Code::Object::Boolean.new(self === other)
         
     | 
| 
       112 
159 
     | 
    
         
             
                end
         
     | 
| 
       113 
160 
     | 
    
         | 
| 
       114 
     | 
    
         
            -
                def  
     | 
| 
       115 
     | 
    
         
            -
                   
     | 
| 
       116 
     | 
    
         
            -
             
     | 
| 
      
 161 
     | 
    
         
            +
                def different(other)
         
     | 
| 
      
 162 
     | 
    
         
            +
                  ::Code::Object::Boolean.new(self != other)
         
     | 
| 
      
 163 
     | 
    
         
            +
                end
         
     | 
| 
      
 164 
     | 
    
         
            +
             
     | 
| 
      
 165 
     | 
    
         
            +
                def compare(other)
         
     | 
| 
       117 
166 
     | 
    
         
             
                  ::Code::Object::Integer.new(self <=> other)
         
     | 
| 
       118 
167 
     | 
    
         
             
                end
         
     | 
| 
       119 
168 
     | 
    
         | 
| 
       120 
     | 
    
         
            -
                def and_operator( 
     | 
| 
       121 
     | 
    
         
            -
                  sig(arguments, ::Code::Object)
         
     | 
| 
       122 
     | 
    
         
            -
                  other = arguments.first.value
         
     | 
| 
      
 169 
     | 
    
         
            +
                def and_operator(other)
         
     | 
| 
       123 
170 
     | 
    
         
             
                  truthy? ? other : self
         
     | 
| 
       124 
171 
     | 
    
         
             
                end
         
     | 
| 
       125 
172 
     | 
    
         | 
| 
       126 
     | 
    
         
            -
                def or_operator( 
     | 
| 
       127 
     | 
    
         
            -
                  sig(arguments, ::Code::Object)
         
     | 
| 
       128 
     | 
    
         
            -
                  other = arguments.first.value
         
     | 
| 
      
 173 
     | 
    
         
            +
                def or_operator(other)
         
     | 
| 
       129 
174 
     | 
    
         
             
                  truthy? ? self : other
         
     | 
| 
       130 
175 
     | 
    
         
             
                end
         
     | 
| 
       131 
176 
     | 
    
         | 
| 
       132 
     | 
    
         
            -
                def to_string 
     | 
| 
       133 
     | 
    
         
            -
                  sig(arguments)
         
     | 
| 
      
 177 
     | 
    
         
            +
                def to_string
         
     | 
| 
       134 
178 
     | 
    
         
             
                  ::Code::Object::String.new(to_s)
         
     | 
| 
       135 
179 
     | 
    
         
             
                end
         
     | 
| 
      
 180 
     | 
    
         
            +
             
     | 
| 
      
 181 
     | 
    
         
            +
                def inclusive_range(value)
         
     | 
| 
      
 182 
     | 
    
         
            +
                  ::Code::Object::Range.new(self, value, exclude_end: false)
         
     | 
| 
      
 183 
     | 
    
         
            +
                end
         
     | 
| 
      
 184 
     | 
    
         
            +
             
     | 
| 
      
 185 
     | 
    
         
            +
                def exclusive_range(value)
         
     | 
| 
      
 186 
     | 
    
         
            +
                  ::Code::Object::Range.new(self, value, exclude_end: true)
         
     | 
| 
      
 187 
     | 
    
         
            +
                end
         
     | 
| 
      
 188 
     | 
    
         
            +
             
     | 
| 
      
 189 
     | 
    
         
            +
                def exclamation_point
         
     | 
| 
      
 190 
     | 
    
         
            +
                  if truthy?
         
     | 
| 
      
 191 
     | 
    
         
            +
                    ::Code::Object::Boolean.new(false)
         
     | 
| 
      
 192 
     | 
    
         
            +
                  else
         
     | 
| 
      
 193 
     | 
    
         
            +
                    ::Code::Object::Boolean.new(true)
         
     | 
| 
      
 194 
     | 
    
         
            +
                  end
         
     | 
| 
      
 195 
     | 
    
         
            +
                end
         
     | 
| 
       136 
196 
     | 
    
         
             
              end
         
     | 
| 
       137 
197 
     | 
    
         
             
            end
         
     | 
    
        data/lib/code/parser/addition.rb
    CHANGED
    
    | 
         @@ -1,29 +1,21 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            class Code
         
     | 
| 
       2 
2 
     | 
    
         
             
              class Parser
         
     | 
| 
       3 
     | 
    
         
            -
                class Addition <  
     | 
| 
       4 
     | 
    
         
            -
                   
     | 
| 
       5 
     | 
    
         
            -
             
     | 
| 
       6 
     | 
    
         
            -
                   
     | 
| 
       7 
     | 
    
         
            -
                  rule(:minus) { str("-") }
         
     | 
| 
       8 
     | 
    
         
            -
             
     | 
| 
       9 
     | 
    
         
            -
                  rule(:operator) { plus | minus }
         
     | 
| 
      
 3 
     | 
    
         
            +
                class Addition < Operation
         
     | 
| 
      
 4 
     | 
    
         
            +
                  def statement
         
     | 
| 
      
 5 
     | 
    
         
            +
                    ::Code::Parser::Multiplication
         
     | 
| 
      
 6 
     | 
    
         
            +
                  end
         
     | 
| 
       10 
7 
     | 
    
         | 
| 
       11 
     | 
    
         
            -
                   
     | 
| 
       12 
     | 
    
         
            -
             
     | 
| 
       13 
     | 
    
         
            -
                   
     | 
| 
       14 
     | 
    
         
            -
                  rule(:whitespace?) { whitespace.maybe }
         
     | 
| 
      
 8 
     | 
    
         
            +
                  def plus
         
     | 
| 
      
 9 
     | 
    
         
            +
                    str("+")
         
     | 
| 
      
 10 
     | 
    
         
            +
                  end
         
     | 
| 
       15 
11 
     | 
    
         | 
| 
       16 
     | 
    
         
            -
                   
     | 
| 
       17 
     | 
    
         
            -
                    (
         
     | 
| 
       18 
     | 
    
         
            -
                      multiplication.as(:first) >>
         
     | 
| 
       19 
     | 
    
         
            -
                        (
         
     | 
| 
       20 
     | 
    
         
            -
                          whitespace? >> operator.as(:operator) >> whitespace? >>
         
     | 
| 
       21 
     | 
    
         
            -
                            multiplication.as(:statement)
         
     | 
| 
       22 
     | 
    
         
            -
                        ).repeat(1).as(:rest)
         
     | 
| 
       23 
     | 
    
         
            -
                    ).as(:addition) | multiplication
         
     | 
| 
      
 12 
     | 
    
         
            +
                  def minus
         
     | 
| 
      
 13 
     | 
    
         
            +
                    str("-")
         
     | 
| 
       24 
14 
     | 
    
         
             
                  end
         
     | 
| 
       25 
15 
     | 
    
         | 
| 
       26 
     | 
    
         
            -
                   
     | 
| 
      
 16 
     | 
    
         
            +
                  def operator
         
     | 
| 
      
 17 
     | 
    
         
            +
                    plus | minus
         
     | 
| 
      
 18 
     | 
    
         
            +
                  end
         
     | 
| 
       27 
19 
     | 
    
         
             
                end
         
     | 
| 
       28 
20 
     | 
    
         
             
              end
         
     | 
| 
       29 
21 
     | 
    
         
             
            end
         
     | 
| 
         @@ -1,28 +1,17 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            class Code
         
     | 
| 
       2 
2 
     | 
    
         
             
              class Parser
         
     | 
| 
       3 
     | 
    
         
            -
                class AndOperator <  
     | 
| 
       4 
     | 
    
         
            -
                   
     | 
| 
       5 
     | 
    
         
            -
             
     | 
| 
       6 
     | 
    
         
            -
                   
     | 
| 
       7 
     | 
    
         
            -
             
     | 
| 
       8 
     | 
    
         
            -
                  rule(:operator) { ampersand >> ampersand }
         
     | 
| 
       9 
     | 
    
         
            -
             
     | 
| 
       10 
     | 
    
         
            -
                  rule(:space) { str(" ") }
         
     | 
| 
       11 
     | 
    
         
            -
                  rule(:newline) { str("\n") }
         
     | 
| 
       12 
     | 
    
         
            -
                  rule(:whitespace) { (space | newline).repeat(1) }
         
     | 
| 
       13 
     | 
    
         
            -
                  rule(:whitespace?) { whitespace.maybe }
         
     | 
| 
      
 3 
     | 
    
         
            +
                class AndOperator < Operation
         
     | 
| 
      
 4 
     | 
    
         
            +
                  def statement
         
     | 
| 
      
 5 
     | 
    
         
            +
                    ::Code::Parser::EqualityLower
         
     | 
| 
      
 6 
     | 
    
         
            +
                  end
         
     | 
| 
       14 
7 
     | 
    
         | 
| 
       15 
     | 
    
         
            -
                   
     | 
| 
       16 
     | 
    
         
            -
                    (
         
     | 
| 
       17 
     | 
    
         
            -
                      greater_than.as(:first) >>
         
     | 
| 
       18 
     | 
    
         
            -
                        (
         
     | 
| 
       19 
     | 
    
         
            -
                          whitespace? >> operator.as(:operator) >> whitespace? >>
         
     | 
| 
       20 
     | 
    
         
            -
                            greater_than.as(:statement)
         
     | 
| 
       21 
     | 
    
         
            -
                        ).repeat(1).as(:rest)
         
     | 
| 
       22 
     | 
    
         
            -
                    ).as(:and_operator) | greater_than
         
     | 
| 
      
 8 
     | 
    
         
            +
                  def ampersand
         
     | 
| 
      
 9 
     | 
    
         
            +
                    str("&")
         
     | 
| 
       23 
10 
     | 
    
         
             
                  end
         
     | 
| 
       24 
11 
     | 
    
         | 
| 
       25 
     | 
    
         
            -
                   
     | 
| 
      
 12 
     | 
    
         
            +
                  def operator
         
     | 
| 
      
 13 
     | 
    
         
            +
                    ampersand << ampersand
         
     | 
| 
      
 14 
     | 
    
         
            +
                  end
         
     | 
| 
       26 
15 
     | 
    
         
             
                end
         
     | 
| 
       27 
16 
     | 
    
         
             
              end
         
     | 
| 
       28 
17 
     | 
    
         
             
            end
         
     | 
| 
         @@ -1,28 +1,17 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            class Code
         
     | 
| 
       2 
2 
     | 
    
         
             
              class Parser
         
     | 
| 
       3 
     | 
    
         
            -
                class BitwiseAnd <  
     | 
| 
       4 
     | 
    
         
            -
                   
     | 
| 
       5 
     | 
    
         
            -
             
     | 
| 
       6 
     | 
    
         
            -
                   
     | 
| 
       7 
     | 
    
         
            -
             
     | 
| 
       8 
     | 
    
         
            -
                  rule(:operator) { ampersand }
         
     | 
| 
       9 
     | 
    
         
            -
             
     | 
| 
       10 
     | 
    
         
            -
                  rule(:space) { str(" ") }
         
     | 
| 
       11 
     | 
    
         
            -
                  rule(:newline) { str("\n") }
         
     | 
| 
       12 
     | 
    
         
            -
                  rule(:whitespace) { (space | newline).repeat(1) }
         
     | 
| 
       13 
     | 
    
         
            -
                  rule(:whitespace?) { whitespace.maybe }
         
     | 
| 
      
 3 
     | 
    
         
            +
                class BitwiseAnd < Operation
         
     | 
| 
      
 4 
     | 
    
         
            +
                  def statement
         
     | 
| 
      
 5 
     | 
    
         
            +
                    ::Code::Parser::Shift
         
     | 
| 
      
 6 
     | 
    
         
            +
                  end
         
     | 
| 
       14 
7 
     | 
    
         | 
| 
       15 
     | 
    
         
            -
                   
     | 
| 
       16 
     | 
    
         
            -
                    (
         
     | 
| 
       17 
     | 
    
         
            -
                      shift.as(:first) >>
         
     | 
| 
       18 
     | 
    
         
            -
                        (
         
     | 
| 
       19 
     | 
    
         
            -
                          whitespace? >> operator.as(:operator) >> whitespace? >>
         
     | 
| 
       20 
     | 
    
         
            -
                            shift.as(:statement)
         
     | 
| 
       21 
     | 
    
         
            -
                        ).repeat(1).as(:rest)
         
     | 
| 
       22 
     | 
    
         
            -
                    ).as(:bitwise_and) | shift
         
     | 
| 
      
 8 
     | 
    
         
            +
                  def ampersand
         
     | 
| 
      
 9 
     | 
    
         
            +
                    str("&")
         
     | 
| 
       23 
10 
     | 
    
         
             
                  end
         
     | 
| 
       24 
11 
     | 
    
         | 
| 
       25 
     | 
    
         
            -
                   
     | 
| 
      
 12 
     | 
    
         
            +
                  def operator
         
     | 
| 
      
 13 
     | 
    
         
            +
                    ampersand
         
     | 
| 
      
 14 
     | 
    
         
            +
                  end
         
     | 
| 
       26 
15 
     | 
    
         
             
                end
         
     | 
| 
       27 
16 
     | 
    
         
             
              end
         
     | 
| 
       28 
17 
     | 
    
         
             
            end
         
     | 
| 
         @@ -1,29 +1,21 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            class Code
         
     | 
| 
       2 
2 
     | 
    
         
             
              class Parser
         
     | 
| 
       3 
     | 
    
         
            -
                class BitwiseOr <  
     | 
| 
       4 
     | 
    
         
            -
                   
     | 
| 
       5 
     | 
    
         
            -
             
     | 
| 
       6 
     | 
    
         
            -
                   
     | 
| 
       7 
     | 
    
         
            -
                  rule(:caret) { str("^") }
         
     | 
| 
       8 
     | 
    
         
            -
             
     | 
| 
       9 
     | 
    
         
            -
                  rule(:operator) { pipe | caret }
         
     | 
| 
      
 3 
     | 
    
         
            +
                class BitwiseOr < Operation
         
     | 
| 
      
 4 
     | 
    
         
            +
                  def statement
         
     | 
| 
      
 5 
     | 
    
         
            +
                    ::Code::Parser::BitwiseAnd
         
     | 
| 
      
 6 
     | 
    
         
            +
                  end
         
     | 
| 
       10 
7 
     | 
    
         | 
| 
       11 
     | 
    
         
            -
                   
     | 
| 
       12 
     | 
    
         
            -
             
     | 
| 
       13 
     | 
    
         
            -
                   
     | 
| 
       14 
     | 
    
         
            -
                  rule(:whitespace?) { whitespace.maybe }
         
     | 
| 
      
 8 
     | 
    
         
            +
                  def pipe
         
     | 
| 
      
 9 
     | 
    
         
            +
                    str("|")
         
     | 
| 
      
 10 
     | 
    
         
            +
                  end
         
     | 
| 
       15 
11 
     | 
    
         | 
| 
       16 
     | 
    
         
            -
                   
     | 
| 
       17 
     | 
    
         
            -
                    (
         
     | 
| 
       18 
     | 
    
         
            -
                      bitwise_and.as(:first) >>
         
     | 
| 
       19 
     | 
    
         
            -
                        (
         
     | 
| 
       20 
     | 
    
         
            -
                          whitespace? >> operator.as(:operator) >> whitespace? >>
         
     | 
| 
       21 
     | 
    
         
            -
                            bitwise_and.as(:statement)
         
     | 
| 
       22 
     | 
    
         
            -
                        ).repeat(1).as(:rest)
         
     | 
| 
       23 
     | 
    
         
            -
                    ).as(:bitwise_or) | bitwise_and
         
     | 
| 
      
 12 
     | 
    
         
            +
                  def caret
         
     | 
| 
      
 13 
     | 
    
         
            +
                    str("^")
         
     | 
| 
       24 
14 
     | 
    
         
             
                  end
         
     | 
| 
       25 
15 
     | 
    
         | 
| 
       26 
     | 
    
         
            -
                   
     | 
| 
      
 16 
     | 
    
         
            +
                  def operator
         
     | 
| 
      
 17 
     | 
    
         
            +
                    pipe | caret
         
     | 
| 
      
 18 
     | 
    
         
            +
                  end
         
     | 
| 
       27 
19 
     | 
    
         
             
                end
         
     | 
| 
       28 
20 
     | 
    
         
             
              end
         
     | 
| 
       29 
21 
     | 
    
         
             
            end
         
     | 
    
        data/lib/code/parser/boolean.rb
    CHANGED
    
    | 
         @@ -1,14 +1,17 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            class Code
         
     | 
| 
       2 
2 
     | 
    
         
             
              class Parser
         
     | 
| 
       3 
     | 
    
         
            -
                class Boolean <  
     | 
| 
       4 
     | 
    
         
            -
                   
     | 
| 
      
 3 
     | 
    
         
            +
                class Boolean < Language
         
     | 
| 
      
 4 
     | 
    
         
            +
                  def true_keyword
         
     | 
| 
      
 5 
     | 
    
         
            +
                    str("true")
         
     | 
| 
      
 6 
     | 
    
         
            +
                  end
         
     | 
| 
       5 
7 
     | 
    
         | 
| 
       6 
     | 
    
         
            -
                   
     | 
| 
       7 
     | 
    
         
            -
             
     | 
| 
      
 8 
     | 
    
         
            +
                  def false_keyword
         
     | 
| 
      
 9 
     | 
    
         
            +
                    str("false")
         
     | 
| 
      
 10 
     | 
    
         
            +
                  end
         
     | 
| 
       8 
11 
     | 
    
         | 
| 
       9 
     | 
    
         
            -
                   
     | 
| 
       10 
     | 
    
         
            -
             
     | 
| 
       11 
     | 
    
         
            -
                   
     | 
| 
      
 12 
     | 
    
         
            +
                  def root
         
     | 
| 
      
 13 
     | 
    
         
            +
                    (true_keyword | false_keyword).aka(:boolean) | ::Code::Parser::Nothing
         
     | 
| 
      
 14 
     | 
    
         
            +
                  end
         
     | 
| 
       12 
15 
     | 
    
         
             
                end
         
     | 
| 
       13 
16 
     | 
    
         
             
              end
         
     | 
| 
       14 
17 
     | 
    
         
             
            end
         
     | 
    
        data/lib/code/parser/call.rb
    CHANGED
    
    | 
         @@ -1,90 +1,122 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            class Code
         
     | 
| 
       2 
2 
     | 
    
         
             
              class Parser
         
     | 
| 
       3 
     | 
    
         
            -
                class Call <  
     | 
| 
       4 
     | 
    
         
            -
                   
     | 
| 
       5 
     | 
    
         
            -
             
     | 
| 
       6 
     | 
    
         
            -
                   
     | 
| 
       7 
     | 
    
         
            -
                  rule(:function_arguments) { ::Code::Parser::Function.new.arguments }
         
     | 
| 
      
 3 
     | 
    
         
            +
                class Call < Language
         
     | 
| 
      
 4 
     | 
    
         
            +
                  def name
         
     | 
| 
      
 5 
     | 
    
         
            +
                    ::Code::Parser::Name
         
     | 
| 
      
 6 
     | 
    
         
            +
                  end
         
     | 
| 
       8 
7 
     | 
    
         | 
| 
       9 
     | 
    
         
            -
                   
     | 
| 
       10 
     | 
    
         
            -
             
     | 
| 
       11 
     | 
    
         
            -
                   
     | 
| 
       12 
     | 
    
         
            -
                  rule(:opening_curly_bracket) { str("{") }
         
     | 
| 
       13 
     | 
    
         
            -
                  rule(:closing_curly_bracket) { str("}") }
         
     | 
| 
       14 
     | 
    
         
            -
                  rule(:comma) { str(",") }
         
     | 
| 
       15 
     | 
    
         
            -
                  rule(:colon) { str(":") }
         
     | 
| 
       16 
     | 
    
         
            -
                  rule(:ampersand) { str("&") }
         
     | 
| 
       17 
     | 
    
         
            -
                  rule(:asterisk) { str("*") }
         
     | 
| 
       18 
     | 
    
         
            -
                  rule(:pipe) { str("|") }
         
     | 
| 
       19 
     | 
    
         
            -
                  rule(:do_keyword) { str("do") }
         
     | 
| 
       20 
     | 
    
         
            -
                  rule(:end_keyword) { str("end") }
         
     | 
| 
      
 8 
     | 
    
         
            +
                  def whitespace
         
     | 
| 
      
 9 
     | 
    
         
            +
                    ::Code::Parser::Whitespace
         
     | 
| 
      
 10 
     | 
    
         
            +
                  end
         
     | 
| 
       21 
11 
     | 
    
         | 
| 
       22 
     | 
    
         
            -
                   
     | 
| 
       23 
     | 
    
         
            -
             
     | 
| 
       24 
     | 
    
         
            -
                   
     | 
| 
       25 
     | 
    
         
            -
                  rule(:whitespace?) { whitespace.maybe }
         
     | 
| 
      
 12 
     | 
    
         
            +
                  def whitespace?
         
     | 
| 
      
 13 
     | 
    
         
            +
                    whitespace.maybe
         
     | 
| 
      
 14 
     | 
    
         
            +
                  end
         
     | 
| 
       26 
15 
     | 
    
         | 
| 
       27 
     | 
    
         
            -
                   
     | 
| 
       28 
     | 
    
         
            -
                     
     | 
| 
      
 16 
     | 
    
         
            +
                  def code
         
     | 
| 
      
 17 
     | 
    
         
            +
                    ::Code::Parser::Code
         
     | 
| 
       29 
18 
     | 
    
         
             
                  end
         
     | 
| 
       30 
19 
     | 
    
         | 
| 
       31 
     | 
    
         
            -
                   
     | 
| 
       32 
     | 
    
         
            -
                     
     | 
| 
       33 
     | 
    
         
            -
                      (asterisk >> asterisk).as(:keyword_splat).maybe >>
         
     | 
| 
       34 
     | 
    
         
            -
                      asterisk.as(:splat).maybe >> code.as(:value)
         
     | 
| 
      
 20 
     | 
    
         
            +
                  def code_present
         
     | 
| 
      
 21 
     | 
    
         
            +
                    ::Code::Parser::Code.new.present
         
     | 
| 
       35 
22 
     | 
    
         
             
                  end
         
     | 
| 
       36 
23 
     | 
    
         | 
| 
       37 
     | 
    
         
            -
                   
     | 
| 
       38 
     | 
    
         
            -
                     
     | 
| 
      
 24 
     | 
    
         
            +
                  def colon
         
     | 
| 
      
 25 
     | 
    
         
            +
                    str(":")
         
     | 
| 
       39 
26 
     | 
    
         
             
                  end
         
     | 
| 
       40 
27 
     | 
    
         | 
| 
       41 
     | 
    
         
            -
                   
     | 
| 
       42 
     | 
    
         
            -
                     
     | 
| 
       43 
     | 
    
         
            -
                      (whitespace? >> comma >> whitespace? >> argument).repeat
         
     | 
| 
      
 28 
     | 
    
         
            +
                  def comma
         
     | 
| 
      
 29 
     | 
    
         
            +
                    str(",")
         
     | 
| 
       44 
30 
     | 
    
         
             
                  end
         
     | 
| 
       45 
31 
     | 
    
         | 
| 
       46 
     | 
    
         
            -
                   
     | 
| 
       47 
     | 
    
         
            -
                     
     | 
| 
       48 
     | 
    
         
            -
                      (
         
     | 
| 
       49 
     | 
    
         
            -
                        opening_parenthesis >> whitespace? >>
         
     | 
| 
       50 
     | 
    
         
            -
                          arguments.as(:arguments).maybe >> whitespace? >>
         
     | 
| 
       51 
     | 
    
         
            -
                          closing_parenthesis
         
     | 
| 
       52 
     | 
    
         
            -
                      ) >> block.as(:block).maybe
         
     | 
| 
      
 32 
     | 
    
         
            +
                  def pipe
         
     | 
| 
      
 33 
     | 
    
         
            +
                    str("|")
         
     | 
| 
       53 
34 
     | 
    
         
             
                  end
         
     | 
| 
       54 
35 
     | 
    
         | 
| 
       55 
     | 
    
         
            -
                   
     | 
| 
       56 
     | 
    
         
            -
                     
     | 
| 
       57 
     | 
    
         
            -
             
     | 
| 
       58 
     | 
    
         
            -
             
     | 
| 
       59 
     | 
    
         
            -
             
     | 
| 
       60 
     | 
    
         
            -
             
     | 
| 
       61 
     | 
    
         
            -
             
     | 
| 
      
 36 
     | 
    
         
            +
                  def equal
         
     | 
| 
      
 37 
     | 
    
         
            +
                    str("=")
         
     | 
| 
      
 38 
     | 
    
         
            +
                  end
         
     | 
| 
      
 39 
     | 
    
         
            +
             
     | 
| 
      
 40 
     | 
    
         
            +
                  def opening_curly_bracket
         
     | 
| 
      
 41 
     | 
    
         
            +
                    str("{")
         
     | 
| 
      
 42 
     | 
    
         
            +
                  end
         
     | 
| 
      
 43 
     | 
    
         
            +
             
     | 
| 
      
 44 
     | 
    
         
            +
                  def closing_curly_bracket
         
     | 
| 
      
 45 
     | 
    
         
            +
                    str("}")
         
     | 
| 
      
 46 
     | 
    
         
            +
                  end
         
     | 
| 
      
 47 
     | 
    
         
            +
             
     | 
| 
      
 48 
     | 
    
         
            +
                  def opening_parenthesis
         
     | 
| 
      
 49 
     | 
    
         
            +
                    str("(")
         
     | 
| 
      
 50 
     | 
    
         
            +
                  end
         
     | 
| 
      
 51 
     | 
    
         
            +
             
     | 
| 
      
 52 
     | 
    
         
            +
                  def closing_parenthesis
         
     | 
| 
      
 53 
     | 
    
         
            +
                    str(")")
         
     | 
| 
      
 54 
     | 
    
         
            +
                  end
         
     | 
| 
      
 55 
     | 
    
         
            +
             
     | 
| 
      
 56 
     | 
    
         
            +
                  def do_keyword
         
     | 
| 
      
 57 
     | 
    
         
            +
                    str("do")
         
     | 
| 
      
 58 
     | 
    
         
            +
                  end
         
     | 
| 
      
 59 
     | 
    
         
            +
             
     | 
| 
      
 60 
     | 
    
         
            +
                  def end_keyword
         
     | 
| 
      
 61 
     | 
    
         
            +
                    str("end")
         
     | 
| 
      
 62 
     | 
    
         
            +
                  end
         
     | 
| 
      
 63 
     | 
    
         
            +
             
     | 
| 
      
 64 
     | 
    
         
            +
                  def keyword_argument
         
     | 
| 
      
 65 
     | 
    
         
            +
                    name.aka(:name) << colon << code_present.aka(:value)
         
     | 
| 
      
 66 
     | 
    
         
            +
                  end
         
     | 
| 
      
 67 
     | 
    
         
            +
             
     | 
| 
      
 68 
     | 
    
         
            +
                  def regular_argument
         
     | 
| 
      
 69 
     | 
    
         
            +
                    code_present.aka(:value)
         
     | 
| 
      
 70 
     | 
    
         
            +
                  end
         
     | 
| 
      
 71 
     | 
    
         
            +
             
     | 
| 
      
 72 
     | 
    
         
            +
                  def argument
         
     | 
| 
      
 73 
     | 
    
         
            +
                    keyword_argument | regular_argument
         
     | 
| 
      
 74 
     | 
    
         
            +
                  end
         
     | 
| 
      
 75 
     | 
    
         
            +
             
     | 
| 
      
 76 
     | 
    
         
            +
                  def arguments
         
     | 
| 
      
 77 
     | 
    
         
            +
                    opening_parenthesis.ignore << whitespace? << argument.repeat(0, 1) <<
         
     | 
| 
      
 78 
     | 
    
         
            +
                      (comma << whitespace? << argument << whitespace?).repeat <<
         
     | 
| 
      
 79 
     | 
    
         
            +
                      whitespace? << closing_parenthesis.ignore.maybe
         
     | 
| 
      
 80 
     | 
    
         
            +
                  end
         
     | 
| 
      
 81 
     | 
    
         
            +
             
     | 
| 
      
 82 
     | 
    
         
            +
                  def keyword_parameter
         
     | 
| 
      
 83 
     | 
    
         
            +
                    name.aka(:name) << whitespace? << colon.aka(:keyword) <<
         
     | 
| 
      
 84 
     | 
    
         
            +
                      code_present.aka(:default).maybe
         
     | 
| 
      
 85 
     | 
    
         
            +
                  end
         
     | 
| 
      
 86 
     | 
    
         
            +
             
     | 
| 
      
 87 
     | 
    
         
            +
                  def regular_parameter
         
     | 
| 
      
 88 
     | 
    
         
            +
                    name.aka(:name) << whitespace? <<
         
     | 
| 
      
 89 
     | 
    
         
            +
                      (equal << whitespace? << code_present.aka(:default)).maybe
         
     | 
| 
       62 
90 
     | 
    
         
             
                  end
         
     | 
| 
       63 
91 
     | 
    
         | 
| 
       64 
     | 
    
         
            -
                   
     | 
| 
       65 
     | 
    
         
            -
                     
     | 
| 
      
 92 
     | 
    
         
            +
                  def parameter
         
     | 
| 
      
 93 
     | 
    
         
            +
                    keyword_parameter | regular_parameter
         
     | 
| 
       66 
94 
     | 
    
         
             
                  end
         
     | 
| 
       67 
95 
     | 
    
         | 
| 
       68 
     | 
    
         
            -
                   
     | 
| 
       69 
     | 
    
         
            -
                    pipe  
     | 
| 
      
 96 
     | 
    
         
            +
                  def parameters
         
     | 
| 
      
 97 
     | 
    
         
            +
                    pipe.ignore << whitespace? << parameter.repeat(0, 1) <<
         
     | 
| 
      
 98 
     | 
    
         
            +
                      (whitespace? << comma << whitespace? << parameter).repeat <<
         
     | 
| 
      
 99 
     | 
    
         
            +
                      whitespace? << pipe.ignore.maybe
         
     | 
| 
       70 
100 
     | 
    
         
             
                  end
         
     | 
| 
       71 
101 
     | 
    
         | 
| 
       72 
     | 
    
         
            -
                   
     | 
| 
      
 102 
     | 
    
         
            +
                  def block
         
     | 
| 
       73 
103 
     | 
    
         
             
                    (
         
     | 
| 
       74 
     | 
    
         
            -
                       
     | 
| 
       75 
     | 
    
         
            -
                         
     | 
| 
       76 
     | 
    
         
            -
                        end_keyword
         
     | 
| 
      
 104 
     | 
    
         
            +
                      do_keyword << whitespace? << parameters.aka(:parameters).maybe <<
         
     | 
| 
      
 105 
     | 
    
         
            +
                        code.aka(:body) << end_keyword.maybe
         
     | 
| 
       77 
106 
     | 
    
         
             
                    ) |
         
     | 
| 
       78 
107 
     | 
    
         
             
                      (
         
     | 
| 
       79 
     | 
    
         
            -
                         
     | 
| 
       80 
     | 
    
         
            -
                           
     | 
| 
       81 
     | 
    
         
            -
                          closing_curly_bracket
         
     | 
| 
      
 108 
     | 
    
         
            +
                        opening_curly_bracket << whitespace? <<
         
     | 
| 
      
 109 
     | 
    
         
            +
                          parameters.aka(:parameters).maybe << code.aka(:body) <<
         
     | 
| 
      
 110 
     | 
    
         
            +
                          closing_curly_bracket.maybe
         
     | 
| 
       82 
111 
     | 
    
         
             
                      )
         
     | 
| 
       83 
112 
     | 
    
         
             
                  end
         
     | 
| 
       84 
113 
     | 
    
         | 
| 
       85 
     | 
    
         
            -
                   
     | 
| 
       86 
     | 
    
         
            -
             
     | 
| 
       87 
     | 
    
         
            -
             
     | 
| 
      
 114 
     | 
    
         
            +
                  def root
         
     | 
| 
      
 115 
     | 
    
         
            +
                    (
         
     | 
| 
      
 116 
     | 
    
         
            +
                      name.aka(:name) << (whitespace? << arguments.aka(:arguments)).maybe <<
         
     | 
| 
      
 117 
     | 
    
         
            +
                        (whitespace? << block.aka(:block)).maybe
         
     | 
| 
      
 118 
     | 
    
         
            +
                    ).aka(:call)
         
     | 
| 
      
 119 
     | 
    
         
            +
                  end
         
     | 
| 
       88 
120 
     | 
    
         
             
                end
         
     | 
| 
       89 
121 
     | 
    
         
             
              end
         
     | 
| 
       90 
122 
     | 
    
         
             
            end
         
     | 
| 
         @@ -0,0 +1,47 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            class Code
         
     | 
| 
      
 2 
     | 
    
         
            +
              class Parser
         
     | 
| 
      
 3 
     | 
    
         
            +
                class ChainedCall < Operation
         
     | 
| 
      
 4 
     | 
    
         
            +
                  def statement
         
     | 
| 
      
 5 
     | 
    
         
            +
                    ::Code::Parser::Dictionnary
         
     | 
| 
      
 6 
     | 
    
         
            +
                  end
         
     | 
| 
      
 7 
     | 
    
         
            +
             
     | 
| 
      
 8 
     | 
    
         
            +
                  def whitespace
         
     | 
| 
      
 9 
     | 
    
         
            +
                    ::Code::Parser::Whitespace
         
     | 
| 
      
 10 
     | 
    
         
            +
                  end
         
     | 
| 
      
 11 
     | 
    
         
            +
             
     | 
| 
      
 12 
     | 
    
         
            +
                  def whitespace?
         
     | 
| 
      
 13 
     | 
    
         
            +
                    whitespace.maybe
         
     | 
| 
      
 14 
     | 
    
         
            +
                  end
         
     | 
| 
      
 15 
     | 
    
         
            +
             
     | 
| 
      
 16 
     | 
    
         
            +
                  def dot
         
     | 
| 
      
 17 
     | 
    
         
            +
                    str(".")
         
     | 
| 
      
 18 
     | 
    
         
            +
                  end
         
     | 
| 
      
 19 
     | 
    
         
            +
             
     | 
| 
      
 20 
     | 
    
         
            +
                  def colon
         
     | 
| 
      
 21 
     | 
    
         
            +
                    str(":")
         
     | 
| 
      
 22 
     | 
    
         
            +
                  end
         
     | 
| 
      
 23 
     | 
    
         
            +
             
     | 
| 
      
 24 
     | 
    
         
            +
                  def operator
         
     | 
| 
      
 25 
     | 
    
         
            +
                    dot | (colon << colon)
         
     | 
| 
      
 26 
     | 
    
         
            +
                  end
         
     | 
| 
      
 27 
     | 
    
         
            +
             
     | 
| 
      
 28 
     | 
    
         
            +
                  def root
         
     | 
| 
      
 29 
     | 
    
         
            +
                    (
         
     | 
| 
      
 30 
     | 
    
         
            +
                      statement.aka(:first) <<
         
     | 
| 
      
 31 
     | 
    
         
            +
                        (whitespace? << operator << whitespace? << statement)
         
     | 
| 
      
 32 
     | 
    
         
            +
                          .repeat(1)
         
     | 
| 
      
 33 
     | 
    
         
            +
                          .aka(:others)
         
     | 
| 
      
 34 
     | 
    
         
            +
                          .maybe
         
     | 
| 
      
 35 
     | 
    
         
            +
                    )
         
     | 
| 
      
 36 
     | 
    
         
            +
                      .aka(:chained_call)
         
     | 
| 
      
 37 
     | 
    
         
            +
                      .then do |output|
         
     | 
| 
      
 38 
     | 
    
         
            +
                        if output[:chained_call][:others]
         
     | 
| 
      
 39 
     | 
    
         
            +
                          output
         
     | 
| 
      
 40 
     | 
    
         
            +
                        else
         
     | 
| 
      
 41 
     | 
    
         
            +
                          output[:chained_call][:first]
         
     | 
| 
      
 42 
     | 
    
         
            +
                        end
         
     | 
| 
      
 43 
     | 
    
         
            +
                      end
         
     | 
| 
      
 44 
     | 
    
         
            +
                  end
         
     | 
| 
      
 45 
     | 
    
         
            +
                end
         
     | 
| 
      
 46 
     | 
    
         
            +
              end
         
     | 
| 
      
 47 
     | 
    
         
            +
            end
         
     | 
| 
         @@ -0,0 +1,45 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            class Code
         
     | 
| 
      
 2 
     | 
    
         
            +
              class Parser
         
     | 
| 
      
 3 
     | 
    
         
            +
                class Class < Language
         
     | 
| 
      
 4 
     | 
    
         
            +
                  def statement
         
     | 
| 
      
 5 
     | 
    
         
            +
                    ::Code::Parser::While
         
     | 
| 
      
 6 
     | 
    
         
            +
                  end
         
     | 
| 
      
 7 
     | 
    
         
            +
             
     | 
| 
      
 8 
     | 
    
         
            +
                  def name
         
     | 
| 
      
 9 
     | 
    
         
            +
                    ::Code::Parser::Name
         
     | 
| 
      
 10 
     | 
    
         
            +
                  end
         
     | 
| 
      
 11 
     | 
    
         
            +
             
     | 
| 
      
 12 
     | 
    
         
            +
                  def code
         
     | 
| 
      
 13 
     | 
    
         
            +
                    ::Code::Parser::Code
         
     | 
| 
      
 14 
     | 
    
         
            +
                  end
         
     | 
| 
      
 15 
     | 
    
         
            +
             
     | 
| 
      
 16 
     | 
    
         
            +
                  def whitespace
         
     | 
| 
      
 17 
     | 
    
         
            +
                    ::Code::Parser::Whitespace
         
     | 
| 
      
 18 
     | 
    
         
            +
                  end
         
     | 
| 
      
 19 
     | 
    
         
            +
             
     | 
| 
      
 20 
     | 
    
         
            +
                  def whitespace?
         
     | 
| 
      
 21 
     | 
    
         
            +
                    whitespace.maybe
         
     | 
| 
      
 22 
     | 
    
         
            +
                  end
         
     | 
| 
      
 23 
     | 
    
         
            +
             
     | 
| 
      
 24 
     | 
    
         
            +
                  def class_keyword
         
     | 
| 
      
 25 
     | 
    
         
            +
                    str("class")
         
     | 
| 
      
 26 
     | 
    
         
            +
                  end
         
     | 
| 
      
 27 
     | 
    
         
            +
             
     | 
| 
      
 28 
     | 
    
         
            +
                  def end_keyword
         
     | 
| 
      
 29 
     | 
    
         
            +
                    str("end")
         
     | 
| 
      
 30 
     | 
    
         
            +
                  end
         
     | 
| 
      
 31 
     | 
    
         
            +
             
     | 
| 
      
 32 
     | 
    
         
            +
                  def lesser
         
     | 
| 
      
 33 
     | 
    
         
            +
                    str("<")
         
     | 
| 
      
 34 
     | 
    
         
            +
                  end
         
     | 
| 
      
 35 
     | 
    
         
            +
             
     | 
| 
      
 36 
     | 
    
         
            +
                  def root
         
     | 
| 
      
 37 
     | 
    
         
            +
                    (
         
     | 
| 
      
 38 
     | 
    
         
            +
                      class_keyword << whitespace? << name.aka(:name) <<
         
     | 
| 
      
 39 
     | 
    
         
            +
                      (whitespace? << lesser << name.aka(:superclass)).maybe <<
         
     | 
| 
      
 40 
     | 
    
         
            +
                      code.aka(:body) << end_keyword.maybe
         
     | 
| 
      
 41 
     | 
    
         
            +
                    ).aka(:class) | statement
         
     | 
| 
      
 42 
     | 
    
         
            +
                  end
         
     | 
| 
      
 43 
     | 
    
         
            +
                end
         
     | 
| 
      
 44 
     | 
    
         
            +
              end
         
     | 
| 
      
 45 
     | 
    
         
            +
            end
         
     |