summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/RegExp/prototype/test/S15.10.6.3_A1_T20.js
blob: 50fcf0443c3aa3d03a9ff760e2e32d3266bfe115 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright 2009 the Sputnik authors.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
info: Equivalent to the expression RegExp.prototype.exec(string) != null
es5id: 15.10.6.3_A1_T20
description: RegExp is /[a-f]d/ and tested string is x, where x is undefined
---*/

var __re = /[a-f]d/;

assert.sameValue(__re.test(x), __re.exec(x) !== null, '__re.test() must return __re.exec(x) !== null');

var x;

reportCompare(0, 0);