You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// The cases reflect those found in `include/swift/AST/AttrKind.h` of the swift compiler (at commit 03f55d7bb4204ca54841218eb7cc175ae798e3bd)
31
33
case `private`, `fileprivate`, `internal`, `public`, `open`
32
-
33
-
publicvardescription:String{ rawValue }
34
34
}
35
35
36
+
/// Output format of the generated symbol graph.
37
+
publicenumOutputFormat{
38
+
/// JSON format, optionally "pretty-printed" be more human-readable.
39
+
case json(pretty:Bool)
40
+
}
41
+
36
42
/// Creates a symbol graph for `target` in `outputDirectory` using the build information from `buildPlan`. The `outputDirection` determines how the output from the tool subprocess is handled, and `verbosity` specifies how much console output to ask the tool to emit.
0 commit comments