Bug 1892041 - Part 2: Update test262. r=spidermonkey-reviewers,dminor
[gecko.git] / js / src / tests / test262 / built-ins / RegExp / S15.10.2.15_A1_T20.js
blobf5e5ef3658502f63280615f75b0ff78ce7905b2b
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_T20
14 description: >
15     Checking if execution of "/[\u0061d-G]/.exec("a")" leads to
16     throwing the correct exception
17 ---*/
19 try {
20   throw new Test262Error('#1.1: /[\\u0061d-G]/.exec("a") throw SyntaxError. Actual: ' + (new RegExp("[\\u0061d-G]").exec("a")));
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);