@@ -10,7 +10,7 @@ class CharacterSetTest extends InlineExpectationsTest {
1010 override predicate hasActualResult ( Location location , string element , string tag , string value ) {
1111 exists ( location .getFile ( ) .getRelativePath ( ) ) and
1212 location .getFile ( ) .getBaseName ( ) = "charSetTest.py" and
13- exists ( Regex re , int start , int end |
13+ exists ( RegExp re , int start , int end |
1414 re .charSet ( start , end ) and
1515 location = re .getLocation ( ) and
1616 element = re .getText ( ) .substring ( start , end ) and
@@ -28,7 +28,7 @@ class CharacterRangeTest extends InlineExpectationsTest {
2828 override predicate hasActualResult ( Location location , string element , string tag , string value ) {
2929 exists ( location .getFile ( ) .getRelativePath ( ) ) and
3030 location .getFile ( ) .getBaseName ( ) = "charRangeTest.py" and
31- exists ( Regex re , int start , int lower_end , int upper_start , int end |
31+ exists ( RegExp re , int start , int lower_end , int upper_start , int end |
3232 re .charRange ( _, start , lower_end , upper_start , end ) and
3333 location = re .getLocation ( ) and
3434 element = re .getText ( ) .substring ( start , end ) and
@@ -46,7 +46,7 @@ class EscapeTest extends InlineExpectationsTest {
4646 override predicate hasActualResult ( Location location , string element , string tag , string value ) {
4747 exists ( location .getFile ( ) .getRelativePath ( ) ) and
4848 location .getFile ( ) .getBaseName ( ) = "escapedCharacterTest.py" and
49- exists ( Regex re , int start , int end |
49+ exists ( RegExp re , int start , int end |
5050 re .escapedCharacter ( start , end ) and
5151 location = re .getLocation ( ) and
5252 element = re .getText ( ) .substring ( start , end ) and
@@ -64,7 +64,7 @@ class GroupTest extends InlineExpectationsTest {
6464 override predicate hasActualResult ( Location location , string element , string tag , string value ) {
6565 exists ( location .getFile ( ) .getRelativePath ( ) ) and
6666 location .getFile ( ) .getBaseName ( ) = "groupTest.py" and
67- exists ( Regex re , int start , int end |
67+ exists ( RegExp re , int start , int end |
6868 re .group ( start , end ) and
6969 location = re .getLocation ( ) and
7070 element = re .getText ( ) .substring ( start , end ) and
0 commit comments