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
|
#ifndef SLANG_LOOKUP_H_INCLUDED
#define SLANG_LOOKUP_H_INCLUDED
#include "syntax.h"
namespace Slang {
struct SemanticsVisitor;
// Take an existing lookup result and refine it to only include
// results that pass the given `LookupMask`.
LookupResult refineLookup(LookupResult const& inResult, LookupMask mask);
// Ensure that the dictionary for name-based member lookup has been
// built for the given container declaration.
void buildMemberDictionary(ContainerDecl* decl);
// Look up a name in the given scope, proceeding up through
// parent scopes as needed.
LookupResult lookUp(
Session* session,
SemanticsVisitor* semantics,
Name* name,
RefPtr<Scope> scope);
// perform lookup within the context of a particular container declaration,
// and do *not* look further up the chain
LookupResult lookUpLocal(
Session* session,
SemanticsVisitor* semantics,
Name* name,
DeclRef<ContainerDecl> containerDeclRef);
// Perform member lookup in the context of a type
LookupResult lookUpMember(
Session* session,
SemanticsVisitor* semantics,
Name* name,
Type* type);
// TODO: this belongs somewhere else
QualType getTypeForDeclRef(
Session* session,
SemanticsVisitor* sema,
DiagnosticSink* sink,
DeclRef<Decl> declRef,
RefPtr<Type>* outTypeResult);
QualType getTypeForDeclRef(
Session* session,
DeclRef<Decl> declRef);
}
#endif
|