Class: Regexp::Expression::UnicodeProperty::Base

Inherits:
Base
  • Object
show all
Defined in:
lib/regexp_parser/expression/classes/unicode_property.rb

Instance Method Summary collapse

Methods inherited from Base

#ascii_classes?, #case_insensitive?, #default_classes?, #free_spacing?, #greedy?, #initialize, #initialize_copy, #match, #match?, #multiline?, #possessive?, #quantify, #quantity, #reluctant?, #repetitions, #strfregexp, #to_h, #to_re, #unicode_classes?, #unquantified_clone

Methods included from Shared

#==, #base_length, #coded_offset, #full_length, included, #initialize_copy, #is?, #nesting_level=, #offset, #one_of?, #parts, #quantified?, #quantifier_affix, #starts_at, #terminal?, #to_s, #token_class, #type?

Constructor Details

This class inherits a constructor from Regexp::Expression::Base

Instance Method Details

#nameObject



9
10
11
# File 'lib/regexp_parser/expression/classes/unicode_property.rb', line 9

def name
  text[/\A\\[pP]\{([^}]+)\}\z/, 1]
end

#negative?Boolean

Returns:

  • (Boolean)


5
6
7
# File 'lib/regexp_parser/expression/classes/unicode_property.rb', line 5

def negative?
  type == :nonproperty
end

#shortcutObject



13
14
15
# File 'lib/regexp_parser/expression/classes/unicode_property.rb', line 13

def shortcut
  (Regexp::Scanner.short_prop_map.rassoc(token.to_s) || []).first
end