Bug fix in method inlining

db4
Daniel Ehrenberg 2010-04-25 02:56:23 -05:00
parent 23e78b8380
commit 0d055060ad
1 changed files with 3 additions and 3 deletions

View File

@ -51,12 +51,12 @@ M: callable splicing-nodes splicing-body ;
ERROR: bad-splitting class generic ;
:: split-code ( class generic -- quot/f )
class generic method-for-class :> method
method [ class generic bad-splitting ] unless
class generic method :> my-method
my-method [ class generic bad-splitting ] unless
generic dispatch# (picker) :> picker
[
picker call class instance?
[ method execute ]
[ my-method execute ]
[ generic no-method ] if
] ;