Class: RegularExpression::Bytecode::Insns::JumpRange
- Inherits:
-
Struct
- Object
- Struct
- RegularExpression::Bytecode::Insns::JumpRange
- Defined in:
- lib/regular_expression/bytecode.rb
Overview
If it’s possible to read a character off the input and that character is within the range of possible values, then do so and jump to the target instruction.
Instance Attribute Summary collapse
-
#left ⇒ Object
Returns the value of attribute left.
-
#right ⇒ Object
Returns the value of attribute right.
-
#target ⇒ Object
Returns the value of attribute target.
Instance Attribute Details
#left ⇒ Object
Returns the value of attribute left
121 122 123 |
# File 'lib/regular_expression/bytecode.rb', line 121 def left @left end |
#right ⇒ Object
Returns the value of attribute right
121 122 123 |
# File 'lib/regular_expression/bytecode.rb', line 121 def right @right end |
#target ⇒ Object
Returns the value of attribute target
121 122 123 |
# File 'lib/regular_expression/bytecode.rb', line 121 def target @target end |