lib/regexp_parser/syntax/ruby/1.9.3.rb



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

module Regexp::Syntax

  module Ruby
    class V193 < Regexp::Syntax::Ruby::V192
      include Regexp::Syntax::Token

      def initialize
        super

        # these were added with update of Oniguruma to Unicode 6.0
        implements :property,    UnicodeProperty::V193
        implements :nonproperty, UnicodeProperty::V193
      end
    end
  end

end