2014-07-22 01:09:02 +02:00
|
|
|
// Copyright (c) 2012 Ecma International. All rights reserved.
|
2015-07-17 17:42:45 +02:00
|
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
2014-07-22 01:09:02 +02:00
|
|
|
|
|
|
|
/*---
|
|
|
|
info: >
|
|
|
|
Refer 12.6.3;
|
|
|
|
The production
|
|
|
|
IterationStatement : for ( var VariableDeclarationListNoIn ; Expressionopt ; Expressionopt ) Statement
|
|
|
|
is evaluated as follows:
|
2014-07-25 00:41:42 +02:00
|
|
|
es5id: 12.6.3_2-3-a-ii-9
|
2014-07-22 01:09:02 +02:00
|
|
|
description: >
|
|
|
|
The for Statement - (normal, V, empty) will be returned when first
|
|
|
|
Expression is a String object (value is 'null')
|
|
|
|
includes: [runTestCase.js]
|
|
|
|
---*/
|
|
|
|
|
|
|
|
function testcase() {
|
|
|
|
var accessed = false;
|
|
|
|
var strObj = new String("null");
|
|
|
|
for (var i = 0; strObj;) {
|
|
|
|
accessed = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return accessed;
|
|
|
|
}
|
|
|
|
runTestCase(testcase);
|