mirror of
https://github.com/tc39/test262.git
synced 2025-08-28 13:28:38 +02:00
33 lines
1.0 KiB
JavaScript
33 lines
1.0 KiB
JavaScript
// Copyright 2009 the Sputnik authors. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/**
|
|
* [[Call]] executes code associated with the object
|
|
*
|
|
* @path ch08/8.6/8.6.2/S8.6.2_A5_T4.js
|
|
* @description Call function-property of global object, property defined
|
|
* as this['beep']=function(){__count++}
|
|
*/
|
|
|
|
var __count=0;
|
|
|
|
this["beep"]=function(){__count++};
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
//CHECK#1
|
|
beep();
|
|
if (__count !==1) {
|
|
$ERROR('#1: __count=0; this["beep"]=function(){__count++}; beep(); __count === 1. Actual: ' + (__count));
|
|
}
|
|
//
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
//CHECK#2
|
|
this["beep"]();
|
|
if (__count !==2) {
|
|
$ERROR('#2: __count=0; this["beep"]=function(){__count++}; beep(); this["beep"](); __count === 2. Actual: ' + (__count));
|
|
}
|
|
//
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
|