summaryrefslogtreecommitdiffstats
path: root/js/src/tests/non262/arrow-functions/toString-eof.js
blob: aba4df15c2c40dc4a94c66df2e8e5eb3550891e7 (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
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

function test(code) {
  assertEq(eval(code).toString(), code);

  assertEq(eval(code + ` `).toString(), code);
  assertEq(eval(code + ` \n`).toString(), code);

  assertEq(eval(code + ` // foo`).toString(), code);
  assertEq(eval(code + ` // foo
`).toString(), code);
  assertEq(eval(code + ` // foo
// foo`).toString(), code);
  assertEq(eval(code + ` // foo
// foo
`).toString(), code);
}
test(`() => 1`);
test(`() => () => 2`);
test(`() => class {}`);
test(`() => function() {}`);

if (typeof reportCompare === "function")
  reportCompare(true, true);