Class Ruva::VM::Stack::BottomFrame
In: lib/ruva/stack.rb
Parent: Frame

A special type of frame for the bottom frame. This is initialized by the VM at startup. It‘s job is simply to load up the main class and invoke the starting method (must be static). It can also be used to get any final result from the return of that method.

Methods

new  

Public Class methods

[Source]

     # File lib/ruva/stack.rb, line 131
131:         def initialize(main_class_name, main_method_name = 'main', main_method_desc = '([String)V', main_args = [nil])
132:           super(BootClass.new(main_class_name, main_method_name, main_method_desc), 0, [*main_args])
133:         end

[Validate]