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
64
65
66
67
68
69
70
71
72
|
/*
* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/licenses/publicdomain/
*/
//-----------------------------------------------------------------------------
var BUGNUMBER = 1596706;
var summary =
"Properly apply a directive comment 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 stack;
function reset()
{
stack = "";
}
function assertStackContains(needle, msg)
{
assertEq(stack.indexOf(needle) >= 0, true,
`stack should contain '${needle}': ${msg}`);
}
Object.defineProperty(this, "detectSourceURL", {
get() {
stack = new Error().stack;
return 17;
}
});
// block followed by semicolon
reset();
assertEq(eval(`x=>{};
//# sourceURL=http://example.com/foo.js
detectSourceURL`), 17);
assertStackContains("http://example.com/foo.js", "block, semi");
// block not followed by semicolon
reset();
assertEq(eval(`x=>{}
//# sourceURL=http://example.com/bar.js
detectSourceURL`), 17);
assertStackContains("http://example.com/bar.js", "block, not semi");
// expr followed by semicolon
reset();
assertEq(eval(`x=>y;
//# sourceURL=http://example.com/baz.js
detectSourceURL`), 17);
assertStackContains("http://example.com/baz.js", "expr, semi");
// expr not followed by semicolon
reset();
assertEq(eval(`x=>y
//# sourceURL=http://example.com/quux.js
detectSourceURL`), 17);
assertStackContains("http://example.com/quux.js", "expr, not semi");
/******************************************************************************/
if (typeof reportCompare === "function")
reportCompare(true, true);
print("Tests complete");
|