old-flow-storm
old-flow-storm copied to clipboard
Tracing companion library for the flow-storm-debugger
This code: ```clojure #trace (defn testy [] (let [[ha ho] (str/split #" " "1 2")] (js/console.log "******************** ha ho: " ha ho))) ``` Renders the following in debugger  Trace...
In Clojurescript, with two consecutive ``` (tap> "first-tap") (tap> "second-tap") ``` , only "first-tap" appears in the "Taps" window of flow-storm. However, after adding ``` (add-tap (fn [v] (flow-storm.tracer/trace-tap 0...
See this issue https://github.com/juji-io/editscript/issues/18 I got around this by explicitly depending on editscript version 0.5.5
I haven't had flow-storm running in a while, trying to get it to work again now is very difficult and I don't know what I'm doing wrong. I'm primarily using...
I know this is a big one, and maybe not doable in the current scope, but I'm just putting it out there anyway. For either platform, being able to inspect...
Init trace is sending the full form, and is being sent every time the function is called (low perf on loops, and recursions). Maybe we can add a cache so...
Is probably nice to have a #skip or ^:skip to signal the trace macro that we don't want to trace the result or parameters of a certain form. So we...