diff --git a/resources/public/issue23.html b/resources/public/issue23.html new file mode 100644 index 0000000..146ecbd --- /dev/null +++ b/resources/public/issue23.html @@ -0,0 +1,32 @@ + + +
+
+
+
+
+
+
+
diff --git a/src/demo/devtools_sample/issue23.cljs b/src/demo/devtools_sample/issue23.cljs
new file mode 100644
index 0000000..63b9e8f
--- /dev/null
+++ b/src/demo/devtools_sample/issue23.cljs
@@ -0,0 +1,14 @@
+(ns devtools-sample.issue23
+ (:require-macros [devtools-sample.logging :refer [log info]])
+ (:require [devtools-sample.boot :refer [boot!]]
+ [devtools.protocols :refer [IFormat]]))
+
+(boot! "/src/demo/devtools_sample/issue23.cljs")
+
+(enable-console-print!)
+
+; --- MEAT STARTS HERE -->
+
+(throw (ex-info "I'm ex-info" {:with "some data"}))
+
+; <-- MEAT STOPS HERE ---