aboutsummaryrefslogtreecommitdiffstats
path: root/test/suite/sputnik_converted/13_Function_Definition/13.2_Creating_Function_Objects/S13.2_A4_T2.js
blob: 6374e7cdd5f60faff38c5c66108f34b87ac6a512 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
// Copyright 2009 the Sputnik authors.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/**
* @name: S13.2_A4_T2;
* @section: 13.2;
* @assertion: When Function object(F) is constructed the following steps from 9 to 11 take place 
* 9.Create a new object as would be constructed by the expression new Object(). 
* 10. Set the constructor property of Result(9) to F. This property is given attributes { DontEnum }. 
* 11. Set the "prototype" property of F to Result(9).;
* @description: Checking prototype, prototype.constructor properties and {DontEnum} property of a constructor. 
* Using "var __gunc = function(){}" as a FunctionDeclaration; 
*/


// Converted for Test262 from original Sputnik source

ES5Harness.registerTest( {
id: "S13.2_A4_T2",

path: "TestCases/13_Function_Definition/13.2_Creating_Function_Objects/S13.2_A4_T2.js",

assertion: "When Function object(F) is constructed the following steps from 9 to 11 take place",

description: "Checking prototype, prototype.constructor properties and {DontEnum} property of a constructor.",

test: function testcase() {
   var __gunc = function(){};

//////////////////////////////////////////////////////////////////////////////
//CHECK#1
if (typeof __gunc.prototype !== 'object') {
	$ERROR('#1: typeof __gunc.prototype === \'object\'. Actual: typeof __gunc.prototype ==='+typeof __gunc.prototype);
}
//
//////////////////////////////////////////////////////////////////////////////

//////////////////////////////////////////////////////////////////////////////
//CHECK#2
if (__gunc.prototype.constructor !== __gunc) {
	$ERROR('#2: __gunc.prototype.constructor === __gunc. Actual: __gunc.prototype.constructor ==='+__gunc.prototype.constructor);
}
//
//////////////////////////////////////////////////////////////////////////////

var __constructor_was__enumed;

for (__prop in __gunc.prototype){
    if (__prop = 'constructor')
        __constructor_was__enumed = true;
}

//////////////////////////////////////////////////////////////////////////////
//CHECK#3
if (__constructor_was__enumed) {
	$ERROR('#3: __constructor_was__enumed === false. Actual: __constructor_was__enumed ==='+__constructor_was__enumed);
}
//
//////////////////////////////////////////////////////////////////////////////






 }
});