Class: Regexp::Expression::Backreference::NumberRecursionLevel
- Inherits:
-
Number
- Object
- Regexp::Expression::Base
- Base
- Number
- Regexp::Expression::Backreference::NumberRecursionLevel
- 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 Number
Attributes inherited from Base
Instance Method Summary collapse
-
#initialize(token, options = {}) ⇒ NumberRecursionLevel
constructor
A new instance of NumberRecursionLevel.
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 = {}) ⇒ NumberRecursionLevel
Returns a new instance of NumberRecursionLevel.
45 46 47 48 |
# File 'lib/regexp_parser/expression/classes/backreference.rb', line 45 def initialize(token, = {}) super @number, @recursion_level = token.text[3..-2].split(/(?=[+-])/).map(&:to_i) end |
Instance Attribute Details
#recursion_level ⇒ Object (readonly)
Returns the value of attribute recursion_level.
43 44 45 |
# File 'lib/regexp_parser/expression/classes/backreference.rb', line 43 def recursion_level @recursion_level end |