aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/library/lux/ffi.old.lux
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--stdlib/source/library/lux/ffi.old.lux18
1 files changed, 9 insertions, 9 deletions
diff --git a/stdlib/source/library/lux/ffi.old.lux b/stdlib/source/library/lux/ffi.old.lux
index ff9ef9f31..5187df976 100644
--- a/stdlib/source/library/lux/ffi.old.lux
+++ b/stdlib/source/library/lux/ffi.old.lux
@@ -274,11 +274,11 @@
(-> Primitive_Mode (List Type_Parameter) Bit GenericType Code)
Code)
(case [name+params mode in_array?]
- (^multi [[prim #.Nil] #ManualPrM #0]
+ (^multi [[prim #.End] #ManualPrM #0]
{(manual_primitive_to_type prim) (#.Some output)})
output
- (^multi [[prim #.Nil] #AutoPrM #0]
+ (^multi [[prim #.End] #AutoPrM #0]
{(auto_primitive_to_type prim) (#.Some output)})
output
@@ -329,10 +329,10 @@
(let [=params (list\map (: (-> Type_Parameter Code)
(function (_ [pname pbounds])
(case pbounds
- #.Nil
+ #.End
(code.identifier ["" pname])
- (#.Cons bound1 _)
+ (#.Item bound1 _)
(class_to_type #ManualPrM class_params bound1))))
class_params)]
(` (primitive (~ (code.text (safe class_name)))
@@ -369,7 +369,7 @@
(format "[" (simple_class$ env param))
(^template [<prim> <class>]
- [(#GenericClass <prim> #.Nil)
+ [(#GenericClass <prim> #.End)
<class>])
(["boolean" "[Z"]
["byte" "[B"]
@@ -427,7 +427,7 @@
(def: (parser_to_replacer p ast)
(-> (Parser Code) (-> Code Code))
(case (<>.run p (list ast))
- (#.Right [#.Nil ast'])
+ (#.Right [#.End ast'])
ast'
_
@@ -551,7 +551,7 @@
[component recur^]
(case component
(^template [<class> <name>]
- [(#GenericClass <name> #.Nil)
+ [(#GenericClass <name> #.End)
(in (#GenericClass <class> (list)))])
(["[Z" "boolean"]
["[B" "byte"]
@@ -1446,7 +1446,7 @@
(def: (free_type_param? [name bounds])
(-> Type_Parameter Bit)
(case bounds
- #.Nil #1
+ #.End #1
_ #0))
(def: (type_param_to_type_arg [name _])
@@ -1504,7 +1504,7 @@
(do {! meta.monad}
[#let [enum_type (: Code
(case class_tvars
- #.Nil
+ #.End
(` (primitive (~ (code.text full_name))))
_