| Index: test/inspector/debugger/stepping-tail-call.js
|
| diff --git a/test/inspector/debugger/stepping-tail-call.js b/test/inspector/debugger/stepping-tail-call.js
|
| index 9e6aa9a5a70cbfefa1fd58dcd0326df472a35646..763b23b8a6baff5371e5fb707dcea66e377a3a3b 100644
|
| --- a/test/inspector/debugger/stepping-tail-call.js
|
| +++ b/test/inspector/debugger/stepping-tail-call.js
|
| @@ -5,11 +5,11 @@
|
| InspectorTest.log('Checks stepping over tail calls.');
|
|
|
| InspectorTest.setupScriptMap();
|
| -InspectorTest.dumpProtocolCommand('Debugger.pause');
|
| -InspectorTest.dumpProtocolCommand('Debugger.stepInto');
|
| -InspectorTest.dumpProtocolCommand('Debugger.stepOver');
|
| -InspectorTest.dumpProtocolCommand('Debugger.stepOut');
|
| -InspectorTest.dumpProtocolCommand('Debugger.resume');
|
| +InspectorTest.logProtocolCommandCalls('Debugger.pause');
|
| +InspectorTest.logProtocolCommandCalls('Debugger.stepInto');
|
| +InspectorTest.logProtocolCommandCalls('Debugger.stepOver');
|
| +InspectorTest.logProtocolCommandCalls('Debugger.stepOut');
|
| +InspectorTest.logProtocolCommandCalls('Debugger.resume');
|
|
|
| let source = `
|
| function f(x) {
|
|
|