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.1
|
2014-07-22 01:09:02 +02:00
|
|
|
description: Checking properties of this object (escape)
|
|
|
|
---*/
|
2013-06-06 13:36:51 +02:00
|
|
|
|
|
|
|
if (typeof this.escape === "undefined") $ERROR('#1: typeof this.escape !== "undefined"');
|
|
|
|
if (typeof this['escape'] === "undefined") $ERROR('#2: typeof this["escape"] !== "undefined"');
|