File tree Expand file tree Collapse file tree 5 files changed +4
-8
lines changed
Expand file tree Collapse file tree 5 files changed +4
-8
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ static vm_oop_t mSignature(vm_oop_t rcvr) {
2020}
2121
2222static void mInvokeOnWith (VMFrame* frame) {
23- // REM: this is a clone with _Primitive::InvokeOn_With_
23+ // REM: this is a clone with _Primitive pInvokeOnWith
2424 auto * args = static_cast <VMArray*>(frame->Pop ());
2525 auto * rcvr = frame->Pop ();
2626 auto * mthd = static_cast <VMMethod*>(frame->Pop ());
Original file line number Diff line number Diff line change 66class _Method : public PrimitiveContainer {
77public:
88 _Method ();
9-
10- void InvokeOn_With_ (VMFrame*);
119};
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ static vm_oop_t pSignature(vm_oop_t rcvr) {
1818}
1919
2020static void pInvokeOnWith (VMFrame* frame) {
21- // REM: this is a clone with _Primitive::InvokeOn_With_
21+ // REM: this is a clone with _Method mInvokeOnWith
2222 auto * args = static_cast <VMArray*>(frame->Pop ());
2323 auto * rcvr = frame->Pop ();
2424 auto * mthd = static_cast <VMInvokable*>(frame->Pop ());
Original file line number Diff line number Diff line change 66class _Primitive : public PrimitiveContainer {
77public:
88 _Primitive ();
9-
10- void InvokeOn_With_ (VMFrame*);
119};
Original file line number Diff line number Diff line change @@ -52,8 +52,8 @@ class VMFrame : public AbstractVMObject {
5252 arguments((gc_oop_t *)&(stack_ptr) + 1),
5353 locals(arguments + method->GetNumberOfArguments ()),
5454 stack_ptr(locals + method->GetNumberOfLocals () - 1) {
55- // initilize all other fields. Don't need to initalize arguments,
56- // because they iwll be copied in still
55+ // initialize all other fields. Don't need to initialize arguments,
56+ // because they will be copied in still
5757 // --> until end of Frame
5858 auto * end = (gc_oop_t *)SHIFTED_PTR (this , totalObjectSize);
5959 size_t i = 0 ;
You can’t perform that action at this time.
0 commit comments