]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/locals/parser/parser.factor
namespaces: Rename ``bind`` to ``with-variables``. Update a few places that called...
[factor.git] / basis / locals / parser / parser.factor
index 5548e95ae31cbe7d5abb89024b62cee18e93d8ea..861ffa54453b5fb196e809d6d70b6349408f246b 100644 (file)
@@ -46,10 +46,10 @@ SYMBOL: locals
     ?rewrite-closures ;
 
 : parse-multi-def ( locals -- multi-def )
-    [ ")" [ make-local ] map-tokens ] bind <multi-def> ;
+    [ ")" [ make-local ] map-tokens ] with-variables <multi-def> ;
 
 : parse-def ( name/paren locals -- def )
-    over "(" = [ nip parse-multi-def ] [ [ make-local ] bind <def> ] if ;
+    over "(" = [ nip parse-multi-def ] [ [ make-local ] with-variables <def> ] if ;
 
 M: lambda-parser parse-quotation ( -- quotation )
     H{ } clone (parse-lambda) ;