summaryrefslogtreecommitdiffstats
path: root/js/src/tests/js1_8_1/extensions/strict-warning.js
blob: b5a37ea70867a0931268caad13557d29ef057294 (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
// Turn on strict mode and warnings-as-errors mode.
if (options().split().indexOf('strict') == -1)
    options('strict');
if (options().split().indexOf('werror') == -1)
    options('werror');

function expectSyntaxError(stmt) {
    print(stmt);
    var result = 'no error';
    try {
        Function(stmt);
    } catch (exc) {
        result = exc.constructor.name;
    }
    assertEq(result, 'SyntaxError');
}

function test(expr) {
    // Without extra parentheses, expect an error.
    expectSyntaxError('if (' + expr + ') {};');

    // Extra parentheses silence the warning/error.
    Function('if ((' + expr + ')) {};');
}

// Overparenthesized assignment in a condition should not be a strict error.
test('a = 0');
test('a = (f(), g)');
test('a = b || c > d');
expectSyntaxError('if (a == 0);');
reportCompare('passed', 'passed', 'Overparenthesized assignment in a condition should not be a strict error.');