You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
self node arguments do: [ :arg | self context pop ]. "Pop the arguments of the message send from the context's value stack"
573
+
574
+
"Increase the pc to go over the message send"
575
+
self context pc:self context pc +1.
576
+
"Execute bytecodes the debugger usually executes without stopping the execution (for example popping the return value of the just executed message send if it is not used afterwards)"
self node arguments do: [ :arg | self context pop ]. "Pop the arguments of the message send from the context's value stack"
583
+
584
+
self node arguments do: [ :arg | self context pop ]. "Pop the arguments of the message send from the context's value stack"
570
585
"Pop the receiver from the context's value stack"
571
586
self context pop.
572
587
"Push the replacement value on the context's value stack, to simulate that the message send happened and returned nil"
573
588
self context push: replacementValue.
574
589
"Increase the pc to go over the message send"
575
590
self context pc:self context pc +1.
576
591
"Execute bytecodes the debugger usually executes without stopping the execution (for example popping the return value of the just executed message send if it is not used afterwards)"
0 commit comments