@@ -164,17 +164,17 @@ module Make<RegexTreeViewSig TreeImpl> {
164164 /** An input symbol corresponding to character `c`. */
165165 Char ( string c ) {
166166 c =
167- getCodepointAt ( any ( RegexpCharacterConstant cc |
167+ getACodepoint ( any ( RegexpCharacterConstant cc |
168168 cc instanceof RelevantRegExpTerm and
169169 not isIgnoreCase ( cc .getRootTerm ( ) )
170- ) .getValue ( ) , _ )
170+ ) .getValue ( ) )
171171 or
172172 // normalize everything to lower case if the regexp is case insensitive
173173 c =
174174 any ( RegexpCharacterConstant cc , string char |
175175 cc instanceof RelevantRegExpTerm and
176176 isIgnoreCase ( cc .getRootTerm ( ) ) and
177- char = getCodepointAt ( cc .getValue ( ) , _ )
177+ char = getACodepoint ( cc .getValue ( ) )
178178 |
179179 char .toLowerCase ( )
180180 )
@@ -370,7 +370,7 @@ module Make<RegexTreeViewSig TreeImpl> {
370370 string getARelevantChar ( ) {
371371 exists ( asciiPrintable ( result ) )
372372 or
373- exists ( RegexpCharacterConstant c | result = getCodepointAt ( c .getValue ( ) , _ ) )
373+ exists ( RegexpCharacterConstant c | result = getACodepoint ( c .getValue ( ) ) )
374374 or
375375 classEscapeMatches ( _, result )
376376 }
@@ -1258,7 +1258,7 @@ module Make<RegexTreeViewSig TreeImpl> {
12581258 * Gets a `char` that occurs in a `pump` string.
12591259 */
12601260 private string getAProcessChar ( ) {
1261- result = getCodepointAt ( any ( string s | isReDoSCandidate ( _, s ) ) , _ )
1261+ result = getACodepoint ( any ( string s | isReDoSCandidate ( _, s ) ) )
12621262 }
12631263 }
12641264
0 commit comments