Class: Regexp::Expression::Backreference::NameRecursionLevel
- Inherits:
 - 
      Name
      
        
- Object
 - Regexp::Expression::Base
 - Base
 - Name
 - Regexp::Expression::Backreference::NameRecursionLevel
 
 
- Defined in:
 - lib/regexp_parser/expression/classes/backreference.rb
 
Instance Attribute Summary collapse
- 
  
    
      #recursion_level  ⇒ Object 
    
    
  
  
  
  
    
      readonly
    
    
  
  
  
  
  
  
    
Returns the value of attribute recursion_level.
 
Attributes inherited from Name
Attributes inherited from Base
Instance Method Summary collapse
- 
  
    
      #initialize(token, options = {})  ⇒ NameRecursionLevel 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of NameRecursionLevel.
 
Methods inherited from Base
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?, #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, = {}) super @name, recursion_level = token.text[3..-2].split(/(?=[+-])/) @recursion_level = recursion_level.to_i end  | 
  
Instance Attribute Details
#recursion_level ⇒ Object (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  |