2013-06-06 13:36:51 +02:00
|
|
|
// Copyright 2009 the Sputnik authors. All rights reserved.
|
|
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
|
2014-07-22 01:09:02 +02:00
|
|
|
/*---
|
|
|
|
info: Check type of various properties
|
2015-02-10 22:01:39 +01:00
|
|
|
es5id: B.2.2
|
2014-07-22 01:09:02 +02:00
|
|
|
description: Checking properties of this object (unescape)
|
|
|
|
---*/
|
2013-06-06 13:36:51 +02:00
|
|
|
|
|
|
|
if (typeof this.unescape === "undefined") $ERROR('#1: typeof this.unescape !== "undefined"');
|
|
|
|
if (typeof this['unescape'] === "undefined") $ERROR('#2: typeof this["unescape"] !== "undefined"');
|