b1827e9bc3
This is a reland of 61292f0b60
Original change's description:
> [inspector] breakpoint after last break position should not jump to first line
>
> R=jgruber@chromium.org
>
> Bug: chromium:730177
> Change-Id: I0f3666a333604cb80bb51410c5edf2aceb0c6ef5
> Reviewed-on: https://chromium-review.googlesource.com/717717
> Commit-Queue: Aleksey Kozyatinskiy <kozyatinskiy@chromium.org>
> Reviewed-by: Jakob Gruber <jgruber@chromium.org>
> Cr-Commit-Position: refs/heads/master@{#48556}
TBR=jgruber@chromium.org
Bug: chromium:730177
Change-Id: I564cc5d7778f9d79780eae9dbe2d9aafaad4f466
Reviewed-on: https://chromium-review.googlesource.com/721468
Commit-Queue: Aleksey Kozyatinskiy <kozyatinskiy@chromium.org>
Reviewed-by: Aleksey Kozyatinskiy <kozyatinskiy@chromium.org>
Cr-Commit-Position: refs/heads/master@{#48615}
35 lines
842 B
JavaScript
35 lines
842 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 source =
|
|
"var foo = function foo() {\n" +
|
|
" var a = 1;\n" +
|
|
"}\n" +
|
|
"//@ sourceURL=test";
|
|
|
|
Debug = debug.Debug;
|
|
Debug.setListener(listener);
|
|
var exception = null;
|
|
var break_count = 0;
|
|
|
|
function listener(event, exec_state, event_data, data) {
|
|
if (event == Debug.DebugEvent.Break) break_count++;
|
|
if (event != Debug.DebugEvent.AfterCompile) return;
|
|
try {
|
|
var name = event_data.script().name();
|
|
var id = event_data.script().id();
|
|
assertEquals("test", name);
|
|
Debug.setScriptBreakPointById(id, 2);
|
|
} catch (e) {
|
|
exception = e;
|
|
}
|
|
}
|
|
|
|
eval(source);
|
|
|
|
assertEquals(0, break_count);
|
|
foo();
|
|
assertEquals(1, break_count);
|
|
assertNull(exception);
|