Results 97 comments of Tom Lieber

It definitely worked as of the last commit, but that was in February of 2015. It probably worked fine for at least a few releases after that. I'm sorry I...

**Highlighting code paths:** most of the infrastructure for this is in-place. IIRC, fondue records which branches are taken (it's part of the call graph); the data just isn't used in...

Branch/loop call counts first, I think. :) 1. It looks like [node IDs are being generated for branches](https://github.com/adobe-research/fondue/blob/master/index.js#L401), but [no tracing code is being inserted](https://github.com/adobe-research/fondue/blob/master/index.js#L537), so that needs to be...

Highlighting code paths. The biggest question is how the user indicates _which_ invocation of the function to show the call path for. Maybe you'd do it by hovering over a...

The problem is actually that Theseus doesn't support Harmony. After `[node-theseus] adding require() instrumentation hook`, any time you use `require()`, Theseus looks at the JavaScript before it's loaded, analyzes it,...

Unfortunately, Theseus doesn't support the ES6 syntax for that anonymous function yet. We need to upgrade our version of Esprima.

How does it fail?

Hmm, it could be Babel. Could you run node-theseus with `--theseus-verbose` and post the output?