forked from swiftlang/swift
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathASTScopeLookup.cpp
688 lines (595 loc) · 24.5 KB
/
ASTScopeLookup.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
//===--- ASTScopeLookup.cpp - Swift Object-Oriented AST Scope -------------===//
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2017 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See https://swift.org/LICENSE.txt for license information
// See https://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
//
//===----------------------------------------------------------------------===//
///
/// This file implements the lookup functionality of the ASTScopeImpl ontology.
///
//===----------------------------------------------------------------------===//
#include "swift/AST/ASTScope.h"
#include "swift/AST/ASTContext.h"
#include "swift/AST/ASTWalker.h"
#include "swift/AST/Decl.h"
#include "swift/AST/Expr.h"
#include "swift/AST/Initializer.h"
#include "swift/AST/LazyResolver.h"
#include "swift/AST/Module.h"
#include "swift/AST/NameLookup.h"
#include "swift/AST/ParameterList.h"
#include "swift/AST/Pattern.h"
#include "swift/AST/Stmt.h"
#include "swift/AST/TypeRepr.h"
#include "swift/Basic/STLExtras.h"
#include "llvm/Support/Compiler.h"
#include <algorithm>
using namespace swift;
using namespace namelookup;
using namespace ast_scope;
llvm::SmallVector<const ASTScopeImpl *, 0> ASTScopeImpl::unqualifiedLookup(
SourceFile *sourceFile, const DeclName name, const SourceLoc loc,
const DeclContext *const startingContext, DeclConsumer consumer) {
SmallVector<const ASTScopeImpl *, 0> history;
const auto *start =
findStartingScopeForLookup(sourceFile, name, loc, startingContext);
if (start)
start->lookup(history, nullptr, nullptr, consumer);
return history;
}
const ASTScopeImpl *ASTScopeImpl::findStartingScopeForLookup(
SourceFile *sourceFile, const DeclName name, const SourceLoc loc,
const DeclContext *const startingContext) {
// At present, use legacy code in unqualifiedLookup.cpp to handle module-level
// lookups
// TODO: implement module scope someday
if (startingContext->getContextKind() == DeclContextKind::Module)
return nullptr;
auto *const fileScope = sourceFile->getScope().impl;
// Parser may have added decls to source file, since previous lookup
sourceFile->getScope().impl->addNewDeclsToTree();
if (name.isOperator())
return fileScope; // operators always at file scope
const auto innermost = fileScope->findInnermostEnclosingScope(loc, nullptr);
// The legacy lookup code gets passed both a SourceLoc and a starting context.
// However, our ultimate intent is for clients to not have to pass in a
// DeclContext at all, since the SourceLoc should be enough. While we are
// debugging the new ASTScope lookup code, we can catch bugs by comparing the
// DeclContext of the ASTScope found from the desired SourceLoc to the
// DeclContext passed in by the client.
const auto *startingScope = innermost;
for (; startingScope &&
!startingScope->doesContextMatchStartingContext(startingContext);
startingScope = startingScope->getParent().getPtrOrNull()) {
}
// Someday, just use the assertion below. For now, print out lots of info for
// debugging.
if (!startingScope) {
llvm::errs() << "ASTScopeImpl: resorting to startingScope hack, file: "
<< sourceFile->getFilename() << "\n";
llvm::errs() << "'";
name.print(llvm::errs());
llvm::errs() << "' ";
llvm::errs() << "loc: ";
loc.dump(sourceFile->getASTContext().SourceMgr);
llvm::errs() << "\nstarting context:\n ";
startingContext->dumpContext();
// llvm::errs() << "\ninnermost: ";
// innermost->dump();
// llvm::errs() << "in: \n";
// fileScope->dump();
llvm::errs() << "\n\n";
assert(fileScope->crossCheckWithAST());
}
assert(startingScope && "ASTScopeImpl: could not find startingScope");
return startingScope;
}
const ASTScopeImpl *
ASTScopeImpl::findInnermostEnclosingScope(SourceLoc loc,
NullablePtr<raw_ostream> os) {
return findInnermostEnclosingScopeImpl(loc, os, getSourceManager(),
getScopeCreator());
}
const ASTScopeImpl *ASTScopeImpl::findInnermostEnclosingScopeImpl(
SourceLoc loc, NullablePtr<raw_ostream> os, SourceManager &sourceMgr,
ScopeCreator &scopeCreator) {
reexpandIfObsolete(scopeCreator);
auto child = findChildContaining(loc, sourceMgr);
if (!child)
return this;
return child.get()->findInnermostEnclosingScopeImpl(loc, os, sourceMgr,
scopeCreator);
}
bool ASTScopeImpl::checkChildlessSourceRange() const {
const auto r = getChildlessSourceRange();
(void)r;
assert(!getSourceManager().isBeforeInBuffer(r.End, r.Start));
return true;
}
NullablePtr<ASTScopeImpl>
ASTScopeImpl::findChildContaining(SourceLoc loc,
SourceManager &sourceMgr) const {
// Use binary search to find the child that contains this location.
struct CompareLocs {
SourceManager &sourceMgr;
bool operator()(const ASTScopeImpl *scope, SourceLoc loc) {
assert(scope->checkChildlessSourceRange());
return sourceMgr.isBeforeInBuffer(scope->getSourceRange().End, loc);
}
bool operator()(SourceLoc loc, const ASTScopeImpl *scope) {
assert(scope->checkChildlessSourceRange());
return sourceMgr.isBeforeInBuffer(loc, scope->getSourceRange().End);
}
};
auto *const *child = std::lower_bound(
getChildren().begin(), getChildren().end(), loc, CompareLocs{sourceMgr});
if (child != getChildren().end() &&
sourceMgr.rangeContainsTokenLoc((*child)->getSourceRange(), loc))
return *child;
return nullptr;
}
#pragma mark doesContextMatchStartingContext
// Match existing UnqualifiedLookupBehavior
bool ASTScopeImpl::doesContextMatchStartingContext(
const DeclContext *context) const {
// Why are we not checking the loc for this--because already did binary search
// on loc to find the start First, try MY DeclContext
if (auto myDCForL = getDeclContext())
return myDCForL == context;
// If I don't have one, ask my parent.
// (Choose innermost scope with matching loc & context.)
if (auto p = getParent())
return p.get()->doesContextMatchStartingContext(context);
// Topmost scope always has a context, the SourceFile.
llvm_unreachable("topmost scope always has a context, the SourceFile");
}
// For a SubscriptDecl with generic parameters, the call tries to do lookups
// with startingContext equal to either the get or set subscript
// AbstractFunctionDecls. Since the generic parameters are in the
// SubScriptDeclScope, and not the AbstractFunctionDecl scopes (after all how
// could one parameter be in two scopes?), GenericParamScoped intercepts the
// match query here and tests against the accessor DeclContexts.
bool GenericParamScope::doesContextMatchStartingContext(
const DeclContext *context) const {
if (auto *asd = dyn_cast<AbstractStorageDecl>(holder)) {
for (auto accessor : asd->getAllAccessors()) {
if (up_cast<DeclContext>(accessor) == context)
return true;
}
}
return false;
}
#pragma mark lookup methods that run once per scope
void ASTScopeImpl::lookup(SmallVectorImpl<const ASTScopeImpl *> &history,
const NullablePtr<const ASTScopeImpl> limit,
NullablePtr<const GenericParamList> lastListSearched,
DeclConsumer consumer) const {
history.push_back(this);
#ifndef NDEBUG
consumer.startingNextLookupStep();
#endif
// Certain illegal nestings, e.g. protocol nestled inside a struct,
// require that lookup stop at the outer scope.
if (this == limit.getPtrOrNull()) {
#ifndef NDEBUG
consumer.finishingLookup("limit return");
#endif
return;
}
// Look for generics before members in violation of lexical ordering because
// you can say "self.name" to get a name shadowed by a generic but you
// can't do the opposite to get a generic shadowed by a name.
const auto doneAndListSearched =
lookInMyGenericParameters(lastListSearched, consumer);
if (doneAndListSearched.first)
return;
if (lookupLocalsOrMembers(history, consumer))
return;
const auto *const lookupParent = getLookupParent().getPtrOrNull();
if (!lookupParent) {
#ifndef NDEBUG
consumer.finishingLookup("Finished lookup; no parent");
#endif
return;
}
// If there is no limit and this scope induces one, pass that on.
const NullablePtr<const ASTScopeImpl> limitForParent =
limit ? limit : getLookupLimit();
return lookupParent->lookup(history, limitForParent, lastListSearched,
consumer);
}
#pragma mark genericParams()
NullablePtr<const GenericParamList> ASTScopeImpl::genericParams() const {
return nullptr;
}
NullablePtr<const GenericParamList>
AbstractFunctionDeclScope::genericParams() const {
return decl->getGenericParams();
}
NullablePtr<const GenericParamList> SubscriptDeclScope::genericParams() const {
return decl->getGenericParams();
}
NullablePtr<const GenericParamList> GenericTypeScope::genericParams() const {
// For Decls:
// WAIT, WHAT?! Isn't this covered by the GenericParamScope
// lookupLocalsOrMembers? No, that's for use of generics in the body. This is
// for generic restrictions.
// For Bodies:
// Sigh... These must be here so that from body, we search generics before
// members. But they also must be on the Decl scope for lookups starting from
// generic parameters, where clauses, etc.
return getGenericContext()->getGenericParams();
}
NullablePtr<const GenericParamList> ExtensionScope::genericParams() const {
return decl->getGenericParams();
}
#pragma mark lookInMyGenericParameters
std::pair<bool, NullablePtr<const GenericParamList>>
ASTScopeImpl::lookInMyGenericParameters(
NullablePtr<const GenericParamList> formerListSearched,
ASTScopeImpl::DeclConsumer consumer) const {
auto listToSearch = genericParams();
if (listToSearch == formerListSearched)
return std::make_pair(false, formerListSearched);
// For extensions of nested types, must check outer parameters
for (auto *params = listToSearch.getPtrOrNull(); params;
params = params->getOuterParameters()) {
if (lookInGenericParametersOf(params, consumer))
return std::make_pair(true, listToSearch);
}
return std::make_pair(false, listToSearch);
}
bool ASTScopeImpl::lookInGenericParametersOf(
const NullablePtr<const GenericParamList> paramList,
ASTScopeImpl::DeclConsumer consumer) {
if (!paramList)
return false;
SmallVector<ValueDecl *, 32> bindings;
for (auto *param : paramList.get()->getParams())
bindings.push_back(param);
if (consumer.consume(bindings, DeclVisibilityKind::GenericParameter))
return true;
return false;
}
#pragma mark looking in locals or members - members
bool ASTScopeImpl::lookupLocalsOrMembers(ArrayRef<const ASTScopeImpl *>,
DeclConsumer) const {
return false; // many kinds of scopes have none
}
bool GenericTypeOrExtensionScope::lookupLocalsOrMembers(
ArrayRef<const ASTScopeImpl *> history,
ASTScopeImpl::DeclConsumer consumer) const {
// isCascadingUseArg must have already been resolved, for a real lookup
// but may be \c None for dumping.
return portion->lookupMembersOf(this, history, consumer);
}
bool Portion::lookupMembersOf(const GenericTypeOrExtensionScope *,
ArrayRef<const ASTScopeImpl *>,
ASTScopeImpl::DeclConsumer) const {
return false;
}
bool GenericTypeOrExtensionWhereOrBodyPortion::lookupMembersOf(
const GenericTypeOrExtensionScope *scope,
ArrayRef<const ASTScopeImpl *> history,
ASTScopeImpl::DeclConsumer consumer) const {
auto nt = scope->getCorrespondingNominalTypeDecl().getPtrOrNull();
if (!nt)
return false;
auto selfDC = computeSelfDC(history);
return consumer.lookInMembers(selfDC, scope->getDeclContext().get(), nt,
[&](Optional<bool> initialIsCascadingUse) {
return ASTScopeImpl::computeIsCascadingUse(
history, initialIsCascadingUse)
.getValueOr(true);
});
}
#pragma mark looking in locals or members - locals
bool GenericParamScope::lookupLocalsOrMembers(ArrayRef<const ASTScopeImpl *>,
DeclConsumer consumer) const {
auto *param = paramList->getParams()[index];
return consumer.consume({param}, DeclVisibilityKind::GenericParameter);
}
bool PatternEntryDeclScope::lookupLocalsOrMembers(
ArrayRef<const ASTScopeImpl *>, DeclConsumer consumer) const {
if (vis != DeclVisibilityKind::LocalVariable)
return false; // look in self type will find this later
return lookupLocalBindingsInPattern(getPattern(), vis, consumer);
}
bool ForEachPatternScope::lookupLocalsOrMembers(ArrayRef<const ASTScopeImpl *>,
DeclConsumer consumer) const {
return lookupLocalBindingsInPattern(
stmt->getPattern(), DeclVisibilityKind::LocalVariable, consumer);
}
bool CatchStmtScope::lookupLocalsOrMembers(ArrayRef<const ASTScopeImpl *>,
DeclConsumer consumer) const {
return lookupLocalBindingsInPattern(
stmt->getErrorPattern(), DeclVisibilityKind::LocalVariable, consumer);
}
bool CaseStmtScope::lookupLocalsOrMembers(ArrayRef<const ASTScopeImpl *>,
DeclConsumer consumer) const {
for (auto &item : stmt->getMutableCaseLabelItems())
if (lookupLocalBindingsInPattern(
item.getPattern(), DeclVisibilityKind::LocalVariable, consumer))
return true;
return false;
}
bool AbstractFunctionBodyScope::lookupLocalsOrMembers(
ArrayRef<const ASTScopeImpl *>, DeclConsumer consumer) const {
if (auto *paramList = decl->getParameters()) {
for (auto *paramDecl : *paramList)
if (consumer.consume({paramDecl}, DeclVisibilityKind::FunctionParameter))
return true;
}
return false;
}
bool MethodBodyScope::lookupLocalsOrMembers(
ArrayRef<const ASTScopeImpl *> history, DeclConsumer consumer) const {
assert(isAMethod(decl));
if (AbstractFunctionBodyScope::lookupLocalsOrMembers(history, consumer))
return true;
return consumer.consume({decl->getImplicitSelfDecl()},
DeclVisibilityKind::FunctionParameter);
}
bool PureFunctionBodyScope::lookupLocalsOrMembers(
ArrayRef<const ASTScopeImpl *> history, DeclConsumer consumer) const {
assert(!isAMethod(decl));
if (AbstractFunctionBodyScope::lookupLocalsOrMembers(history, consumer))
return true;
// Consider \c var t: T { (did/will/)get/set { ... t }}
// Lookup needs to find t, but if the var is inside of a type the baseDC needs
// to be set. It all works fine, except: if the var is not inside of a type,
// then t needs to be found as a local binding:
if (auto *accessor = dyn_cast<AccessorDecl>(decl)) {
if (auto *storage = accessor->getStorage())
if (consumer.consume({storage}, DeclVisibilityKind::LocalVariable))
return true;
}
return false;
}
bool SpecializeAttributeScope::lookupLocalsOrMembers(
ArrayRef<const ASTScopeImpl *>, DeclConsumer consumer) const {
if (auto *params = whatWasSpecialized->getGenericParams())
for (auto *param : params->getParams())
if (consumer.consume({param}, DeclVisibilityKind::GenericParameter))
return true;
return false;
}
bool BraceStmtScope::lookupLocalsOrMembers(ArrayRef<const ASTScopeImpl *>,
DeclConsumer consumer) const {
// All types and functions are visible anywhere within a brace statement
// scope. When ordering matters (i.e. var decl) we will have split the brace
// statement into nested scopes.
//
// Don't stop at the first one, there may be local funcs with same base name
// and want them all.
SmallVector<ValueDecl *, 32> localBindings;
for (auto braceElement : stmt->getElements()) {
if (auto localBinding = braceElement.dyn_cast<Decl *>()) {
if (auto *vd = dyn_cast<ValueDecl>(localBinding))
localBindings.push_back(vd);
}
}
return consumer.consume(localBindings, DeclVisibilityKind::LocalVariable);
}
bool PatternEntryInitializerScope::lookupLocalsOrMembers(
ArrayRef<const ASTScopeImpl *>, DeclConsumer consumer) const {
// 'self' is available within the pattern initializer of a 'lazy' variable.
auto *initContext = cast_or_null<PatternBindingInitializer>(
decl->getPatternList()[0].getInitContext());
if (initContext) {
if (auto *selfParam = initContext->getImplicitSelfDecl()) {
return consumer.consume({selfParam},
DeclVisibilityKind::FunctionParameter);
}
}
return false;
}
bool ClosureParametersScope::lookupLocalsOrMembers(
ArrayRef<const ASTScopeImpl *>, DeclConsumer consumer) const {
if (auto *cl = captureList.getPtrOrNull()) {
CaptureListExpr *mutableCL =
const_cast<CaptureListExpr *>(captureList.get());
for (auto &e : mutableCL->getCaptureList()) {
if (consumer.consume(
{e.Var},
DeclVisibilityKind::LocalVariable)) // or FunctionParameter??
return true;
}
}
for (auto param : *closureExpr->getParameters())
if (consumer.consume({param}, DeclVisibilityKind::FunctionParameter))
return true;
return false;
}
bool ConditionalClausePatternUseScope::lookupLocalsOrMembers(
ArrayRef<const ASTScopeImpl *>, DeclConsumer consumer) const {
return lookupLocalBindingsInPattern(
pattern, DeclVisibilityKind::LocalVariable, consumer);
}
bool ASTScopeImpl::lookupLocalBindingsInPattern(Pattern *p,
DeclVisibilityKind vis,
DeclConsumer consumer) {
if (!p)
return false;
bool isDone = false;
p->forEachVariable([&](VarDecl *var) {
if (!isDone)
isDone = consumer.consume({var}, vis);
});
return isDone;
}
#pragma mark computeSelfDC
NullablePtr<DeclContext>
GenericTypeOrExtensionWhereOrBodyPortion::computeSelfDC(
ArrayRef<const ASTScopeImpl *> history) {
assert(history.size() != 0 && "includes current scope");
size_t i = history.size() - 1; // skip last entry (this scope)
while (i != 0) {
Optional<NullablePtr<DeclContext>> maybeSelfDC =
history[--i]->computeSelfDCForParent();
if (maybeSelfDC)
return *maybeSelfDC;
}
return nullptr;
}
#pragma mark compute isCascadingUse
Optional<bool> ASTScopeImpl::computeIsCascadingUse(
ArrayRef<const ASTScopeImpl *> history,
const Optional<bool> initialIsCascadingUse) {
Optional<bool> isCascadingUse = initialIsCascadingUse;
for (const auto *scope : history)
isCascadingUse = scope->resolveIsCascadingUseForThisScope(isCascadingUse);
return isCascadingUse;
}
#pragma mark getLookupLimit
NullablePtr<const ASTScopeImpl> ASTScopeImpl::getLookupLimit() const {
return nullptr;
}
NullablePtr<const ASTScopeImpl>
GenericTypeOrExtensionScope::getLookupLimit() const {
return portion->getLookupLimitFor(this);
}
NullablePtr<const ASTScopeImpl>
Portion::getLookupLimitFor(const GenericTypeOrExtensionScope *) const {
return nullptr;
}
NullablePtr<const ASTScopeImpl>
GenericTypeOrExtensionWholePortion::getLookupLimitFor(
const GenericTypeOrExtensionScope *scope) const {
return scope->getLookupLimitForDecl();
}
NullablePtr<const ASTScopeImpl>
GenericTypeOrExtensionScope::getLookupLimitForDecl() const {
return nullptr;
}
NullablePtr<const ASTScopeImpl>
NominalTypeScope::getLookupLimitForDecl() const {
if (isa<ProtocolDecl>(decl)) {
// ProtocolDecl can only be legally nested in a SourceFile,
// so any other kind of Decl is illegal
return parentIfNotChildOfTopScope();
}
// AFAICT, a struct, decl, or enum can be nested inside anything
// but a ProtocolDecl.
return ancestorWithDeclSatisfying(
[&](const Decl *const d) { return isa<ProtocolDecl>(d); });
}
NullablePtr<const ASTScopeImpl> ExtensionScope::getLookupLimitForDecl() const {
// Extensions can only be legally nested in a SourceFile,
// so any other kind of Decl is illegal
return parentIfNotChildOfTopScope();
}
NullablePtr<const ASTScopeImpl> ASTScopeImpl::ancestorWithDeclSatisfying(
function_ref<bool(const Decl *)> predicate) const {
for (NullablePtr<const ASTScopeImpl> s = getParent(); s;
s = s.get()->getParent()) {
if (Decl *d = s.get()->getDeclIfAny().getPtrOrNull()) {
if (predicate(d))
return s;
}
}
return nullptr;
}
#pragma mark computeSelfDCForParent
// If the lookup depends on implicit self, selfDC is its context.
// (Names in extensions never depend on self.)
// Lookup can propagate it up from, say a method to the enclosing type body.
// By default, propagate the selfDC up to a NomExt decl, body,
// or where clause
Optional<NullablePtr<DeclContext>>
ASTScopeImpl::computeSelfDCForParent() const {
return None;
}
// Forget the "self" declaration:
Optional<NullablePtr<DeclContext>>
GenericTypeOrExtensionScope::computeSelfDCForParent() const {
return NullablePtr<DeclContext>();
}
Optional<NullablePtr<DeclContext>>
PatternEntryInitializerScope::computeSelfDCForParent() const {
// Pattern binding initializers are only interesting insofar as they
// affect lookup in an enclosing nominal type or extension thereof.
if (auto *ic = getPatternEntry().getInitContext()) {
if (auto *bindingInit = dyn_cast<PatternBindingInitializer>(ic)) {
// Lazy variable initializer contexts have a 'self' parameter for
// instance member lookup.
if (bindingInit->getImplicitSelfDecl()) {
return NullablePtr<DeclContext>(bindingInit);
}
}
}
return None;
}
Optional<NullablePtr<DeclContext>>
MethodBodyScope::computeSelfDCForParent() const {
return NullablePtr<DeclContext>(decl);
}
#pragma mark ifUnknownIsCascadingUseAccordingTo
static bool isCascadingUseAccordingTo(const DeclContext *const dc) {
return dc->isCascadingContextForLookup(false);
}
static bool ifUnknownIsCascadingUseAccordingTo(Optional<bool> isCascadingUse,
const DeclContext *const dc) {
return isCascadingUse.getValueOr(isCascadingUseAccordingTo(dc));
}
#pragma mark resolveIsCascadingUseForThisScope
Optional<bool> ASTScopeImpl::resolveIsCascadingUseForThisScope(
Optional<bool> isCascadingUse) const {
return isCascadingUse;
}
Optional<bool> GenericParamScope::resolveIsCascadingUseForThisScope(
Optional<bool> isCascadingUse) const {
if (auto *dc = getDeclContext().getPtrOrNull())
return ifUnknownIsCascadingUseAccordingTo(isCascadingUse, dc);
llvm_unreachable("generic what?");
}
Optional<bool> AbstractFunctionDeclScope::resolveIsCascadingUseForThisScope(
Optional<bool> isCascadingUse) const {
return decl->isCascadingContextForLookup(false) &&
isCascadingUse.getValueOr(true);
}
Optional<bool> AbstractFunctionBodyScope::resolveIsCascadingUseForThisScope(
Optional<bool> isCascadingUse) const {
return false;
}
Optional<bool> GenericTypeOrExtensionScope::resolveIsCascadingUseForThisScope(
Optional<bool> isCascadingUse) const {
// Could override for ExtensionScope and just return true
return ifUnknownIsCascadingUseAccordingTo(isCascadingUse,
getDeclContext().get());
}
Optional<bool>
DefaultArgumentInitializerScope::resolveIsCascadingUseForThisScope(
Optional<bool>) const {
return false;
}
Optional<bool> ClosureParametersScope::resolveIsCascadingUseForThisScope(
Optional<bool> isCascadingUse) const {
return ifUnknownIsCascadingUseAccordingTo(isCascadingUse, closureExpr);
}
Optional<bool> ClosureBodyScope::resolveIsCascadingUseForThisScope(
Optional<bool> isCascadingUse) const {
return ifUnknownIsCascadingUseAccordingTo(isCascadingUse, closureExpr);
}
Optional<bool> PatternEntryInitializerScope::resolveIsCascadingUseForThisScope(
Optional<bool> isCascadingUse) const {
auto *const initContext = getPatternEntry().getInitContext();
auto *PBI = cast_or_null<PatternBindingInitializer>(initContext);
auto *isd = PBI ? PBI->getImplicitSelfDecl() : nullptr;
// 'self' is available within the pattern initializer of a 'lazy' variable.
if (isd)
return ifUnknownIsCascadingUseAccordingTo(isCascadingUse, PBI);
// initializing stored property of a type
auto *const patternDeclContext = decl->getDeclContext();
if (patternDeclContext->isTypeContext())
return isCascadingUseAccordingTo(PBI->getParent());
// initializing global or local
if (PBI)
return ifUnknownIsCascadingUseAccordingTo(isCascadingUse, PBI);
return isCascadingUse;
}