mirror of https://github.com/tc39/test262.git
22 lines
522 B
JavaScript
22 lines
522 B
JavaScript
// Copyright 2009 the Sputnik authors. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/*---
|
|
info: |
|
|
If MemberExpression does not implement the internal [[Call]] method,
|
|
throw TypeError
|
|
es5id: 11.2.3_A4_T4
|
|
description: Checking Global object case
|
|
---*/
|
|
|
|
//CHECK#1
|
|
try {
|
|
this();
|
|
$ERROR('#1.1: this() throw TypeError. Actual: ' + (this()));
|
|
}
|
|
catch (e) {
|
|
if ((e instanceof TypeError) !== true) {
|
|
$ERROR('#1.2: this() throw TypeError. Actual: ' + (e));
|
|
}
|
|
}
|