v8/test/debugger/debug/debug-liveedit-exceptions.js
jgruber 4fb4f3408c [debug-wrapper] LiveEdit, frame.restart(), breakpoints
This adds access to the LiveEdit API object, frame.restart(), and
various breakpoint setters. The LiveEdit API still depends on the JS
debugging context and blocks its removal; but it should be removed
once LiveEdit is rewritten in the midterm.

BUG=v8:5530

Review-Url: https://codereview.chromium.org/2503293002
Cr-Commit-Position: refs/heads/master@{#41062}
2016-11-17 08:43:59 +00:00

67 lines
1.5 KiB
JavaScript

// 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.
Debug = debug.Debug
function BestEditor() {
throw 'Emacs';
}
var exception = null;
var results = [];
var log = []
function listener(event, exec_state, event_data, data) {
if (event != Debug.DebugEvent.Exception) return;
try {
var source_line = event_data.sourceLineText();
print(source_line);
log.push(source_line);
switch (results.length) {
case 0:
Replace(BestEditor, "Emacs", "Eclipse");
break;
case 1:
Replace(BestEditor, "Eclipse", "Vim");
break;
case 2:
break;
default:
assertUnreachable();
}
} catch (e) {
exception = e;
}
};
function Replace(fun, original, patch) {
var script = Debug.findScript(fun);
if (fun.toString().indexOf(original) < 0) return;
var patch_pos = script.source.indexOf(original);
var change_log = [];
Debug.LiveEdit.TestApi.ApplySingleChunkPatch(script, patch_pos, original.length, patch, change_log);
}
Debug.setListener(listener);
Debug.setBreakOnException();
for (var i = 0; i < 3; i++) {
try {
BestEditor();
} catch (e) {
results.push(e);
}
}
Debug.setListener(null);
assertNull(exception);
assertEquals(["Emacs", "Eclipse", "Vim"], results);
print(JSON.stringify(log, 1));
assertEquals([
" throw 'Emacs';",
" throw 'Eclipse';",
" throw 'Vim';",
], log);