mirror of
https://github.com/tc39/test262.git
synced 2025-08-28 21:38:26 +02:00
39 lines
1.4 KiB
JavaScript
39 lines
1.4 KiB
JavaScript
// Copyright 2009 the Sputnik authors. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/**
|
|
* The production IterationStatement: "for (var VariableDeclarationNoIn in Expression) Statement"
|
|
*
|
|
* @path ch12/12.6/12.6.4/S12.6.4_A6.js
|
|
* @description Using Object with custom prototype as an Expression is appropriate. The prototype is "{feat:2,hint:"protohint"}"
|
|
*/
|
|
|
|
function FACTORY(){this.prop=1;this.hint="hinted"};
|
|
|
|
FACTORY.prototype = {feat:2,hint:"protohint"};
|
|
|
|
var __instance = new FACTORY;
|
|
|
|
__accum="";
|
|
|
|
for (key in __instance){
|
|
__accum+=(key + __instance[key]);
|
|
}
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
//CHECK#1
|
|
if (!((__accum.indexOf("prop1")!==-1)&&(__accum.indexOf("feat2")!==-1)&&(__accum.indexOf("hinthinted")!==-1))) {
|
|
$ERROR('#1: (__accum.indexOf("prop1")!==-1)&&(__accum.indexOf("feat2")!==-1)&&(__accum.indexOf("hinthinted")!==-1)');
|
|
}
|
|
//
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
//CHECK#2
|
|
if (__accum.indexOf("hintprotohint")!==-1) {
|
|
$ERROR('#2: __accum.indexOf("hintprotohint") === -1. Actual: __accum.indexOf("hintprotohint") ==='+ __accum.indexOf("hintprotohint") );
|
|
}
|
|
//
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
|