mirror of
https://github.com/tc39/test262.git
synced 2025-08-29 05:48:28 +02:00
21 lines
627 B
JavaScript
21 lines
627 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_T5.js
|
|
* @description Checking if creating "new Function("this.p1=1").call" fails
|
|
*/
|
|
|
|
try {
|
|
var FACTORY = Function("this.p1=1").call;
|
|
var obj = new FACTORY();
|
|
$ERROR('#1: Function.prototype.call can\'t be used as [[create]] caller');
|
|
} catch (e) {
|
|
if (!(e instanceof TypeError)) {
|
|
$ERROR('#1.1: Function.prototype.call can\'t be used as [[create]] caller');
|
|
}
|
|
}
|
|
|