|
1 // Copyright 2009 the Sputnik authors. All rights reserved. |
|
2 // This code is governed by the BSD license found in the LICENSE file. |
|
3 |
|
4 /** |
|
5 * Operator "void" evaluates UnaryExpression and returns undefined |
|
6 * |
|
7 * @path ch11/11.4/11.4.2/S11.4.2_A4_T6.js |
|
8 * @description Checking Simple Assignment operator |
|
9 */ |
|
10 |
|
11 //CHECK#1 |
|
12 var x = 0; |
|
13 if (void (x = 1) !== undefined) { |
|
14 $ERROR('#1: var x = 0; void (x = 1) === undefined. Actual: ' + (void (x = 1))); |
|
15 } else { |
|
16 if (x !== 1) { |
|
17 $ERROR('#1: var x = 0; void (x = 1); x === 1. Actual: ' + (x)); |
|
18 } |
|
19 } |
|
20 |