michael@0: // Copyright 2009 the Sputnik authors. All rights reserved. michael@0: // This code is governed by the BSD license found in the LICENSE file. michael@0: michael@0: /** michael@0: * Global object has properties such as built-in objects such as michael@0: * Math, String, Date, parseInt, etc michael@0: * michael@0: * @path ch10/10.2/10.2.3/S10.2.3_A1.1_T3.js michael@0: * @description Global execution context - Constructor Properties michael@0: */ michael@0: michael@0: //CHECK#13 michael@0: if ( Object === null ) { michael@0: $ERROR("#13: Object === null"); michael@0: } michael@0: michael@0: //CHECK#14 michael@0: if ( Function === null ) { michael@0: $ERROR("#14: Function === null"); michael@0: } michael@0: michael@0: //CHECK#15 michael@0: if ( String === null ) { michael@0: $ERROR("#15: String === null"); michael@0: } michael@0: michael@0: //CHECK#16 michael@0: if ( Number === null ) { michael@0: $ERROR("#16: Number === null"); michael@0: } michael@0: michael@0: //CHECK#17 michael@0: if ( Array === null ) { michael@0: $ERROR("#17: Array === null"); michael@0: } michael@0: michael@0: //CHECK#18 michael@0: if ( Boolean === null ) { michael@0: $ERROR("#20: Boolean === null"); michael@0: } michael@0: michael@0: //CHECK#18 michael@0: if ( Date === null ) { michael@0: $ERROR("#18: Date === null"); michael@0: } michael@0: michael@0: //CHECK#19 michael@0: if ( RegExp === null ) { michael@0: $ERROR("#19: RegExp === null"); michael@0: } michael@0: michael@0: //CHECK#20 michael@0: if ( Error === null ) { michael@0: $ERROR("#20: Error === null"); michael@0: } michael@0: michael@0: //CHECK#21 michael@0: if ( EvalError === null ) { michael@0: $ERROR("#21: EvalError === null"); michael@0: } michael@0: michael@0: //CHECK#22 michael@0: if ( RangeError === null ) { michael@0: $ERROR("#22: RangeError === null"); michael@0: } michael@0: michael@0: //CHECK#23 michael@0: if ( ReferenceError === null ) { michael@0: $ERROR("#23: ReferenceError === null"); michael@0: } michael@0: michael@0: //CHECK#24 michael@0: if ( SyntaxError === null ) { michael@0: $ERROR("#24: SyntaxError === null"); michael@0: } michael@0: michael@0: //CHECK#25 michael@0: if ( TypeError === null ) { michael@0: $ERROR("#25: TypeError === null"); michael@0: } michael@0: michael@0: //CHECK#26 michael@0: if ( URIError === null ) { michael@0: $ERROR("#26: URIError === null"); michael@0: } michael@0: michael@0: