Sha256: 429268ca261cf33fae0c29367bd73296f7f3b187c772863407b2e1c31075dd35

Contents?: true

Size: 263 Bytes

Versions: 6

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::GreaterThan
        )
      end
    end
  end
end

Version data entries

6 entries across 6 versions & 2 rubygems

Version Path
template-ruby-parser-0.1.2 lib/code/parser/or_operator.rb
code-ruby-parser-0.1.2 lib/code/parser/or_operator.rb
template-ruby-parser-0.1.1 lib/code/parser/or_operator.rb
code-ruby-parser-0.1.1 lib/code/parser/or_operator.rb
template-ruby-parser-0.1.0 lib/code/parser/or_operator.rb
code-ruby-parser-0.1.0 lib/code/parser/or_operator.rb