File: 1.9.1.rb

package info (click to toggle)
ruby-regexp-parser 2.11.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,092 kB
  • sloc: ruby: 6,891; makefile: 6; sh: 3
file content (13 lines) | stat: -rw-r--r-- 627 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

class Regexp::Syntax::V1_9_1 < Regexp::Syntax::V1_8_6
  implements :assertion,     Assertion::Lookbehind
  implements :backref,       Backreference::V1_9_1 + SubexpressionCall::All
  implements :escape,        Escape::Unicode + Escape::Hex + Escape::Octal
  implements :posixclass,    PosixClass::Extensions
  implements :nonposixclass, PosixClass::All
  implements :property,      UnicodeProperty::V1_9_0
  implements :nonproperty,   UnicodeProperty::V1_9_0
  implements :quantifier,    Quantifier::Possessive + Quantifier::IntervalPossessive
  implements :type,          CharacterType::Hex
end