-
Notifications
You must be signed in to change notification settings - Fork 10.4k
/
Copy pathTestContext.h
66 lines (56 loc) · 1.95 KB
/
TestContext.h
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
//===--- TestContext.h - Helper for setting up ASTContexts ------*- C++ -*-===//
//
// 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
//
//===----------------------------------------------------------------------===//
#include "swift/AST/ASTContext.h"
#include "swift/AST/DiagnosticEngine.h"
#include "swift/AST/Module.h"
#include "swift/AST/SourceFile.h"
#include "swift/Basic/LangOptions.h"
#include "swift/Basic/SourceManager.h"
namespace swift {
namespace unittest {
/// Helper class used to set the LangOpts target before initializing the
/// ASTContext.
///
/// \see TestContext
class TestContextBase {
public:
LangOptions LangOpts;
TypeCheckerOptions TypeCheckerOpts;
SearchPathOptions SearchPathOpts;
SourceManager SourceMgr;
DiagnosticEngine Diags;
TestContextBase() : Diags(SourceMgr) {
LangOpts.Target = llvm::Triple(llvm::sys::getProcessTriple());
}
};
enum ShouldDeclareOptionalTypes : bool {
DoNotDeclareOptionalTypes,
DeclareOptionalTypes
};
/// Owns an ASTContext and the associated types.
class TestContext : public TestContextBase {
SourceFile *FileForLookups;
public:
ASTContext &Ctx;
TestContext(ShouldDeclareOptionalTypes optionals = DoNotDeclareOptionalTypes);
template <typename Nominal>
Nominal *makeNominal(StringRef name,
GenericParamList *genericParams = nullptr) {
auto result = new (Ctx) Nominal(SourceLoc(), Ctx.getIdentifier(name),
SourceLoc(), /*inherited*/{},
genericParams, FileForLookups);
result->setAccess(AccessLevel::Internal);
return result;
}
};
} // end namespace unittest
} // end namespace swift