]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/compiler/tree/cleanup/cleanup-tests.factor
core: Rename iota to <iota> so we can have TUPLE: iota ... ; instead of TUPLE: iota...
[factor.git] / basis / compiler / tree / cleanup / cleanup-tests.factor
index 7630a0e332288f0d2f668480977bef7d1619e4c9..53a4ce8fdabbde178b298aeb326af67dd85620ee 100644 (file)
@@ -329,23 +329,23 @@ cell-bits 32 = [
 ] unit-test
 
 { t } [
-    [ { fixnum } declare iota [ drop ] each ]
+    [ { fixnum } declare <iota> [ drop ] each ]
     { < <-integer-fixnum +-integer-fixnum + } inlined?
 ] unit-test
 
 { t } [
-    [ { fixnum } declare iota 0 [ + ] reduce ]
+    [ { fixnum } declare <iota> 0 [ + ] reduce ]
     { < <-integer-fixnum nth-unsafe } inlined?
 ] unit-test
 
 { f } [
-    [ { fixnum } declare iota 0 [ + ] reduce ]
+    [ { fixnum } declare <iota> 0 [ + ] reduce ]
     \ +-integer-fixnum inlined?
 ] unit-test
 
 { t } [
     [
-        { integer } declare iota [ ] map
+        { integer } declare <iota> [ ] map
     ] \ integer>fixnum inlined?
 ] unit-test
 
@@ -388,7 +388,7 @@ cell-bits 32 = [
 
 { t } [
     [
-        { integer } declare iota [ 0 >= ] map
+        { integer } declare <iota> [ 0 >= ] map
     ] { >= fixnum>= } inlined?
 ] unit-test