summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/language/expressions/compound-assignment/mod-whitespace.js
blob: e9059eda6f33234e3e5f3095456a05a8180604d8 (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
// Copyright 2009 the Sputnik authors.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
info: |
    White Space and Line Terminator between LeftHandSideExpression and "@="
    or between "@=" and AssignmentExpression are allowed
es5id: 11.13.2_A1_T3
esid: sec-assignment-operators
description: Checking by using eval, check operator is x %= y
---*/

var x;

x = -1;
assert.sameValue(x	%=	-1, -0, 'U+0009 (expression)');
assert.sameValue(x, -0, 'U+0009 (side effect)');

x = -1;
assert.sameValue(x%=-1, -0, 'U+000B (expression)');
assert.sameValue(x, -0, 'U+000B (side effect)');

x = -1;
assert.sameValue(x%=-1, -0, 'U+000C (expression)');
assert.sameValue(x, -0, 'U+000C (side effect)');

x = -1;
assert.sameValue(x %= -1, -0, 'U+0020 (expression)');
assert.sameValue(x, -0, 'U+0020 (side effect)');

x = -1;
assert.sameValue(x %= -1, -0, 'U+00A0 (expression)');
assert.sameValue(x, -0, 'U+00A0 (side effect)');

x = -1;
assert.sameValue(x
%=
-1, -0, 'U+000A (expression)');
assert.sameValue(x, -0, 'U+000A (side effect)');

x = -1;
assert.sameValue(x
%=
-1, -0, 'U+000D (expression)');
assert.sameValue(x, -0, 'U+000D (side effect)');

x = -1;
assert.sameValue(x%=-1, -0, 'U+2028 (expression)');
assert.sameValue(x, -0, 'U+2028 (side effect)');

x = -1;
assert.sameValue(x%=-1, -0, 'U+2029 (expression)');
assert.sameValue(x, -0, 'U+2029 (side effect)');

x = -1;
assert.sameValue(x	  



%=	  



-1, -0, 'U+0009U+000BU+000CU+0020U+00A0U+000AU+000DU+2028U+2029 (expression)');
assert.sameValue(x, -0, 'U+0009U+000BU+000CU+0020U+00A0U+000AU+000DU+2028U+2029 (side effect)');

reportCompare(0, 0);