@@ -164,17 +164,17 @@ module Make<RegexTreeViewSig TreeImpl> {
164
164
/** An input symbol corresponding to character `c`. */
165
165
Char ( string c ) {
166
166
c =
167
- getCodepointAt ( any ( RegexpCharacterConstant cc |
167
+ getACodepoint ( any ( RegexpCharacterConstant cc |
168
168
cc instanceof RelevantRegExpTerm and
169
169
not isIgnoreCase ( cc .getRootTerm ( ) )
170
- ) .getValue ( ) , _ )
170
+ ) .getValue ( ) )
171
171
or
172
172
// normalize everything to lower case if the regexp is case insensitive
173
173
c =
174
174
any ( RegexpCharacterConstant cc , string char |
175
175
cc instanceof RelevantRegExpTerm and
176
176
isIgnoreCase ( cc .getRootTerm ( ) ) and
177
- char = getCodepointAt ( cc .getValue ( ) , _ )
177
+ char = getACodepoint ( cc .getValue ( ) )
178
178
|
179
179
char .toLowerCase ( )
180
180
)
@@ -370,7 +370,7 @@ module Make<RegexTreeViewSig TreeImpl> {
370
370
string getARelevantChar ( ) {
371
371
exists ( asciiPrintable ( result ) )
372
372
or
373
- exists ( RegexpCharacterConstant c | result = getCodepointAt ( c .getValue ( ) , _ ) )
373
+ exists ( RegexpCharacterConstant c | result = getACodepoint ( c .getValue ( ) ) )
374
374
or
375
375
classEscapeMatches ( _, result )
376
376
}
@@ -1258,7 +1258,7 @@ module Make<RegexTreeViewSig TreeImpl> {
1258
1258
* Gets a `char` that occurs in a `pump` string.
1259
1259
*/
1260
1260
private string getAProcessChar ( ) {
1261
- result = getCodepointAt ( any ( string s | isReDoSCandidate ( _, s ) ) , _ )
1261
+ result = getACodepoint ( any ( string s | isReDoSCandidate ( _, s ) ) )
1262
1262
}
1263
1263
}
1264
1264
0 commit comments