diff options
Diffstat (limited to '')
-rw-r--r-- | lux-r/source/program.lux | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lux-r/source/program.lux b/lux-r/source/program.lux index 9706cc307..da00a6f02 100644 --- a/lux-r/source/program.lux +++ b/lux-r/source/program.lux @@ -174,8 +174,8 @@ (template [<name>] [(exception: (<name> [object java/lang/Object]) (exception.report - ["Class" (java/lang/Object::toString (java/lang/Object::getClass object))] - ["Object" (java/lang/Object::toString object)]))] + "Class" (java/lang/Object::toString (java/lang/Object::getClass object)) + "Object" (java/lang/Object::toString object)))] [unknown_kind_of_object] [cannot_apply_a_non_function] @@ -233,9 +233,9 @@ ... org/renjin/sexp/SEXP ... (exec ... ("lux io log" (exception.report - ... ["@@" "eval"] - ... ["context" (debug.inspect context)] - ... ["environment" (debug.inspect environment)])) + ... "@@" "eval" + ... "context" (debug.inspect context) + ... "environment" (debug.inspect environment))) ... self)) ... (org/renjin/sexp/AbstractSEXP |