# Specification: host (Janet) interop — the `.` forms and jolt.interop. (use ../support/harness) (defspec "interop / dot forms" ["method call" "\"v=41\"" "(. {:value 41 :describe (fn [self] (str \"v=\" (:value self)))} describe)"] ["method with args" "\"Hello Alice\"" "(. {:greet (fn [self n] (str \"Hello \" n))} greet \"Alice\")"] ["field access .-" "41" "(.-value {:value 41})"] ["dot field keyword" "41" "(. {:value 41} :value)"]) # The `janet` namespace segment is the explicit Janet-stdlib bridge added for # the networking layer (and used by jolt.nrepl). `janet/` resolves a Janet # root binding; `janet./` resolves a module binding. The boundary # is explicit so it's visible where host semantics take over. (defspec "interop / janet bridge" ["root builtin janet/" "\"123\"" "(janet/string 1 2 3)"] ["root builtin janet/type" ":string" "(janet/type \"x\")"] ["module fn janet./" "4" "(janet.math/sqrt 16)"] ["janet.string module fn" "\"HI\"" "(janet.string/ascii-upper \"hi\")"] ["janet.os/clock is a number" "true" "(number? (janet.os/clock))"] # crossing the boundary uses Janet representations: a Jolt vector is a table ["jolt vector crosses as a janet table" ":table" "(janet/type [1 2])"] # interop is explicit-only: an unprefixed Janet module is not auto-exposed ["unprefixed janet module not exposed" :throws "net/server"] ["unknown janet symbol throws" :throws "(janet.os/definitely-not-a-real-fn)"]) (defspec "interop / jolt.interop" ["janet-type quoted list" ":array" "(do (require (quote [jolt.interop :as j])) (j/janet-type (quote (1 2))))"] ["janet-type list" ":array" "(do (require (quote [jolt.interop :as j])) (j/janet-type (list 1 2)))"] ["janet-type string" ":string" "(do (require (quote [jolt.interop :as j])) (j/janet-type \"x\"))"] ["janet-type number" ":number" "(do (require (quote [jolt.interop :as j])) (j/janet-type 1))"] ["janet-type keyword" ":keyword" "(do (require (quote [jolt.interop :as j])) (j/janet-type :a))"])