Sha256: 7610d090399e004a1885a116af5bef57e324c776a9fe6e19caca2e6b1c354b1c

Contents?: true

Size: 263 Bytes

Versions: 12

Compression:

Stored size: 263 Bytes

Contents

class Code
  class Parser
    class OrOperator < ::Code::Parser
      def parse
        parse_subclass(
          ::Code::Parser::Operation,
          operators: [PIPE + PIPE],
          subclass: ::Code::Parser::AndOperator
        )
      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/or_operator.rb
code-ruby-parser-0.1.8 lib/code/parser/or_operator.rb
template-ruby-parser-0.1.7 lib/code/parser/or_operator.rb
code-ruby-parser-0.1.7 lib/code/parser/or_operator.rb
template-ruby-parser-0.1.6 lib/code/parser/or_operator.rb
code-ruby-parser-0.1.6 lib/code/parser/or_operator.rb
template-ruby-parser-0.1.5 lib/code/parser/or_operator.rb
code-ruby-parser-0.1.5 lib/code/parser/or_operator.rb
template-ruby-parser-0.1.4 lib/code/parser/or_operator.rb
code-ruby-parser-0.1.4 lib/code/parser/or_operator.rb
template-ruby-parser-0.1.3 lib/code/parser/or_operator.rb
code-ruby-parser-0.1.3 lib/code/parser/or_operator.rb