blob: 88db5d297bd7c626ba5d4b3aa0ca717551b45440 [file] [log] [blame]
/*
* Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
* for details. All rights reserved. Use of this source code is governed by a
* BSD-style license that can be found in the LICENSE file.
*/
/**
* @assertion 15.10.2.15: The production NonemptyClassRanges :: ClassAtom -
* ClassAtom ClassRanges evaluates as follows:
* <ol>
* <li>Evaluate the first ClassAtom to obtain a CharSet A. </li>
* <li>Evaluate the second ClassAtom to obtain a CharSet B.</li>
* <li>Evaluate ClassRanges to obtain a CharSet C. </li>
* <li>Call CharacterRange(A, B) and let D be the resulting CharSet.</li>
* <li>Return the union of CharSets D and C.</li>
* </ol>
* <br/> The abstract operation CharacterRange takes two CharSet
* parameters A and B and performs the following:
* <ol>
* <li>If A does not contain exactly one character or B does not
* contain exactly one character then throw a SyntaxError exception.
* </li>
* <li>Let a be the one character in CharSet A. </li>
* <li>Let b be the one character in CharSet B. </li>
* <li>Let i be the code unit value of character a. </li>
* <li>Let j be the code unit value of character b. </li>
* <li>If i > j then throw a SyntaxError exception. </li>
* <li>Return the set containing all characters numbered i through
* j, inclusive.</li>
* </ol>
* <br/> 15.10.2.19: NOTE A ClassAtom can use any of the escape
* sequences that are allowed in the rest of the regular expression
* except for \b, \B, and backreferences. Inside a CharacterClass, \b
* means the backspace character, while \B and backreferences raise
* errors. Using a backreference inside a ClassAtom causes an error.
* @description Checks that NonEmptyClassRanges work correctly.
* @3rdparty sputnik-v1:S15.10.2.15_A1_T1.js-S15.10.2.15_A1_T41.js
* @reviewer pagolubev
* @author msyabro
*/
import "../../../../Utils/expect.dart";
main() {
check("[a-c\\d]+", "\n\nabc324234\n");
check("[--0]", "/");
check("[---]", "-");
check("[a-cA-C]", "bB");
check(r"[\u0061-\u007A]", "f");
checkNeg(r"[a-z]+", "ABCDEF");
}
void check(String pattern, String str) {
RegExp re = new RegExp(pattern);
if(null == re.firstMatch(str)) {
Expect.fail("\"$pattern\" !~ \"$str\"");
}
}
void checkNeg(String pattern, String str) {
RegExp re = new RegExp(pattern);
if(null != re.firstMatch(str)) {
Expect.fail("\"$pattern\" ~ \"$str\"");
}
}