Skip to content

Commit eb435c7

Browse files
committed
shared
1 parent b3dc208 commit eb435c7

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

shared/typeinference/codeql/typeinference/internal/TypeInference.qll

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2436,7 +2436,7 @@ module Make1<LocationSig Location, InputSig1<Location> Input1> {
24362436
* Use this predicate to implement any language-specific inference logic.
24372437
*
24382438
* Any tuples included in this predicate will also automatically be included
2439-
* in `inferStep`; if in doubt, use `inferStep` instead.
2439+
* in `stepLanguageSpecific`; if in doubt, use `stepLanguageSpecific` instead.
24402440
*/
24412441
default predicate stepCertainLanguageSpecific(
24422442
AstNode n1, TypePath prefix1, AstNode n2, TypePath prefix2
@@ -2448,10 +2448,10 @@ module Make1<LocationSig Location, InputSig1<Location> Input1> {
24482448
* Gets the inferred certain type of `n` at `path`.
24492449
*
24502450
* Use this predicate to implement any language-specific inference logic, but only for
2451-
* nodes where `inferStepCertain` cannot be used, such as leaf nodes in the AST.
2451+
* nodes where `stepCertainLanguageSpecific` cannot be used, such as leaf nodes in the AST.
24522452
*
24532453
* Any tuples included in this predicate will also automatically be included
2454-
* in `inferType`; if in doubt, use `inferType` instead.
2454+
* in `inferTypeLanguageSpecific`; if in doubt, use `inferTypeLanguageSpecific` instead.
24552455
*/
24562456
default Type inferTypeCertainLanguageSpecific(AstNode n, TypePath path) { none() }
24572457

@@ -2468,7 +2468,7 @@ module Make1<LocationSig Location, InputSig1<Location> Input1> {
24682468
* Gets the inferred type of `n` at `path`.
24692469
*
24702470
* Use this predicate to implement any language-specific inference logic, but only for
2471-
* nodes where `inferStep` cannot be used, such as leaf nodes in the AST.
2471+
* nodes where `stepLanguageSpecific` cannot be used, such as leaf nodes in the AST.
24722472
*/
24732473
Type inferTypeLanguageSpecific(AstNode n, TypePath path);
24742474
}

0 commit comments

Comments
 (0)