blob: 71e2b2bdafcf24f356a56b8712950b5f7011c195 (
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
// |reftest| skip-if(!xulRuntime.shell) -- needs Debugger
/*
* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/licenses/publicdomain/
*/
//-----------------------------------------------------------------------------
var BUGNUMBER = 1596706;
var summary =
"Properly apply a source map directive that's only tokenized by a syntax " +
"parser (because the directive comment appears immediately after an arrow " +
"function with expression body)";
print(BUGNUMBER + ": " + summary);
/**************
* BEGIN TEST *
**************/
var g = newGlobal({newCompartment: true});
var dbg = new Debugger(g);
var script;
dbg.onDebuggerStatement = function (frame)
{
script = frame.script;
};
function checkSourceMapFor(arrowFunc, sourceMap)
{
g.evaluate(`${arrowFunc}
//# sourceMappingURL=${sourceMap}
debugger;`);
assertEq(script instanceof Debugger.Script, true,
"expected a Debugger.Script for " + arrowFunc);
var source = script.source;
assertEq(source instanceof Debugger.Source, true,
"expected a Debugger.Source for " + arrowFunc);
assertEq(source.sourceMapURL, sourceMap,
"unexpected source map for " + arrowFunc);
}
// block followed by semicolon
checkSourceMapFor("x=>{};", "http://example.com/foo.js");
// block not followed by semicolon
checkSourceMapFor("x=>{}", "http://example.com/bar.js");
// expr followed by semicolon
checkSourceMapFor("x=>y;", "http://example.com/baz.js");
// expr not followed by semicolon
checkSourceMapFor("x=>y", "http://example.com/bar.js");
/******************************************************************************/
if (typeof reportCompare === "function")
reportCompare(true, true);
print("Tests complete");
|