2011-09-07 08:35:18 +02:00
|
|
|
// Copyright 2009 the Sputnik authors. All rights reserved.
|
|
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The internal helper function CharacterRange takes two CharSet parameters A and B and performs the
|
|
|
|
* following:
|
|
|
|
* If A does not contain exactly one character or B does not contain exactly one character then throw
|
|
|
|
* a SyntaxError exception
|
|
|
|
*
|
2011-10-03 22:04:52 +02:00
|
|
|
* @path ch15/15.10/15.10.2/15.10.2.15/S15.10.2.15_A1_T12.js
|
2011-09-12 06:07:23 +02:00
|
|
|
* @description Checking if execution of "/[\Bd-G]/.exec("a")" leads to throwing the correct exception
|
2011-09-07 08:35:18 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
//CHECK#1
|
|
|
|
try {
|
|
|
|
$ERROR('#1.1: /[\\Bd-G]/.exec("a") throw SyntaxError. Actual: ' + (new RegExp("[\\Bd-G]").exec("a")));
|
|
|
|
} catch (e) {
|
|
|
|
if((e instanceof SyntaxError) !== true){
|
|
|
|
$ERROR('#1.2: /[\\Bd-G]/.exec("a") throw SyntaxError. Actual: ' + (e));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|