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

/*---
description: White Space between LeftHandSideExpression and "--" are allowed
es5id: 11.3.2_A1.2_T1
esid: sec-postfix-decrement-operator
---*/

var x = 0;

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

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

assert.sameValue(x--, -2, 'U+000C (expression)');
assert.sameValue(x, -3, 'U+000C (side effect)');

assert.sameValue(x --, -3, 'U+0020 (expression)');
assert.sameValue(x, -4, 'U+0020 (side effect)');

assert.sameValue(x --, -4, 'U+00A0 (expression)');
assert.sameValue(x, -5, 'U+00A0 (side effect)');

assert.sameValue(x	  --, -5, 'U+0009U+000BU+000CU+0020U+00A0 (expression)');
assert.sameValue(x, -6, 'U+0009U+000BU+000CU+0020U+00A0 (side effect)');

reportCompare(0, 0);