2013-06-06 13:44:11 +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.5
|
2014-07-22 01:09:02 +02:00
|
|
|
description: Checking properties of the Date object (setYear)
|
|
|
|
---*/
|
2013-06-06 13:44:11 +02:00
|
|
|
|
|
|
|
if (typeof Date.prototype.setYear !== "function") $ERROR('#1: typeof Date.prototype.setYear === "function". Actual: ' + (typeof Date.prototype.setYear ));
|
|
|
|
if (typeof Date.prototype['setYear'] !== "function") $ERROR('#2: typeof Date.prototype["setYear"] === "function". Actual: ' + (typeof Date.prototype["setYear"] ));
|