mirror of
https://github.com/tc39/test262.git
synced 2025-08-28 05:18:32 +02:00
28 lines
920 B
JavaScript
28 lines
920 B
JavaScript
// Copyright 2009 the Sputnik authors. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/**
|
|
* this.x++ calls GetValue then PutValue so after applying postfix increment(actually conrete operator type is unimportan)
|
|
* we must have reference to defined value
|
|
*
|
|
* @path ch08/8.7/S8.7.2_A3.js
|
|
* @description Execute this.x++, where this.x is undefined
|
|
*/
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
//CHECK#1
|
|
if (this.x !== undefined) {
|
|
$ERROR('#1: this.x === undefined. Actual: ' + (this.x));
|
|
}
|
|
//
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
this.x++;
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
//CHECK#2
|
|
if (x === undefined) {
|
|
$ERROR('#2: this.x; this.x++; x !== undefined');
|
|
}
|
|
//
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
|