summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/parser/missing-closing-brace.js
blob: f97cefd81ecb72a43684704e8158c13936462a2b (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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
function test(source, [lineNumber, columnNumber]) {
  let caught = false;
  try {
    Reflect.parse(source, { source: "foo.js" });
  } catch (e) {
    assertEq(e.message.includes("missing } "), true);
    let notes = getErrorNotes(e);
    assertEq(notes.length, 1);
    let note = notes[0];
    assertEq(note.message, "{ opened at line " + lineNumber + ", column " + columnNumber);
    assertEq(note.fileName, "foo.js");
    assertEq(note.lineNumber, lineNumber);
    assertEq(note.columnNumber, columnNumber);
    caught = true;
  }
  assertEq(caught, true);
}

// Function

test(`
function test1() {
}
function test2() {
  if (true) {
  //}
}
function test3() {
}
`, [4, 17]);

// Block statement.
test(`
{
  if (true) {
}
`, [2, 0]);
test(`
if (true) {
  if (true) {
}
`, [2, 10]);
test(`
for (;;) {
  if (true) {
}
`, [2, 9]);
test(`
while (true) {
  if (true) {
}
`, [2, 13]);
test(`
do {
  do {
} while(true);
`, [2, 3]);

// try-catch-finally.
test(`
try {
  if (true) {
}
`, [2, 4]);
test(`
try {
} catch (e) {
  if (true) {
}
`, [3, 12]);
test(`
try {
} finally {
  if (true) {
}
`, [3, 10]);

// Object literal.
test(`
var x = {
  foo: {
};
`, [2, 8]);