@@ -10,12 +10,12 @@ import codeql.swift.elements.type.Type
1010module Generated {
1111 class VarDecl extends Synth:: TVarDecl , AbstractStorageDecl {
1212 /**
13- * Gets the name of this var declaration.
13+ * Gets the name of this variable declaration.
1414 */
1515 string getName ( ) { result = Synth:: convertVarDeclToRaw ( this ) .( Raw:: VarDecl ) .getName ( ) }
1616
1717 /**
18- * Gets the type of this var declaration.
18+ * Gets the type of this variable declaration.
1919 *
2020 * This includes nodes from the "hidden" AST. It can be overridden in subclasses to change the
2121 * behavior of both the `Immediate` and non-`Immediate` versions.
@@ -25,12 +25,12 @@ module Generated {
2525 }
2626
2727 /**
28- * Gets the type of this var declaration.
28+ * Gets the type of this variable declaration.
2929 */
3030 final Type getType ( ) { result = getImmediateType ( ) .resolve ( ) }
3131
3232 /**
33- * Gets the attached property wrapper type of this var declaration, if it exists.
33+ * Gets the attached property wrapper type of this variable declaration, if it exists.
3434 *
3535 * This includes nodes from the "hidden" AST. It can be overridden in subclasses to change the
3636 * behavior of both the `Immediate` and non-`Immediate` versions.
@@ -43,7 +43,7 @@ module Generated {
4343 }
4444
4545 /**
46- * Gets the attached property wrapper type of this var declaration, if it exists.
46+ * Gets the attached property wrapper type of this variable declaration, if it exists.
4747 */
4848 final Type getAttachedPropertyWrapperType ( ) {
4949 result = getImmediateAttachedPropertyWrapperType ( ) .resolve ( )
@@ -55,7 +55,7 @@ module Generated {
5555 final predicate hasAttachedPropertyWrapperType ( ) { exists ( getAttachedPropertyWrapperType ( ) ) }
5656
5757 /**
58- * Gets the parent pattern of this var declaration, if it exists.
58+ * Gets the parent pattern of this variable declaration, if it exists.
5959 *
6060 * This includes nodes from the "hidden" AST. It can be overridden in subclasses to change the
6161 * behavior of both the `Immediate` and non-`Immediate` versions.
@@ -68,7 +68,7 @@ module Generated {
6868 }
6969
7070 /**
71- * Gets the parent pattern of this var declaration, if it exists.
71+ * Gets the parent pattern of this variable declaration, if it exists.
7272 */
7373 final Pattern getParentPattern ( ) { result = getImmediateParentPattern ( ) .resolve ( ) }
7474
@@ -78,7 +78,7 @@ module Generated {
7878 final predicate hasParentPattern ( ) { exists ( getParentPattern ( ) ) }
7979
8080 /**
81- * Gets the parent initializer of this var declaration, if it exists.
81+ * Gets the parent initializer of this variable declaration, if it exists.
8282 *
8383 * This includes nodes from the "hidden" AST. It can be overridden in subclasses to change the
8484 * behavior of both the `Immediate` and non-`Immediate` versions.
@@ -91,7 +91,7 @@ module Generated {
9191 }
9292
9393 /**
94- * Gets the parent initializer of this var declaration, if it exists.
94+ * Gets the parent initializer of this variable declaration, if it exists.
9595 */
9696 final Expr getParentInitializer ( ) { result = getImmediateParentInitializer ( ) .resolve ( ) }
9797
@@ -101,7 +101,7 @@ module Generated {
101101 final predicate hasParentInitializer ( ) { exists ( getParentInitializer ( ) ) }
102102
103103 /**
104- * Gets the property wrapper backing var binding of this var declaration, if it exists.
104+ * Gets the property wrapper backing variable binding of this variable declaration, if it exists.
105105 *
106106 * This includes nodes from the "hidden" AST. It can be overridden in subclasses to change the
107107 * behavior of both the `Immediate` and non-`Immediate` versions.
@@ -114,7 +114,7 @@ module Generated {
114114 }
115115
116116 /**
117- * Gets the property wrapper backing var binding of this var declaration, if it exists.
117+ * Gets the property wrapper backing variable binding of this variable declaration, if it exists.
118118 *
119119 * This is the synthesized binding introducing the property wrapper backing variable for this
120120 * variable, if any.
@@ -131,7 +131,7 @@ module Generated {
131131 }
132132
133133 /**
134- * Gets the property wrapper backing var of this var declaration, if it exists.
134+ * Gets the property wrapper backing variable of this variable declaration, if it exists.
135135 *
136136 * This includes nodes from the "hidden" AST. It can be overridden in subclasses to change the
137137 * behavior of both the `Immediate` and non-`Immediate` versions.
@@ -144,7 +144,7 @@ module Generated {
144144 }
145145
146146 /**
147- * Gets the property wrapper backing var of this var declaration, if it exists.
147+ * Gets the property wrapper backing variable of this variable declaration, if it exists.
148148 *
149149 * This is the synthesized variable holding the property wrapper for this variable, if any.
150150 */
@@ -158,7 +158,7 @@ module Generated {
158158 final predicate hasPropertyWrapperBackingVar ( ) { exists ( getPropertyWrapperBackingVar ( ) ) }
159159
160160 /**
161- * Gets the property wrapper projection var binding of this var declaration, if it exists.
161+ * Gets the property wrapper projection variable binding of this variable declaration, if it exists.
162162 *
163163 * This includes nodes from the "hidden" AST. It can be overridden in subclasses to change the
164164 * behavior of both the `Immediate` and non-`Immediate` versions.
@@ -171,7 +171,7 @@ module Generated {
171171 }
172172
173173 /**
174- * Gets the property wrapper projection var binding of this var declaration, if it exists.
174+ * Gets the property wrapper projection variable binding of this variable declaration, if it exists.
175175 *
176176 * This is the synthesized binding introducing the property wrapper projection variable for this
177177 * variable, if any.
@@ -188,7 +188,7 @@ module Generated {
188188 }
189189
190190 /**
191- * Gets the property wrapper projection var of this var declaration, if it exists.
191+ * Gets the property wrapper projection variable of this variable declaration, if it exists.
192192 *
193193 * This includes nodes from the "hidden" AST. It can be overridden in subclasses to change the
194194 * behavior of both the `Immediate` and non-`Immediate` versions.
@@ -201,7 +201,7 @@ module Generated {
201201 }
202202
203203 /**
204- * Gets the property wrapper projection var of this var declaration, if it exists.
204+ * Gets the property wrapper projection variable of this variable declaration, if it exists.
205205 *
206206 * If this variable has a property wrapper with a projected value, this is the corresponding
207207 * synthesized variable holding that projected value, accessible with this variable's name
0 commit comments