aboutsummaryrefslogtreecommitdiff
path: root/lux-jvm/source/program.lux
diff options
context:
space:
mode:
authorEduardo Julian2021-08-27 20:59:34 -0400
committerEduardo Julian2021-08-27 20:59:34 -0400
commitc5b61d2f46ac19bf511197f3a537c4be0f47df33 (patch)
treecd62d188403e9b3998ba293dc5308719a430f1fe /lux-jvm/source/program.lux
parente814f667aed509a70bd386dcd54628929134def4 (diff)
Updates to the Ruby compiler.
Diffstat (limited to 'lux-jvm/source/program.lux')
-rw-r--r--lux-jvm/source/program.lux4
1 files changed, 2 insertions, 2 deletions
diff --git a/lux-jvm/source/program.lux b/lux-jvm/source/program.lux
index 242d0553e..ac4da1255 100644
--- a/lux-jvm/source/program.lux
+++ b/lux-jvm/source/program.lux
@@ -134,7 +134,7 @@
java/lang/Object (jvm/type.class "java.lang.Object" (list))
<java/lang/Object> (jvm/type.array java/lang/Object)
- jvm_type (: (All [c] (-> (jvm/type.Type c) Synthesis))
+ jvm_type (: (All (_ c) (-> (jvm/type.Type c) Synthesis))
(|>> jvm/type.format
$.text))
class_type (: (-> Text Synthesis)
@@ -170,7 +170,7 @@
(class_type "java.lang.Class")
object
(list)))))
- input (: (All [c] (-> (jvm/type.Type c) Synthesis Synthesis))
+ input (: (All (_ c) (-> (jvm/type.Type c) Synthesis Synthesis))
(function (_ value_type value)
($.tuple (list (jvm_type value_type) value))))