Class: Regexp::Expression::Backreference::NameRecursionLevel
- Inherits:
- 
      Name
      
        - Object
- Regexp::Expression::Base
- Base
- Name
- Regexp::Expression::Backreference::NameRecursionLevel
 
- Defined in:
- lib/regexp_parser/expression/classes/backref.rb
Instance Attribute Summary collapse
- 
  
    
      #recursion_level  ⇒ Object 
    
    
  
  
  
  
    
      readonly
    
    
  
  
  
  
  
  
    Returns the value of attribute recursion_level. 
Attributes inherited from Name
Attributes inherited from Base
Attributes inherited from Regexp::Expression::Base
#conditional_level, #level, #nesting_level, #options, #quantifier, #set_level, #text, #token, #ts, #type
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?, #attributes, #case_insensitive?, #coded_offset, #default_classes?, #free_spacing?, #full_length, #greedy?, #initialize_clone, #is?, #match, #match?, #multiline?, #offset, #one_of?, #possessive?, #quantified?, #quantifier_affix, #quantify, #quantity, #reluctant?, #repetitions, #strfregexp, #terminal?, #to_re, #to_s, #type?, #unicode_classes?, #unquantified_clone
Constructor Details
#initialize(token, options = {}) ⇒ NameRecursionLevel
Returns a new instance of NameRecursionLevel.
| 48 49 50 51 52 | # File 'lib/regexp_parser/expression/classes/backref.rb', line 48 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.
| 46 47 48 | # File 'lib/regexp_parser/expression/classes/backref.rb', line 46 def recursion_level @recursion_level end |