Skip to content

Commit

Permalink
Merge pull request #106 from christofferqa/invoke_pre_args
Browse files Browse the repository at this point in the history
Fix isComputed argument to binaryPre
  • Loading branch information
ksen007 authored Sep 14, 2016
2 parents 423e6fd + 1a27479 commit 1950f5e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/js/instrument/esnstrument.js
Original file line number Diff line number Diff line change
Expand Up @@ -716,7 +716,7 @@ if (typeof J$ === 'undefined') {
if (!Config.INSTR_BINARY || Config.INSTR_BINARY(operator, operator)) {
printOpIidToLoc(node);
var ret = replaceInExpr(
logBinaryOpFunName + "(" + RP + "1, " + RP + "2, " + RP + "3, " + RP + "4," + (createBitPattern(isComputed)) + ")",
logBinaryOpFunName + "(" + RP + "1, " + RP + "2, " + RP + "3, " + RP + "4," + (createBitPattern(isComputed, false, false)) + ")",
getOpIid(),
createLiteralAst(operator),
left,
Expand Down

0 comments on commit 1950f5e

Please sign in to comment.