From 685fc2f86fb85897338597e218240a73235fda06 Mon Sep 17 00:00:00 2001 From: Doug Coleman Date: Tue, 4 Oct 2011 20:37:23 -0700 Subject: [PATCH] Rename method -> lookup-method in three places. --- basis/functors/functors-tests.factor | 2 +- basis/locals/locals-tests.factor | 2 +- basis/tools/crossref/crossref-tests.factor | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/basis/functors/functors-tests.factor b/basis/functors/functors-tests.factor index f1e4040167..aaa349262f 100644 --- a/basis/functors/functors-tests.factor +++ b/basis/functors/functors-tests.factor @@ -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 diff --git a/basis/locals/locals-tests.factor b/basis/locals/locals-tests.factor index 7aa8032cdd..b340d5ebac 100644 --- a/basis/locals/locals-tests.factor +++ b/basis/locals/locals-tests.factor @@ -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 diff --git a/basis/tools/crossref/crossref-tests.factor b/basis/tools/crossref/crossref-tests.factor index 80f5367fb6..fb42d491b9 100644 --- a/basis/tools/crossref/crossref-tests.factor +++ b/basis/tools/crossref/crossref-tests.factor @@ -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