aboutsummaryrefslogtreecommitdiff
path: root/lux-ruby/source
diff options
context:
space:
mode:
authorEduardo Julian2019-05-28 22:14:53 -0400
committerEduardo Julian2019-05-28 22:14:53 -0400
commit8cd61c00de00728759d0362a60dbca8d23e4d8dc (patch)
tree4eaf5b75bea6bd84b1db28eb405539213392a588 /lux-ruby/source
parentf55e513690400cce9e5e17a01a98922d91e086c3 (diff)
Both the old JVM interop and the new JVM interop use the same syntax for array types.
Diffstat (limited to 'lux-ruby/source')
-rw-r--r--lux-ruby/source/program.lux10
1 files changed, 5 insertions, 5 deletions
diff --git a/lux-ruby/source/program.lux b/lux-ruby/source/program.lux
index 0eeed48ec..48a398233 100644
--- a/lux-ruby/source/program.lux
+++ b/lux-ruby/source/program.lux
@@ -114,8 +114,8 @@
[[org/jruby/runtime/ThreadContext int java/lang/String org/jruby/runtime/builtin/IRubyObject]]
[[org/jruby/runtime/ThreadContext java/lang/String]]
[[org/jruby/runtime/ThreadContext java/lang/String org/jruby/runtime/builtin/IRubyObject]]
- ## [[org/jruby/runtime/ThreadContext java/lang/String (Array org/jruby/runtime/builtin/IRubyObject)]]
- [[org/jruby/runtime/ThreadContext java/lang/String (Array org/jruby/runtime/builtin/IRubyObject) org/jruby/runtime/Block]]
+ ## [[org/jruby/runtime/ThreadContext java/lang/String [org/jruby/runtime/builtin/IRubyObject]]]
+ [[org/jruby/runtime/ThreadContext java/lang/String [org/jruby/runtime/builtin/IRubyObject] org/jruby/runtime/Block]]
)
<placeholders> (template [<name> <inputs> <output>]
[(org/jruby/runtime/builtin/IRubyObject
@@ -155,7 +155,7 @@
[callSuper
[org/jruby/runtime/ThreadContext
- (Array org/jruby/runtime/builtin/IRubyObject)
+ [org/jruby/runtime/builtin/IRubyObject]
org/jruby/runtime/Block]
org/jruby/runtime/builtin/IRubyObject]
@@ -187,7 +187,7 @@
(org/jruby/runtime/builtin/IRubyObject
(callMethod {thread-context org/jruby/runtime/ThreadContext}
{member java/lang/String}
- {inputs (Array org/jruby/runtime/builtin/IRubyObject)})
+ {inputs [org/jruby/runtime/builtin/IRubyObject]})
org/jruby/runtime/builtin/IRubyObject
(exec
(log! (format "Was called: " (%t member)))
@@ -197,7 +197,7 @@
))))
(import: #long org/jruby/RubyProc
- (call [org/jruby/runtime/ThreadContext (Array org/jruby/runtime/builtin/IRubyObject)]
+ (call [org/jruby/runtime/ThreadContext [org/jruby/runtime/builtin/IRubyObject]]
org/jruby/runtime/builtin/IRubyObject))
(import: #long org/jruby/Ruby