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

class Regexp::Syntax::V2_0_0 < Regexp::Syntax::V1_9_3
  implements :keep,        Keep::All
  implements :conditional, Conditional::All
  implements :property,    UnicodeProperty::V2_0_0
  implements :nonproperty, UnicodeProperty::V2_0_0
  implements :type,        CharacterType::Clustered

  excludes   :property,    %i[newline]
  excludes   :nonproperty, %i[newline]
end