From bf5ff117207f0f8570b1cf12e0f943a5a34cf304 Mon Sep 17 00:00:00 2001 From: Slava Pestov Date: Fri, 16 Jan 2009 15:14:30 -0600 Subject: [PATCH] Update usages of all-equal? now that its in the grouping vocab --- basis/compiler/tree/checker/checker.factor | 2 +- basis/compiler/tree/escape-analysis/branches/branches.factor | 2 +- basis/compiler/tree/propagation/copy/copy.factor | 2 +- basis/stack-checker/branches/branches.factor | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/basis/compiler/tree/checker/checker.factor b/basis/compiler/tree/checker/checker.factor index 4f99fa015d..a5f18d6389 100644 --- a/basis/compiler/tree/checker/checker.factor +++ b/basis/compiler/tree/checker/checker.factor @@ -2,7 +2,7 @@ ! See http://factorcode.org/license.txt for BSD license. USING: sequences kernel sets namespaces accessors assocs arrays combinators continuations columns math vectors -stack-checker.branches +grouping stack-checker.branches compiler.tree compiler.tree.def-use compiler.tree.combinators ; diff --git a/basis/compiler/tree/escape-analysis/branches/branches.factor b/basis/compiler/tree/escape-analysis/branches/branches.factor index 2eee3e698b..ca41ac59fc 100644 --- a/basis/compiler/tree/escape-analysis/branches/branches.factor +++ b/basis/compiler/tree/escape-analysis/branches/branches.factor @@ -1,7 +1,7 @@ ! Copyright (C) 2008 Slava Pestov. ! See http://factorcode.org/license.txt for BSD license. USING: accessors kernel namespaces sequences sets fry columns -stack-checker.branches +grouping stack-checker.branches compiler.tree compiler.tree.propagation.branches compiler.tree.escape-analysis.nodes diff --git a/basis/compiler/tree/propagation/copy/copy.factor b/basis/compiler/tree/propagation/copy/copy.factor index 53b7d17326..c989aaf672 100644 --- a/basis/compiler/tree/propagation/copy/copy.factor +++ b/basis/compiler/tree/propagation/copy/copy.factor @@ -1,7 +1,7 @@ ! Copyright (C) 2008 Slava Pestov. ! See http://factorcode.org/license.txt for BSD license. USING: namespaces sequences assocs math kernel accessors fry -combinators sets locals columns +combinators sets locals columns grouping stack-checker.branches compiler.tree compiler.tree.def-use diff --git a/basis/stack-checker/branches/branches.factor b/basis/stack-checker/branches/branches.factor index e4c11960de..aa179fe191 100644 --- a/basis/stack-checker/branches/branches.factor +++ b/basis/stack-checker/branches/branches.factor @@ -1,7 +1,7 @@ ! Copyright (C) 2008 Slava Pestov. ! See http://factorcode.org/license.txt for BSD license. USING: fry vectors sequences assocs math accessors kernel -combinators quotations namespaces stack-checker.state +combinators quotations namespaces grouping stack-checker.state stack-checker.backend stack-checker.errors stack-checker.visitor stack-checker.values stack-checker.recursive-state ; IN: stack-checker.branches