diff options
author | Eduardo Julian | 2018-02-22 19:40:55 -0400 |
---|---|---|
committer | Eduardo Julian | 2018-02-22 19:40:55 -0400 |
commit | c8cda71ba02ab0986e3d4d839088aabdd02b37fa (patch) | |
tree | ea44ef7eb295d2668f28c90042929b1431b18639 /new-luxc/source/luxc/lang/translation/js | |
parent | 6a98c0fb63a2be654bb220051b4cb5e5cae6daa3 (diff) |
- Added tests for JS procedure translation.
Diffstat (limited to '')
-rw-r--r-- | new-luxc/source/luxc/lang/translation/js/procedure/host.jvm.lux | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/new-luxc/source/luxc/lang/translation/js/procedure/host.jvm.lux b/new-luxc/source/luxc/lang/translation/js/procedure/host.jvm.lux index 7fe3f545c..dc6d48bd8 100644 --- a/new-luxc/source/luxc/lang/translation/js/procedure/host.jvm.lux +++ b/new-luxc/source/luxc/lang/translation/js/procedure/host.jvm.lux @@ -16,9 +16,9 @@ (do-template [<name> <js>] [(def: (<name> _) @.Nullary <js>)] - [js//null "null"] + [js//null "null"] [js//undefined "undefined"] - [js//object "{}"] + [js//object "{}"] ) (def: (js//global proc translate inputs) |