Class: Regexp::Expression::Backreference::NameRecursionLevel

Inherits:
Name show all
Defined in:
lib/regexp_parser/expression/classes/backreference.rb

Instance Attribute Summary collapse

Attributes inherited from Name

#name

Attributes inherited from Base

#referenced_expression

Instance Method Summary collapse

Methods inherited from Base

#initialize_copy

Methods inherited from Regexp::Expression::Base

#ascii_classes?, #case_insensitive?, #default_classes?, #free_spacing?, #greedy?, #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, #ends_at, #full_length, #human_name, included, #initialize_copy, #inspect, #is?, #negated?, #negative?, #nesting_level=, #offset, #one_of?, #optional?, #parts, #pre_quantifier_decoration, #pretty_print, #pretty_print_instance_variables, #quantified?, #quantifier=, #quantifier_affix, #starts_at, #to_s, #token_class, #type?

Constructor Details

#initialize(token, options = {}) ⇒ NameRecursionLevel

Returns a new instance of NameRecursionLevel.



65
66
67
68
69
# File 'lib/regexp_parser/expression/classes/backreference.rb', line 65

def initialize(token, options = {})
  super
  @name, recursion_level = token.text[3..-2].split(/(?=[+-])/)
  @recursion_level = recursion_level.to_i
end

Instance Attribute Details

#recursion_levelObject (readonly)

Returns the value of attribute recursion_level.



63
64
65
# File 'lib/regexp_parser/expression/classes/backreference.rb', line 63

def recursion_level
  @recursion_level
end