2016-10-02 21:22:49 +00:00
|
|
|
// 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.
|
|
|
|
|
2017-08-10 06:28:26 +00:00
|
|
|
let {session, contextGroup, Protocol} =
|
|
|
|
InspectorTest.start('Tests scripts hasing');
|
2017-05-19 00:35:45 +00:00
|
|
|
|
2017-08-10 06:28:26 +00:00
|
|
|
(async function test() {
|
|
|
|
await Protocol.Debugger.enable();
|
|
|
|
await Protocol.Runtime.enable();
|
|
|
|
Protocol.Runtime.compileScript({
|
|
|
|
expression: "1", sourceURL: "foo1.js", persistScript: true});
|
|
|
|
let {params} = await Protocol.Debugger.onceScriptParsed();
|
|
|
|
InspectorTest.logMessage(params);
|
|
|
|
Protocol.Runtime.compileScript({
|
|
|
|
expression: "239", sourceURL: "foo2.js", persistScript: true});
|
|
|
|
({params} = await Protocol.Debugger.onceScriptParsed());
|
|
|
|
InspectorTest.logMessage(params);
|
|
|
|
var script = "var b = 1;";
|
|
|
|
for (var i = 0; i < 2024; ++i) {
|
|
|
|
script += "++b;";
|
|
|
|
}
|
|
|
|
Protocol.Runtime.compileScript({
|
|
|
|
expression: script, sourceURL: "foo3.js",
|
|
|
|
persistScript: true});
|
|
|
|
({params} = await Protocol.Debugger.onceScriptParsed());
|
|
|
|
InspectorTest.logMessage(params);
|
2016-10-02 21:22:49 +00:00
|
|
|
InspectorTest.completeTest();
|
2017-08-10 06:28:26 +00:00
|
|
|
})()
|