Skip to content

Commit

Permalink
Fix stack interpreter
Browse files Browse the repository at this point in the history
  • Loading branch information
guillep committed Oct 19, 2023
1 parent aaec6ed commit 6d49a27
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
7 changes: 0 additions & 7 deletions smalltalksrc/VMMaker/CoInterpreter.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -2606,13 +2606,6 @@ CoInterpreter >> executeFullCogBlock: cogMethod closure: closure mayContextSwitc
"NOTREACHED"
]

{ #category : #'message sending' }
CoInterpreter >> executeNewMethod [

"Eagerly compile method"
self executeNewMethod: true
]

{ #category : #'message sending' }
CoInterpreter >> executeNewMethod: eagerlyCompile [
"if not primitive, or primitive failed, activate the method"
Expand Down
7 changes: 7 additions & 0 deletions smalltalksrc/VMMaker/StackInterpreter.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -5424,6 +5424,13 @@ StackInterpreter >> establishFrameForContextToReturnTo: contextToReturnTo [

{ #category : #'message sending' }
StackInterpreter >> executeNewMethod [

"Eagerly compile method"
self executeNewMethod: true
]

{ #category : #'message sending' }
StackInterpreter >> executeNewMethod: eagerlyCompile [
"if not primitive, or primitive failed, activate the method"

| inInterpreter |
Expand Down

0 comments on commit 6d49a27

Please sign in to comment.