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
|
// Copyright 2009 the Sputnik authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
info: |
Expression from "while" IterationStatement is evaluated first; "false",
"0", "null", "undefined" and "empty" strings used as the Expression are
evaluated to "false"
es5id: 12.6.2_A1
description: Evaluating various Expressions
---*/
var __in__do;
while ( false ) __in__do=1;
//////////////////////////////////////////////////////////////////////////////
//CHECK#1
if (__in__do !== undefined) {
$ERROR('#1: false evaluates to false');
}
//
//////////////////////////////////////////////////////////////////////////////
while ( 0 ) __in__do=2;
//////////////////////////////////////////////////////////////////////////////
//CHECK#2
if (__in__do !== undefined) {
$ERROR('#2: 0 evaluates to false');
}
//
//////////////////////////////////////////////////////////////////////////////
while ( "" ) __in__do=3;
//////////////////////////////////////////////////////////////////////////////
//CHECK#3
if (__in__do !== undefined) {
$ERROR('#3: empty string evaluates to false');
}
//
//////////////////////////////////////////////////////////////////////////////
while ( null ) __in__do=4;
//////////////////////////////////////////////////////////////////////////////
//CHECK#4
if (__in__do !== undefined) {
$ERROR('#4: null evaluates to false');
}
//
//////////////////////////////////////////////////////////////////////////////
while ( undefined ) __in__do=35;
//////////////////////////////////////////////////////////////////////////////
//CHECK#5
if (__in__do !== undefined) {
$ERROR('#5: undefined evaluates to false');
}
//
//////////////////////////////////////////////////////////////////////////////
|