diff options
Diffstat (limited to '')
-rw-r--r-- | src/lux/analyser.clj | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/lux/analyser.clj b/src/lux/analyser.clj index d4b90cc3a..80c8ef2ec 100644 --- a/src/lux/analyser.clj +++ b/src/lux/analyser.clj @@ -300,6 +300,18 @@ (&/$FormS (&/$Cons [_ (&/$SymbolS _ "_jvm_l2i")] (&/$Cons ?value (&/$Nil)))) (&&host/analyse-jvm-l2i analyse exo-type ?value) + (&/$FormS (&/$Cons [_ (&/$SymbolS _ "_jvm_c2b")] (&/$Cons ?value (&/$Nil)))) + (&&host/analyse-jvm-c2b analyse exo-type ?value) + + (&/$FormS (&/$Cons [_ (&/$SymbolS _ "_jvm_c2s")] (&/$Cons ?value (&/$Nil)))) + (&&host/analyse-jvm-c2s analyse exo-type ?value) + + (&/$FormS (&/$Cons [_ (&/$SymbolS _ "_jvm_c2i")] (&/$Cons ?value (&/$Nil)))) + (&&host/analyse-jvm-c2i analyse exo-type ?value) + + (&/$FormS (&/$Cons [_ (&/$SymbolS _ "_jvm_c2l")] (&/$Cons ?value (&/$Nil)))) + (&&host/analyse-jvm-c2l analyse exo-type ?value) + _ (aba6 analyse eval! compile-module compile-token exo-type token))) |