old-flow-storm icon indicating copy to clipboard operation
old-flow-storm copied to clipboard

Tracing companion library for the flow-storm-debugger

Results 7 old-flow-storm issues
Sort by recently updated
recently updated
newest added

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 ![image](https://user-images.githubusercontent.com/426347/145551402-7f39d625-63e7-419e-aa5b-e305bb0fe178.png) 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...

enhancement

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...

enhancement

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...

enhancement