pharo-project / pharo-vm

This is the VM used by Pharo
http://pharo.org
Other
113 stars 68 forks source link

Remove deprecated methods #821

Open guillep opened 3 months ago

guillep commented 3 months ago

Several methods call self deprecated and should be removed.

objectArg: offset
    "Like #stackObjectValue: but access method arguments left-to-right"
    "Obsolete; was never used; replaced with methodReturnFloat: in the VirtualMachine struct."
    | oop |
    self deprecated.
    oop := self methodArg: offset.
    (self isImmediate: oop) ifTrue: [self primitiveFail. ^ nil].
    ^oop