You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am wondering if there is an async version of this block:
app.use(function(req,res,next){if(isJSRequiringCoverage(req)){varfile=getFilePath(req),//translate request to file name to be deliveredcode=readTheCodeFromFile(file),//use async for a real implementationinstrumenter=im.getInstrumenter();res.send(instrumenter.instrumentSync(code,file));//exception handling omitted for brevity}else{next();}});
if this is possible, something like this def belongs in the readme...however it would totally make sense if it were pretty much impossible to instrument code asynchronously/line-by-line.
Hey, this is looking good
I am wondering if there is an async version of this block:
something like this:
does something like this exist?
The text was updated successfully, but these errors were encountered: