Sha256: a42a66506c9ddaa5c7496563856cfd93b552911fc6e598e29aaafed9430ebb96

Contents?: true

Size: 341 Bytes

Versions: 30

Compression:

Stored size: 341 Bytes

Contents

module Groonga
  class ExpressionRewriter
    class << self
      def register(name)
        ExpressionRewriters.register(name, self)
      end
    end

    def initialize(expression)
      @expression = expression
    end

    def rewrite
      nil
    end

    private
    def context
      @context ||= Context.instance
    end
  end
end

Version data entries

30 entries across 30 versions & 1 rubygems

Version Path
rroonga-9.0.7-x64-mingw32 vendor/local/lib/groonga/scripts/ruby/expression_rewriter.rb
rroonga-9.0.7-x86-mingw32 vendor/local/lib/groonga/scripts/ruby/expression_rewriter.rb
rroonga-9.0.3-x64-mingw32 vendor/local/lib/groonga/scripts/ruby/expression_rewriter.rb
rroonga-9.0.3-x86-mingw32 vendor/local/lib/groonga/scripts/ruby/expression_rewriter.rb
rroonga-9.0.2-x64-mingw32 vendor/local/lib/groonga/scripts/ruby/expression_rewriter.rb
rroonga-9.0.2-x86-mingw32 vendor/local/lib/groonga/scripts/ruby/expression_rewriter.rb
rroonga-7.1.1-x64-mingw32 vendor/local/lib/groonga/scripts/ruby/expression_rewriter.rb
rroonga-7.1.1-x86-mingw32 vendor/local/lib/groonga/scripts/ruby/expression_rewriter.rb
rroonga-7.0.2-x86-mingw32 vendor/local/lib/groonga/scripts/ruby/expression_rewriter.rb
rroonga-7.0.2-x64-mingw32 vendor/local/lib/groonga/scripts/ruby/expression_rewriter.rb
rroonga-6.1.3-x64-mingw32 vendor/local/lib/groonga/scripts/ruby/expression_rewriter.rb
rroonga-6.1.3-x86-mingw32 vendor/local/lib/groonga/scripts/ruby/expression_rewriter.rb
rroonga-6.1.0-x86-mingw32 vendor/local/lib/groonga/scripts/ruby/expression_rewriter.rb
rroonga-6.1.0-x64-mingw32 vendor/local/lib/groonga/scripts/ruby/expression_rewriter.rb
rroonga-6.0.9-x64-mingw32 vendor/local/lib/groonga/scripts/ruby/expression_rewriter.rb
rroonga-6.0.9-x86-mingw32 vendor/local/lib/groonga/scripts/ruby/expression_rewriter.rb
rroonga-6.0.7-x86-mingw32 vendor/local/lib/groonga/scripts/ruby/expression_rewriter.rb
rroonga-6.0.7-x64-mingw32 vendor/local/lib/groonga/scripts/ruby/expression_rewriter.rb
rroonga-6.0.5-x64-mingw32 vendor/local/lib/groonga/scripts/ruby/expression_rewriter.rb
rroonga-6.0.5-x86-mingw32 vendor/local/lib/groonga/scripts/ruby/expression_rewriter.rb