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