Sha256: a422291188335000c911b5522bb06afe7a29d8de74a682483a45d097c2f9bb46

Contents?: true

Size: 299 Bytes

Versions: 18

Compression:

Stored size: 299 Bytes

Contents

class Code
  class Parser
    class GreaterThan < ::Code::Parser
      def parse
        parse_subclass(
          ::Code::Parser::Operation,
          operators: [GREATER + EQUAL, LESSER + EQUAL, GREATER, LESSER],
          subclass: ::Code::Parser::BitwiseOr
        )
      end
    end
  end
end

Version data entries

18 entries across 18 versions & 2 rubygems

Version Path
template-ruby-parser-0.1.8 lib/code/parser/greater_than.rb
code-ruby-parser-0.1.8 lib/code/parser/greater_than.rb
template-ruby-parser-0.1.7 lib/code/parser/greater_than.rb
code-ruby-parser-0.1.7 lib/code/parser/greater_than.rb
template-ruby-parser-0.1.6 lib/code/parser/greater_than.rb
code-ruby-parser-0.1.6 lib/code/parser/greater_than.rb
template-ruby-parser-0.1.5 lib/code/parser/greater_than.rb
code-ruby-parser-0.1.5 lib/code/parser/greater_than.rb
template-ruby-parser-0.1.4 lib/code/parser/greater_than.rb
code-ruby-parser-0.1.4 lib/code/parser/greater_than.rb
template-ruby-parser-0.1.3 lib/code/parser/greater_than.rb
code-ruby-parser-0.1.3 lib/code/parser/greater_than.rb
template-ruby-parser-0.1.2 lib/code/parser/greater_than.rb
code-ruby-parser-0.1.2 lib/code/parser/greater_than.rb
template-ruby-parser-0.1.1 lib/code/parser/greater_than.rb
code-ruby-parser-0.1.1 lib/code/parser/greater_than.rb
template-ruby-parser-0.1.0 lib/code/parser/greater_than.rb
code-ruby-parser-0.1.0 lib/code/parser/greater_than.rb