|
2 | 2 |
|
3 | 3 | // This file implements the mapping needed by the API defined in the TrapTagTraits.h, so that |
4 | 4 | // TrapTagOf/TrapLabelOf provide the tags/labels for specific swift entity types. |
5 | | -#include "external/swift_prebuilt_linux/_virtual_includes/swift-llvm-support/swift/AST/ASTVisitor.h" |
| 5 | +#include <swift/AST/ASTVisitor.h> |
6 | 6 | #include "swift/extractor/trap/TrapTagTraits.h" |
7 | 7 | #include "swift/extractor/trap/generated/TrapTags.h" |
8 | 8 |
|
@@ -39,32 +39,32 @@ MAP_TAG(StmtCondition); |
39 | 39 | MAP_TAG(CaseLabelItem); |
40 | 40 | #define ABSTRACT_STMT(CLASS, PARENT) MAP_SUBTAG(CLASS##Stmt, PARENT) |
41 | 41 | #define STMT(CLASS, PARENT) ABSTRACT_STMT(CLASS, PARENT) |
42 | | -#include "external/swift_prebuilt_linux/_virtual_includes/swift-llvm-support/swift/AST/StmtNodes.def" |
| 42 | +#include <swift/AST/StmtNodes.def> |
43 | 43 |
|
44 | 44 | MAP_TAG(Expr); |
45 | 45 | #define ABSTRACT_EXPR(CLASS, PARENT) MAP_SUBTAG(CLASS##Expr, PARENT) |
46 | 46 | #define EXPR(CLASS, PARENT) ABSTRACT_EXPR(CLASS, PARENT) |
47 | | -#include "external/swift_prebuilt_linux/_virtual_includes/swift-llvm-support/swift/AST/ExprNodes.def" |
| 47 | +#include <swift/AST/ExprNodes.def> |
48 | 48 |
|
49 | 49 | MAP_TAG(Decl); |
50 | 50 | #define ABSTRACT_DECL(CLASS, PARENT) MAP_SUBTAG(CLASS##Decl, PARENT) |
51 | 51 | #define DECL(CLASS, PARENT) ABSTRACT_DECL(CLASS, PARENT) |
52 | | -#include "external/swift_prebuilt_linux/_virtual_includes/swift-llvm-support/swift/AST/DeclNodes.def" |
| 52 | +#include <swift/AST/DeclNodes.def> |
53 | 53 |
|
54 | 54 | MAP_TAG(Pattern); |
55 | 55 | #define ABSTRACT_PATTERN(CLASS, PARENT) MAP_SUBTAG(CLASS##Pattern, PARENT) |
56 | 56 | #define PATTERN(CLASS, PARENT) ABSTRACT_PATTERN(CLASS, PARENT) |
57 | | -#include "external/swift_prebuilt_linux/_virtual_includes/swift-llvm-support/swift/AST/PatternNodes.def" |
| 57 | +#include <swift/AST/PatternNodes.def> |
58 | 58 |
|
59 | 59 | MAP_TAG(TypeRepr); |
60 | 60 | #define ABSTRACT_TYPEREPR(CLASS, PARENT) MAP_SUBTAG(CLASS##TypeRepr, PARENT) |
61 | 61 | #define TYPEREPR(CLASS, PARENT) ABSTRACT_TYPEREPR(CLASS, PARENT) |
62 | | -#include "external/swift_prebuilt_linux/_virtual_includes/swift-llvm-support/swift/AST/TypeReprNodes.def" |
| 62 | +#include <swift/AST/TypeReprNodes.def> |
63 | 63 |
|
64 | 64 | MAP_TYPE_TO_TAG(TypeBase, TypeTag); |
65 | 65 | #define ABSTRACT_TYPE(CLASS, PARENT) MAP_SUBTAG(CLASS##Type, PARENT) |
66 | 66 | #define TYPE(CLASS, PARENT) ABSTRACT_TYPE(CLASS, PARENT) |
67 | | -#include "external/swift_prebuilt_linux/_virtual_includes/swift-llvm-support/swift/AST/TypeNodes.def" |
| 67 | +#include <swift/AST/TypeNodes.def> |
68 | 68 |
|
69 | 69 | OVERRIDE_TAG(FuncDecl, ConcreteFuncDeclTag); |
70 | 70 | OVERRIDE_TAG(VarDecl, ConcreteVarDeclTag); |
|
0 commit comments