Sha256: 2601bb8e27de96b7635ebf1271c35a2cd567df0169aa4de50a930aaae9278c0e

Contents?: true

Size: 317 Bytes

Versions: 17

Compression:

Stored size: 317 Bytes

Contents

module Regexp::Syntax
  module Token

    module CharacterType
      Basic     = []
      Extended  = [:digit, :nondigit, :space, :nonspace, :word, :nonword]
      Hex       = [:hex, :nonhex]

      All = Basic + Extended + Hex
      Type = :type
    end

    Map[CharacterType::Type] = CharacterType::All

  end
end

Version data entries

17 entries across 17 versions & 1 rubygems

Version Path
regexp_parser-0.4.5 lib/regexp_parser/syntax/tokens/character_type.rb
regexp_parser-0.4.4 lib/regexp_parser/syntax/tokens/character_type.rb
regexp_parser-0.4.3 lib/regexp_parser/syntax/tokens/character_type.rb
regexp_parser-0.4.2 lib/regexp_parser/syntax/tokens/character_type.rb
regexp_parser-0.4.1 lib/regexp_parser/syntax/tokens/character_type.rb
regexp_parser-0.4.0 lib/regexp_parser/syntax/tokens/character_type.rb
regexp_parser-0.3.6 lib/regexp_parser/syntax/tokens/character_type.rb
regexp_parser-0.3.5 lib/regexp_parser/syntax/tokens/character_type.rb
regexp_parser-0.3.4 lib/regexp_parser/syntax/tokens/character_type.rb
regexp_parser-0.3.3 lib/regexp_parser/syntax/tokens/character_type.rb
regexp_parser-0.3.2 lib/regexp_parser/syntax/tokens/character_type.rb
regexp_parser-0.3.1 lib/regexp_parser/syntax/tokens/character_type.rb
regexp_parser-0.3.0 lib/regexp_parser/syntax/tokens/character_type.rb
regexp_parser-0.2.1 lib/regexp_parser/syntax/tokens/character_type.rb
regexp_parser-0.2.0 lib/regexp_parser/syntax/tokens/character_type.rb
regexp_parser-0.1.6 lib/regexp_parser/syntax/tokens/character_type.rb
regexp_parser-0.1.5 lib/regexp_parser/syntax/tokens/character_type.rb