abe2feb081
Debug evaluate no longer writes back changes to the replicated context chain to the original after execution. Changes to the global object or script contexts still stick. Calling functions that bind to the original context chain also have their expected side effects. As far as I can tell, DevTools is not interested in modifying local variable values. Modifying global variable values still works as expected. However, I have not yet removed the old implementation, but merely keep it behind a flag. R=mstarzinger@chromium.org, rossberg@chromium.org Committed: https://crrev.com/92caa9b85eefffbef51c67428397951bd2e2c330 Cr-Commit-Position: refs/heads/master@{#32841} Review URL: https://codereview.chromium.org/1513183003 Cr-Commit-Position: refs/heads/master@{#32857}
49 lines
920 B
JavaScript
49 lines
920 B
JavaScript
// Copyright 2014 the V8 project authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
// Flags: --expose-debug-as debug --debug-eval-readonly-locals
|
|
|
|
Debug = debug.Debug
|
|
var exception = null;
|
|
var break_count = 0;
|
|
|
|
var f = null;
|
|
var i = null;
|
|
function listener(event, exec_state, event_data, data) {
|
|
try {
|
|
if (event == Debug.DebugEvent.Break) {
|
|
var frameMirror = exec_state.frame(0);
|
|
|
|
var i = frameMirror.evaluate('f = function() { i = 5; }, f(), i').value();
|
|
assertEquals(5, i);
|
|
}
|
|
} catch(e) {
|
|
exception = e;
|
|
print(e, e.stack);
|
|
}
|
|
};
|
|
|
|
Debug.setListener(listener);
|
|
|
|
(function (){
|
|
|
|
var i = 0;
|
|
|
|
try {
|
|
throw new Error();
|
|
} catch (e) {
|
|
assertEquals(0, i);
|
|
debugger;
|
|
assertEquals(0, i);
|
|
}
|
|
}());
|
|
|
|
assertNull(exception);
|
|
|
|
assertNull(i);
|
|
f();
|
|
assertNull(i);
|
|
|
|
Debug.setListener(null);
|