mirror of
https://github.com/tc39/test262.git
synced 2025-08-28 05:18:32 +02:00
24 lines
640 B
JavaScript
24 lines
640 B
JavaScript
// Copyright 2009 the Sputnik authors. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/**
|
|
* Do not crash with pefixincrement custom property
|
|
*
|
|
* @path ch08/8.6/S8.6_A3_T1.js
|
|
* @description Try to implement pefixincrement for custom property
|
|
*/
|
|
|
|
var __map={foo:'bar'};
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
//CHECK#1
|
|
|
|
++__map.foo;
|
|
if (!isNaN(__map.foo)) {
|
|
$ERROR('#1: var __map={foo:"bar"}; ++__map.foo; __map.foo === Not-a-Number. Actual: ' + (__map.foo));
|
|
}
|
|
|
|
//
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
|