2015-01-07 18:38:38 +01:00
|
|
|
// Copyright 2014 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.
|
|
|
|
|
|
|
|
|
|
|
|
'use strict';
|
|
|
|
|
|
|
|
var Debug = debug.Debug
|
|
|
|
|
|
|
|
var done = false;
|
|
|
|
var stepCount = 0;
|
|
|
|
|
|
|
|
function listener(event, execState, eventData, data) {
|
|
|
|
if (event == Debug.DebugEvent.Break) {
|
|
|
|
if (!done) {
|
2021-08-29 14:20:49 +02:00
|
|
|
execState.prepareStep(Debug.StepAction.StepInto);
|
2015-01-07 18:38:38 +01:00
|
|
|
var s = execState.frame().sourceLineText();
|
|
|
|
assertTrue(s.indexOf('// ' + stepCount + '.') !== -1);
|
|
|
|
stepCount++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
Debug.setListener(listener);
|
|
|
|
|
|
|
|
function GetBase() {
|
|
|
|
var x = 1; // 1.
|
|
|
|
var y = 2; // 2.
|
|
|
|
done = true; // 3.
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
function f() {
|
|
|
|
class Derived extends GetBase() {} // 0.
|
|
|
|
}
|
|
|
|
|
2021-06-08 14:04:59 +02:00
|
|
|
var bp = Debug.setBreakPoint(f, 1, 20);
|
2015-01-07 18:38:38 +01:00
|
|
|
f();
|
|
|
|
assertEquals(4, stepCount);
|
|
|
|
|
|
|
|
Debug.setListener(null);
|