1834ab7246
Adapted various tests to restrictions of inspector protocol: * osr-typing-debug-change: Don't set function variable value. * debug-evaluate-locals: Add variable introduced by eval, run typeof inside evaluate(). * regress-419663: Don't set duplicate breakpoints. * regress-crbug-465298: Compare against function name instead of value. * regress-crbug-621361: Make evaluate return string results. * debug-script: Various counts were off due to new way tests are called. Added new inspector script type. Breakpoints now contain the actual break position, and remote object reconstruction has been extended a bit. BUG=v8:5530 Review-Url: https://codereview.chromium.org/2505363002 Cr-Commit-Position: refs/heads/master@{#41129}
25 lines
565 B
JavaScript
25 lines
565 B
JavaScript
// Copyright 2015 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.
|
|
|
|
|
|
var Debug = debug.Debug;
|
|
var receiver = null;
|
|
|
|
Debug.setListener(function(event, exec_state, event_data, data) {
|
|
if (event != Debug.DebugEvent.Break) return;
|
|
receiver = exec_state.frame(0).evaluate('this').value();
|
|
});
|
|
|
|
|
|
function f() {
|
|
var context_local = 1;
|
|
(function() { return context_local; })();
|
|
debugger;
|
|
}
|
|
|
|
var expected = {};
|
|
f.call(expected);
|
|
|
|
assertEquals(expected, receiver);
|