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 377ca35 commit 52cf515Copy full SHA for 52cf515
lib/SymbolGraphGen/SymbolGraph.cpp
@@ -655,10 +655,6 @@ bool SymbolGraph::canIncludeDeclAsNode(const Decl *D) const {
655
return false;
656
}
657
658
- if (D->isImplicit()) {
659
- return false;
660
- }
661
-
662
if (!isa<ValueDecl>(D)) {
663
664
test/SymbolGraph/Symbols/Implicit.swift
@@ -0,0 +1,8 @@
1
+// RUN: %empty-directory(%t)
2
+// RUN: %target-build-swift %s -module-name Implicit -emit-module -emit-module-path %t/
3
+// RUN: %target-swift-symbolgraph-extract -module-name Implicit -I %t -pretty-print -output-dir %t -minimum-access-level internal
4
+// RUN: %FileCheck %s --input-file %t/Implicit.symbols.json
5
+
6
+public class SomeClass {}
7
8
+// CHECK: "precise": "s:8Implicit9SomeClassCACycfc"
0 commit comments