codefrau / SqueakJS

A Squeak Smalltalk VM in Javascript
https://squeak.js.org
MIT License
365 stars 75 forks source link

primitiveFetchMourner (172) missing in new primitives #97

Closed pavel-krivanek closed 3 years ago

pavel-krivanek commented 4 years ago

We do not implement primitiveFetchMourner (172) in the new primitives. I use this workaround to do not let it fail in Pharo:

case 172: if (this.oldPrims) return this.namedPrimitive('SoundPlugin', 'primitiveSoundStop', argCount);
                else return this.popNandPushIfOK(argCount, this.vm.nilObj); //primitiveFetchMourner
codefrau commented 4 years ago

would failing this not be okay?