Sha256: 4872f138effe2af9c4f9e35ef8cf463f320389465190d380fd13ad6d97e1ed0a
Contents?: true
Size: 500 Bytes
Versions: 55
Compression:
Stored size: 500 Bytes
Contents
module Regexp::Syntax module Token module Group Basic = [:capture, :close] Extended = Basic + [:options, :options_switch] Named = [:named] Atomic = [:atomic] Passive = [:passive] Comment = [:comment] V1_8_6 = Group::Extended + Group::Named + Group::Atomic + Group::Passive + Group::Comment V2_4_1 = [:absence] All = V1_8_6 + V2_4_1 Type = :group end Map[Group::Type] = Group::All end end
Version data entries
55 entries across 42 versions & 9 rubygems