js/src/tests/test262/ch12/12.2/S12.2_A1.js

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/js/src/tests/test262/ch12/12.2/S12.2_A1.js	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,53 @@
     1.4 +// Copyright 2009 the Sputnik authors.  All rights reserved.
     1.5 +// This code is governed by the BSD license found in the LICENSE file.
     1.6 +
     1.7 +/**
     1.8 + * Variables are created when the program is entered. Variables are initialised to "undefined"
     1.9 + * when created. A variable with an Initialiser is assigned the value of its AssignmentExpression when the
    1.10 + * VariableStatement is executed, not when the variable is created
    1.11 + *
    1.12 + * @path ch12/12.2/S12.2_A1.js
    1.13 + * @description Creating variables after entering the execution scope
    1.14 + */
    1.15 +
    1.16 +//////////////////////////////////////////////////////////////////////////////
    1.17 +//CHECK#1
    1.18 +try {
    1.19 +	__x = __x;
    1.20 +    __y = __x ? "good fellow" : "liar"; // __y assigned to "liar" since __x undefined
    1.21 +    __z = __z === __x ? 1 : 0; // __z assigned to 1 since both __x and __z are undefined
    1.22 +} catch (e) {
    1.23 +	$ERROR('#1: Using declarated variable before it declaration is admitted');
    1.24 +}
    1.25 +//
    1.26 +//////////////////////////////////////////////////////////////////////////////
    1.27 +
    1.28 +//////////////////////////////////////////////////////////////////////////////
    1.29 +//CHECK#2
    1.30 +try{
    1.31 +    __something__undefined = __something__undefined;
    1.32 +    $ERROR('#2: "__something__undefined = __something__undefined" lead to throwing exception');
    1.33 +} catch(e){
    1.34 +    $PRINT(e.message);
    1.35 +}
    1.36 +//
    1.37 +//////////////////////////////////////////////////////////////////////////////
    1.38 +
    1.39 +//////////////////////////////////////////////////////////////////////////////
    1.40 +//CHECK#3
    1.41 +if ((__y !== "liar")&(__z !== 1)) {
    1.42 +	$ERROR('#3: (__y === "liar") and (__z === 1). Actual:  __y ==='+__y+' and __z ==='+__z  );
    1.43 +}
    1.44 +//
    1.45 +//////////////////////////////////////////////////////////////////////////////
    1.46 +
    1.47 +var __x, __y = true, __z = __y ? "smeagol" : "golum";
    1.48 +
    1.49 +//////////////////////////////////////////////////////////////////////////////
    1.50 +//CHECK#4
    1.51 +if (!__y&!(__z = "smeagol")) {
    1.52 +	$ERROR('#4: A variable with an Initialiser is assigned the value of its AssignmentExpression when the VariableStatement is executed');
    1.53 +}
    1.54 +//
    1.55 +//////////////////////////////////////////////////////////////////////////////
    1.56 +

mercurial