// Copyright 2009 the Sputnik authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- info: | The initial value of Function.prototype.constructor is the built-in Function constructor es5id: 15.3.4.1_A1_T1 description: Checking Function.prototype.constructor ---*/ assert.sameValue( Function.prototype.constructor, Function, 'The value of Function.prototype.constructor is expected to equal the value of Function' ); reportCompare(0, 0);