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}
33 lines
753 B
JavaScript
33 lines
753 B
JavaScript
// Copyright 2012 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 o = {
|
|
f: function(x) {
|
|
var a = x + 1;
|
|
o = 1;
|
|
}
|
|
}
|
|
|
|
function sentinel() {}
|
|
|
|
var Debug = debug.Debug;
|
|
|
|
Debug.setListener(function() {});
|
|
|
|
var script = Debug.findScript(sentinel);
|
|
|
|
// Used in Debug.setScriptBreakPointById.
|
|
var p = Debug.findScriptSourcePosition(script, 8, 0);
|
|
var q = Debug.setBreakPointByScriptIdAndPosition(script.id, p).actual_position;
|
|
|
|
function assertLocation(p, l, c) {
|
|
var location = script.locationFromPosition(p, false);
|
|
assertEquals(l, location.line);
|
|
assertEquals(c, location.column);
|
|
}
|
|
|
|
assertLocation(p, 8, 0);
|
|
assertLocation(q, 8, 4);
|