Class: RegularExpression::Bytecode::Insns::JumpValue
- Inherits:
-
Struct
- Object
- Struct
- RegularExpression::Bytecode::Insns::JumpValue
- Defined in:
- lib/regular_expression/bytecode.rb
Overview
If it’s possible to read a character off the input and that character matches the char value, then do so and jump to the target instruction.
Instance Attribute Summary collapse
-
#char ⇒ Object
Returns the value of attribute char.
-
#target ⇒ Object
Returns the value of attribute target.
Instance Attribute Details
#char ⇒ Object
Returns the value of attribute char
111 112 113 |
# File 'lib/regular_expression/bytecode.rb', line 111 def char @char end |
#target ⇒ Object
Returns the value of attribute target
111 112 113 |
# File 'lib/regular_expression/bytecode.rb', line 111 def target @target end |