We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 977df36 commit 6a1ff02Copy full SHA for 6a1ff02
stdlib/public/runtime/MetadataLookup.cpp
@@ -203,7 +203,7 @@ _classByName(const llvm::StringRef typeName) {
203
NodePointer ClassNd = NodeFactory::create(Node::Kind::Class);
204
NodePointer ModuleNd = NodeFactory::create(Node::Kind::Module,
205
typeName.substr(0, DotPos));
206
- NodePointer NameNd = NodeFactory::create(Node::Kind::Module,
+ NodePointer NameNd = NodeFactory::create(Node::Kind::Identifier,
207
typeName.substr(DotPos + 1));
208
ClassNd->addChildren(ModuleNd, NameNd);
209
0 commit comments