@@ -157,11 +157,7 @@ class InputKind {
157
157
158
158
public:
159
159
// / The input file format.
160
- enum Format {
161
- Source,
162
- ModuleMap,
163
- Precompiled
164
- };
160
+ enum Format { Source, ModuleMap, Precompiled };
165
161
166
162
// If we are building a header unit, what kind it is; this affects whether
167
163
// we look for the file in the user or system include search paths before
@@ -460,11 +456,11 @@ class FrontendOptions {
460
456
// / Enable converting setter/getter expressions to property-dot syntx.
461
457
ObjCMT_PropertyDotSyntax = 0x1000 ,
462
458
463
- ObjCMT_MigrateDecls = (ObjCMT_ReadonlyProperty | ObjCMT_ReadwriteProperty |
464
- ObjCMT_Annotation | ObjCMT_Instancetype |
465
- ObjCMT_NsMacros | ObjCMT_ProtocolConformance |
466
- ObjCMT_NsAtomicIOSOnlyProperty |
467
- ObjCMT_DesignatedInitializer),
459
+ ObjCMT_MigrateDecls =
460
+ (ObjCMT_ReadonlyProperty | ObjCMT_ReadwriteProperty |
461
+ ObjCMT_Annotation | ObjCMT_Instancetype | ObjCMT_NsMacros |
462
+ ObjCMT_ProtocolConformance | ObjCMT_NsAtomicIOSOnlyProperty |
463
+ ObjCMT_DesignatedInitializer),
468
464
ObjCMT_MigrateAll = (ObjCMT_Literals | ObjCMT_Subscripting |
469
465
ObjCMT_MigrateDecls | ObjCMT_PropertyDotSyntax)
470
466
};
@@ -599,7 +595,10 @@ class FrontendOptions {
599
595
ForIncludeTreeScan(false ), DisableCachedCompileJobReplay(false ),
600
596
MayEmitDiagnosticsAfterProcessingSourceFiles(false ),
601
597
WriteOutputAsCASID(false ), AllowPCMWithCompilerErrors(false ),
602
- ModulesShareFileManager(true ), TimeTraceGranularity(500 ) {}
598
+ ModulesShareFileManager(true ), EmitSymbolGraph(false ),
599
+ EmitExtensionSymbolGraphs(false ),
600
+ EmitSymbolGraphSymbolLabelsForTesting(false ),
601
+ EmitPrettySymbolGraphs(false ), TimeTraceGranularity(500 ) {}
603
602
604
603
// / getInputKindForExtension - Return the appropriate input kind for a file
605
604
// / extension. For example, "c" would return Language::C.
0 commit comments