Method: Rex::Poly::LogicalBlock#reset
- Defined in:
- lib/rex/poly/block.rb
#reset ⇒ Object
Resets the block back to its starting point.
87 88 89 90 91 92 93 94 95 96 97 98 |
# File 'lib/rex/poly/block.rb', line 87 def reset @perms = [] @depends = [] @next_blocks = [] @clobbers = [] @offset = nil @state = nil @once = false @references = 0 @used_references = 0 @generated = false end |