tools.cocoa: fix use of each-method-in-class.

paths
John Benediktsson 2018-03-13 13:28:35 -07:00
parent d259d7ccec
commit 5c69396fb3
1 changed files with 3 additions and 3 deletions

View File

@ -1,7 +1,7 @@
! Copyright (C) 2008 Slava Pestov.
! See http://factorcode.org/license.txt for BSD license.
USING: arrays cocoa.messages cocoa.runtime combinators
prettyprint combinators.smart ;
USING: cocoa.messages cocoa.runtime combinators
combinators.smart kernel prettyprint ;
IN: tools.cocoa
: method. ( method -- )
@ -15,4 +15,4 @@ IN: tools.cocoa
] output>array . ;
: methods. ( class -- )
[ method. ] each-method-in-class ;
[ nip method. ] each-method-in-class ;