Status: Assigned
Owner: [email protected]
Labels: Type-Bug Priority-Medium
New issue 4309 by [email protected]: ScopeIterator cannot deal with
turbofan code.
https://code.google.com/p/v8/issues/detail?id=4309
Repro:
var Debug = debug.Debug;
var exception;
function listener(event, exec_state, event_data, data) {
if (event == Debug.DebugEvent.Break) exec_state.frame().allScopes();
}
function f() {
eval('');
debugger;
}
f();
f();
%OptimizeFunctionOnNextCall(f);
Debug.setListener(listener);
f();
assertNull(exception);
The issue here is that we do not use the FrameInspector to get the context.
--
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/d/optout.