js/src/tests/ecma/Statements/12.6.3-10.js

Thu, 22 Jan 2015 13:21:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 22 Jan 2015 13:21:57 +0100
branch
TOR_BUG_9701
changeset 15
b8a032363ba2
permissions
-rw-r--r--

Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6

     1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
     2 /* This Source Code Form is subject to the terms of the Mozilla Public
     3  * License, v. 2.0. If a copy of the MPL was not distributed with this
     4  * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
     7 /**
     8    File Name:          12.6.3-10.js
     9    ECMA Section:       12.6.3 The for...in Statement
    10    Description:
    11    The production IterationStatement : for ( LeftHandSideExpression in Expression )
    12    Statement is evaluated as follows:
    14    1.  Evaluate the Expression.
    15    2.  Call GetValue(Result(1)).
    16    3.  Call ToObject(Result(2)).
    17    4.  Let C be "normal completion".
    18    5.  Get the name of the next property of Result(3) that doesn't have the
    19    DontEnum attribute. If there is no such property, go to step 14.
    20    6.  Evaluate the LeftHandSideExpression (it may be evaluated repeatedly).
    21    7.  Call PutValue(Result(6), Result(5)).  PutValue( V, W ):
    22    1.  If Type(V) is not Reference, generate a runtime error.
    23    2.  Call GetBase(V).
    24    3.  If Result(2) is null, go to step 6.
    25    4.  Call the [[Put]] method of Result(2), passing GetPropertyName(V)
    26    for the property name and W for the value.
    27    5.  Return.
    28    6.  Call the [[Put]] method for the global object, passing
    29    GetPropertyName(V) for the property name and W for the value.
    30    7.  Return.
    31    8.  Evaluate Statement.
    32    9.  If Result(8) is a value completion, change C to be "normal completion
    33    after value V" where V is the value carried by Result(8).
    34    10. If Result(8) is a break completion, go to step 14.
    35    11. If Result(8) is a continue completion, go to step 5.
    36    12. If Result(8) is a return completion, return Result(8).
    37    13. Go to step 5.
    38    14. Return C.
    40    Author:             christine@netscape.com
    41    Date:               11 september 1997
    42 */
    43 var SECTION = "12.6.3-10";
    44 var VERSION = "ECMA_1";
    45 startTest();
    46 var TITLE   = "The for..in statement";
    48 writeHeaderToLog( SECTION + " "+ TITLE);
    50 //  for ( LeftHandSideExpression in Expression )
    51 //  LeftHandSideExpression:NewExpression:MemberExpression
    53 var count = 0;
    54 function f() {     count++; return new Array("h","e","l","l","o"); }
    56 var result = "";
    57 for ( p in f() ) { result += f()[p] };
    59 new TestCase( SECTION,
    60 	      "count = 0; result = \"\"; "+
    61 	      "function f() { count++; return new Array(\"h\",\"e\",\"l\",\"l\",\"o\"); }"+
    62 	      "for ( p in f() ) { result += f()[p] }; count",
    63 	      6,
    64 	      count );
    66 new TestCase( SECTION,
    67 	      "result",
    68 	      "hello",
    69 	      result );
    71 //  LeftHandSideExpression:NewExpression:MemberExpression [ Expression ]
    72 //  LeftHandSideExpression:NewExpression:MemberExpression . Identifier
    73 //  LeftHandSideExpression:NewExpression:new MemberExpression Arguments
    74 //  LeftHandSideExpression:NewExpression:PrimaryExpression:( Expression )
    75 //  LeftHandSideExpression:CallExpression:MemberExpression Arguments
    76 //  LeftHandSideExpression:CallExpression Arguments
    77 //  LeftHandSideExpression:CallExpression [ Expression ]
    78 //  LeftHandSideExpression:CallExpression . Identifier
    80 test();

mercurial