File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -170,7 +170,7 @@ class CaptureInfo {
170170
171171 ArrayRef<CapturedValue> getCaptures () const {
172172 // FIXME: Ideally, everywhere that synthesizes a function should include
173- // its capture info.
173+ // its capture info.
174174 if (!hasBeenComputed ())
175175 return None;
176176 return StorageAndFlags.getPointer ()->getCaptures ();
@@ -188,7 +188,7 @@ class CaptureInfo {
188188 // / \returns true if the function captures any generic type parameters.
189189 bool hasGenericParamCaptures () const {
190190 // FIXME: Ideally, everywhere that synthesizes a function should include
191- // its capture info.
191+ // its capture info.
192192 if (!hasBeenComputed ())
193193 return false ;
194194 return StorageAndFlags.getInt ().contains (Flags::HasGenericParamCaptures);
@@ -202,7 +202,7 @@ class CaptureInfo {
202202 // / \returns the captured dynamic Self type, if any.
203203 DynamicSelfType *getDynamicSelfType () const {
204204 // FIXME: Ideally, everywhere that synthesizes a function should include
205- // its capture info.
205+ // its capture info.
206206 if (!hasBeenComputed ())
207207 return nullptr ;
208208 return StorageAndFlags.getPointer ()->getDynamicSelfType ();
@@ -214,7 +214,7 @@ class CaptureInfo {
214214
215215 OpaqueValueExpr *getOpaqueValue () const {
216216 // FIXME: Ideally, everywhere that synthesizes a function should include
217- // its capture info.
217+ // its capture info.
218218 if (!hasBeenComputed ())
219219 return nullptr ;
220220 return StorageAndFlags.getPointer ()->getOpaqueValue ();
You can’t perform that action at this time.
0 commit comments