cf07add227
If there had been no debug listener v8::Debug::GetDebugContext would have created new context and wouln't have kept reference to it. This way we may well end up with several debug contexts and disabled debugger. As a side effect this change allows to efficiently distinguish debug context from blink contexts by simply comparing handles. BUG=chromium:482290 LOG=Y Review URL: https://codereview.chromium.org/1136733002 Cr-Commit-Position: refs/heads/master@{#28356}
37 lines
1.0 KiB
JavaScript
37 lines
1.0 KiB
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.
|
|
|
|
// Flags: --allow-natives-syntax
|
|
|
|
// Test that setting break point works correctly when the debugger is
|
|
// activated late, which leads to duplicate shared function infos.
|
|
|
|
(function() {
|
|
var Debug = %GetDebugContext().Debug;
|
|
|
|
function listener(event, exec_state, event_data, data) {
|
|
if (event != Debug.DebugEvent.Break) return;
|
|
try {
|
|
assertTrue(/foo/.test(exec_state.frame(0).sourceLineText()));
|
|
break_count++;
|
|
} catch (e) {
|
|
exception = e;
|
|
}
|
|
}
|
|
|
|
for (var i = 0; i < 3; i++) {
|
|
var foo = function() { a = 1; }
|
|
var exception = null;
|
|
var break_count = 0;
|
|
Debug.setListener(listener);
|
|
if (i < 2) Debug.setBreakPoint(foo, 0, 0);
|
|
assertTrue(/\[B\d\]a = 1/.test(Debug.showBreakPoints(foo)));
|
|
foo();
|
|
assertEquals(1, break_count);
|
|
assertNull(exception);
|
|
}
|
|
|
|
Debug.setListener(null);
|
|
})();
|