diff options
author | Eduardo Julian | 2017-09-08 19:19:22 -0400 |
---|---|---|
committer | Eduardo Julian | 2017-09-08 19:19:22 -0400 |
commit | 06713336cdfd09db3eba26eda2c04db05bcd71e4 (patch) | |
tree | f775c46fd273c523e633e20386c332b925fe39e3 /new-luxc/source/luxc/generator/procedure | |
parent | 2697c570707ffa379225b6112b09fdec654eb0c8 (diff) |
- Re-named "jvm-import" to "import".
Diffstat (limited to 'new-luxc/source/luxc/generator/procedure')
-rw-r--r-- | new-luxc/source/luxc/generator/procedure/common.jvm.lux | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/new-luxc/source/luxc/generator/procedure/common.jvm.lux b/new-luxc/source/luxc/generator/procedure/common.jvm.lux index 106b6a0f5..d04a91141 100644 --- a/new-luxc/source/luxc/generator/procedure/common.jvm.lux +++ b/new-luxc/source/luxc/generator/procedure/common.jvm.lux @@ -8,7 +8,7 @@ [macro #+ Monad<Lux> with-gensyms] (macro [code] ["s" syntax #+ syntax:]) - [host #+ jvm-import]) + [host]) (luxc ["&" base] (lang ["la" analysis] ["ls" synthesis]) @@ -22,11 +22,11 @@ ["$d" def] ["$i" inst]))))) -(jvm-import java.lang.Long +(host;import java.lang.Long (#static MIN_VALUE Long) (#static MAX_VALUE Long)) -(jvm-import java.lang.Double +(host;import java.lang.Double (#static MIN_VALUE Double) (#static MAX_VALUE Double) (#static NaN Double) |