File tree Expand file tree Collapse file tree 9 files changed +21
-21
lines changed Expand file tree Collapse file tree 9 files changed +21
-21
lines changed Original file line number Diff line number Diff line change 1
- // ===--- ExperimentalDependencies .h -----------------------------*- C++ -*-===//
1
+ // ===----- FineGrainedependencies .h -----------------------------*- C++ -*-===//
2
2
//
3
3
// This source file is part of the Swift.org open source project
4
4
//
10
10
//
11
11
// ===----------------------------------------------------------------------===//
12
12
13
- #ifndef SWIFT_AST_EXPERIMENTAL_DEPENDENCIES_H
14
- #define SWIFT_AST_EXPERIMENTAL_DEPENDENCIES_H
13
+ #ifndef SWIFT_AST_FINE_GRAINED_DEPENDENCIES_H
14
+ #define SWIFT_AST_FINE_GRAINED_DEPENDENCIES_H
15
15
16
16
#include " swift/Basic/Debug.h"
17
17
#include " swift/Basic/LLVM.h"
@@ -985,4 +985,4 @@ struct SequenceTraits<
985
985
LLVM_YAML_DECLARE_MAPPING_TRAITS (
986
986
swift::experimental_dependencies::SourceFileDepGraph)
987
987
988
- #endif // SWIFT_AST_EXPERIMENTAL_DEPENDENCIES_H
988
+ #endif // SWIFT_AST_FINE_GRAINED_DEPENDENCIES_H
Original file line number Diff line number Diff line change 1
- // ===--- ExperimentalDependencyModuleDepGraph .h ------------------*- C++-*-===//
1
+ // ===---- FineGrainedDependencyModuleDepGraph .h ------------------*- C++-*-===//
2
2
//
3
3
// This source file is part of the Swift.org open source project
4
4
//
10
10
//
11
11
// ===----------------------------------------------------------------------===//
12
12
13
- #ifndef ExperimentalDependencyGraph_h
14
- #define ExperimentalDependencyGraph_h
13
+ #ifndef SWIFT_DRIVER_FINE_GRAINED_DEPENDENCY_DRIVER_GRAPH_H
14
+ #define SWIFT_DRIVER_FINE_GRAINED_DEPENDENCY_DRIVER_GRAPH_H
15
15
16
- #include " swift/AST/ExperimentalDependencies .h"
16
+ #include " swift/AST/FineGrainedDependencies .h"
17
17
#include " swift/Basic/Debug.h"
18
18
#include " swift/Basic/LLVM.h"
19
19
#include " swift/Basic/OptionSet.h"
@@ -476,4 +476,4 @@ class ModuleDepGraph {
476
476
} // namespace experimental_dependencies
477
477
} // namespace swift
478
478
479
- #endif // ExperimentalDependencyGraph_h
479
+ #endif // SWIFT_DRIVER_FINE_GRAINED_DEPENDENCY_DRIVER_GRAPH_H
Original file line number Diff line number Diff line change @@ -44,9 +44,9 @@ add_swift_host_library(swiftAST STATIC
44
44
DiagnosticList.cpp
45
45
DocComment.cpp
46
46
Evaluator.cpp
47
- ExperimentalDependencies.cpp
48
- ExperimentalDependenciesSourceFileDepGraphConstructor.cpp
49
47
Expr .cpp
48
+ FineGrainedDependencies.cpp
49
+ FineGrainedDependenciesSourceFileDepGraphConstructor.cpp
50
50
GenericEnvironment.cpp
51
51
GenericSignature.cpp
52
52
GenericSignatureBuilder.cpp
Original file line number Diff line number Diff line change 1
- // ===--- ExperimentalDependencies .cpp - Generates swiftdeps files ---------===//
1
+ // ===---- FineGrainedDependencies .cpp - Generates swiftdeps files ---------===//
2
2
//
3
3
// This source file is part of the Swift.org open source project
4
4
//
12
12
13
13
#include < stdio.h>
14
14
15
- #include " swift/AST/ExperimentalDependencies .h"
15
+ #include " swift/AST/FineGrainedDependencies .h"
16
16
17
17
// may not all be needed
18
18
#include " swift/Basic/FileSystem.h"
Original file line number Diff line number Diff line change 1
- // ===--- ExperimentalDependenciesSourceFileDepGraphConstructor .cpp --------===//
1
+ // ===--- FineGrainedDependenciesSourceFileDepGraphConstructor .cpp - --------===//
2
2
//
3
3
// This source file is part of the Swift.org open source project
4
4
//
19
19
#include " swift/AST/DiagnosticEngine.h"
20
20
#include " swift/AST/DiagnosticsFrontend.h"
21
21
#include " swift/AST/ExistentialLayout.h"
22
- #include " swift/AST/ExperimentalDependencies .h"
22
+ #include " swift/AST/FineGrainedDependencies .h"
23
23
#include " swift/AST/FileSystem.h"
24
24
#include " swift/AST/Module.h"
25
25
#include " swift/AST/ModuleLoader.h"
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ set(swiftDriver_sources
6
6
SourceComparator.cpp
7
7
Driver.cpp
8
8
DriverIncrementalRanges.cpp
9
- ExperimentalDependencyDriverGraph .cpp
9
+ FineGrainedDependencyDriverGraph .cpp
10
10
FrontendUtil.cpp
11
11
Job.cpp
12
12
ParseableOutput.cpp
Original file line number Diff line number Diff line change 14
14
15
15
#include " swift/AST/DiagnosticEngine.h"
16
16
#include " swift/AST/DiagnosticsDriver.h"
17
- #include " swift/AST/ExperimentalDependencies .h"
17
+ #include " swift/AST/FineGrainedDependencies .h"
18
18
#include " swift/Basic/OutputFileMap.h"
19
19
#include " swift/Basic/Program.h"
20
20
#include " swift/Basic/STLExtras.h"
26
26
#include " swift/Driver/DependencyGraph.h"
27
27
#include " swift/Driver/Driver.h"
28
28
#include " swift/Driver/DriverIncrementalRanges.h"
29
- #include " swift/Driver/ExperimentalDependencyDriverGraph .h"
29
+ #include " swift/Driver/FineGrainedDependencyDriverGraph .h"
30
30
#include " swift/Driver/Job.h"
31
31
#include " swift/Driver/ParseableOutput.h"
32
32
#include " swift/Driver/ToolChain.h"
Original file line number Diff line number Diff line change 1
- // ===-- ExperimentalDependencyGraph .cpp ------------------------------------==//
1
+ // ===--- FineGrainedDependencyGraph .cpp ------------------------------------==//
2
2
//
3
3
// This source file is part of the Swift.org open source project
4
4
//
10
10
//
11
11
// ===----------------------------------------------------------------------===//
12
12
13
- #include " swift/Driver/ExperimentalDependencyDriverGraph .h"
13
+ #include " swift/Driver/FineGrainedDependencyDriverGraph .h"
14
14
// Next two includes needed for reporting errors opening dot file for writing.
15
15
#include " swift/AST/DiagnosticsFrontend.h"
16
16
#include " swift/AST/FileSystem.h"
Original file line number Diff line number Diff line change 28
28
#include " swift/Subsystems.h"
29
29
#include " swift/AST/DiagnosticsFrontend.h"
30
30
#include " swift/AST/DiagnosticsSema.h"
31
- #include " swift/AST/ExperimentalDependencies .h"
31
+ #include " swift/AST/FineGrainedDependencies .h"
32
32
#include " swift/AST/FileSystem.h"
33
33
#include " swift/AST/GenericSignatureBuilder.h"
34
34
#include " swift/AST/IRGenOptions.h"
You can’t perform that action at this time.
0 commit comments