OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2017 the V8 project authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
Yang
2017/03/22 11:00:01
Can we also have a test that uses the flag by addi
kozy
2017/03/22 17:08:49
Done.
| |
5 Protocol.Debugger.onPaused(message => { | |
6 InspectorTest.logSourceLocation(message.params.callFrames[0].location); | |
7 Protocol.Debugger.stepInto(); | |
8 }); | |
9 | |
10 InspectorTest.setupScriptMap(); | |
11 Protocol.Debugger.enable(); | |
12 Protocol.Debugger.pause(); | |
13 Protocol.Runtime.evaluate({expression: 'console.log(42)'}) | |
14 .then(InspectorTest.completeTest); | |
OLD | NEW |