]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/compiler/compiler.factor
generic: rename method-body predicate class to method
[factor.git] / basis / compiler / compiler.factor
index 5be2b0de8744626cfa38a0f341410d11be7edcd2..f83eab7fb053d5815358f20ef6c9f2ddd25163d5 100644 (file)
@@ -54,7 +54,7 @@ SYMBOL: compiled
 
 GENERIC: no-compile? ( word -- ? )
 
-M: method-body no-compile? "method-generic" word-prop no-compile? ;
+M: method no-compile? "method-generic" word-prop no-compile? ;
 
 M: predicate-engine-word no-compile? "owner-generic" word-prop no-compile? ;
 
@@ -63,7 +63,7 @@ M: word no-compile?
 
 GENERIC: combinator? ( word -- ? )
 
-M: method-body combinator? "method-generic" word-prop combinator? ;
+M: method combinator? "method-generic" word-prop combinator? ;
 
 M: predicate-engine-word combinator? "owner-generic" word-prop combinator? ;