We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2682d4b commit 91dd6f1Copy full SHA for 91dd6f1
1 file changed
Sources/OpenAttributeGraphShims/Graph+Debug.swift
@@ -2,7 +2,23 @@
2
// Graph+Debug.swift
3
// OpenAttributeGraphShims
4
5
-#if canImport(Darwin) && !OPENATTRIBUTEGRAPH_COMPUTE // Compute's descriptionFormatDictionary API is not aligned with OAG yet.
+#if canImport(Darwin)
6
+
7
+#if OPENATTRIBUTEGRAPH_COMPUTE
8
+extension Graph {
9
+ public static var descriptionFormatDictionary: CFString {
10
+ "graph/dict" as CFString
11
+ }
12
13
+ public static var descriptionFormatDot: CFString {
14
+ "graph/dot" as CFString
15
16
17
+ public static var descriptionAllGraphs: CFString {
18
+ "all_graphs" as CFString
19
20
+}
21
+#endif
22
23
import Foundation
24
0 commit comments