summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/RegExp/prototype/toString/S15.10.6.4_A6.js
blob: 42adb4757d620679ce6f217232e4d943145642eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Copyright 2009 the Sputnik authors.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
info: RegExp.prototype.toString has not prototype property
es5id: 15.10.6.4_A6
description: Checking RegExp.prototype.toString.prototype
includes: [isConstructor.js]
features: [Reflect.construct]
---*/
assert.sameValue(
  RegExp.prototype.toString.prototype,
  undefined,
  'The value of RegExp.prototype.toString.prototype is expected to equal undefined'
);

assert.sameValue(
  isConstructor(RegExp.prototype.toString),
  false,
  'isConstructor(RegExp.prototype.toString) must return false'
);

reportCompare(0, 0);