]> gitweb.factorcode.org Git - factor.git/commitdiff
Rename method -> lookup-method in three places.
authorDoug Coleman <doug.coleman@gmail.com>
Wed, 5 Oct 2011 03:37:23 +0000 (20:37 -0700)
committerDoug Coleman <doug.coleman@gmail.com>
Wed, 5 Oct 2011 03:37:23 +0000 (20:37 -0700)
basis/functors/functors-tests.factor
basis/locals/locals-tests.factor
basis/tools/crossref/crossref-tests.factor

index f1e4040167ff0ccd8ad9965566b209f41d3d3bed..aaa349262f263132e21d55ed41189e5b400b372a 100644 (file)
@@ -120,7 +120,7 @@ M: integer W 1 + ;
     [ t ] [ "some-generic" "functors.tests" lookup >boolean ] unit-test
     [ t ] [
         "some-tuple" "functors.tests" lookup
-        "some-generic" "functors.tests" lookup method >boolean
+        "some-generic" "functors.tests" lookup lookup-method >boolean
     ] unit-test ;
     [ t ] [ "some-symbol" "functors.tests" lookup >boolean ] unit-test
 
index 7aa8032cddeefbdaf7d0e5d2abd5716a79758d73..b340d5ebacc54f3f43e03a1b0d39e828b713742d 100644 (file)
@@ -200,7 +200,7 @@ GENERIC: method-with-locals ( x -- y )
 M:: sequence method-with-locals ( a -- y ) a reverse ;
 
 [ t ] [
-    [ \ sequence \ method-with-locals method see ] with-string-writer
+    [ \ sequence \ method-with-locals lookup-method see ] with-string-writer
     method-definition =
 ] unit-test
 
index 80f5367fb6f0675895d5cecfce05137839ada053..fb42d491b998336f0a1ac5d979742d17221a622d 100644 (file)
@@ -9,7 +9,7 @@ M: integer foo + ;
 
 "vocab:tools/crossref/test/foo.factor" run-file
 
-[ t ] [ integer \ foo method \ + usage member? ] unit-test
+[ t ] [ integer \ foo lookup-method \ + usage member? ] unit-test
 [ t ] [ \ foo usage [ pathname? ] any? ] unit-test
 
 ! Issues with forget