Bug 1892041 - Part 2: Update test262. r=spidermonkey-reviewers,dminor
[gecko.git] / js / src / tests / test262 / built-ins / RegExp / S15.10.2.15_A1_T38.js
blob9bc2fd2c0ebfdaad7c8baf6e1b7b75827f232d21
1 // Copyright 2009 the Sputnik authors.  All rights reserved.
2 // This code is governed by the BSD license found in the LICENSE file.
4 /*---
5 info: |
6     The internal helper function CharacterRange takes two CharSet parameters A and B and performs the
7     following:
8     2. Let a be the one character in CharSet A.
9     3. Let b be the one character in CharSet B.
10     4. Let i be the character value of character a.
11     5. Let j be the character value of character b.
12     6. If i > j, throw a SyntaxError exception.
13 es5id: 15.10.2.15_A1_T38
14 description: >
15     Checking if execution of "/[d-G\c0001]/.exec("1")" leads to
16     throwing the correct exception
17 ---*/
19 try {
20   throw new Test262Error('#1.1: /[d-G\\c0001]/.exec("1") throw SyntaxError. Actual: ' + (new RegExp("[d-G\\c0001]").exec("1")));
21 } catch (e) {
22   assert.sameValue(
23     e instanceof SyntaxError,
24     true,
25     'The result of evaluating (e instanceof SyntaxError) is expected to be true'
26   );
29 // TODO: Convert to assert.throws() format.
31 reportCompare(0, 0);