| Class | Ruva::VM::BootClass |
| In: |
lib/ruva/vm.rb
|
| Parent: | Object |
A very simple mock Ruva::VM::Class that holds the BootMethod and appropriate main method details for the initial call. This is used by Ruva::VM::Stack::BottomFrame.
| methods | [R] | |
| name | [R] | |
| pool | [R] |
# File lib/ruva/vm.rb, line 46
46: def initialize(main_class_name, main_method_name, main_method_desc)
47: @name = "ruva/vm/BootClass"
48:
49: @pool = [
50: self,
51: { :class => main_class_name , :name => main_method_name, :desc => main_method_desc } # method entry
52: ]
53:
54: @methods = [BootMethod.new]
55: end