This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#require "lambda-term" | |
(* REF: https://gist.github.com/hcarty/b2dab5324d0d4344d771 *) | |
let toggle_implicit_double_semicolon = | |
let implicit_semis_enabled = ref false in | |
let parse_fn_stock = UTop.parse_toplevel_phrase.contents in | |
let parse_fn_dynamic code error_flag = | |
parse_fn_stock | |
(if implicit_semis_enabled.contents then code ^ ";;" else code) | |
error_flag |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; DOMStringMap is the type of `HTMLElement.dataset` and contains the element's `data-*` attributes. | |
;; Implement the protocol used by the `cljs.core/js->clj` function. | |
(extend-type js/DOMStringMap | |
IEncodeClojure | |
(-js->clj [x {:keys [keywordize-keys]}] | |
(let [keyfn (if keywordize-keys keyword identity)] | |
(->> (.entries js/Object x) | |
(reduce | |
(fn [m [k v]] (assoc m (keyfn k) v)) |