Sha256: eb2e74132e4cd750083bf7bde1455f0c6ba274a6e94bec36f752c91295d6f0f5

Contents?: true

Size: 702 Bytes

Versions: 2

Compression:

Stored size: 702 Bytes

Contents

module Regexp::Syntax
  class V1_8_6 < Regexp::Syntax::Base
    def initialize
      super

      implements :anchor, Anchor::All
      implements :assertion, Assertion::Lookahead
      implements :backref, Backreference::Plain
      implements :posixclass, PosixClass::Standard
      implements :group, Group::All
      implements :meta, Meta::Extended
      implements :set, CharacterSet::All
      implements :type, CharacterType::Extended
      implements :escape,
        Escape::Basic + Escape::ASCII + Escape::Meta + Escape::Control
      implements :quantifier,
        Quantifier::Greedy + Quantifier::Reluctant +
        Quantifier::Interval + Quantifier::IntervalReluctant
    end
  end
end

Version data entries

2 entries across 2 versions & 2 rubygems

Version Path
phillipug-foodie-0.1.0 .vendor/ruby/3.0.0/gems/regexp_parser-2.2.0/lib/regexp_parser/syntax/versions/1.8.6.rb
regexp_parser-2.2.0 lib/regexp_parser/syntax/versions/1.8.6.rb