mirror of https://github.com/tc39/test262.git
14 lines
362 B
JavaScript
14 lines
362 B
JavaScript
// Copyright 2009 the Sputnik authors. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/**
|
|
* @name: S11.4.3_D1.2;
|
|
* @section: 11.4.3;
|
|
* @assertion: Result of typeof from RegExp is "object";
|
|
*/
|
|
|
|
// CHECK#1
|
|
if (typeof RegExp !== "object") {
|
|
$ERROR('#1: Result of typeof from RegExp is "object"');
|
|
}
|