Class: RegularExpression::Bytecode::Insns::JumpRangeInvert
- Inherits:
-
Struct
- Object
- Struct
- RegularExpression::Bytecode::Insns::JumpRangeInvert
- Defined in:
- lib/regular_expression/bytecode.rb
Overview
If it’s possible to read a character off the input and that character is not 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
126 127 128 |
# File 'lib/regular_expression/bytecode.rb', line 126 def left @left end |
#right ⇒ Object
Returns the value of attribute right
126 127 128 |
# File 'lib/regular_expression/bytecode.rb', line 126 def right @right end |
#target ⇒ Object
Returns the value of attribute target
126 127 128 |
# File 'lib/regular_expression/bytecode.rb', line 126 def target @target end |