2011-09-07 08:35:18 +02:00
|
|
|
// Copyright 2009 the Sputnik authors. All rights reserved.
|
|
|
|
// 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
|
|
|
Variables are created when the program is entered. Variables are initialised to "undefined"
|
|
|
|
when created. A variable with an Initialiser is assigned the value of its AssignmentExpression when the
|
|
|
|
VariableStatement is executed, not when the variable is created
|
2014-07-25 00:41:42 +02:00
|
|
|
es5id: 12.2_A1
|
2014-07-22 01:09:02 +02:00
|
|
|
description: Creating variables after entering the execution scope
|
|
|
|
---*/
|
2011-09-07 08:35:18 +02:00
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
|
|
//CHECK#1
|
|
|
|
try {
|
|
|
|
__x = __x;
|
|
|
|
__y = __x ? "good fellow" : "liar"; // __y assigned to "liar" since __x undefined
|
|
|
|
__z = __z === __x ? 1 : 0; // __z assigned to 1 since both __x and __z are undefined
|
|
|
|
} catch (e) {
|
2021-07-22 21:58:54 +02:00
|
|
|
throw new Test262Error('#1: Using declarated variable before it declaration is admitted');
|
2011-09-07 08:35:18 +02:00
|
|
|
}
|
|
|
|
//
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
|
|
//CHECK#2
|
2015-06-16 18:35:27 +02:00
|
|
|
assert.throws(ReferenceError, function() {
|
2011-09-07 08:35:18 +02:00
|
|
|
__something__undefined = __something__undefined;
|
2015-06-16 18:35:27 +02:00
|
|
|
});
|
2011-09-07 08:35:18 +02:00
|
|
|
//
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
|
|
//CHECK#3
|
|
|
|
if ((__y !== "liar")&(__z !== 1)) {
|
2021-07-22 21:58:54 +02:00
|
|
|
throw new Test262Error('#3: (__y === "liar") and (__z === 1). Actual: __y ==='+__y+' and __z ==='+__z );
|
2011-09-07 08:35:18 +02:00
|
|
|
}
|
|
|
|
//
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
var __x, __y = true, __z = __y ? "smeagol" : "golum";
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
|
|
//CHECK#4
|
|
|
|
if (!__y&!(__z = "smeagol")) {
|
2021-07-22 21:58:54 +02:00
|
|
|
throw new Test262Error('#4: A variable with an Initialiser is assigned the value of its AssignmentExpression when the VariableStatement is executed');
|
2011-09-07 08:35:18 +02:00
|
|
|
}
|
|
|
|
//
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|