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?, #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
#initialize(token, options = {}) ⇒ NameRecursionLevel
Returns a new instance of NameRecursionLevel.
54 55 56 57 58 |
# File 'lib/regexp_parser/expression/classes/backreference.rb', line 54 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.
52 53 54 |
# File 'lib/regexp_parser/expression/classes/backreference.rb', line 52 def recursion_level @recursion_level end |