fondue icon indicating copy to clipboard operation
fondue copied to clipboard

JavaScript instrumentation library for collecting traces

Results 14 fondue issues
Sort by recently updated
recently updated
newest added

https://github.com/adobe-research/fondue/issues/19 https://github.com/adobe-research/node-theseus/issues/27

**String Interpolation:** ``` console.log(`Status: ${status}`) ``` Result: ``` $ node-theseus test exception during parsing ..../test.js Error: Line 6: Unexpected token ILLEGAL at throwError (/usr/local/lib/node_modules/node-theseus/node_modules/fondue/node_modules/falafel/node_modules/esprima/esprima.js:1161:21) at advance (/usr/local/lib/node_modules/node-theseus/node_modules/fondue/node_modules/falafel/node_modules/esprima/esprima.js:1089:9) ``` **Arrow functions:**...

Given an error, (example: line number 1567 when it should be line number 4) how should this best be translated to the original number and stack? I'm assuming theseus probably...

Just a heads up, I was checking out the probes branch and noticed one assertion in `test/test-vals.js` was failing. While debugging I noticed that the same `nodeId` (`scripts/vals.js-probe-2-17-2-17`) is applied...

Investigating again why `test/test-vals.js` fails, I discovered that `extractTracePoints` seems to do its own AST walk to document the nodeIds of trace points that are actually inserted into the code...