Status: New
Owner: ----

New issue 2888 by [email protected]: Debugger fails to step into in some cases
http://code.google.com/p/v8/issues/detail?id=2888

Test case: https://codereview.chromium.org/23441070

In the following examples, the V8 debugger fails to step into the obj.fun function.

// CrBug:289497
function testCall_RuntimeVariable1() {
  var functionName = "fu" + "n";
  debugger;
  obj[functionName]();
}

// CrBug:289497
function testCall_RuntimeVariable2() {
  var functionName = "un".replace(/u/, "fu");
  debugger;
  obj[functionName]();
}

// CrBug:289497
function testCall_RuntimeVariable3() {
  var expr = "fu" + "n";
  const functionName = expr;
  assertEquals("fun", functionName);
  debugger;
  obj[functionName]();
}

Chromium issue: http://crbug.com/289497


--
You received this message because this project is configured to send all issue notifications to this address.
You may adjust your notification preferences at:
https://code.google.com/hosting/settings

--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
--- You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to