lib/regexp_parser/syntax/ruby/2.0.0.rb



require File.expand_path('../1.9', __FILE__)

module Regexp::Syntax
  module Ruby

    # use the last 1.9 release as the base
    class V200 < Regexp::Syntax::Ruby::V19
      def initialize
        super

        implements :keep,        Keep::All
        implements :conditional, Conditional::All
        implements :property,    UnicodeProperty::V200
        implements :nonproperty, UnicodeProperty::V200
      end
    end

  end
end