File: 1.8.6.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 (16 lines) | stat: -rw-r--r-- 656 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# frozen_string_literal: true

class Regexp::Syntax::V1_8_6 < Regexp::Syntax::Base
  implements :anchor,     Anchor::All
  implements :assertion,  Assertion::Lookahead
  implements :backref,    Backreference::V1_8_6
  implements :escape,     Escape::Basic + Escape::ASCII + Escape::Meta + Escape::Control
  implements :free_space, FreeSpace::All
  implements :group,      Group::V1_8_6
  implements :literal,    Literal::All
  implements :meta,       Meta::Extended
  implements :posixclass, PosixClass::Standard
  implements :quantifier, Quantifier::V1_8_6
  implements :set,        CharacterSet::All
  implements :type,       CharacterType::Extended
end