-
Notifications
You must be signed in to change notification settings - Fork 29.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
deps: cherry-pick baba152 from V8 upstream
Original commit message: fix stepping out of across throwing. R=jgruber@chromium.org BUG=v8:5559 Review-Url: https://codereview.chromium.org/2445233004 Cr-Commit-Position: refs/heads/master@{#40549} PR-URL: #10688 Fixes: #9175 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Ali Ijaz Sheikh <ofrobots@google.com>
- Loading branch information
Showing
3 changed files
with
40 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
// Copyright 2016 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 = debug.Debug | ||
|
||
var exception = null; | ||
var break_count = 0; | ||
|
||
function listener(event, exec_state, event_data, data) { | ||
if (event != Debug.DebugEvent.Break) return; | ||
try { | ||
print(event_data.sourceLineText()); | ||
assertTrue( | ||
event_data.sourceLineText().indexOf(`Break ${break_count++}.`) > 0); | ||
exec_state.prepareStep(Debug.StepAction.StepOut); | ||
} catch (e) { | ||
exception = e; | ||
} | ||
}; | ||
|
||
function thrower() { | ||
try { | ||
debugger; // Break 0. | ||
throw 'error'; | ||
} catch (err) { | ||
} | ||
} | ||
|
||
|
||
Debug.setListener(listener); | ||
thrower(); | ||
Debug.setListener(null); // Break 1. | ||
|
||
assertNull(exception); | ||
assertEquals(2, break_count); |