Skip to content

Commit 382510f

Browse files
authoredJan 6, 2023
Rename Reflection library to RemoteInspection (#62846)
1 parent 973b0ce commit 382510f

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+92
-92
lines changed
 

‎CMakeLists.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -1196,8 +1196,8 @@ else()
11961196
add_subdirectory(stdlib/public/BackDeployConcurrency)
11971197
endif()
11981198

1199-
# Some tools (e.g. swift-reflection-dump) rely on a host swiftReflection, so
1200-
# ensure we build that when building tools.
1199+
# Some tools (e.g. swift-reflection-dump) rely on a host swiftRemoteInspection,
1200+
# so ensure we build that when building tools.
12011201
if(SWIFT_INCLUDE_TOOLS)
12021202
add_subdirectory(stdlib/public/SwiftShims/swift/shims)
12031203
endif()

‎include/swift/Reflection/MetadataSource.h ‎include/swift/RemoteInspection/MetadataSource.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ namespace reflection {
3636

3737
enum class MetadataSourceKind {
3838
#define METADATA_SOURCE(Id, Parent) Id,
39-
#include "swift/Reflection/MetadataSources.def"
39+
#include "swift/RemoteInspection/MetadataSources.def"
4040
#undef METADATA_SOURCE
4141
};
4242

@@ -344,7 +344,7 @@ class MetadataSourceVisitor {
344344
return static_cast<ImplClass*>(this) \
345345
->visit##Id##MetadataSource(cast<Id##MetadataSource>(MS), \
346346
::std::forward<Args>(args)...);
347-
#include "swift/Reflection/MetadataSources.def"
347+
#include "swift/RemoteInspection/MetadataSources.def"
348348
}
349349
}
350350
};

0 commit comments

Comments
 (0)