Class Ruva::VM::Class::Exception
In: lib/ruva/class.rb
Parent: Object

Methods

in_range?  

Public Instance methods

helper, determines whether the specified pc is in range

[Source]

     # File lib/ruva/class.rb, line 296
296:         def in_range?(pc)
297:           pc >= start_pc and pc < end_pc        
298:         end

[Validate]