mirror of
https://github.com/tc39/test262.git
synced 2025-08-28 21:38:26 +02:00
23 lines
656 B
JavaScript
23 lines
656 B
JavaScript
// Copyright 2009 the Sputnik authors. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/**
|
|
* Function.prototype.call can't be used as [[create]] caller
|
|
*
|
|
* @path ch15/15.3/15.3.4/15.3.4.4/S15.3.4.4_A7_T6.js
|
|
* @description Checking if creating "new (Function("function f(){this.p1=1;};return f").call())" fails
|
|
*/
|
|
|
|
//CHECK#1
|
|
try {
|
|
var obj = new (Function("function f(){this.p1=1;};return f").call());
|
|
} catch (e) {
|
|
$ERROR('#1: Function.prototype.call can\'t be used as [[create]] caller');
|
|
}
|
|
|
|
//CHECK#2
|
|
if (obj.p1!== 1) {
|
|
$ERROR('#2: Function.prototype.call can\'t be used as [[create]] caller');
|
|
}
|
|
|