summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/ch11/11.13/11.13.2/S11.13.2_A1_T4.js
blob: fa97eb77f8cc69f788548b4a45745e2af45a7ea1 (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
// Copyright 2009 the Sputnik authors.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/**
 * White Space and Line Terminator between LeftHandSideExpression and "@=" or between "@=" and AssignmentExpression are allowed
 *
 * @path ch11/11.13/11.13.2/S11.13.2_A1_T4.js
 * @description Checking by using eval, check operator is x += y
 */

//CHECK#1
x = -1;
if ((eval("x\u0009+=\u0009-1")) !== -2) {
  $ERROR('#1: x = -1; (x\\u0009+=\\u0009-1) === -2');
}

//CHECK#2
x = -1;
if ((eval("x\u000B+=\u000B-1")) !== -2) {
  $ERROR('#2: x = -1; (x\\u000B+=\\u000B-1) === -2');  
}

//CHECK#3
x = -1;
if ((eval("x\u000C+=\u000C-1")) !== -2) {
  $ERROR('#3: x = -1; (x\\u000C+=\\u000C-1) === -2');
}

//CHECK#4
x = -1;
if ((eval("x\u0020+=\u0020-1")) !== -2) {
  $ERROR('#4: x = -1; (x\\u0020+=\\u0020-1) === -2');
}

//CHECK#5
x = -1;
if ((eval("x\u00A0+=\u00A0-1")) !== -2) {
  $ERROR('#5: x = -1; (x\\u00A0+=\\u00A0-1) === -2');
}

//CHECK#6
x = -1;
if ((eval("x\u000A+=\u000A-1")) !== -2) {
  $ERROR('#6: x = -1; (x\\u000A+=\\u000A-1) === -2');  
}

//CHECK#7
x = -1;
if ((eval("x\u000D+=\u000D-1")) !== -2) {
  $ERROR('#7: x = -1; (x\\u000D+=\\u000D-1) === -2');
}

//CHECK#8
x = -1;
if ((eval("x\u2028+=\u2028-1")) !== -2) {
  $ERROR('#8: x = -1; (x\\u2028+=\\u2028-1) === -2');
}

//CHECK#9
x = -1;
if ((eval("x\u2029+=\u2029-1")) !== -2) {
  $ERROR('#9: x = -1; (x\\u2029+=\\u2029-1) === -2');
}


//CHECK#10
x = -1;
if ((eval("x\u0009\u000B\u000C\u0020\u00A0\u000A\u000D\u2028\u2029+=\u0009\u000B\u000C\u0020\u00A0\u000A\u000D\u2028\u2029-1")) !== -2) {
  $ERROR('#10: x = -1; (x\\u0009\\u000B\\u000C\\u0020\\u00A0\\u000A\\u000D\\u2028\\u2029+=\\u0009\\u000B\\u000C\\u0020\\u00A0\\u000A\\u000D\\u2028\\u2029-1) === -2');
}