Welcome to mirror list, hosted at ThFree Co, Russian Federation.

regress-1078205.js « runtime « inspector « test « v8 « deps - github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ce17c1905149471c374c0133df2145f39cf33ac7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
// Copyright 2020 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.
let {session, contextGroup, Protocol} = InspectorTest.start(
    'Test malformed sourceURL magic comment.');

(async function test() {
  await Protocol.Debugger.enable();
  InspectorTest.logMessage(await Protocol.Runtime.evaluate({
    expression: "JSON.parse('//')",
    generatePreview: true,
  }));
  InspectorTest.logMessage(await Protocol.Runtime.evaluate({
    expression: "JSON.parse('//#')",
    generatePreview: true,
  }));
  InspectorTest.logMessage(await Protocol.Runtime.evaluate({
    expression: "JSON.parse('//# ')",
    generatePreview: true,
  }));
  InspectorTest.logMessage(await Protocol.Runtime.evaluate({
    expression: "JSON.parse('//# sourceURL')",
    generatePreview: true,
  }));
  InspectorTest.logMessage(await Protocol.Runtime.evaluate({
    expression: "JSON.parse('//# sourceURL=')",
    generatePreview: true,
  }));
  InspectorTest.logMessage(await Protocol.Runtime.evaluate({
    expression: "JSON.parse('//# sourceURL=\"')",
    generatePreview: true,
  }));
  InspectorTest.completeTest();
})();