2011-09-07 08:35:18 +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 : >
Assume F is a Function object . When the [ [ HasInstance ] ] method of F is
called with value V , the following steps are taken : i ) If V is not an
object , return false
2014-07-25 00:41:42 +02:00
es5id : 15.3 . 5.3 _A1 _T5
2014-07-22 01:09:02 +02:00
description : V is void 0
-- - * /
2011-09-07 08:35:18 +02:00
2014-12-11 18:01:59 +01:00
var FACTORY ;
2011-09-07 08:35:18 +02:00
FACTORY = Function ( "name" , "this.name=name;" ) ;
//CHECK#1
if ( ( void 0 instanceof FACTORY ) !== false ) {
$ERROR ( '#1: Assume F is a Function object. When the [[HasInstance]] method of F is called with value V, the following steps are taken: i) If V is not an object, return false' ) ;
}