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
|
|
|
|
|
|
|
/*---
|
2018-01-05 18:26:51 +01:00
|
|
|
info: |
|
2014-07-22 01:09:02 +02:00
|
|
|
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-18
|
2014-07-22 01:09:02 +02:00
|
|
|
description: >
|
|
|
|
The for Statement - (normal, V, empty) will be returned when first
|
|
|
|
Expression is a string (value is empty string)
|
|
|
|
---*/
|
|
|
|
|
|
|
|
var count = 0;
|
|
|
|
for (var i = 0; "";) {
|
|
|
|
count++;
|
|
|
|
}
|
2015-08-06 18:32:38 +02:00
|
|
|
|
|
|
|
assert.sameValue(count, 0, 'count');
|