File tree Expand file tree Collapse file tree 1 file changed +8
-7
lines changed Expand file tree Collapse file tree 1 file changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -99,19 +99,20 @@ class DeclAndTypePrinter::Implementation
99
99
friend ASTVisitor;
100
100
friend TypeVisitor;
101
101
102
- using NameAndOptional = std::pair<StringRef, bool >;
103
- llvm::DenseMap<std::pair<Identifier, Identifier>, NameAndOptional>
104
- specialNames;
105
- Identifier ID_CFTypeRef;
106
-
107
102
ModuleDecl &M;
108
103
raw_ostream &os;
104
+ const DelayedMemberSet &delayedMembers;
105
+ AccessLevel minRequiredAccess;
109
106
110
107
SmallVector<const FunctionType *, 4 > openFunctionTypes;
111
- const DelayedMemberSet &delayedMembers;
112
108
109
+ using NameAndOptional = std::pair<StringRef, bool >;
110
+ llvm::DenseMap<std::pair<Identifier, Identifier>, NameAndOptional>
111
+ specialNames;
112
+
113
+ // Cached for convenience.
114
+ Identifier ID_CFTypeRef;
113
115
Optional<Type> NSCopyingType;
114
- AccessLevel minRequiredAccess;
115
116
116
117
public:
117
118
explicit Implementation (ModuleDecl &mod, raw_ostream &out,
You can’t perform that action at this time.
0 commit comments