@@ -6,7 +6,7 @@ import codeql.swift.elements.type.Type
66module Generated {
77 class AnyFunctionType extends Synth:: TAnyFunctionType , Type {
88 /**
9- * Gets the result of this any function type.
9+ * Gets the result of this function type.
1010 *
1111 * This includes nodes from the "hidden" AST. It can be overridden in subclasses to change the
1212 * behaviour of both the `Immediate` and non-`Immediate` versions.
@@ -19,12 +19,12 @@ module Generated {
1919 }
2020
2121 /**
22- * Gets the result of this any function type.
22+ * Gets the result of this function type.
2323 */
2424 final Type getResult ( ) { result = getImmediateResult ( ) .resolve ( ) }
2525
2626 /**
27- * Gets the `index`th parameter type of this any function type (0-based).
27+ * Gets the `index`th parameter type of this function type (0-based).
2828 *
2929 * This includes nodes from the "hidden" AST. It can be overridden in subclasses to change the
3030 * behaviour of both the `Immediate` and non-`Immediate` versions.
@@ -37,46 +37,46 @@ module Generated {
3737 }
3838
3939 /**
40- * Gets the `index`th parameter type of this any function type (0-based).
40+ * Gets the `index`th parameter type of this function type (0-based).
4141 */
4242 final Type getParamType ( int index ) { result = getImmediateParamType ( index ) .resolve ( ) }
4343
4444 /**
45- * Gets any of the parameter types of this any function type.
45+ * Gets any of the parameter types of this function type.
4646 */
4747 final Type getAParamType ( ) { result = getParamType ( _) }
4848
4949 /**
50- * Gets the number of parameter types of this any function type.
50+ * Gets the number of parameter types of this function type.
5151 */
5252 final int getNumberOfParamTypes ( ) { result = count ( getAParamType ( ) ) }
5353
5454 /**
55- * Gets the `index`th parameter label of this any function type (0-based).
55+ * Gets the `index`th parameter label of this function type (0-based).
5656 */
5757 string getParamLabel ( int index ) {
5858 result = Synth:: convertAnyFunctionTypeToRaw ( this ) .( Raw:: AnyFunctionType ) .getParamLabel ( index )
5959 }
6060
6161 /**
62- * Gets any of the parameter labels of this any function type.
62+ * Gets any of the parameter labels of this function type.
6363 */
6464 final string getAParamLabel ( ) { result = getParamLabel ( _) }
6565
6666 /**
67- * Gets the number of parameter labels of this any function type.
67+ * Gets the number of parameter labels of this function type.
6868 */
6969 final int getNumberOfParamLabels ( ) { result = count ( getAParamLabel ( ) ) }
7070
7171 /**
72- * Holds if this any function type is throwing.
72+ * Holds if this type refers to a throwing function .
7373 */
7474 predicate isThrowing ( ) {
7575 Synth:: convertAnyFunctionTypeToRaw ( this ) .( Raw:: AnyFunctionType ) .isThrowing ( )
7676 }
7777
7878 /**
79- * Holds if this any function type is async.
79+ * Holds if this type refers to an ` async` function .
8080 */
8181 predicate isAsync ( ) {
8282 Synth:: convertAnyFunctionTypeToRaw ( this ) .( Raw:: AnyFunctionType ) .isAsync ( )
0 commit comments