We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If I try to instrument a program with the following:
sandbox.Config.requiresInstrumentation = function (id, funId, sid, funName) { if (funName === 'J$.T') { return true; } if (funName === 'J$.S' || funName === 'J$.Fe' || funName === 'J$.Fr' || funName === 'J$.M' || funName === 'J$.F' || funName === 'J$.C1' || funName === 'J$.C2' || funName === 'J$.C') { return Instrument.indexOf(funId) !== - 1; } return false; };
where Instrument is a stable array of identifiers, I get
ReferenceError: J$cntr is not defined
The text was updated successfully, but these errors were encountered:
function f() { g(); }
function g() { var o = {};
}
f();
Sorry, something went wrong.
The following simplification seems to cause the same crash:
sandbox.Config.requiresInstrumentation = function (id, funId, sid, funName) { if (funName === 'J$.T') { return true; } return false; }
fixed issue #50 and #49. Note that signature of analysis.literal has …
4b887f6
…changed. It no longer gets invocationCount as an argument.
No branches or pull requests
If I try to instrument a program with the following:
where Instrument is a stable array of identifiers, I get
ReferenceError: J$cntr is not defined
The text was updated successfully, but these errors were encountered: