diff options
author | Eduardo Julian | 2017-10-12 15:22:25 -0400 |
---|---|---|
committer | Eduardo Julian | 2017-10-12 15:22:25 -0400 |
commit | 1acc9f4cdd7b7cff29351594fa603c3b6fa4c666 (patch) | |
tree | 32db1b85c7972c564a0250cf46d11e0f98c49806 /new-luxc/source/luxc/analyser | |
parent | f3acc0d67e6cd4e7245c1e169a3c0469da4373a3 (diff) |
- Compilation and tests for arithmetic, bit-wise operations and order.
Diffstat (limited to '')
-rw-r--r-- | new-luxc/source/luxc/analyser/procedure/host.jvm.lux | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/new-luxc/source/luxc/analyser/procedure/host.jvm.lux b/new-luxc/source/luxc/analyser/procedure/host.jvm.lux index 1dba7a5f8..e21281984 100644 --- a/new-luxc/source/luxc/analyser/procedure/host.jvm.lux +++ b/new-luxc/source/luxc/analyser/procedure/host.jvm.lux @@ -92,7 +92,6 @@ (@;install "%" (@;binary <type> <type> <type>)) (@;install "=" (@;binary <type> <type> Boolean)) (@;install "<" (@;binary <type> <type> Boolean)) - (@;install ">" (@;binary <type> <type> Boolean)) (@;install "and" (@;binary <type> <type> <type>)) (@;install "or" (@;binary <type> <type> <type>)) (@;install "xor" (@;binary <type> <type> <type>)) @@ -117,7 +116,6 @@ (@;install "%" (@;binary <type> <type> <type>)) (@;install "=" (@;binary <type> <type> Boolean)) (@;install "<" (@;binary <type> <type> Boolean)) - (@;install ">" (@;binary <type> <type> Boolean)) )))] [float-procs "float" Float] @@ -130,7 +128,6 @@ (|> (dict;new text;Hash<Text>) (@;install "=" (@;binary Character Character Boolean)) (@;install "<" (@;binary Character Character Boolean)) - (@;install ">" (@;binary Character Character Boolean)) ))) (def: #export boxes @@ -825,13 +822,11 @@ (dict;merge (<| (@;prefix "static") (|> (dict;new text;Hash<Text>) (@;install "get" static-get) - (@;install "put" static-put) - ))) + (@;install "put" static-put)))) (dict;merge (<| (@;prefix "virtual") (|> (dict;new text;Hash<Text>) (@;install "get" virtual-get) - (@;install "put" virtual-put) - ))) + (@;install "put" virtual-put)))) ))) (def: #export procedures |