Sha256: 0f0b8199a324f3a5297ba64b2b0d0023547f230b95cde5a789aa396004c880ec

Contents?: true

Size: 271 Bytes

Versions: 12

Compression:

Stored size: 271 Bytes

Contents

class Code
  class Parser
    class AndOperator < ::Code::Parser
      def parse
        parse_subclass(
          ::Code::Parser::Operation,
          operators: [AMPERSAND + AMPERSAND],
          subclass: ::Code::Parser::Equality
        )
      end
    end
  end
end

Version data entries

12 entries across 12 versions & 2 rubygems

Version Path
template-ruby-parser-0.1.8 lib/code/parser/and_operator.rb
code-ruby-parser-0.1.8 lib/code/parser/and_operator.rb
template-ruby-parser-0.1.7 lib/code/parser/and_operator.rb
code-ruby-parser-0.1.7 lib/code/parser/and_operator.rb
template-ruby-parser-0.1.6 lib/code/parser/and_operator.rb
code-ruby-parser-0.1.6 lib/code/parser/and_operator.rb
template-ruby-parser-0.1.5 lib/code/parser/and_operator.rb
code-ruby-parser-0.1.5 lib/code/parser/and_operator.rb
template-ruby-parser-0.1.4 lib/code/parser/and_operator.rb
code-ruby-parser-0.1.4 lib/code/parser/and_operator.rb
template-ruby-parser-0.1.3 lib/code/parser/and_operator.rb
code-ruby-parser-0.1.3 lib/code/parser/and_operator.rb