diff --git a/.claude/settings.json b/.claude/settings.json index 1f1b0fc0..4fe66f37 100644 --- a/.claude/settings.json +++ b/.claude/settings.json @@ -29,7 +29,6 @@ "Bash(gh api:*)" ], "ask": [ - "Write(./**/*.xcodeproj/**)", "Edit(./**/*.xcodeproj/**)" ], "deny": [ diff --git a/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift b/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift index c39be63e..672b4c1b 100644 --- a/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift +++ b/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift @@ -6,6 +6,7 @@ import SwiftUI public struct MMWebView: View { @Environment(\.removeAds) private var removeAds @Environment(\.colorScheme) var colorScheme + @Environment(\.scenePhase) private var scenePhase @State private var commentsURL = "" @State private var internalLinkURL: URL? @@ -15,6 +16,7 @@ public struct MMWebView: View { @State private var galleryStateHandler = GalleryStateMessageHandler() @State private var isGalleryOpen = false @State private var reloadID = UUID() + @State private var appliedColorScheme: ColorScheme? private let url: String? private let cacheKey: String? @@ -73,9 +75,16 @@ public struct MMWebView: View { } } } - .onChange(of: colorScheme) { - isGalleryOpen = false - page?.reload() + .onChange(of: colorScheme) { _, newScheme in + guard WebViewLoadPolicy.shouldHandleColorSchemeChange(scenePhase: scenePhase) else { return } + applyColorScheme(newScheme) + } + .onChange(of: scenePhase) { _, newPhase in + if newPhase == .active, + WebViewLoadPolicy.needsColorSchemeReconciliation(current: colorScheme, + applied: appliedColorScheme) { + applyColorScheme(colorScheme) + } } .onChange(of: removeAds) { if let cacheKey { @@ -91,6 +100,12 @@ public struct MMWebView: View { // MARK: - Setup private extension MMWebView { + func applyColorScheme(_ scheme: ColorScheme) { + appliedColorScheme = scheme + isGalleryOpen = false + page?.reload() + } + func makeLoadAction() -> (@MainActor (WebPage) async throws -> Void)? { guard let cacheKey else { return urlLoadAction() } if WebPageCache.shared.hasPage(for: cacheKey) { @@ -146,6 +161,7 @@ private extension MMWebView { await cookieStore.setCookie(cookie) } + appliedColorScheme = colorScheme return page } diff --git a/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/ManagedWebView.swift b/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/ManagedWebView.swift index 0ad9198d..dd9a2a12 100644 --- a/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/ManagedWebView.swift +++ b/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/ManagedWebView.swift @@ -32,6 +32,8 @@ public struct ManagedWebView: View { @State private var viewStatus = WebViewStatus.idle @State private var isActive = true @State private var webViewReadyToRender = !ProcessInfo.processInfo.isiOSAppOnMac + @State private var completedLoadTrigger: UUID? + @State private var appliedColorScheme: ColorScheme? let style: ManagedWebViewStyle let pageProvider: @MainActor () async -> WebPage? @@ -83,18 +85,25 @@ public struct ManagedWebView: View { try? await Task.sleep(for: .milliseconds(50)) } + guard WebViewLoadPolicy.shouldLoad(trigger: reloadTrigger, + completedTrigger: completedLoadTrigger) else { + viewStatus = .done + return + } + await performLoad(on: activePage) } .onChange(of: scenePhase) { _, newPhase in isActive = newPhase == .active + if newPhase == .active, + WebViewLoadPolicy.needsColorSchemeReconciliation(current: colorScheme, + applied: appliedColorScheme) { + handleColorSchemeChange(colorScheme) + } } .onChange(of: colorScheme) { _, newScheme in - guard let onColorSchemeChange, let page else { return } - Task { - viewStatus = .loading - await onColorSchemeChange(page, newScheme) - await performLoad(on: page) - } + guard WebViewLoadPolicy.shouldHandleColorSchemeChange(scenePhase: scenePhase) else { return } + handleColorSchemeChange(newScheme) } } } @@ -119,9 +128,21 @@ private extension ManagedWebView { } } + func handleColorSchemeChange(_ scheme: ColorScheme) { + guard let onColorSchemeChange, let page else { return } + appliedColorScheme = scheme + Task { + viewStatus = .loading + await onColorSchemeChange(page, scheme) + await performLoad(on: page) + } + } + func performLoad(on page: WebPage) async { guard let loadAction else { viewStatus = .done + completedLoadTrigger = reloadTrigger + appliedColorScheme = colorScheme return } @@ -129,6 +150,8 @@ private extension ManagedWebView { do { try await loadAction(page) viewStatus = .done + completedLoadTrigger = reloadTrigger + appliedColorScheme = colorScheme if let postLoadAction { await postLoadAction(page) } @@ -137,7 +160,7 @@ private extension ManagedWebView { } catch let error as WebPage.NavigationError { switch error { case .webContentProcessTerminated: - break + completedLoadTrigger = nil default: if !Task.isCancelled { viewStatus = .error(error.localizedDescription) diff --git a/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WebViewLoadPolicy.swift b/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WebViewLoadPolicy.swift new file mode 100644 index 00000000..75334ec7 --- /dev/null +++ b/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WebViewLoadPolicy.swift @@ -0,0 +1,27 @@ +import Foundation +import SwiftUI + +/// Pure decision logic for the WebView lifecycle, extracted for testability. +enum WebViewLoadPolicy { + /// A load is needed only when the current trigger has not already completed. + /// When a covered view's `.task(id:)` restarts on pop-back, the trigger is + /// unchanged and the redundant reload must be skipped to preserve the + /// reading position. + static func shouldLoad(trigger: UUID, completedTrigger: UUID?) -> Bool { + trigger != completedTrigger + } + + /// Color-scheme changes reported while the scene is not active are the + /// system rendering app-switcher snapshots in both appearances — not a real + /// appearance change — and must not trigger a reload. + static func shouldHandleColorSchemeChange(scenePhase: ScenePhase) -> Bool { + scenePhase == .active + } + + /// On return to the active scene, reload only if the appearance genuinely + /// changed while the scene was away. + static func needsColorSchemeReconciliation(current: ColorScheme, applied: ColorScheme?) -> Bool { + guard let applied else { return false } + return current != applied + } +} diff --git a/MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/WebViewLoadPolicyTests.swift b/MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/WebViewLoadPolicyTests.swift new file mode 100644 index 00000000..ef715348 --- /dev/null +++ b/MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/WebViewLoadPolicyTests.swift @@ -0,0 +1,59 @@ +import Foundation +@testable import MacMagazineUILibrary +import SwiftUI +import Testing + +@Suite("WebViewLoadPolicy Tests") +struct WebViewLoadPolicyTests { + + // MARK: - shouldLoad + + @Test("Should load on first appearance when no load has completed") + func firstLoad() { + // Given + let trigger = UUID() + + // Then + #expect(WebViewLoadPolicy.shouldLoad(trigger: trigger, completedTrigger: nil)) + } + + @Test("Should skip reload when reappearing with the same completed trigger") + func skipAfterPopBack() { + // Given + let trigger = UUID() + + // Then + #expect(!WebViewLoadPolicy.shouldLoad(trigger: trigger, completedTrigger: trigger)) + } + + @Test("Should load again when the trigger rotates") + func reloadOnRotatedTrigger() { + #expect(WebViewLoadPolicy.shouldLoad(trigger: UUID(), completedTrigger: UUID())) + } + + // MARK: - shouldHandleColorSchemeChange + + @Test("Should handle color-scheme change only while the scene is active", + arguments: zip([ScenePhase.active, .inactive, .background], [true, false, false])) + func schemeChangeGating(phase: ScenePhase, expected: Bool) { + #expect(WebViewLoadPolicy.shouldHandleColorSchemeChange(scenePhase: phase) == expected) + } + + // MARK: - needsColorSchemeReconciliation + + @Test("Should not reconcile before any scheme was applied") + func noReconciliationWhenNeverApplied() { + #expect(!WebViewLoadPolicy.needsColorSchemeReconciliation(current: .dark, applied: nil)) + } + + @Test("Should not reconcile when the scheme is unchanged", + arguments: [ColorScheme.light, .dark]) + func noReconciliationWhenUnchanged(scheme: ColorScheme) { + #expect(!WebViewLoadPolicy.needsColorSchemeReconciliation(current: scheme, applied: scheme)) + } + + @Test("Should reconcile when the scheme changed while away") + func reconciliationWhenChanged() { + #expect(WebViewLoadPolicy.needsColorSchemeReconciliation(current: .dark, applied: .light)) + } +} diff --git a/graphify-out/.graphify_labels.json b/graphify-out/.graphify_labels.json index 772bf288..fcd060eb 100644 --- a/graphify-out/.graphify_labels.json +++ b/graphify-out/.graphify_labels.json @@ -1 +1,194 @@ -{"0": "Settings & Subscriptions", "1": "Live Content & Notifications", "2": "Analytics Library", "3": "Analytics Event Constants", "4": "XML Feed Parsing", "5": "WebView HTML & Disqus", "6": ".claude Config & Hooks", "7": "News Feature", "8": "Feed Service", "9": "FeedLibrary Imports", "10": "WebView Cookies", "11": "Podcast Feature", "12": "In-App Purchases", "13": "FeedDB Model & Tests", "14": "API Endpoints", "15": "Podcast Full Player UI", "16": "PodcastDB Model & Tests", "17": "Card Content & Menus", "18": "Search ViewModel Tests", "19": "Podcast Chapter Colors", "20": "Search System", "21": "Podcast Player Manager", "22": "Community 22", "23": "Community 23", "24": "Community 24", "25": "Community 25", "26": "Community 26", "27": "Community 27", "28": "Community 28", "29": "Community 29", "30": "Community 30", "31": "Community 31", "32": "Community 32", "33": "Community 33", "34": "Community 34", "35": "Community 35", "36": "Community 36", "37": "Community 37", "38": "Community 38", "39": "Community 39", "40": "Community 40", "41": "Community 41", "42": "Community 42", "43": "Community 43", "44": "Community 44", "45": "Community 45", "46": "Community 46", "47": "Community 47", "48": "Community 48", "49": "Community 49", "50": "Community 50", "51": "Community 51", "52": "Community 52", "53": "Community 53", "54": "Community 54", "55": "Community 55", "56": "Community 56", "57": "Community 57", "58": "Community 58", "59": "Community 59", "60": "Community 60", "61": "Community 61", "62": "Community 62", "63": "Community 63", "64": "Community 64", "65": "Community 65", "66": "Community 66", "67": "Community 67", "68": "Community 68", "69": "Community 69", "70": "Community 70", "71": "Community 71", "72": "Community 72", "73": "Community 73", "74": "Community 74", "75": "Community 75", "76": "Community 76", "77": "Community 77", "78": "Community 78", "79": "Community 79", "80": "Community 80", "81": "Community 81", "82": "Community 82", "83": "Community 83", "84": "Community 84", "85": "Community 85", "86": "Community 86", "87": "Community 87", "88": "Community 88", "89": "Community 89", "90": "Community 90", "91": "Community 91", "92": "Community 92", "93": "Community 93", "94": "Community 94", "95": "Community 95", "96": "Community 96", "97": "Community 97", "98": "Community 98", "99": "Community 99", "100": "Community 100", "101": "Community 101", "102": "Community 102", "103": "Community 103", "104": "Community 104", "105": "Community 105", "106": "Community 106", "107": "Community 107", "108": "Community 108", "109": "Community 109", "110": "Community 110", "111": "Community 111", "112": "Community 112", "113": "Community 113", "114": "Community 114", "115": "Community 115", "116": "Community 116", "117": "Community 117", "118": "Community 118", "119": "Community 119", "120": "Community 120", "121": "Community 121", "122": "Community 122", "123": "Community 123", "124": "Community 124", "125": "Community 125", "126": "Community 126", "127": "Community 127", "128": "Community 128", "129": "Community 129", "130": "Community 130", "131": "Community 131", "132": "Community 132", "133": "Community 133", "134": "Community 134", "135": "Community 135", "136": "Community 136", "137": "Community 137", "138": "Community 138", "139": "Community 139", "140": "Community 140", "141": "Community 141", "142": "Community 142", "143": "Community 143", "144": "Community 144", "145": "Community 145", "146": "Community 146", "147": "Community 147", "148": "Community 148", "149": "Community 149", "150": "Community 150", "151": "Community 151", "152": "Community 152", "153": "Community 153", "154": "Community 154", "155": "Community 155", "156": "Community 156", "157": "Community 157", "158": "Community 158", "159": "Community 159"} \ No newline at end of file +{ + "0": "Settings & Subscriptions", + "1": "Live Content & Notifications", + "2": "Analytics Library", + "3": "Analytics Event Constants", + "4": "XML Feed Parsing", + "5": "WebView HTML & Disqus", + "6": ".claude Config & Hooks", + "7": "News Feature", + "8": "Feed Service", + "9": "FeedLibrary Imports", + "10": "WebView Cookies", + "11": "Podcast Feature", + "12": "In-App Purchases", + "13": "FeedDB Model & Tests", + "14": "API Endpoints", + "15": "Podcast Full Player UI", + "16": "PodcastDB Model & Tests", + "17": "Card Content & Menus", + "18": "Search ViewModel Tests", + "19": "Podcast Chapter Colors", + "20": "Search System", + "21": "Podcast Player Manager", + "22": "Community 22", + "23": "Community 23", + "24": "Community 24", + "25": "Community 25", + "26": "Community 26", + "27": "Community 27", + "28": "Community 28", + "29": "Community 29", + "30": "Community 30", + "31": "Community 31", + "32": "Community 32", + "33": "Community 33", + "34": "Community 34", + "35": "Community 35", + "36": "Community 36", + "37": "Community 37", + "38": "Community 38", + "39": "Community 39", + "40": "Community 40", + "41": "Community 41", + "42": "Community 42", + "43": "Community 43", + "44": "Community 44", + "45": "Community 45", + "46": "Community 46", + "47": "Community 47", + "48": "Community 48", + "49": "Community 49", + "50": "Community 50", + "51": "Community 51", + "52": "Community 52", + "53": "Community 53", + "54": "Community 54", + "55": "Community 55", + "56": "Community 56", + "57": "Community 57", + "58": "Community 58", + "59": "Community 59", + "60": "Community 60", + "61": "Community 61", + "62": "Community 62", + "63": "Community 63", + "64": "Community 64", + "65": "Community 65", + "66": "Community 66", + "67": "Community 67", + "68": "Community 68", + "69": "Community 69", + "70": "Community 70", + "71": "Community 71", + "72": "Community 72", + "73": "Community 73", + "74": "Community 74", + "75": "Community 75", + "76": "Community 76", + "77": "Community 77", + "78": "Community 78", + "79": "Community 79", + "80": "Community 80", + "81": "Community 81", + "82": "Community 82", + "83": "Community 83", + "84": "Community 84", + "85": "Community 85", + "86": "Community 86", + "87": "Community 87", + "88": "Community 88", + "89": "Community 89", + "90": "Community 90", + "91": "Community 91", + "92": "Community 92", + "93": "Community 93", + "94": "Community 94", + "95": "Community 95", + "96": "Community 96", + "97": "Community 97", + "98": "Community 98", + "99": "Community 99", + "100": "Community 100", + "101": "Community 101", + "102": "Community 102", + "103": "Community 103", + "104": "Community 104", + "105": "Community 105", + "106": "Community 106", + "107": "Community 107", + "108": "Community 108", + "109": "Community 109", + "110": "Community 110", + "111": "Community 111", + "112": "Community 112", + "113": "Community 113", + "114": "Community 114", + "115": "Community 115", + "116": "Community 116", + "117": "Community 117", + "118": "Community 118", + "119": "Community 119", + "120": "Community 120", + "121": "Community 121", + "122": "Community 122", + "123": "Community 123", + "124": "Community 124", + "125": "Community 125", + "126": "Community 126", + "127": "Community 127", + "128": "Community 128", + "129": "Community 129", + "130": "Community 130", + "131": "Community 131", + "132": "Community 132", + "133": "Community 133", + "134": "Community 134", + "135": "Community 135", + "136": "Community 136", + "137": "Community 137", + "138": "Community 138", + "139": "Community 139", + "140": "Community 140", + "141": "Community 141", + "142": "Community 142", + "143": "Community 143", + "144": "Community 144", + "145": "Community 145", + "146": "Community 146", + "147": "Community 147", + "148": "Community 148", + "149": "Community 149", + "150": "Community 150", + "151": "Community 151", + "152": "Community 152", + "153": "Community 153", + "154": "Community 154", + "155": "Community 155", + "156": "Community 156", + "157": "Community 157", + "158": "Community 158", + "159": "Community 159", + "160": "App do MacMagazine para iOS", + "161": "Firebase Configuration", + "162": "iOS Design Guidelines for MacMagazine", + "163": "MMWebView", + "164": "Guia de Contribuição", + "165": "YOUR PRIME DIRECTIVES", + "166": "NewsCategory", + "167": "Anti-hallucination & pattern-fidelity contract", + "168": "Skills Quick Reference", + "169": "Criando um Pull Request", + "170": "Git workflow", + "171": "Swift Style — naming, optionals, lint, comments", + "172": "Critical Requirements (Zero Tolerance)", + "173": "PULL_REQUEST_TEMPLATE.md", + "174": "WalletPassService", + "175": "Testing — Swift Testing", + "176": "Configuração do ambiente", + "177": "Concurrency — Swift 6.2, structured only", + "178": "MinimumTouchTarget", + "179": "View", + "180": "Validações automáticas", + "181": "Fluxo de trabalho", + "182": "swift-code-reviewer.md", + "183": ".makeHTML", + "184": "Options", + "185": "Options", + "186": "Options", + "187": "Padrões de código", + "188": "Troubleshooting", + "189": "architecture-guardian.md", + "190": "test-runner.md", + "191": "ThemeColor.swift" +} diff --git a/graphify-out/.graphify_root b/graphify-out/.graphify_root index dced5f57..945c9b46 100644 --- a/graphify-out/.graphify_root +++ b/graphify-out/.graphify_root @@ -1 +1 @@ -/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine +. \ No newline at end of file diff --git a/graphify-out/2026-07-18/.graphify_labels.json b/graphify-out/2026-07-18/.graphify_labels.json new file mode 100644 index 00000000..772bf288 --- /dev/null +++ b/graphify-out/2026-07-18/.graphify_labels.json @@ -0,0 +1 @@ +{"0": "Settings & Subscriptions", "1": "Live Content & Notifications", "2": "Analytics Library", "3": "Analytics Event Constants", "4": "XML Feed Parsing", "5": "WebView HTML & Disqus", "6": ".claude Config & Hooks", "7": "News Feature", "8": "Feed Service", "9": "FeedLibrary Imports", "10": "WebView Cookies", "11": "Podcast Feature", "12": "In-App Purchases", "13": "FeedDB Model & Tests", "14": "API Endpoints", "15": "Podcast Full Player UI", "16": "PodcastDB Model & Tests", "17": "Card Content & Menus", "18": "Search ViewModel Tests", "19": "Podcast Chapter Colors", "20": "Search System", "21": "Podcast Player Manager", "22": "Community 22", "23": "Community 23", "24": "Community 24", "25": "Community 25", "26": "Community 26", "27": "Community 27", "28": "Community 28", "29": "Community 29", "30": "Community 30", "31": "Community 31", "32": "Community 32", "33": "Community 33", "34": "Community 34", "35": "Community 35", "36": "Community 36", "37": "Community 37", "38": "Community 38", "39": "Community 39", "40": "Community 40", "41": "Community 41", "42": "Community 42", "43": "Community 43", "44": "Community 44", "45": "Community 45", "46": "Community 46", "47": "Community 47", "48": "Community 48", "49": "Community 49", "50": "Community 50", "51": "Community 51", "52": "Community 52", "53": "Community 53", "54": "Community 54", "55": "Community 55", "56": "Community 56", "57": "Community 57", "58": "Community 58", "59": "Community 59", "60": "Community 60", "61": "Community 61", "62": "Community 62", "63": "Community 63", "64": "Community 64", "65": "Community 65", "66": "Community 66", "67": "Community 67", "68": "Community 68", "69": "Community 69", "70": "Community 70", "71": "Community 71", "72": "Community 72", "73": "Community 73", "74": "Community 74", "75": "Community 75", "76": "Community 76", "77": "Community 77", "78": "Community 78", "79": "Community 79", "80": "Community 80", "81": "Community 81", "82": "Community 82", "83": "Community 83", "84": "Community 84", "85": "Community 85", "86": "Community 86", "87": "Community 87", "88": "Community 88", "89": "Community 89", "90": "Community 90", "91": "Community 91", "92": "Community 92", "93": "Community 93", "94": "Community 94", "95": "Community 95", "96": "Community 96", "97": "Community 97", "98": "Community 98", "99": "Community 99", "100": "Community 100", "101": "Community 101", "102": "Community 102", "103": "Community 103", "104": "Community 104", "105": "Community 105", "106": "Community 106", "107": "Community 107", "108": "Community 108", "109": "Community 109", "110": "Community 110", "111": "Community 111", "112": "Community 112", "113": "Community 113", "114": "Community 114", "115": "Community 115", "116": "Community 116", "117": "Community 117", "118": "Community 118", "119": "Community 119", "120": "Community 120", "121": "Community 121", "122": "Community 122", "123": "Community 123", "124": "Community 124", "125": "Community 125", "126": "Community 126", "127": "Community 127", "128": "Community 128", "129": "Community 129", "130": "Community 130", "131": "Community 131", "132": "Community 132", "133": "Community 133", "134": "Community 134", "135": "Community 135", "136": "Community 136", "137": "Community 137", "138": "Community 138", "139": "Community 139", "140": "Community 140", "141": "Community 141", "142": "Community 142", "143": "Community 143", "144": "Community 144", "145": "Community 145", "146": "Community 146", "147": "Community 147", "148": "Community 148", "149": "Community 149", "150": "Community 150", "151": "Community 151", "152": "Community 152", "153": "Community 153", "154": "Community 154", "155": "Community 155", "156": "Community 156", "157": "Community 157", "158": "Community 158", "159": "Community 159"} \ No newline at end of file diff --git a/graphify-out/2026-07-18/GRAPH_REPORT.md b/graphify-out/2026-07-18/GRAPH_REPORT.md new file mode 100644 index 00000000..0678cb75 --- /dev/null +++ b/graphify-out/2026-07-18/GRAPH_REPORT.md @@ -0,0 +1,760 @@ +# Graph Report - . (2026-07-11) + +## Corpus Check +- 376 files · ~361,182 words +- Verdict: corpus is large enough that graph structure adds value. + +## Summary +- 2457 nodes · 4835 edges · 160 communities (134 shown, 26 thin omitted) +- Extraction: 87% EXTRACTED · 13% INFERRED · 0% AMBIGUOUS · INFERRED: 607 edges (avg confidence: 0.8) +- Token cost: 0 input · 0 output + +## Community Hubs (Navigation) +- Settings & Subscriptions +- Live Content & Notifications +- Analytics Library +- Analytics Event Constants +- XML Feed Parsing +- WebView HTML & Disqus +- .claude Config & Hooks +- News Feature +- Feed Service +- FeedLibrary Imports +- WebView Cookies +- Podcast Feature +- In-App Purchases +- FeedDB Model & Tests +- API Endpoints +- Podcast Full Player UI +- PodcastDB Model & Tests +- Card Content & Menus +- Search ViewModel Tests +- Podcast Chapter Colors +- Search System +- Podcast Player Manager +- Community 22 +- Community 23 +- Community 24 +- Community 25 +- Community 26 +- Community 27 +- Community 28 +- Community 29 +- Community 30 +- Community 31 +- Community 32 +- Community 33 +- Community 34 +- Community 35 +- Community 36 +- Community 37 +- Community 38 +- Community 39 +- Community 40 +- Community 41 +- Community 42 +- Community 43 +- Community 44 +- Community 45 +- Community 46 +- Community 47 +- Community 48 +- Community 49 +- Community 50 +- Community 51 +- Community 52 +- Community 53 +- Community 54 +- Community 55 +- Community 56 +- Community 57 +- Community 58 +- Community 59 +- Community 60 +- Community 61 +- Community 62 +- Community 63 +- Community 64 +- Community 65 +- Community 66 +- Community 67 +- Community 68 +- Community 69 +- Community 70 +- Community 71 +- Community 72 +- Community 73 +- Community 74 +- Community 75 +- Community 76 +- Community 77 +- Community 78 +- Community 79 +- Community 80 +- Community 81 +- Community 82 +- Community 83 +- Community 84 +- Community 85 +- Community 86 +- Community 87 +- Community 88 +- Community 89 +- Community 90 +- Community 91 +- Community 92 +- Community 93 +- Community 94 +- Community 95 +- Community 96 +- Community 97 +- Community 98 +- Community 99 +- Community 100 +- Community 101 +- Community 102 +- Community 103 +- Community 104 +- Community 105 +- Community 106 +- Community 107 +- Community 108 +- Community 109 +- Community 110 +- Community 111 +- Community 112 +- Community 113 +- Community 114 +- Community 115 +- Community 116 +- Community 117 +- Community 118 +- Community 119 +- Community 120 +- Community 121 +- Community 122 +- Community 123 +- Community 124 +- Community 125 +- Community 126 +- Community 127 +- Community 128 +- Community 129 +- Community 130 +- Community 131 +- Community 132 +- Community 133 +- Community 134 +- Community 135 +- Community 136 +- Community 137 +- Community 138 +- Community 139 +- Community 140 +- Community 141 +- Community 142 +- Community 143 +- Community 144 +- Community 145 +- Community 146 +- Community 147 +- Community 148 +- Community 149 +- Community 150 +- Community 151 +- Community 152 +- Community 153 +- Community 154 +- Community 155 +- Community 156 +- Community 157 +- Community 158 +- Community 159 + +## God Nodes (most connected - your core abstractions) +1. `SwiftUI` - 114 edges +2. `Foundation` - 108 edges +3. `MacMagazineLibrary` - 93 edges +4. `Database` - 70 edges +5. `ButtonID` - 65 edges +6. `FeedLibrary` - 57 edges +7. `StorageLibrary` - 49 edges +8. `PodcastPlayerManager` - 46 edges +9. `FeedDB` - 45 edges +10. `AnalyticsLibrary` - 45 edges + +## Surprising Connections (you probably didn't know these) +- `MacMagazineTimelineProvider` --calls--> `FeedViewModel` [INFERRED] + MacMagazine/Widget/Timeline/MacMagazineTimelineProvider.swift → MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift +- `MainViewModel` --calls--> `SessionState` [INFERRED] + MacMagazine/MacMagazine/MainApp/MainViewModel.swift → MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/SessionState.swift +- `MainViewModel` --calls--> `ThemeColor` [INFERRED] + MacMagazine/MacMagazine/MainApp/MainViewModel.swift → MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/ThemeColor.swift +- `ContentPreview` --calls--> `CardContent` [INFERRED] + MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/PreviewData/ContentPreview.swift → MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Model/CardContent.swift +- `DisqusSheet` --calls--> `DisqusNewWindowHandler` [INFERRED] + MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/Disqus/DisqusWebView.swift → MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/Disqus/DisqusNewWindowHandler.swift + +## Import Cycles +- None detected. + +## Communities (160 total, 26 thin omitted) + +### Community 0 - "Settings & Subscriptions" +Cohesion: 0.05 +Nodes (16): SettingsDB, Bool, ModelContext, String, UUID, Subscription, Bool, Database (+8 more) + +### Community 1 - "Live Content & Notifications" +Cohesion: 0.05 +Nodes (44): Date, Bool, String, MMLive, PushNotification, PushNotificationProtocol, Storage, MMLiveViewModel (+36 more) + +### Community 2 - "Analytics Library" +Cohesion: 0.09 +Nodes (8): AnalyticsLibrary, Constants, MacMagazineLibrary, MacMagazineUILibrary, StoreKit, SwiftUI, UIComponentsLibrary, UtilityLibrary + +### Community 3 - "Analytics Event Constants" +Cohesion: 0.03 +Nodes (64): ButtonID, appLaunched, categoryFilterChanged, cleanAllPosts, cleanOnboarding, cleanPosts, cleanPostsOptions, deepLinkOpened (+56 more) + +### Community 4 - "XML Feed Parsing" +Cohesion: 0.06 +Nodes (22): DateFormatter, APIXMLParser, Bool, CheckedContinuation, Error, Int, String, DateParser (+14 more) + +### Community 5 - "WebView HTML & Disqus" +Cohesion: 0.05 +Nodes (31): Int, Bool, Utils, DisqusHTMLBuilder, String, GalleryStateMessageHandler, Bool, Void (+23 more) + +### Community 6 - ".claude Config & Hooks" +Cohesion: 0.04 +Nodes (48): hooks, PostToolUse, PreToolUse, Stop, permissions, allow, ask, deny (+40 more) + +### Community 7 - "News Feature" +Cohesion: 0.09 +Nodes (22): Filter, NewsViewModel, APIStatus, Database, FeedDB, Int, NetworkMockData, Options (+14 more) + +### Community 8 - "Feed Service" +Cohesion: 0.10 +Nodes (17): FeedViewModel, Bool, CheckedContinuation, Data, Database, Error, FeedDB, Int (+9 more) + +### Community 9 - "FeedLibrary Imports" +Cohesion: 0.10 +Nodes (9): AVFoundation, Combine, FeedLibrary, Foundation, String, Array, Self, URLs (+1 more) + +### Community 10 - "WebView Cookies" +Cohesion: 0.08 +Nodes (7): Cookies, Bool, HTTPCookie, String, TimeInterval, CookiesTests, WKHTTPCookieStore + +### Community 11 - "Podcast Feature" +Cohesion: 0.11 +Nodes (20): PodcastViewModel, APIStatus, Database, Int, NetworkMockData, Options, PodcastView, AnalyticsManager (+12 more) + +### Community 12 - "In-App Purchases" +Cohesion: 0.08 +Nodes (27): Configuration, InAppManager, InAppProduct, InAppStatus, Status, error, idle, loading (+19 more) + +### Community 13 - "FeedDB Model & Tests" +Cohesion: 0.09 +Nodes (5): FeedDB, Bool, ModelContext, String, FeedDBTests + +### Community 14 - "API Endpoints" +Cohesion: 0.09 +Nodes (8): APIDefinitions, Endpoint, Self, MMLiveLibrary, NetworkLibrary, StorageLibrary, SwiftData, WatchKit + +### Community 15 - "Podcast Full Player UI" +Cohesion: 0.09 +Nodes (23): Data, FullPlayerView, PlayerAccessibilityPriority, PodcastBackgroundGradientStyle, fourTone, threeTone, twoTone, AnalyticsManager (+15 more) + +### Community 16 - "PodcastDB Model & Tests" +Cohesion: 0.10 +Nodes (6): PodcastDB, Bool, Double, ModelContext, String, PodcastDBTests + +### Community 17 - "Card Content & Menus" +Cohesion: 0.11 +Nodes (19): CardContent, AnalyticsManager, Bool, CGFloat, String, Void, MenuButton, MenuContent (+11 more) + +### Community 18 - "Search ViewModel Tests" +Cohesion: 0.16 +Nodes (10): makeResult(), MockLocalSearchService, MockMerger, MockRemoteSearchService, SearchViewModelTests, Error, Int, ModelContext (+2 more) + +### Community 19 - "Podcast Chapter Colors" +Cohesion: 0.15 +Nodes (5): Color, createChapter(), PodcastChapterTests, Double, String + +### Community 20 - "Search System" +Cohesion: 0.12 +Nodes (15): RecentSearchDB, String, LocalSearchServiceProtocol, RemoteSearchServiceProtocol, SearchViewModel, Bool, Database, Duration (+7 more) + +### Community 21 - "Podcast Player Manager" +Cohesion: 0.17 +Nodes (8): AVPlayer, AVPlayerItem, Float, PodcastPlayerManager, Any, Double, PodcastDB, TimeInterval + +### Community 22 - "Community 22" +Cohesion: 0.17 +Nodes (4): OnboardingCoordinator, Bool, Void, OnboardingCoordinatorTests + +### Community 23 - "Community 23" +Cohesion: 0.09 +Nodes (20): CaseIterable, NewsCategory, all, appletv, highlights, news, podcast, reviews (+12 more) + +### Community 24 - "Community 24" +Cohesion: 0.10 +Nodes (10): AppTrackingTransparency, FirebaseCore, InAppLibrary, LoggerLibrary, Observation, OneSignalExtension, OneSignalFramework, os (+2 more) + +### Community 26 - "Community 26" +Cohesion: 0.13 +Nodes (5): createChapter(), createTestChapters(), PodcastPlayerManagerTests, Double, String + +### Community 27 - "Community 27" +Cohesion: 0.10 +Nodes (16): SearchStatus, done, error, idle, localResults, searching, SearchView, AnalyticsManager (+8 more) + +### Community 28 - "Community 28" +Cohesion: 0.10 +Nodes (16): areEqual(), Equatable, Bool, AreEqualTests, Options, home, search, String (+8 more) + +### Community 29 - "Community 29" +Cohesion: 0.17 +Nodes (4): QueryProcessor, String, QueryProcessorTests, NaturalLanguage + +### Community 30 - "Community 30" +Cohesion: 0.10 +Nodes (21): Screen, deepLinkDetail, live, loginPatroes, news, onboardingFeatures, onboardingPermissions, onboardingWelcome (+13 more) + +### Community 31 - "Community 31" +Cohesion: 0.16 +Nodes (8): APIStatus, Database, ModelContext, NetworkMockData, Options, YouTubeAPI, VideosViewModel, VideosViewModelTests + +### Community 32 - "Community 32" +Cohesion: 0.18 +Nodes (11): CMTime, PodcastChapter, Data, Double, String, ChaptersView, AnalyticsManager, Binding (+3 more) + +### Community 34 - "Community 34" +Cohesion: 0.14 +Nodes (13): BridgeViewController, InteractivePopGestureBridge, Bool, Context, View, ImageLocation, background, chapter (+5 more) + +### Community 35 - "Community 35" +Cohesion: 0.14 +Nodes (11): AnalyticsManager, PushNotification, PermissionManager, AnalyticsManager, Bool, PushNotification, String, OnboardingSheetPreviewHost (+3 more) + +### Community 36 - "Community 36" +Cohesion: 0.17 +Nodes (10): OnboardingScreenTests, News, NewsCategory, NewsLibrary, OnboardingLibrary, PodcastLibrary, SearchLibrary, SettingsLibrary (+2 more) + +### Community 37 - "Community 37" +Cohesion: 0.24 +Nodes (5): RemoteFeedSearchServiceTests, FeedDB, PodcastDB, SearchResult, String + +### Community 38 - "Community 38" +Cohesion: 0.20 +Nodes (10): Text, SettingsView, NewsView, SocialView, MainView, CaseIterable, String, View (+2 more) + +### Community 39 - "Community 39" +Cohesion: 0.18 +Nodes (12): Context, Sendable, WidgetData, WidgetEntry, WatchWidgetProvider, MacMagazineTimelineProvider, Context, Void (+4 more) + +### Community 40 - "Community 40" +Cohesion: 0.20 +Nodes (8): SearchResultMerger, SearchResultMergerProtocol, SearchResult, String, SearchResultMergerTests, Bool, SearchResult, String + +### Community 41 - "Community 41" +Cohesion: 0.11 +Nodes (16): AppDelegate, Any, AnyHashable, Bool, Data, Error, LoggerProtocol, PushNotification (+8 more) + +### Community 42 - "Community 42" +Cohesion: 0.12 +Nodes (12): LinearGradient, CardDensity, CGFloat, Font, Int, GlassCardView, AnalyticsManager, CGFloat (+4 more) + +### Community 43 - "Community 43" +Cohesion: 0.19 +Nodes (4): Data, String, WidgetData, WidgetDataTests + +### Community 44 - "Community 44" +Cohesion: 0.14 +Nodes (13): Social, instagram, podcast, videos, SocialTests, CustomizationDB, Bool, ModelContext (+5 more) + +### Community 45 - "Community 45" +Cohesion: 0.12 +Nodes (13): EnvironmentValues, String, Color, ThemeColor, OnboardingContainerView, Bool, Bool, Namespace (+5 more) + +### Community 46 - "Community 46" +Cohesion: 0.16 +Nodes (13): Array, CardAccessibilityModifier, CardButton, favorite, share, CardLabel, author, date (+5 more) + +### Community 47 - "Community 47" +Cohesion: 0.16 +Nodes (13): Array, CardAccessibilityModifier, CardButton, favorite, share, CardLabel, date, duration (+5 more) + +### Community 48 - "Community 48" +Cohesion: 0.12 +Nodes (15): AboutViewModel, ButtonAction, none, privacy, terms, MailDelegate, Error, String (+7 more) + +### Community 49 - "Community 49" +Cohesion: 0.22 +Nodes (9): LeftIcon, SpeedWheelPicker, Binding, CGFloat, Double, Int, String, Wrapper (+1 more) + +### Community 50 - "Community 50" +Cohesion: 0.19 +Nodes (6): CardContentType, news, podcast, video, NewsCategory, CardContentTypeTests + +### Community 51 - "Community 51" +Cohesion: 0.14 +Nodes (15): ActivityAttributes, ActivityKit, Codable, News, all, appletv, highlights, news (+7 more) + +### Community 52 - "Community 52" +Cohesion: 0.13 +Nodes (11): PushNotification, PushPermissionStatus, authorized, denied, notDetermined, LoggerProtocol, String, OSNotificationClickEvent (+3 more) + +### Community 53 - "Community 53" +Cohesion: 0.14 +Nodes (7): WidgetAccessibility, Widget, WatchWidgetBundle, MacMagazineWidgetBundle, Widget, WidgetBundle, WidgetKit + +### Community 55 - "Community 55" +Cohesion: 0.17 +Nodes (11): CustomizationViewModel, Database, News, CustomSocialView, AnalyticsManager, IndexSet, Int, CustomTabView (+3 more) + +### Community 56 - "Community 56" +Cohesion: 0.20 +Nodes (10): SceneView, PushNotification, MainViewModel, Bool, Database, LoggerProtocol, News, PersistentModel (+2 more) + +### Community 57 - "Community 57" +Cohesion: 0.14 +Nodes (10): Any, AnyHashable, Data, FeedMainViewModel, String, UNNotificationResponse, UNUserNotificationCenter, WatchNotificationsDelegate (+2 more) + +### Community 58 - "Community 58" +Cohesion: 0.16 +Nodes (11): NetworkService, Data, Network, ContentType, news, podcast, video, SortPreference (+3 more) + +### Community 59 - "Community 59" +Cohesion: 0.21 +Nodes (8): RelevanceScorer, SearchResult, Double, SearchResult, String, RelevanceScorerTests, SearchResult, String + +### Community 60 - "Community 60" +Cohesion: 0.24 +Nodes (7): FeedMainViewModel, Bool, CGPoint, FeedDB, Int, ModelContext, String + +### Community 61 - "Community 61" +Cohesion: 0.19 +Nodes (10): CGSize, BackgroundView, Bool, Color, PodcastImageView, Content, Data, FeedRowView (+2 more) + +### Community 62 - "Community 62" +Cohesion: 0.27 +Nodes (10): Edge, ManagedWebView, ManagedWebViewStyle, async, Binding, Bool, MainActor, UUID (+2 more) + +### Community 63 - "Community 63" +Cohesion: 0.19 +Nodes (8): DisqusDataStore, DisqusLoginWebView, DisqusSheet, MainActor, String, Void, WebPage, WKWebsiteDataStore + +### Community 64 - "Community 64" +Cohesion: 0.21 +Nodes (8): Cache, cleanAll, keepFavoritesAndStatus, PostsVisibilityViewModel, Database, PersistentModel, PostsVisibilityView, AnalyticsManager + +### Community 65 - "Community 65" +Cohesion: 0.21 +Nodes (8): FeedDB, String, AccessibilityChildBehavior, String, View, String, URL, WidgetData + +### Community 66 - "Community 66" +Cohesion: 0.26 +Nodes (10): CardButton, CardLabel, AdaptiveBody, AdaptiveVideoCard, MMVideoDBPreview, AnalyticsManager, ModelContext, VideoDB (+2 more) + +### Community 67 - "Community 67" +Cohesion: 0.21 +Nodes (9): Identifiable, OnBoardingFeature, String, FeaturesView, Bool, CGFloat, GridItem, Int (+1 more) + +### Community 68 - "Community 68" +Cohesion: 0.18 +Nodes (10): CardStyle, glass, highlight, leadingImage, NewsCategory, FeedDB, AnalyticsManager, CGFloat (+2 more) + +### Community 69 - "Community 69" +Cohesion: 0.27 +Nodes (8): SearchResultsList, AnalyticsManager, FeedDB, PodcastDB, SearchResult, String, VideoDB, Void + +### Community 70 - "Community 70" +Cohesion: 0.20 +Nodes (8): PushPreferences, all, featured, Bool, PushOptionsViewModel, Database, PushOptionsView, AnalyticsManager + +### Community 71 - "Community 71" +Cohesion: 0.26 +Nodes (8): FeedRowPositionReporter, FeedScrollPositionKey, CGPoint, Content, String, View, View, PreferenceKey + +### Community 72 - "Community 72" +Cohesion: 0.29 +Nodes (5): FeedMainView, FeedDB, FeedMainViewModel, String, Void + +### Community 73 - "Community 73" +Cohesion: 0.44 +Nodes (9): Encodable, Int, String, UserIdentity, UserModel, UserProperties, UserSubscriptions, UserSubscriptionsType (+1 more) + +### Community 74 - "Community 74" +Cohesion: 0.33 +Nodes (10): Header, CollectionViewWithHeader, APIStatus, Binding, Bool, Content, Int, ScrollPosition (+2 more) + +### Community 77 - "Community 77" +Cohesion: 0.18 +Nodes (8): AppTabs, live, news, search, settings, social, AppTabsTests, Bool + +### Community 78 - "Community 78" +Cohesion: 0.18 +Nodes (4): String, MMWebViewUserScripts, WebKit, WKUserScript + +### Community 80 - "Community 80" +Cohesion: 0.40 +Nodes (7): QueryIntent, NewsCategory, Set, String, LocalSearchService, ModelContext, SearchResult + +### Community 81 - "Community 81" +Cohesion: 0.31 +Nodes (8): Content, Options, ToolbarModifier, ToolbarType, compact, normal, View, Menu + +### Community 82 - "Community 82" +Cohesion: 0.22 +Nodes (8): ShortcutManager, ModelContext, String, UIApplicationShortcutItem, Bool, UIApplicationShortcutItem, Void, UIWindowScene + +### Community 83 - "Community 83" +Cohesion: 0.18 +Nodes (11): String, WidgetConfiguration, WatchWidget, MacMagazineWidget, String, WidgetConfiguration, MacMagazineWidgetLiveActivity, WidgetConfiguration (+3 more) + +### Community 84 - "Community 84" +Cohesion: 0.33 +Nodes (6): HeaderWidgetModifier, OverlayHeaderWidgetModifier, CGFloat, Content, String, View + +### Community 85 - "Community 85" +Cohesion: 0.20 +Nodes (9): String, URLClassification, appStore, comments, external, instagram, macmagazinePost, youTube (+1 more) + +### Community 88 - "Community 88" +Cohesion: 0.27 +Nodes (9): FeedHighlightsCarouselView, Layout, Binding, Bool, CGFloat, FeedDB, Int, ScrollPosition (+1 more) + +### Community 89 - "Community 89" +Cohesion: 0.33 +Nodes (5): PortugueseLexicon, Bool, NewsCategory, Set, String + +### Community 90 - "Community 90" +Cohesion: 0.20 +Nodes (9): CGFloat, Image, WidgetData, WidgetElementView, AnalyticsManager, Int, WidgetData, WidgetEntry (+1 more) + +### Community 91 - "Community 91" +Cohesion: 0.28 +Nodes (6): AVKit, Context, SystemVolumeView, MediaPlayer, MPVolumeView, UIViewRepresentable + +### Community 92 - "Community 92" +Cohesion: 0.25 +Nodes (6): Gesture, MiniPlayerView, AnalyticsManager, Color, PodcastDB, String + +### Community 93 - "Community 93" +Cohesion: 0.31 +Nodes (6): NetworkService, Data, Int, Network, NewsCategory, String + +### Community 94 - "Community 94" +Cohesion: 0.33 +Nodes (7): PermissionCard, PermissionCardStatus, denied, granted, notDetermined, String, Void + +### Community 95 - "Community 95" +Cohesion: 0.39 +Nodes (3): CGFloat, UIColor, UIImage + +### Community 96 - "Community 96" +Cohesion: 0.31 +Nodes (6): ReadingPreferencesViewModel, Bool, Database, PersistentModel, ReadingPreferencesView, AnalyticsManager + +### Community 97 - "Community 97" +Cohesion: 0.25 +Nodes (8): LayoutType, sidebar, tabbar, MainView, NavigationState, CaseIterable, NavigationSplitViewVisibility, UserInterfaceSizeClass + +### Community 98 - "Community 98" +Cohesion: 0.32 +Nodes (7): App, MacMagazineApp, Scene, Database, FeedMainViewModel, Scene, WatchApp + +### Community 99 - "Community 99" +Cohesion: 0.36 +Nodes (5): PaginatedForEach, Bool, Content, Element, Int + +### Community 100 - "Community 100" +Cohesion: 0.25 +Nodes (6): DisqusNewWindowHandler, MainActor, Void, WKScriptMessage, WKUserContentController, WKScriptMessageHandler + +### Community 101 - "Community 101" +Cohesion: 0.29 +Nodes (7): String, WebViewStatus, done, error, idle, loading, WebViewStatusOverlay + +### Community 102 - "Community 102" +Cohesion: 0.36 +Nodes (3): Bool, Double, View + +### Community 103 - "Community 103" +Cohesion: 0.32 +Nodes (4): PodcastMiniPlayerModifier, Content, View, ViewModifier + +### Community 104 - "Community 104" +Cohesion: 0.32 +Nodes (5): RemoteFeedSearchService, Database, Int, SearchResult, String + +### Community 105 - "Community 105" +Cohesion: 0.36 +Nodes (5): PlainButtonTextStyle, Color, Content, Font, View + +### Community 106 - "Community 106" +Cohesion: 0.32 +Nodes (7): AnalyticsManager, Binding, Bool, Database, ScrollPosition, String, VideosView + +### Community 107 - "Community 107" +Cohesion: 0.32 +Nodes (6): SceneDelegate, UIScene, UISceneSession, UIResponder, UIWindow, UIWindowSceneDelegate + +### Community 108 - "Community 108" +Cohesion: 0.33 +Nodes (5): Glass, MenuView, Binding, Bool, T + +### Community 109 - "Community 109" +Cohesion: 0.29 +Nodes (5): APIDefinitions, Endpoint, Int, Self, String + +### Community 110 - "Community 110" +Cohesion: 0.29 +Nodes (6): AnalyticsConstants, GenericEvent, newsOrder, socialOrder, tabOrder, String + +### Community 111 - "Community 111" +Cohesion: 0.33 +Nodes (5): MMNavigationDecider, String, Void, WebPage, WKNavigationActionPolicy + +### Community 112 - "Community 112" +Cohesion: 0.29 +Nodes (5): OnboardingFadeModifier, Bool, Content, Double, View + +### Community 113 - "Community 113" +Cohesion: 0.38 +Nodes (5): PodcastDB, AnalyticsManager, Double, ModelContext, String + +### Community 114 - "Community 114" +Cohesion: 0.43 +Nodes (6): ContentSheet, PatronLoginSheet, AnalyticsManager, String, Void, WebPage + +### Community 115 - "Community 115" +Cohesion: 0.38 +Nodes (4): AnalyticsManager, ModelContext, String, VideoDB + +### Community 116 - "Community 116" +Cohesion: 0.43 +Nodes (5): NavigationModifier, Bool, Content, String, View + +### Community 117 - "Community 117" +Cohesion: 0.38 +Nodes (4): FeedDotsIndicatorView, CGFloat, Color, Int + +### Community 118 - "Community 118" +Cohesion: 0.33 +Nodes (4): AccessibilityChildBehavior, String, View, WidgetAccessibility + +### Community 119 - "Community 119" +Cohesion: 0.48 +Nodes (4): SmallWidgetStyleModifier, Content, Image, View + +### Community 120 - "Community 120" +Cohesion: 0.60 +Nodes (5): AnyObject, ModelDuplicable, ModelFavoritable, ModelReadable, PersistentModel + +### Community 121 - "Community 121" +Cohesion: 0.33 +Nodes (6): Hashable, OnboardingScreen, features, permissions, welcome, String + +### Community 122 - "Community 122" +Cohesion: 0.53 +Nodes (4): PushNotificationDefinition, Any, Bool, UIApplication + +### Community 123 - "Community 123" +Cohesion: 0.33 +Nodes (5): UNNotificationResponse, UNUserNotificationCenter, Void, UNNotification, UNNotificationPresentationOptions + +### Community 124 - "Community 124" +Cohesion: 0.47 +Nodes (3): ButtonWithGlassEffect, Content, View + +### Community 125 - "Community 125" +Cohesion: 0.40 +Nodes (3): OnboardingLogoView, CGFloat, CGFloat + +### Community 126 - "Community 126" +Cohesion: 0.33 +Nodes (5): ShortcutActions, none, openLastSeenPost, openMostRecentPost, openSearchPost + +### Community 127 - "Community 127" +Cohesion: 0.40 +Nodes (4): FeedMainViewModel, FeedPreviewHost, Bool, ModelContainer + +### Community 128 - "Community 128" +Cohesion: 0.60 +Nodes (3): FavoriteView, FavoriteShareGlassContainer, ShareView + +### Community 129 - "Community 129" +Cohesion: 0.40 +Nodes (5): Status, done, error, idle, loading + +### Community 130 - "Community 130" +Cohesion: 0.70 +Nodes (4): FavoriteButton, Bool, String, Void + +### Community 131 - "Community 131" +Cohesion: 0.50 +Nodes (4): PreviewData, Bool, FeedDB, String + +### Community 132 - "Community 132" +Cohesion: 0.40 +Nodes (3): Array, Element, Int + +### Community 133 - "Community 133" +Cohesion: 0.40 +Nodes (5): ATTPermissionStatus, authorized, denied, notDetermined, restricted + +### Community 134 - "Community 134" +Cohesion: 0.70 +Nodes (4): OnboardingCTAButton, Bool, String, Void + +### Community 135 - "Community 135" +Cohesion: 0.70 +Nodes (4): OnboardingTitleView, Bool, Double, String + +### Community 136 - "Community 136" +Cohesion: 0.40 +Nodes (5): DeepLinkNewsDetailView, AnalyticsManager, FeedDB, String, Void + +### Community 137 - "Community 137" +Cohesion: 0.40 +Nodes (3): String, WidgetEntry, WatchWidgetEntryView + +### Community 138 - "Community 138" +Cohesion: 0.50 +Nodes (3): FeedDB, ModelContext, PodcastDB + +### Community 141 - "Community 141" +Cohesion: 0.67 +Nodes (3): FeedHighlightCardView, AnalyticsManager, FeedDB + +### Community 142 - "Community 142" +Cohesion: 0.83 +Nodes (3): OnboardingSkipButton, String, Void + +### Community 143 - "Community 143" +Cohesion: 0.83 +Nodes (3): FeedDetailView, FeedDB, FeedMainViewModel + +## Knowledge Gaps +- **265 isolated node(s):** `post-tool-use.sh script`, `stop.sh script`, `$schema`, `Read`, `Grep` (+260 more) + These have ≤1 connection - possible missing edges or undocumented components. +- **26 thin communities (<3 nodes) omitted from report** — run `graphify query` to explore isolated nodes. + +## Suggested Questions +_Questions this graph is uniquely positioned to answer:_ + +- **Why does `Foundation` connect `FeedLibrary Imports` to `Settings & Subscriptions`, `Live Content & Notifications`, `Analytics Library`, `XML Feed Parsing`, `WebView HTML & Disqus`, `Community 139`, `API Endpoints`, `Community 145`, `Card Content & Menus`, `Search ViewModel Tests`, `Community 148`, `Search System`, `Community 23`, `Community 24`, `Community 152`, `Community 28`, `Community 29`, `Community 36`, `Community 40`, `Community 43`, `Community 45`, `Community 53`, `Community 58`, `Community 59`, `Community 63`, `Community 64`, `Community 65`, `Community 68`, `Community 70`, `Community 73`, `Community 78`, `Community 85`, `Community 100`, `Community 109`, `Community 110`, `Community 120`, `Community 126`?** + _High betweenness centrality (0.278) - this node is a cross-community bridge._ +- **Why does `SwiftUI` connect `Analytics Library` to `Community 128`, `Live Content & Notifications`, `Settings & Subscriptions`, `Community 132`, `WebView HTML & Disqus`, `FeedLibrary Imports`, `Community 140`, `API Endpoints`, `Card Content & Menus`, `Community 146`, `Search System`, `Community 149`, `Community 24`, `Community 36`, `Community 45`, `Community 46`, `Community 47`, `Community 49`, `Community 51`, `Community 53`, `Community 67`, `Community 71`, `Community 78`, `Community 81`, `Community 84`, `Community 91`, `Community 94`, `Community 99`, `Community 101`, `Community 102`, `Community 105`, `Community 112`, `Community 117`, `Community 118`, `Community 119`, `Community 124`, `Community 125`?** + _High betweenness centrality (0.157) - this node is a cross-community bridge._ +- **Why does `MacMagazineLibrary` connect `Analytics Library` to `Community 68`, `Community 36`, `FeedLibrary Imports`, `API Endpoints`, `Community 78`, `Community 145`, `Community 148`, `Community 53`, `Community 24`, `Community 89`, `Community 58`, `Community 152`?** + _High betweenness centrality (0.120) - this node is a cross-community bridge._ +- **Are the 68 inferred relationships involving `Database` (e.g. with `.deduplicateHandlesMultipleGroups()` and `.deduplicateKeepsMostRecentlyModified()`) actually correct?** + _`Database` has 68 INFERRED edges - model-reasoned connections that need verification._ +- **What connects `post-tool-use.sh script`, `stop.sh script`, `$schema` to the rest of the system?** + _265 weakly-connected nodes found - possible documentation gaps or missing edges._ +- **Should `Settings & Subscriptions` be split into smaller, more focused modules?** + _Cohesion score 0.050617283950617285 - nodes in this community are weakly interconnected._ +- **Should `Live Content & Notifications` be split into smaller, more focused modules?** + _Cohesion score 0.05411392405063291 - nodes in this community are weakly interconnected._ \ No newline at end of file diff --git a/graphify-out/2026-07-18/cost.json b/graphify-out/2026-07-18/cost.json new file mode 100644 index 00000000..29eb37a3 --- /dev/null +++ b/graphify-out/2026-07-18/cost.json @@ -0,0 +1,12 @@ +{ + "runs": [ + { + "date": "2026-07-11T18:26:19.167349+00:00", + "input_tokens": 0, + "output_tokens": 0, + "files": 376 + } + ], + "total_input_tokens": 0, + "total_output_tokens": 0 +} \ No newline at end of file diff --git a/graphify-out/2026-07-18/graph.json b/graphify-out/2026-07-18/graph.json new file mode 100644 index 00000000..779ca476 --- /dev/null +++ b/graphify-out/2026-07-18/graph.json @@ -0,0 +1,76307 @@ +{ + "directed": false, + "multigraph": false, + "graph": {}, + "nodes": [ + { + "label": "post-tool-use.sh", + "file_type": "code", + "source_file": ".claude/hooks/post-tool-use.sh", + "source_location": "L1", + "metadata": { + "language": "bash", + "kind": "file" + }, + "_origin": "ast", + "id": "claude_hooks_post_tool_use", + "community": 153, + "norm_label": "post-tool-use.sh" + }, + { + "label": "post-tool-use.sh script", + "file_type": "code", + "source_file": ".claude/hooks/post-tool-use.sh", + "source_location": "L1", + "metadata": { + "language": "bash", + "kind": "bash_entrypoint" + }, + "_origin": "ast", + "id": "claude_hooks_post_tool_use_sh__entry", + "community": 153, + "norm_label": "post-tool-use.sh script" + }, + { + "label": "pre-tool-use.sh", + "file_type": "code", + "source_file": ".claude/hooks/pre-tool-use.sh", + "source_location": "L1", + "metadata": { + "language": "bash", + "kind": "file" + }, + "_origin": "ast", + "id": "claude_hooks_pre_tool_use", + "community": 144, + "norm_label": "pre-tool-use.sh" + }, + { + "label": "pre-tool-use.sh script", + "file_type": "code", + "source_file": ".claude/hooks/pre-tool-use.sh", + "source_location": "L1", + "metadata": { + "language": "bash", + "kind": "bash_entrypoint" + }, + "_origin": "ast", + "id": "claude_hooks_pre_tool_use_sh__entry", + "community": 144, + "norm_label": "pre-tool-use.sh script" + }, + { + "label": "block()", + "file_type": "code", + "source_file": ".claude/hooks/pre-tool-use.sh", + "source_location": "L19", + "metadata": { + "language": "bash", + "kind": "bash_function" + }, + "_origin": "ast", + "id": "claude_hooks_pre_tool_use_block", + "community": 144, + "norm_label": "block()" + }, + { + "label": "stop.sh", + "file_type": "code", + "source_file": ".claude/hooks/stop.sh", + "source_location": "L1", + "metadata": { + "language": "bash", + "kind": "file" + }, + "_origin": "ast", + "id": "claude_hooks_stop", + "community": 154, + "norm_label": "stop.sh" + }, + { + "label": "stop.sh script", + "file_type": "code", + "source_file": ".claude/hooks/stop.sh", + "source_location": "L1", + "metadata": { + "language": "bash", + "kind": "bash_entrypoint" + }, + "_origin": "ast", + "id": "claude_hooks_stop_sh__entry", + "community": 154, + "norm_label": "stop.sh script" + }, + { + "label": "settings.json", + "file_type": "code", + "source_file": ".claude/settings.json", + "source_location": "L1", + "_origin": "ast", + "id": "claude_settings", + "community": 6, + "norm_label": "settings.json" + }, + { + "label": "$schema", + "file_type": "code", + "source_file": ".claude/settings.json", + "source_location": "L2", + "_origin": "ast", + "id": "claude_settings_schema", + "community": 6, + "norm_label": "$schema" + }, + { + "label": "permissions", + "file_type": "code", + "source_file": ".claude/settings.json", + "source_location": "L3", + "_origin": "ast", + "id": "claude_settings_permissions", + "community": 6, + "norm_label": "permissions" + }, + { + "label": "allow", + "file_type": "code", + "source_file": ".claude/settings.json", + "source_location": "L4", + "_origin": "ast", + "id": "claude_settings_permissions_allow", + "community": 6, + "norm_label": "allow" + }, + { + "label": "Read", + "file_type": "concept", + "source_file": ".claude/settings.json", + "source_location": "L4", + "_origin": "ast", + "id": "ref_read", + "community": 6, + "norm_label": "read" + }, + { + "label": "Grep", + "file_type": "concept", + "source_file": ".claude/settings.json", + "source_location": "L4", + "_origin": "ast", + "id": "ref_grep", + "community": 6, + "norm_label": "grep" + }, + { + "label": "Glob", + "file_type": "concept", + "source_file": ".claude/settings.json", + "source_location": "L4", + "_origin": "ast", + "id": "ref_glob", + "community": 6, + "norm_label": "glob" + }, + { + "label": "Edit", + "file_type": "concept", + "source_file": ".claude/settings.json", + "source_location": "L4", + "_origin": "ast", + "id": "ref_edit", + "community": 6, + "norm_label": "edit" + }, + { + "label": "Write", + "file_type": "concept", + "source_file": ".claude/settings.json", + "source_location": "L4", + "_origin": "ast", + "id": "ref_write", + "community": 6, + "norm_label": "write" + }, + { + "label": "Bash(xcodebuild:*)", + "file_type": "concept", + "source_file": ".claude/settings.json", + "source_location": "L4", + "_origin": "ast", + "id": "ref_bash_xcodebuild", + "community": 6, + "norm_label": "bash(xcodebuild:*)" + }, + { + "label": "Bash(swiftlint:*)", + "file_type": "concept", + "source_file": ".claude/settings.json", + "source_location": "L4", + "_origin": "ast", + "id": "ref_bash_swiftlint", + "community": 6, + "norm_label": "bash(swiftlint:*)" + }, + { + "label": "Bash(xcrun simctl:*)", + "file_type": "concept", + "source_file": ".claude/settings.json", + "source_location": "L4", + "_origin": "ast", + "id": "ref_bash_xcrun_simctl", + "community": 6, + "norm_label": "bash(xcrun simctl:*)" + }, + { + "label": "Bash(swift build:*)", + "file_type": "concept", + "source_file": ".claude/settings.json", + "source_location": "L4", + "_origin": "ast", + "id": "ref_bash_swift_build", + "community": 6, + "norm_label": "bash(swift build:*)" + }, + { + "label": "Bash(swift test:*)", + "file_type": "concept", + "source_file": ".claude/settings.json", + "source_location": "L4", + "_origin": "ast", + "id": "ref_bash_swift_test", + "community": 6, + "norm_label": "bash(swift test:*)" + }, + { + "label": "Bash(swift package:*)", + "file_type": "concept", + "source_file": ".claude/settings.json", + "source_location": "L4", + "_origin": "ast", + "id": "ref_bash_swift_package", + "community": 6, + "norm_label": "bash(swift package:*)" + }, + { + "label": "Bash(find:*)", + "file_type": "concept", + "source_file": ".claude/settings.json", + "source_location": "L4", + "_origin": "ast", + "id": "ref_bash_find", + "community": 6, + "norm_label": "bash(find:*)" + }, + { + "label": "Bash(./Support/Scripts/*)", + "file_type": "concept", + "source_file": ".claude/settings.json", + "source_location": "L4", + "_origin": "ast", + "id": "ref_bash_support_scripts", + "community": 6, + "norm_label": "bash(./support/scripts/*)" + }, + { + "label": "Bash(git status)", + "file_type": "concept", + "source_file": ".claude/settings.json", + "source_location": "L4", + "_origin": "ast", + "id": "ref_bash_git_status", + "community": 6, + "norm_label": "bash(git status)" + }, + { + "label": "Bash(git diff:*)", + "file_type": "concept", + "source_file": ".claude/settings.json", + "source_location": "L4", + "_origin": "ast", + "id": "ref_bash_git_diff", + "community": 6, + "norm_label": "bash(git diff:*)" + }, + { + "label": "Bash(git log:*)", + "file_type": "concept", + "source_file": ".claude/settings.json", + "source_location": "L4", + "_origin": "ast", + "id": "ref_bash_git_log", + "community": 6, + "norm_label": "bash(git log:*)" + }, + { + "label": "Bash(git add:*)", + "file_type": "concept", + "source_file": ".claude/settings.json", + "source_location": "L4", + "_origin": "ast", + "id": "ref_bash_git_add", + "community": 6, + "norm_label": "bash(git add:*)" + }, + { + "label": "Bash(git commit:*)", + "file_type": "concept", + "source_file": ".claude/settings.json", + "source_location": "L4", + "_origin": "ast", + "id": "ref_bash_git_commit", + "community": 6, + "norm_label": "bash(git commit:*)" + }, + { + "label": "Bash(git push:*)", + "file_type": "concept", + "source_file": ".claude/settings.json", + "source_location": "L4", + "_origin": "ast", + "id": "ref_bash_git_push", + "community": 6, + "norm_label": "bash(git push:*)" + }, + { + "label": "Bash(git switch:*)", + "file_type": "concept", + "source_file": ".claude/settings.json", + "source_location": "L4", + "_origin": "ast", + "id": "ref_bash_git_switch", + "community": 6, + "norm_label": "bash(git switch:*)" + }, + { + "label": "Bash(git checkout:*)", + "file_type": "concept", + "source_file": ".claude/settings.json", + "source_location": "L4", + "_origin": "ast", + "id": "ref_bash_git_checkout", + "community": 6, + "norm_label": "bash(git checkout:*)" + }, + { + "label": "Bash(gh issue:*)", + "file_type": "concept", + "source_file": ".claude/settings.json", + "source_location": "L4", + "_origin": "ast", + "id": "ref_bash_gh_issue", + "community": 6, + "norm_label": "bash(gh issue:*)" + }, + { + "label": "Bash(gh pr:*)", + "file_type": "concept", + "source_file": ".claude/settings.json", + "source_location": "L4", + "_origin": "ast", + "id": "ref_bash_gh_pr", + "community": 6, + "norm_label": "bash(gh pr:*)" + }, + { + "label": "Bash(gh repo:*)", + "file_type": "concept", + "source_file": ".claude/settings.json", + "source_location": "L4", + "_origin": "ast", + "id": "ref_bash_gh_repo", + "community": 6, + "norm_label": "bash(gh repo:*)" + }, + { + "label": "Bash(gh api:*)", + "file_type": "concept", + "source_file": ".claude/settings.json", + "source_location": "L4", + "_origin": "ast", + "id": "ref_bash_gh_api", + "community": 6, + "norm_label": "bash(gh api:*)" + }, + { + "label": "ask", + "file_type": "code", + "source_file": ".claude/settings.json", + "source_location": "L31", + "_origin": "ast", + "id": "claude_settings_permissions_ask", + "community": 6, + "norm_label": "ask" + }, + { + "label": "Write(./**/*.xcodeproj/**)", + "file_type": "concept", + "source_file": ".claude/settings.json", + "source_location": "L31", + "_origin": "ast", + "id": "ref_write_xcodeproj", + "community": 6, + "norm_label": "write(./**/*.xcodeproj/**)" + }, + { + "label": "Edit(./**/*.xcodeproj/**)", + "file_type": "concept", + "source_file": ".claude/settings.json", + "source_location": "L31", + "_origin": "ast", + "id": "ref_edit_xcodeproj", + "community": 6, + "norm_label": "edit(./**/*.xcodeproj/**)" + }, + { + "label": "deny", + "file_type": "code", + "source_file": ".claude/settings.json", + "source_location": "L35", + "_origin": "ast", + "id": "claude_settings_permissions_deny", + "community": 6, + "norm_label": "deny" + }, + { + "label": "Read(./.env)", + "file_type": "concept", + "source_file": ".claude/settings.json", + "source_location": "L35", + "_origin": "ast", + "id": "ref_read_env", + "community": 6, + "norm_label": "read(./.env)" + }, + { + "label": "Read(./**/*.xcconfig)", + "file_type": "concept", + "source_file": ".claude/settings.json", + "source_location": "L35", + "_origin": "ast", + "id": "ref_read_xcconfig", + "community": 6, + "norm_label": "read(./**/*.xcconfig)" + }, + { + "label": "Read(./**/GoogleService-Info.plist)", + "file_type": "concept", + "source_file": ".claude/settings.json", + "source_location": "L35", + "_origin": "ast", + "id": "ref_read_googleservice_info_plist", + "community": 6, + "norm_label": "read(./**/googleservice-info.plist)" + }, + { + "label": "Read(./**/*.p8)", + "file_type": "concept", + "source_file": ".claude/settings.json", + "source_location": "L35", + "_origin": "ast", + "id": "ref_read_p8", + "community": 6, + "norm_label": "read(./**/*.p8)" + }, + { + "label": "Read(./**/*.p12)", + "file_type": "concept", + "source_file": ".claude/settings.json", + "source_location": "L35", + "_origin": "ast", + "id": "ref_read_p12", + "community": 6, + "norm_label": "read(./**/*.p12)" + }, + { + "label": "Read(./**/*.mobileprovision)", + "file_type": "concept", + "source_file": ".claude/settings.json", + "source_location": "L35", + "_origin": "ast", + "id": "ref_read_mobileprovision", + "community": 6, + "norm_label": "read(./**/*.mobileprovision)" + }, + { + "label": "Read(./.git/**)", + "file_type": "concept", + "source_file": ".claude/settings.json", + "source_location": "L35", + "_origin": "ast", + "id": "ref_read_git", + "community": 6, + "norm_label": "read(./.git/**)" + }, + { + "label": "Bash(rm -rf:*)", + "file_type": "concept", + "source_file": ".claude/settings.json", + "source_location": "L35", + "_origin": "ast", + "id": "ref_bash_rm_rf", + "community": 6, + "norm_label": "bash(rm -rf:*)" + }, + { + "label": "Bash(sudo:*)", + "file_type": "concept", + "source_file": ".claude/settings.json", + "source_location": "L35", + "_origin": "ast", + "id": "ref_bash_sudo", + "community": 6, + "norm_label": "bash(sudo:*)" + }, + { + "label": "Bash(git push --force:*)", + "file_type": "concept", + "source_file": ".claude/settings.json", + "source_location": "L35", + "_origin": "ast", + "id": "ref_bash_git_push_force", + "community": 6, + "norm_label": "bash(git push --force:*)" + }, + { + "label": "Bash(git push -f:*)", + "file_type": "concept", + "source_file": ".claude/settings.json", + "source_location": "L35", + "_origin": "ast", + "id": "ref_bash_git_push_f", + "community": 6, + "norm_label": "bash(git push -f:*)" + }, + { + "label": "Bash(git reset --hard:*)", + "file_type": "concept", + "source_file": ".claude/settings.json", + "source_location": "L35", + "_origin": "ast", + "id": "ref_bash_git_reset_hard", + "community": 6, + "norm_label": "bash(git reset --hard:*)" + }, + { + "label": "hooks", + "file_type": "code", + "source_file": ".claude/settings.json", + "source_location": "L51", + "_origin": "ast", + "id": "claude_settings_hooks", + "community": 6, + "norm_label": "hooks" + }, + { + "label": "PreToolUse", + "file_type": "code", + "source_file": ".claude/settings.json", + "source_location": "L52", + "_origin": "ast", + "id": "claude_settings_hooks_pretooluse", + "community": 6, + "norm_label": "pretooluse" + }, + { + "label": "PostToolUse", + "file_type": "code", + "source_file": ".claude/settings.json", + "source_location": "L81", + "_origin": "ast", + "id": "claude_settings_hooks_posttooluse", + "community": 6, + "norm_label": "posttooluse" + }, + { + "label": "Stop", + "file_type": "code", + "source_file": ".claude/settings.json", + "source_location": "L92", + "_origin": "ast", + "id": "claude_settings_hooks_stop", + "community": 6, + "norm_label": "stop" + }, + { + "label": "Package.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Package.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_package", + "community": 75, + "norm_label": "package.swift" + }, + { + "label": "PackageDescription", + "file_type": "code", + "type": "module", + "source_file": "MacMagazine/Features/VideosLibrary/Package.swift", + "source_location": "L4", + "_origin": "ast", + "id": "packagedescription", + "community": 75, + "norm_label": "packagedescription" + }, + { + "label": "FeedDB.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Database/FeedDB.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_sources_feedlibrary_database_feeddb", + "community": 53, + "norm_label": "feeddb.swift" + }, + { + "label": "Foundation", + "file_type": "code", + "type": "module", + "source_file": "MacMagazine/Widget/Timeline/WidgetEntry.swift", + "source_location": "L2", + "_origin": "ast", + "id": "foundation", + "community": 9, + "norm_label": "foundation" + }, + { + "label": "MacMagazineLibrary", + "file_type": "code", + "type": "module", + "source_file": "MacMagazine/Widget/Views/WidgetView.swift", + "source_location": "L3", + "_origin": "ast", + "id": "macmagazinelibrary", + "community": 2, + "norm_label": "macmagazinelibrary" + }, + { + "label": "SwiftData", + "file_type": "code", + "type": "module", + "source_file": "MacMagazine/WatchApp/Views/FeedMainView.swift", + "source_location": "L3", + "_origin": "ast", + "id": "swiftdata", + "community": 14, + "norm_label": "swiftdata" + }, + { + "label": "WidgetKit", + "file_type": "code", + "type": "module", + "source_file": "MacMagazine/Widget/Views/WidgetView.swift", + "source_location": "L5", + "_origin": "ast", + "id": "widgetkit", + "community": 53, + "norm_label": "widgetkit" + }, + { + "label": "FeedDB", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Database/FeedDB.swift", + "source_location": "L6", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_sources_feedlibrary_database_feeddb_feeddb", + "community": 13, + "norm_label": "feeddb" + }, + { + "label": "String", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_sources_feedlibrary_database_feeddb_swift_string", + "community": 13, + "norm_label": "string" + }, + { + "label": "Bool", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_sources_feedlibrary_database_feeddb_swift_bool", + "community": 13, + "norm_label": "bool" + }, + { + "label": ".init()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Database/FeedDB.swift", + "source_location": "L22", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_sources_feedlibrary_database_feeddb_feeddb_init", + "community": 13, + "norm_label": ".init()" + }, + { + "label": ".lastSeen()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Database/FeedDB.swift", + "source_location": "L54", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_sources_feedlibrary_database_feeddb_feeddb_lastseen", + "community": 13, + "norm_label": ".lastseen()" + }, + { + "label": "ModelContext", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_sources_feedlibrary_database_feeddb_swift_modelcontext", + "community": 13, + "norm_label": "modelcontext" + }, + { + "label": ".mostRecent()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Database/FeedDB.swift", + "source_location": "L62", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_sources_feedlibrary_database_feeddb_feeddb_mostrecent", + "community": 13, + "norm_label": ".mostrecent()" + }, + { + "label": ".deleteNonFavorites()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Database/FeedDB.swift", + "source_location": "L71", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_sources_feedlibrary_database_feeddb_feeddb_deletenonfavorites", + "community": 13, + "norm_label": ".deletenonfavorites()" + }, + { + "label": ".markAllAsRead()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Database/FeedDB.swift", + "source_location": "L81", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_sources_feedlibrary_database_feeddb_feeddb_markallasread", + "community": 13, + "norm_label": ".markallasread()" + }, + { + "label": ".deduplicate()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Database/FeedDB.swift", + "source_location": "L94", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_sources_feedlibrary_database_feeddb_feeddb_deduplicate", + "community": 13, + "norm_label": ".deduplicate()" + }, + { + "label": "PodcastDB.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Database/PodcastDB.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_sources_feedlibrary_database_podcastdb", + "community": 14, + "norm_label": "podcastdb.swift" + }, + { + "label": "PodcastDB", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Database/PodcastDB.swift", + "source_location": "L5", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_sources_feedlibrary_database_podcastdb_podcastdb", + "community": 16, + "norm_label": "podcastdb" + }, + { + "label": "String", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_sources_feedlibrary_database_podcastdb_swift_string", + "community": 16, + "norm_label": "string" + }, + { + "label": "Double", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_sources_feedlibrary_database_podcastdb_swift_double", + "community": 16, + "norm_label": "double" + }, + { + "label": "Bool", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_sources_feedlibrary_database_podcastdb_swift_bool", + "community": 16, + "norm_label": "bool" + }, + { + "label": ".init()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Database/PodcastDB.swift", + "source_location": "L22", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_sources_feedlibrary_database_podcastdb_podcastdb_init", + "community": 16, + "norm_label": ".init()" + }, + { + "label": ".deleteNonFavorites()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Database/PodcastDB.swift", + "source_location": "L56", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_sources_feedlibrary_database_podcastdb_podcastdb_deletenonfavorites", + "community": 16, + "norm_label": ".deletenonfavorites()" + }, + { + "label": "ModelContext", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_sources_feedlibrary_database_podcastdb_swift_modelcontext", + "community": 16, + "norm_label": "modelcontext" + }, + { + "label": ".deduplicate()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Database/PodcastDB.swift", + "source_location": "L66", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_sources_feedlibrary_database_podcastdb_podcastdb_deduplicate", + "community": 16, + "norm_label": ".deduplicate()" + }, + { + "label": "StringExtensions.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Extensions/StringExtensions.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_sources_feedlibrary_extensions_stringextensions", + "community": 9, + "norm_label": "stringextensions.swift" + }, + { + "label": "String", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Extensions/StringExtensions.swift", + "source_location": "L3", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_sources_feedlibrary_extensions_stringextensions_string", + "community": 9, + "norm_label": "string" + }, + { + "label": "NewsCategoryExtensions.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Models/NewsCategoryExtensions.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_sources_feedlibrary_models_newscategoryextensions", + "community": 145, + "norm_label": "newscategoryextensions.swift" + }, + { + "label": "NewsCategory", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Models/NewsCategoryExtensions.swift", + "source_location": "L4", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_sources_feedlibrary_models_newscategoryextensions_newscategory", + "community": 145, + "norm_label": "newscategory" + }, + { + "label": "String", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_sources_feedlibrary_models_newscategoryextensions_swift_string", + "community": 145, + "norm_label": "string" + }, + { + "label": "WidgetData.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Models/WidgetData.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_sources_feedlibrary_models_widgetdata", + "community": 43, + "norm_label": "widgetdata.swift" + }, + { + "label": "WidgetData", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Models/WidgetData.swift", + "source_location": "L3", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_sources_feedlibrary_models_widgetdata_widgetdata", + "community": 43, + "norm_label": "widgetdata" + }, + { + "label": "Codable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "codable", + "community": 51, + "norm_label": "codable" + }, + { + "label": "Hashable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "hashable", + "community": 121, + "norm_label": "hashable" + }, + { + "label": "String", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_sources_feedlibrary_models_widgetdata_swift_string", + "community": 43, + "norm_label": "string" + }, + { + "label": "Data", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_sources_feedlibrary_models_widgetdata_swift_data", + "community": 43, + "norm_label": "data" + }, + { + "label": ".init()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Models/WidgetData.swift", + "source_location": "L11", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_sources_feedlibrary_models_widgetdata_widgetdata_init", + "community": 43, + "norm_label": ".init()" + }, + { + "label": "FeedEndpoint.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/FeedEndpoint.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_sources_feedlibrary_services_feedendpoint", + "community": 109, + "norm_label": "feedendpoint.swift" + }, + { + "label": "NetworkLibrary", + "file_type": "code", + "type": "module", + "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/VideosViewModel.swift", + "source_location": "L2", + "_origin": "ast", + "id": "networklibrary", + "community": 14, + "norm_label": "networklibrary" + }, + { + "label": "APIDefinitions", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/FeedEndpoint.swift", + "source_location": "L4", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_sources_feedlibrary_services_feedendpoint_apidefinitions", + "community": 109, + "norm_label": "apidefinitions" + }, + { + "label": "Endpoint", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/FeedEndpoint.swift", + "source_location": "L21", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_sources_feedlibrary_services_feedendpoint_endpoint", + "community": 109, + "norm_label": "endpoint" + }, + { + "label": ".posts()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/FeedEndpoint.swift", + "source_location": "L22", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_sources_feedlibrary_services_feedendpoint_endpoint_posts", + "community": 109, + "norm_label": ".posts()" + }, + { + "label": "Int", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_sources_feedlibrary_services_feedendpoint_swift_int", + "community": 109, + "norm_label": "int" + }, + { + "label": "String", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_sources_feedlibrary_services_feedendpoint_swift_string", + "community": 109, + "norm_label": "string" + }, + { + "label": "Self", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_sources_feedlibrary_services_feedendpoint_swift_self", + "community": 109, + "norm_label": "self" + }, + { + "label": "NetworkService.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/NetworkService.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_sources_feedlibrary_services_networkservice", + "community": 14, + "norm_label": "networkservice.swift" + }, + { + "label": "NetworkService", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/NetworkService.swift", + "source_location": "L5", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_sources_feedlibrary_services_networkservice_networkservice", + "community": 93, + "norm_label": "networkservice" + }, + { + "label": "Sendable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "sendable", + "community": 58, + "norm_label": "sendable" + }, + { + "label": "Network", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_sources_feedlibrary_services_networkservice_swift_network", + "community": 93, + "norm_label": "network" + }, + { + "label": ".init()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/NetworkService.swift", + "source_location": "L8", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_sources_feedlibrary_services_networkservice_networkservice_init", + "community": 93, + "norm_label": ".init()" + }, + { + "label": ".fetch()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/NetworkService.swift", + "source_location": "L14", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_sources_feedlibrary_services_networkservice_networkservice_fetch", + "community": 93, + "norm_label": ".fetch()" + }, + { + "label": "NewsCategory", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_sources_feedlibrary_services_networkservice_swift_newscategory", + "community": 93, + "norm_label": "newscategory" + }, + { + "label": "Int", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_sources_feedlibrary_services_networkservice_swift_int", + "community": 93, + "norm_label": "int" + }, + { + "label": "Data", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_sources_feedlibrary_services_networkservice_swift_data", + "community": 93, + "norm_label": "data" + }, + { + "label": ".search()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/NetworkService.swift", + "source_location": "L23", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_sources_feedlibrary_services_networkservice_networkservice_search", + "community": 93, + "norm_label": ".search()" + }, + { + "label": "String", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_sources_feedlibrary_services_networkservice_swift_string", + "community": 93, + "norm_label": "string" + }, + { + "label": "APIXMLParser.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/Parser/APIXMLParser.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_apixmlparser", + "community": 4, + "norm_label": "apixmlparser.swift" + }, + { + "label": "APIXMLParser", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/Parser/APIXMLParser.swift", + "source_location": "L3", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_apixmlparser_apixmlparser", + "community": 4, + "norm_label": "apixmlparser" + }, + { + "label": "NSObject", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "nsobject", + "community": 48, + "norm_label": "nsobject" + }, + { + "label": "XMLParserDelegate", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "xmlparserdelegate", + "community": 4, + "norm_label": "xmlparserdelegate" + }, + { + "label": "Int", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_apixmlparser_swift_int", + "community": 4, + "norm_label": "int" + }, + { + "label": "String", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_apixmlparser_swift_string", + "community": 4, + "norm_label": "string" + }, + { + "label": "Bool", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_apixmlparser_swift_bool", + "community": 4, + "norm_label": "bool" + }, + { + "label": "CheckedContinuation", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_apixmlparser_swift_checkedcontinuation", + "community": 4, + "norm_label": "checkedcontinuation" + }, + { + "label": "Error", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_apixmlparser_swift_error", + "community": 4, + "norm_label": "error" + }, + { + "label": ".init()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/Parser/APIXMLParser.swift", + "source_location": "L23", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_apixmlparser_apixmlparser_init", + "community": 4, + "norm_label": ".init()" + }, + { + "label": ".parser()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/Parser/APIXMLParser.swift", + "source_location": "L35", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_apixmlparser_apixmlparser_parser", + "community": 4, + "norm_label": ".parser()" + }, + { + "label": "XMLParser", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "xmlparser", + "community": 4, + "norm_label": "xmlparser" + }, + { + "label": ".parserDidEndDocument()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/Parser/APIXMLParser.swift", + "source_location": "L127", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_apixmlparser_apixmlparser_parserdidenddocument", + "community": 4, + "norm_label": ".parserdidenddocument()" + }, + { + "label": "DateParser.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/Parser/DateParser.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_dateparser", + "community": 4, + "norm_label": "dateparser.swift" + }, + { + "label": "DateParser", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/Parser/DateParser.swift", + "source_location": "L3", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_dateparser_dateparser", + "community": 4, + "norm_label": "dateparser" + }, + { + "label": "DateFormatter", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "dateformatter", + "community": 4, + "norm_label": "dateformatter" + }, + { + "label": ".parse()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/Parser/DateParser.swift", + "source_location": "L12", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_dateparser_dateparser_parse", + "community": 4, + "norm_label": ".parse()" + }, + { + "label": "String", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_dateparser_swift_string", + "community": 4, + "norm_label": "string" + }, + { + "label": "XMLPost.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/Parser/XMLPost.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_xmlpost", + "community": 4, + "norm_label": "xmlpost.swift" + }, + { + "label": "XMLPost", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/Parser/XMLPost.swift", + "source_location": "L3", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_xmlpost_xmlpost", + "community": 4, + "norm_label": "xmlpost" + }, + { + "label": "String", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_xmlpost_swift_string", + "community": 4, + "norm_label": "string" + }, + { + "label": "Double", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_xmlpost_swift_double", + "community": 4, + "norm_label": "double" + }, + { + "label": "Bool", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_xmlpost_swift_bool", + "community": 4, + "norm_label": "bool" + }, + { + "label": "Array", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/Parser/XMLPost.swift", + "source_location": "L23", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_xmlpost_array", + "community": 4, + "norm_label": "array" + }, + { + "label": "FeedDB", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_xmlpost_swift_feeddb", + "community": 4, + "norm_label": "feeddb" + }, + { + "label": "PodcastDB", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_xmlpost_swift_podcastdb", + "community": 4, + "norm_label": "podcastdb" + }, + { + "label": "WidgetData", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_xmlpost_swift_widgetdata", + "community": 4, + "norm_label": "widgetdata" + }, + { + "label": "StorageService.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/StorageService.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice", + "community": 14, + "norm_label": "storageservice.swift" + }, + { + "label": "StorageLibrary", + "file_type": "code", + "type": "module", + "source_file": "MacMagazine/Widget/Timeline/MacMagazineTimelineProvider.swift", + "source_location": "L2", + "_origin": "ast", + "id": "storagelibrary", + "community": 14, + "norm_label": "storagelibrary" + }, + { + "label": "Database", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/StorageService.swift", + "source_location": "L8", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database", + "community": 33, + "norm_label": "database" + }, + { + "label": ".save()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/StorageService.swift", + "source_location": "L9", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database_save", + "community": 138, + "norm_label": ".save()" + }, + { + "label": "FeedDB", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_swift_feeddb", + "community": 138, + "norm_label": "feeddb" + }, + { + "label": "ModelContext", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_swift_modelcontext", + "community": 138, + "norm_label": "modelcontext" + }, + { + "label": "PodcastDB", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_swift_podcastdb", + "community": 138, + "norm_label": "podcastdb" + }, + { + "label": "FeedViewModel.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel", + "community": 14, + "norm_label": "feedviewmodel.swift" + }, + { + "label": "FeedViewModel", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", + "source_location": "L7", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel", + "community": 8, + "norm_label": "feedviewmodel" + }, + { + "label": "Status", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "status", + "community": 8, + "norm_label": "status" + }, + { + "label": "Status", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", + "source_location": "L11", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_status", + "community": 129, + "norm_label": "status" + }, + { + "label": "idle", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", + "source_location": "L12", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_status_idle", + "community": 129, + "norm_label": "idle" + }, + { + "label": "loading", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", + "source_location": "L13", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_status_loading", + "community": 129, + "norm_label": "loading" + }, + { + "label": "done", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", + "source_location": "L14", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_status_done", + "community": 129, + "norm_label": "done" + }, + { + "label": "error", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", + "source_location": "L15", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_status_error", + "community": 129, + "norm_label": "error" + }, + { + "label": "String", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_swift_string", + "community": 8, + "norm_label": "string" + }, + { + "label": "Database", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_swift_database", + "community": 8, + "norm_label": "database" + }, + { + "label": "NetworkService", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_swift_networkservice", + "community": 8, + "norm_label": "networkservice" + }, + { + "label": "ModelContext", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_swift_modelcontext", + "community": 8, + "norm_label": "modelcontext" + }, + { + "label": ".init()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", + "source_location": "L32", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_init", + "community": 8, + "norm_label": ".init()" + }, + { + "label": "Network", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_swift_network", + "community": 8, + "norm_label": "network" + }, + { + "label": ".getFeed()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", + "source_location": "L40", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_getfeed", + "community": 8, + "norm_label": ".getfeed()" + }, + { + "label": "Int", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_swift_int", + "community": 8, + "norm_label": "int" + }, + { + "label": ".getWidgetData()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", + "source_location": "L61", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_getwidgetdata", + "community": 8, + "norm_label": ".getwidgetdata()" + }, + { + "label": "WidgetData", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_swift_widgetdata", + "community": 8, + "norm_label": "widgetdata" + }, + { + "label": ".getPodcast()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", + "source_location": "L71", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_getpodcast", + "community": 8, + "norm_label": ".getpodcast()" + }, + { + "label": ".getWatchFeed()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", + "source_location": "L83", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_getwatchfeed", + "community": 8, + "norm_label": ".getwatchfeed()" + }, + { + "label": "FeedDB", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_swift_feeddb", + "community": 8, + "norm_label": "feeddb" + }, + { + "label": ".search()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", + "source_location": "L102", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_search", + "community": 8, + "norm_label": ".search()" + }, + { + "label": "PodcastDB", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_swift_podcastdb", + "community": 8, + "norm_label": "podcastdb" + }, + { + "label": ".fetch()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", + "source_location": "L120", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_fetch", + "community": 8, + "norm_label": ".fetch()" + }, + { + "label": "NewsCategory", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_swift_newscategory", + "community": 8, + "norm_label": "newscategory" + }, + { + "label": "Bool", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_swift_bool", + "community": 8, + "norm_label": "bool" + }, + { + "label": ".parse()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", + "source_location": "L143", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_parse", + "community": 8, + "norm_label": ".parse()" + }, + { + "label": "Data", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_swift_data", + "community": 8, + "norm_label": "data" + }, + { + "label": "CheckedContinuation", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_swift_checkedcontinuation", + "community": 8, + "norm_label": "checkedcontinuation" + }, + { + "label": "Error", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_swift_error", + "community": 8, + "norm_label": "error" + }, + { + "label": "CategoryTests.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/CategoryTests.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_categorytests", + "community": 9, + "norm_label": "categorytests.swift" + }, + { + "label": "FeedLibrary", + "file_type": "code", + "type": "module", + "source_file": "MacMagazine/Widget/Views/WidgetView.swift", + "source_location": "L2", + "_origin": "ast", + "id": "feedlibrary", + "community": 9, + "norm_label": "feedlibrary" + }, + { + "label": "Testing", + "file_type": "code", + "type": "module", + "source_file": "MacMagazine/Features/VideosLibrary/Tests/VideosLibraryTests/VideosViewModelTests.swift", + "source_location": "L3", + "_origin": "ast", + "id": "testing", + "community": 9, + "norm_label": "testing" + }, + { + "label": "CategoryTests", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/CategoryTests.swift", + "source_location": "L5", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_categorytests_categorytests", + "community": 54, + "norm_label": "categorytests" + }, + { + "label": ".highlightsCategoryQuery()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/CategoryTests.swift", + "source_location": "L10", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_categorytests_categorytests_highlightscategoryquery", + "community": 54, + "norm_label": ".highlightscategoryquery()" + }, + { + "label": ".newsCategoryQuery()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/CategoryTests.swift", + "source_location": "L24", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_categorytests_categorytests_newscategoryquery", + "community": 54, + "norm_label": ".newscategoryquery()" + }, + { + "label": ".allCategoryQuery()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/CategoryTests.swift", + "source_location": "L36", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_categorytests_categorytests_allcategoryquery", + "community": 54, + "norm_label": ".allcategoryquery()" + }, + { + "label": ".podcastCategoryQuery()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/CategoryTests.swift", + "source_location": "L48", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_categorytests_categorytests_podcastcategoryquery", + "community": 54, + "norm_label": ".podcastcategoryquery()" + }, + { + "label": ".youTubeCategoryQuery()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/CategoryTests.swift", + "source_location": "L62", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_categorytests_categorytests_youtubecategoryquery", + "community": 54, + "norm_label": ".youtubecategoryquery()" + }, + { + "label": ".appleTVCategoryQuery()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/CategoryTests.swift", + "source_location": "L76", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_categorytests_categorytests_appletvcategoryquery", + "community": 54, + "norm_label": ".appletvcategoryquery()" + }, + { + "label": ".reviewsCategoryQuery()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/CategoryTests.swift", + "source_location": "L90", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_categorytests_categorytests_reviewscategoryquery", + "community": 54, + "norm_label": ".reviewscategoryquery()" + }, + { + "label": ".tutoriaisCategoryQuery()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/CategoryTests.swift", + "source_location": "L104", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_categorytests_categorytests_tutoriaiscategoryquery", + "community": 54, + "norm_label": ".tutoriaiscategoryquery()" + }, + { + "label": ".rumorsCategoryQuery()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/CategoryTests.swift", + "source_location": "L118", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_categorytests_categorytests_rumorscategoryquery", + "community": 54, + "norm_label": ".rumorscategoryquery()" + }, + { + "label": ".categoryRawValues()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/CategoryTests.swift", + "source_location": "L134", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_categorytests_categorytests_categoryrawvalues", + "community": 54, + "norm_label": ".categoryrawvalues()" + }, + { + "label": ".categoryAllCases()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/CategoryTests.swift", + "source_location": "L149", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_categorytests_categorytests_categoryallcases", + "community": 54, + "norm_label": ".categoryallcases()" + }, + { + "label": ".categoryIsSendable()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/CategoryTests.swift", + "source_location": "L166", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_categorytests_categorytests_categoryissendable", + "community": 54, + "norm_label": ".categoryissendable()" + }, + { + "label": ".sendCategory()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/CategoryTests.swift", + "source_location": "L173", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_categorytests_categorytests_sendcategory", + "community": 54, + "norm_label": ".sendcategory()" + }, + { + "label": "NewsCategory", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_categorytests_swift_newscategory", + "community": 54, + "norm_label": "newscategory" + }, + { + "label": "DateParserTests.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/DateParserTests.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_dateparsertests", + "community": 9, + "norm_label": "dateparsertests.swift" + }, + { + "label": "DateParserTests", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/DateParserTests.swift", + "source_location": "L5", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_dateparsertests_dateparsertests", + "community": 4, + "norm_label": "dateparsertests" + }, + { + "label": ".parseValidRSSDate()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/DateParserTests.swift", + "source_location": "L10", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_dateparsertests_dateparsertests_parsevalidrssdate", + "community": 4, + "norm_label": ".parsevalidrssdate()" + }, + { + "label": ".parseDifferentDays()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/DateParserTests.swift", + "source_location": "L28", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_dateparsertests_dateparsertests_parsedifferentdays", + "community": 4, + "norm_label": ".parsedifferentdays()" + }, + { + "label": ".parseDifferentMonths()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/DateParserTests.swift", + "source_location": "L50", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_dateparsertests_dateparsertests_parsedifferentmonths", + "community": 4, + "norm_label": ".parsedifferentmonths()" + }, + { + "label": ".parseMidnight()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/DateParserTests.swift", + "source_location": "L77", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_dateparsertests_dateparsertests_parsemidnight", + "community": 4, + "norm_label": ".parsemidnight()" + }, + { + "label": ".parseEndOfDay()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/DateParserTests.swift", + "source_location": "L92", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_dateparsertests_dateparsertests_parseendofday", + "community": 4, + "norm_label": ".parseendofday()" + }, + { + "label": ".parseSingleDigitDay()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/DateParserTests.swift", + "source_location": "L107", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_dateparsertests_dateparsertests_parsesingledigitday", + "community": 4, + "norm_label": ".parsesingledigitday()" + }, + { + "label": ".parseDoubleDigitDay()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/DateParserTests.swift", + "source_location": "L120", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_dateparsertests_dateparsertests_parsedoubledigitday", + "community": 4, + "norm_label": ".parsedoubledigitday()" + }, + { + "label": ".returnCurrentDateForInvalidFormat()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/DateParserTests.swift", + "source_location": "L133", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_dateparsertests_dateparsertests_returncurrentdateforinvalidformat", + "community": 4, + "norm_label": ".returncurrentdateforinvalidformat()" + }, + { + "label": ".returnCurrentDateForEmptyString()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/DateParserTests.swift", + "source_location": "L146", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_dateparsertests_dateparsertests_returncurrentdateforemptystring", + "community": 4, + "norm_label": ".returncurrentdateforemptystring()" + }, + { + "label": ".returnCurrentDateForPartialString()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/DateParserTests.swift", + "source_location": "L158", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_dateparsertests_dateparsertests_returncurrentdateforpartialstring", + "community": 4, + "norm_label": ".returncurrentdateforpartialstring()" + }, + { + "label": ".parseDifferentYears()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/DateParserTests.swift", + "source_location": "L170", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_dateparsertests_dateparsertests_parsedifferentyears", + "community": 4, + "norm_label": ".parsedifferentyears()" + }, + { + "label": ".parseLeapYearDate()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/DateParserTests.swift", + "source_location": "L185", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_dateparsertests_dateparsertests_parseleapyeardate", + "community": 4, + "norm_label": ".parseleapyeardate()" + }, + { + "label": ".consistentParsing()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/DateParserTests.swift", + "source_location": "L200", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_dateparsertests_dateparsertests_consistentparsing", + "community": 4, + "norm_label": ".consistentparsing()" + }, + { + "label": ".parseFarPastDate()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/DateParserTests.swift", + "source_location": "L212", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_dateparsertests_dateparsertests_parsefarpastdate", + "community": 4, + "norm_label": ".parsefarpastdate()" + }, + { + "label": ".parseFarFutureDate()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/DateParserTests.swift", + "source_location": "L225", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_dateparsertests_dateparsertests_parsefarfuturedate", + "community": 4, + "norm_label": ".parsefarfuturedate()" + }, + { + "label": "FeedDBTests.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedDBTests.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests", + "community": 9, + "norm_label": "feeddbtests.swift" + }, + { + "label": "FeedDBTests", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedDBTests.swift", + "source_location": "L7", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests", + "community": 13, + "norm_label": "feeddbtests" + }, + { + "label": ".initializationWithAllProperties()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedDBTests.swift", + "source_location": "L13", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests_initializationwithallproperties", + "community": 13, + "norm_label": ".initializationwithallproperties()" + }, + { + "label": ".initializationWithDefaults()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedDBTests.swift", + "source_location": "L54", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests_initializationwithdefaults", + "community": 13, + "norm_label": ".initializationwithdefaults()" + }, + { + "label": ".initializationWithEmptyStrings()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedDBTests.swift", + "source_location": "L71", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests_initializationwithemptystrings", + "community": 13, + "norm_label": ".initializationwithemptystrings()" + }, + { + "label": ".initializationWithEmptyCategories()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedDBTests.swift", + "source_location": "L94", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests_initializationwithemptycategories", + "community": 13, + "norm_label": ".initializationwithemptycategories()" + }, + { + "label": ".initializationWithMultipleCategories()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedDBTests.swift", + "source_location": "L103", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests_initializationwithmultiplecategories", + "community": 13, + "norm_label": ".initializationwithmultiplecategories()" + }, + { + "label": ".propertiesAreMutable()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedDBTests.swift", + "source_location": "L118", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests_propertiesaremutable", + "community": 13, + "norm_label": ".propertiesaremutable()" + }, + { + "label": ".handlesSpecialCharacters()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedDBTests.swift", + "source_location": "L134", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests_handlesspecialcharacters", + "community": 13, + "norm_label": ".handlesspecialcharacters()" + }, + { + "label": ".handlesUnicodeCharacters()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedDBTests.swift", + "source_location": "L146", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests_handlesunicodecharacters", + "community": 13, + "norm_label": ".handlesunicodecharacters()" + }, + { + "label": ".isPersistableInSwiftData()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedDBTests.swift", + "source_location": "L160", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests_ispersistableinswiftdata", + "community": 13, + "norm_label": ".ispersistableinswiftdata()" + }, + { + "label": ".persistsAllPropertiesCorrectly()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedDBTests.swift", + "source_location": "L181", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests_persistsallpropertiescorrectly", + "community": 13, + "norm_label": ".persistsallpropertiescorrectly()" + }, + { + "label": ".deleteNonFavoritesRemovesNonFavorites()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedDBTests.swift", + "source_location": "L218", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests_deletenonfavoritesremovesnonfavorites", + "community": 13, + "norm_label": ".deletenonfavoritesremovesnonfavorites()" + }, + { + "label": ".deleteNonFavoritesPreservesFavorites()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedDBTests.swift", + "source_location": "L244", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests_deletenonfavoritespreservesfavorites", + "community": 13, + "norm_label": ".deletenonfavoritespreservesfavorites()" + }, + { + "label": ".deleteNonFavoritesHandlesEmptyDatabase()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedDBTests.swift", + "source_location": "L271", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests_deletenonfavoriteshandlesemptydatabase", + "community": 13, + "norm_label": ".deletenonfavoriteshandlesemptydatabase()" + }, + { + "label": ".deleteNonFavoritesHandlesAllFavorites()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedDBTests.swift", + "source_location": "L284", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests_deletenonfavoriteshandlesallfavorites", + "community": 13, + "norm_label": ".deletenonfavoriteshandlesallfavorites()" + }, + { + "label": ".deleteNonFavoritesHandlesAllNonFavorites()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedDBTests.swift", + "source_location": "L304", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests_deletenonfavoriteshandlesallnonfavorites", + "community": 13, + "norm_label": ".deletenonfavoriteshandlesallnonfavorites()" + }, + { + "label": ".markAllAsReadMarksUnreadPosts()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedDBTests.swift", + "source_location": "L326", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests_markallasreadmarksunreadposts", + "community": 13, + "norm_label": ".markallasreadmarksunreadposts()" + }, + { + "label": ".markAllAsReadPreservesAlreadyRead()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedDBTests.swift", + "source_location": "L341", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests_markallasreadpreservesalreadyread", + "community": 13, + "norm_label": ".markallasreadpreservesalreadyread()" + }, + { + "label": ".markAllAsReadHandlesEmptyDatabase()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedDBTests.swift", + "source_location": "L359", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests_markallasreadhandlesemptydatabase", + "community": 13, + "norm_label": ".markallasreadhandlesemptydatabase()" + }, + { + "label": ".markAllAsReadNilContext()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedDBTests.swift", + "source_location": "L366", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests_markallasreadnilcontext", + "community": 13, + "norm_label": ".markallasreadnilcontext()" + }, + { + "label": ".markAllAsReadUpdatesModifiedAt()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedDBTests.swift", + "source_location": "L371", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests_markallasreadupdatesmodifiedat", + "community": 13, + "norm_label": ".markallasreadupdatesmodifiedat()" + }, + { + "label": ".deduplicateKeepsMostRecentlyModified()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedDBTests.swift", + "source_location": "L388", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests_deduplicatekeepsmostrecentlymodified", + "community": 13, + "norm_label": ".deduplicatekeepsmostrecentlymodified()" + }, + { + "label": ".deduplicatePreservesDistinctPostIds()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedDBTests.swift", + "source_location": "L405", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests_deduplicatepreservesdistinctpostids", + "community": 13, + "norm_label": ".deduplicatepreservesdistinctpostids()" + }, + { + "label": ".deduplicateHandlesMultipleGroups()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedDBTests.swift", + "source_location": "L419", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests_deduplicatehandlesmultiplegroups", + "community": 13, + "norm_label": ".deduplicatehandlesmultiplegroups()" + }, + { + "label": ".deduplicateSafeOnEmpty()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedDBTests.swift", + "source_location": "L439", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests_deduplicatesafeonempty", + "community": 13, + "norm_label": ".deduplicatesafeonempty()" + }, + { + "label": ".deduplicateNilContext()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedDBTests.swift", + "source_location": "L446", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests_deduplicatenilcontext", + "community": 13, + "norm_label": ".deduplicatenilcontext()" + }, + { + "label": ".worksWithFetchPredicates()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedDBTests.swift", + "source_location": "L453", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests_workswithfetchpredicates", + "community": 13, + "norm_label": ".workswithfetchpredicates()" + }, + { + "label": ".supportsQueryingByPostId()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedDBTests.swift", + "source_location": "L471", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests_supportsqueryingbypostid", + "community": 13, + "norm_label": ".supportsqueryingbypostid()" + }, + { + "label": ".supportsQueryingByCategories()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedDBTests.swift", + "source_location": "L489", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests_supportsqueryingbycategories", + "community": 13, + "norm_label": ".supportsqueryingbycategories()" + }, + { + "label": "FeedEndpointTests.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedEndpointTests.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedendpointtests", + "community": 9, + "norm_label": "feedendpointtests.swift" + }, + { + "label": "FeedEndpointTests", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedEndpointTests.swift", + "source_location": "L6", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedendpointtests_feedendpointtests", + "community": 25, + "norm_label": "feedendpointtests" + }, + { + "label": ".apiDefinitionsMainDomain()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedEndpointTests.swift", + "source_location": "L11", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedendpointtests_feedendpointtests_apidefinitionsmaindomain", + "community": 25, + "norm_label": ".apidefinitionsmaindomain()" + }, + { + "label": ".apiDefinitionsMainURL()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedEndpointTests.swift", + "source_location": "L16", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedendpointtests_feedendpointtests_apidefinitionsmainurl", + "community": 25, + "norm_label": ".apidefinitionsmainurl()" + }, + { + "label": ".apiDefinitionsLoginURLs()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedEndpointTests.swift", + "source_location": "L21", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedendpointtests_feedendpointtests_apidefinitionsloginurls", + "community": 25, + "norm_label": ".apidefinitionsloginurls()" + }, + { + "label": ".apiDefinitionsPolicyURLs()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedEndpointTests.swift", + "source_location": "L27", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedendpointtests_feedendpointtests_apidefinitionspolicyurls", + "community": 25, + "norm_label": ".apidefinitionspolicyurls()" + }, + { + "label": ".apiDefinitionsAPIPaths()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedEndpointTests.swift", + "source_location": "L33", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedendpointtests_feedendpointtests_apidefinitionsapipaths", + "community": 25, + "norm_label": ".apidefinitionsapipaths()" + }, + { + "label": ".postsWithDefaults()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedEndpointTests.swift", + "source_location": "L44", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedendpointtests_feedendpointtests_postswithdefaults", + "community": 25, + "norm_label": ".postswithdefaults()" + }, + { + "label": ".postsWithPagedParameter()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedEndpointTests.swift", + "source_location": "L54", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedendpointtests_feedendpointtests_postswithpagedparameter", + "community": 25, + "norm_label": ".postswithpagedparameter()" + }, + { + "label": ".postsWithZeroPage()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedEndpointTests.swift", + "source_location": "L63", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedendpointtests_feedendpointtests_postswithzeropage", + "community": 25, + "norm_label": ".postswithzeropage()" + }, + { + "label": ".postsWithLargePageNumber()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedEndpointTests.swift", + "source_location": "L72", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedendpointtests_feedendpointtests_postswithlargepagenumber", + "community": 25, + "norm_label": ".postswithlargepagenumber()" + }, + { + "label": ".postsWithCategoryQuery()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedEndpointTests.swift", + "source_location": "L81", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedendpointtests_feedendpointtests_postswithcategoryquery", + "community": 25, + "norm_label": ".postswithcategoryquery()" + }, + { + "label": ".postsWithTagQuery()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedEndpointTests.swift", + "source_location": "L93", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedendpointtests_feedendpointtests_postswithtagquery", + "community": 25, + "norm_label": ".postswithtagquery()" + }, + { + "label": ".postsWithSearchQuery()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedEndpointTests.swift", + "source_location": "L105", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedendpointtests_feedendpointtests_postswithsearchquery", + "community": 25, + "norm_label": ".postswithsearchquery()" + }, + { + "label": ".postsWithPagedAndCategory()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedEndpointTests.swift", + "source_location": "L117", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedendpointtests_feedendpointtests_postswithpagedandcategory", + "community": 25, + "norm_label": ".postswithpagedandcategory()" + }, + { + "label": ".postsWithPagedAndTag()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedEndpointTests.swift", + "source_location": "L131", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedendpointtests_feedendpointtests_postswithpagedandtag", + "community": 25, + "norm_label": ".postswithpagedandtag()" + }, + { + "label": ".postsWithoutQuery()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedEndpointTests.swift", + "source_location": "L144", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedendpointtests_feedendpointtests_postswithoutquery", + "community": 25, + "norm_label": ".postswithoutquery()" + }, + { + "label": ".postsUsesCorrectCustomHost()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedEndpointTests.swift", + "source_location": "L155", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedendpointtests_feedendpointtests_postsusescorrectcustomhost", + "community": 25, + "norm_label": ".postsusescorrectcustomhost()" + }, + { + "label": ".postsUsesCorrectAPIPath()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedEndpointTests.swift", + "source_location": "L164", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedendpointtests_feedendpointtests_postsusescorrectapipath", + "community": 25, + "norm_label": ".postsusescorrectapipath()" + }, + { + "label": ".postsForHighlightsCategory()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedEndpointTests.swift", + "source_location": "L175", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedendpointtests_feedendpointtests_postsforhighlightscategory", + "community": 25, + "norm_label": ".postsforhighlightscategory()" + }, + { + "label": ".postsForPodcastCategory()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedEndpointTests.swift", + "source_location": "L189", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedendpointtests_feedendpointtests_postsforpodcastcategory", + "community": 25, + "norm_label": ".postsforpodcastcategory()" + }, + { + "label": ".postsForYouTubeCategory()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedEndpointTests.swift", + "source_location": "L201", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedendpointtests_feedendpointtests_postsforyoutubecategory", + "community": 25, + "norm_label": ".postsforyoutubecategory()" + }, + { + "label": ".postsForAppleTVTag()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedEndpointTests.swift", + "source_location": "L213", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedendpointtests_feedendpointtests_postsforappletvtag", + "community": 25, + "norm_label": ".postsforappletvtag()" + }, + { + "label": ".postsWithEmptyQueryValue()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedEndpointTests.swift", + "source_location": "L225", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedendpointtests_feedendpointtests_postswithemptyqueryvalue", + "community": 25, + "norm_label": ".postswithemptyqueryvalue()" + }, + { + "label": "FeedViewModelTests.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedViewModelTests.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedviewmodeltests", + "community": 9, + "norm_label": "feedviewmodeltests.swift" + }, + { + "label": "FeedViewModelTests", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedViewModelTests.swift", + "source_location": "L7", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedviewmodeltests_feedviewmodeltests", + "community": 8, + "norm_label": "feedviewmodeltests" + }, + { + "label": ".getNewsSuccess()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedViewModelTests.swift", + "source_location": "L13", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedviewmodeltests_feedviewmodeltests_getnewssuccess", + "community": 8, + "norm_label": ".getnewssuccess()" + }, + { + "label": ".getNewsNetworkFailure()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedViewModelTests.swift", + "source_location": "L33", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedviewmodeltests_feedviewmodeltests_getnewsnetworkfailure", + "community": 8, + "norm_label": ".getnewsnetworkfailure()" + }, + { + "label": ".getNewsStatusTransitions()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedViewModelTests.swift", + "source_location": "L52", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedviewmodeltests_feedviewmodeltests_getnewsstatustransitions", + "community": 8, + "norm_label": ".getnewsstatustransitions()" + }, + { + "label": ".getPodcastSuccess()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedViewModelTests.swift", + "source_location": "L76", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedviewmodeltests_feedviewmodeltests_getpodcastsuccess", + "community": 8, + "norm_label": ".getpodcastsuccess()" + }, + { + "label": ".getPodcastSavesToDatabase()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedViewModelTests.swift", + "source_location": "L99", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedviewmodeltests_feedviewmodeltests_getpodcastsavestodatabase", + "community": 8, + "norm_label": ".getpodcastsavestodatabase()" + }, + { + "label": ".getPodcastNetworkFailure()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedViewModelTests.swift", + "source_location": "L123", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedviewmodeltests_feedviewmodeltests_getpodcastnetworkfailure", + "community": 8, + "norm_label": ".getpodcastnetworkfailure()" + }, + { + "label": ".statusReasonReturnsNilForLoadingAndDone()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedViewModelTests.swift", + "source_location": "L142", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedviewmodeltests_feedviewmodeltests_statusreasonreturnsnilforloadinganddone", + "community": 8, + "norm_label": ".statusreasonreturnsnilforloadinganddone()" + }, + { + "label": ".statusReasonReturnsErrorMessage()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedViewModelTests.swift", + "source_location": "L148", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedviewmodeltests_feedviewmodeltests_statusreasonreturnserrormessage", + "community": 8, + "norm_label": ".statusreasonreturnserrormessage()" + }, + { + "label": ".statusEquality()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedViewModelTests.swift", + "source_location": "L155", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedviewmodeltests_feedviewmodeltests_statusequality", + "community": 8, + "norm_label": ".statusequality()" + }, + { + "label": ".getWidgetDataLimitsToThree()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedViewModelTests.swift", + "source_location": "L165", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedviewmodeltests_feedviewmodeltests_getwidgetdatalimitstothree", + "community": 8, + "norm_label": ".getwidgetdatalimitstothree()" + }, + { + "label": ".getWidgetDataReturnsCorrectType()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedViewModelTests.swift", + "source_location": "L184", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedviewmodeltests_feedviewmodeltests_getwidgetdatareturnscorrecttype", + "community": 8, + "norm_label": ".getwidgetdatareturnscorrecttype()" + }, + { + "label": ".getWidgetDataReturnsEmptyOnFailure()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedViewModelTests.swift", + "source_location": "L206", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedviewmodeltests_feedviewmodeltests_getwidgetdatareturnsemptyonfailure", + "community": 8, + "norm_label": ".getwidgetdatareturnsemptyonfailure()" + }, + { + "label": ".getWidgetDataDoesNotSave()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedViewModelTests.swift", + "source_location": "L223", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedviewmodeltests_feedviewmodeltests_getwidgetdatadoesnotsave", + "community": 8, + "norm_label": ".getwidgetdatadoesnotsave()" + }, + { + "label": ".getWatchFeedLimitsToTen()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedViewModelTests.swift", + "source_location": "L250", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedviewmodeltests_feedviewmodeltests_getwatchfeedlimitstoten", + "community": 8, + "norm_label": ".getwatchfeedlimitstoten()" + }, + { + "label": ".getWatchFeedSavesToDatabase()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedViewModelTests.swift", + "source_location": "L269", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedviewmodeltests_feedviewmodeltests_getwatchfeedsavestodatabase", + "community": 8, + "norm_label": ".getwatchfeedsavestodatabase()" + }, + { + "label": ".getWatchFeedParsesFullContent()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedViewModelTests.swift", + "source_location": "L290", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedviewmodeltests_feedviewmodeltests_getwatchfeedparsesfullcontent", + "community": 8, + "norm_label": ".getwatchfeedparsesfullcontent()" + }, + { + "label": ".getWatchFeedReturnsEmptyOnFailure()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedViewModelTests.swift", + "source_location": "L315", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedviewmodeltests_feedviewmodeltests_getwatchfeedreturnsemptyonfailure", + "community": 8, + "norm_label": ".getwatchfeedreturnsemptyonfailure()" + }, + { + "label": ".getWatchFeedUpdatesStatus()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedViewModelTests.swift", + "source_location": "L332", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedviewmodeltests_feedviewmodeltests_getwatchfeedupdatesstatus", + "community": 8, + "norm_label": ".getwatchfeedupdatesstatus()" + }, + { + "label": ".getWatchFeedReturnsCorrectType()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedViewModelTests.swift", + "source_location": "L351", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedviewmodeltests_feedviewmodeltests_getwatchfeedreturnscorrecttype", + "community": 8, + "norm_label": ".getwatchfeedreturnscorrecttype()" + }, + { + "label": "PodcastDBTests.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/PodcastDBTests.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests", + "community": 9, + "norm_label": "podcastdbtests.swift" + }, + { + "label": "PodcastDBTests", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/PodcastDBTests.swift", + "source_location": "L7", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests_podcastdbtests", + "community": 16, + "norm_label": "podcastdbtests" + }, + { + "label": ".initializationWithAllProperties()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/PodcastDBTests.swift", + "source_location": "L13", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests_podcastdbtests_initializationwithallproperties", + "community": 16, + "norm_label": ".initializationwithallproperties()" + }, + { + "label": ".initializationWithDefaults()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/PodcastDBTests.swift", + "source_location": "L63", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests_podcastdbtests_initializationwithdefaults", + "community": 16, + "norm_label": ".initializationwithdefaults()" + }, + { + "label": ".initializationWithEmptyStrings()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/PodcastDBTests.swift", + "source_location": "L83", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests_podcastdbtests_initializationwithemptystrings", + "community": 16, + "norm_label": ".initializationwithemptystrings()" + }, + { + "label": ".initializationWithZeroAndNegativeSizes()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/PodcastDBTests.swift", + "source_location": "L108", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests_podcastdbtests_initializationwithzeroandnegativesizes", + "community": 16, + "norm_label": ".initializationwithzeroandnegativesizes()" + }, + { + "label": ".initializationWithLargeSizes()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/PodcastDBTests.swift", + "source_location": "L119", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests_podcastdbtests_initializationwithlargesizes", + "community": 16, + "norm_label": ".initializationwithlargesizes()" + }, + { + "label": ".propertiesAreMutable()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/PodcastDBTests.swift", + "source_location": "L133", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests_podcastdbtests_propertiesaremutable", + "community": 16, + "norm_label": ".propertiesaremutable()" + }, + { + "label": ".handlesSpecialCharacters()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/PodcastDBTests.swift", + "source_location": "L153", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests_podcastdbtests_handlesspecialcharacters", + "community": 16, + "norm_label": ".handlesspecialcharacters()" + }, + { + "label": ".handlesUnicodeCharacters()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/PodcastDBTests.swift", + "source_location": "L165", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests_podcastdbtests_handlesunicodecharacters", + "community": 16, + "norm_label": ".handlesunicodecharacters()" + }, + { + "label": ".handlesVariousDurationFormats()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/PodcastDBTests.swift", + "source_location": "L177", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests_podcastdbtests_handlesvariousdurationformats", + "community": 16, + "norm_label": ".handlesvariousdurationformats()" + }, + { + "label": ".isPersistableInSwiftData()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/PodcastDBTests.swift", + "source_location": "L192", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests_podcastdbtests_ispersistableinswiftdata", + "community": 16, + "norm_label": ".ispersistableinswiftdata()" + }, + { + "label": ".persistsAllPropertiesCorrectly()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/PodcastDBTests.swift", + "source_location": "L214", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests_podcastdbtests_persistsallpropertiescorrectly", + "community": 16, + "norm_label": ".persistsallpropertiescorrectly()" + }, + { + "label": ".deleteNonFavoritesRemovesNonFavorites()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/PodcastDBTests.swift", + "source_location": "L257", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests_podcastdbtests_deletenonfavoritesremovesnonfavorites", + "community": 16, + "norm_label": ".deletenonfavoritesremovesnonfavorites()" + }, + { + "label": ".deleteNonFavoritesPreservesFavorites()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/PodcastDBTests.swift", + "source_location": "L283", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests_podcastdbtests_deletenonfavoritespreservesfavorites", + "community": 16, + "norm_label": ".deletenonfavoritespreservesfavorites()" + }, + { + "label": ".deleteNonFavoritesHandlesEmptyDatabase()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/PodcastDBTests.swift", + "source_location": "L310", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests_podcastdbtests_deletenonfavoriteshandlesemptydatabase", + "community": 16, + "norm_label": ".deletenonfavoriteshandlesemptydatabase()" + }, + { + "label": ".deleteNonFavoritesHandlesAllFavorites()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/PodcastDBTests.swift", + "source_location": "L323", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests_podcastdbtests_deletenonfavoriteshandlesallfavorites", + "community": 16, + "norm_label": ".deletenonfavoriteshandlesallfavorites()" + }, + { + "label": ".deleteNonFavoritesHandlesAllNonFavorites()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/PodcastDBTests.swift", + "source_location": "L343", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests_podcastdbtests_deletenonfavoriteshandlesallnonfavorites", + "community": 16, + "norm_label": ".deletenonfavoriteshandlesallnonfavorites()" + }, + { + "label": ".deduplicateKeepsMostRecentlyModified()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/PodcastDBTests.swift", + "source_location": "L365", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests_podcastdbtests_deduplicatekeepsmostrecentlymodified", + "community": 16, + "norm_label": ".deduplicatekeepsmostrecentlymodified()" + }, + { + "label": ".deduplicatePreservesDistinctPubDates()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/PodcastDBTests.swift", + "source_location": "L383", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests_podcastdbtests_deduplicatepreservesdistinctpubdates", + "community": 16, + "norm_label": ".deduplicatepreservesdistinctpubdates()" + }, + { + "label": ".deduplicateHandlesTripleDuplicates()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/PodcastDBTests.swift", + "source_location": "L397", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests_podcastdbtests_deduplicatehandlestripleduplicates", + "community": 16, + "norm_label": ".deduplicatehandlestripleduplicates()" + }, + { + "label": ".deduplicateSafeOnEmpty()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/PodcastDBTests.swift", + "source_location": "L415", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests_podcastdbtests_deduplicatesafeonempty", + "community": 16, + "norm_label": ".deduplicatesafeonempty()" + }, + { + "label": ".deduplicateNilContext()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/PodcastDBTests.swift", + "source_location": "L422", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests_podcastdbtests_deduplicatenilcontext", + "community": 16, + "norm_label": ".deduplicatenilcontext()" + }, + { + "label": ".worksWithFetchPredicates()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/PodcastDBTests.swift", + "source_location": "L429", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests_podcastdbtests_workswithfetchpredicates", + "community": 16, + "norm_label": ".workswithfetchpredicates()" + }, + { + "label": ".supportsQueryingByPostId()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/PodcastDBTests.swift", + "source_location": "L447", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests_podcastdbtests_supportsqueryingbypostid", + "community": 16, + "norm_label": ".supportsqueryingbypostid()" + }, + { + "label": ".supportsQueryingByPlayableStatus()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/PodcastDBTests.swift", + "source_location": "L465", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests_podcastdbtests_supportsqueryingbyplayablestatus", + "community": 16, + "norm_label": ".supportsqueryingbyplayablestatus()" + }, + { + "label": ".tracksPlaybackProgress()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/PodcastDBTests.swift", + "source_location": "L483", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests_podcastdbtests_tracksplaybackprogress", + "community": 16, + "norm_label": ".tracksplaybackprogress()" + }, + { + "label": ".handlesMultiplePodcastsWithDifferentStates()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/PodcastDBTests.swift", + "source_location": "L500", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests_podcastdbtests_handlesmultiplepodcastswithdifferentstates", + "community": 16, + "norm_label": ".handlesmultiplepodcastswithdifferentstates()" + }, + { + "label": "StorageServiceTests.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests", + "community": 9, + "norm_label": "storageservicetests.swift" + }, + { + "label": "StorageServiceTests", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", + "source_location": "L6", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests", + "community": 33, + "norm_label": "storageservicetests" + }, + { + "label": ".saveInsertsNewFeedItem()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", + "source_location": "L12", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_saveinsertsnewfeeditem", + "community": 33, + "norm_label": ".saveinsertsnewfeeditem()" + }, + { + "label": ".saveUpdatesExistingFeedItem()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", + "source_location": "L39", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_saveupdatesexistingfeeditem", + "community": 33, + "norm_label": ".saveupdatesexistingfeeditem()" + }, + { + "label": ".saveUpdatesAllFeedProperties()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", + "source_location": "L72", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_saveupdatesallfeedproperties", + "community": 33, + "norm_label": ".saveupdatesallfeedproperties()" + }, + { + "label": ".savesArrayOfFeedItems()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", + "source_location": "L106", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savesarrayoffeeditems", + "community": 33, + "norm_label": ".savesarrayoffeeditems()" + }, + { + "label": ".savesEmptyArrayOfFeedItems()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", + "source_location": "L127", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savesemptyarrayoffeeditems", + "community": 33, + "norm_label": ".savesemptyarrayoffeeditems()" + }, + { + "label": ".savesDuplicateFeedItemsInArray()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", + "source_location": "L141", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savesduplicatefeeditemsinarray", + "community": 33, + "norm_label": ".savesduplicatefeeditemsinarray()" + }, + { + "label": ".saveInsertsNewPodcastItem()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", + "source_location": "L161", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_saveinsertsnewpodcastitem", + "community": 33, + "norm_label": ".saveinsertsnewpodcastitem()" + }, + { + "label": ".saveUpdatesExistingPodcastItem()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", + "source_location": "L191", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_saveupdatesexistingpodcastitem", + "community": 33, + "norm_label": ".saveupdatesexistingpodcastitem()" + }, + { + "label": ".saveUpdatesAllPodcastProperties()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", + "source_location": "L221", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_saveupdatesallpodcastproperties", + "community": 33, + "norm_label": ".saveupdatesallpodcastproperties()" + }, + { + "label": ".savesArrayOfPodcastItems()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", + "source_location": "L259", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savesarrayofpodcastitems", + "community": 33, + "norm_label": ".savesarrayofpodcastitems()" + }, + { + "label": ".savesEmptyArrayOfPodcastItems()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", + "source_location": "L280", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savesemptyarrayofpodcastitems", + "community": 33, + "norm_label": ".savesemptyarrayofpodcastitems()" + }, + { + "label": ".savesDuplicatePodcastItemsInArray()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", + "source_location": "L294", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savesduplicatepodcastitemsinarray", + "community": 33, + "norm_label": ".savesduplicatepodcastitemsinarray()" + }, + { + "label": ".savesMultipleModelTypes()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", + "source_location": "L314", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savesmultiplemodeltypes", + "community": 33, + "norm_label": ".savesmultiplemodeltypes()" + }, + { + "label": ".savePreservesFavoriteStatusForFeed()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", + "source_location": "L332", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savepreservesfavoritestatusforfeed", + "community": 33, + "norm_label": ".savepreservesfavoritestatusforfeed()" + }, + { + "label": ".savePreservesReadStatusForFeed()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", + "source_location": "L346", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savepreservesreadstatusforfeed", + "community": 33, + "norm_label": ".savepreservesreadstatusforfeed()" + }, + { + "label": ".saveMergesCategoriesForFeed()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", + "source_location": "L366", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savemergescategoriesforfeed", + "community": 33, + "norm_label": ".savemergescategoriesforfeed()" + }, + { + "label": ".savePreservesFavoriteStatusForPodcast()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", + "source_location": "L382", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savepreservesfavoritestatusforpodcast", + "community": 33, + "norm_label": ".savepreservesfavoritestatusforpodcast()" + }, + { + "label": ".savePreservesPlaybackPositionForPodcast()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", + "source_location": "L396", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savepreservesplaybackpositionforpodcast", + "community": 33, + "norm_label": ".savepreservesplaybackpositionforpodcast()" + }, + { + "label": "StringExtensionsTests.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StringExtensionsTests.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_stringextensionstests", + "community": 9, + "norm_label": "stringextensionstests.swift" + }, + { + "label": "StringExtensionsTests", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StringExtensionsTests.swift", + "source_location": "L5", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_stringextensionstests_stringextensionstests", + "community": 76, + "norm_label": "stringextensionstests" + }, + { + "label": ".htmlDecodedDecodesHTMLEntities()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StringExtensionsTests.swift", + "source_location": "L10", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_stringextensionstests_stringextensionstests_htmldecodeddecodeshtmlentities", + "community": 76, + "norm_label": ".htmldecodeddecodeshtmlentities()" + }, + { + "label": ".htmlDecodedReplacesEllipsis()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StringExtensionsTests.swift", + "source_location": "L23", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_stringextensionstests_stringextensionstests_htmldecodedreplacesellipsis", + "community": 76, + "norm_label": ".htmldecodedreplacesellipsis()" + }, + { + "label": ".htmlDecodedHandlesPlainText()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StringExtensionsTests.swift", + "source_location": "L35", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_stringextensionstests_stringextensionstests_htmldecodedhandlesplaintext", + "community": 76, + "norm_label": ".htmldecodedhandlesplaintext()" + }, + { + "label": ".htmlDecodedReturnsOriginalOnFailure()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StringExtensionsTests.swift", + "source_location": "L47", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_stringextensionstests_stringextensionstests_htmldecodedreturnsoriginalonfailure", + "community": 76, + "norm_label": ".htmldecodedreturnsoriginalonfailure()" + }, + { + "label": ".cleanRemovesConsecutiveNewlines()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StringExtensionsTests.swift", + "source_location": "L61", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_stringextensionstests_stringextensionstests_cleanremovesconsecutivenewlines", + "community": 76, + "norm_label": ".cleanremovesconsecutivenewlines()" + }, + { + "label": ".cleanRemovesMultipleConsecutiveNewlines()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StringExtensionsTests.swift", + "source_location": "L73", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_stringextensionstests_stringextensionstests_cleanremovesmultipleconsecutivenewlines", + "community": 76, + "norm_label": ".cleanremovesmultipleconsecutivenewlines()" + }, + { + "label": ".cleanPreservesSingleNewlines()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StringExtensionsTests.swift", + "source_location": "L85", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_stringextensionstests_stringextensionstests_cleanpreservessinglenewlines", + "community": 76, + "norm_label": ".cleanpreservessinglenewlines()" + }, + { + "label": ".cleanHandlesEmptyString()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StringExtensionsTests.swift", + "source_location": "L97", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_stringextensionstests_stringextensionstests_cleanhandlesemptystring", + "community": 76, + "norm_label": ".cleanhandlesemptystring()" + }, + { + "label": ".cleanHandlesOnlyNewlines()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StringExtensionsTests.swift", + "source_location": "L109", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_stringextensionstests_stringextensionstests_cleanhandlesonlynewlines", + "community": 76, + "norm_label": ".cleanhandlesonlynewlines()" + }, + { + "label": ".chainingHtmlDecodedAndClean()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StringExtensionsTests.swift", + "source_location": "L123", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_stringextensionstests_stringextensionstests_chaininghtmldecodedandclean", + "community": 76, + "norm_label": ".chaininghtmldecodedandclean()" + }, + { + "label": "WidgetDataTests.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/WidgetDataTests.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_widgetdatatests", + "community": 9, + "norm_label": "widgetdatatests.swift" + }, + { + "label": "WidgetDataTests", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/WidgetDataTests.swift", + "source_location": "L5", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_widgetdatatests_widgetdatatests", + "community": 43, + "norm_label": "widgetdatatests" + }, + { + "label": ".initializationWithAllProperties()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/WidgetDataTests.swift", + "source_location": "L10", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_widgetdatatests_widgetdatatests_initializationwithallproperties", + "community": 43, + "norm_label": ".initializationwithallproperties()" + }, + { + "label": ".initializationWithEmptyStrings()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/WidgetDataTests.swift", + "source_location": "L36", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_widgetdatatests_widgetdatatests_initializationwithemptystrings", + "community": 43, + "norm_label": ".initializationwithemptystrings()" + }, + { + "label": ".encodesToJSON()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/WidgetDataTests.swift", + "source_location": "L63", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_widgetdatatests_widgetdatatests_encodestojson", + "community": 43, + "norm_label": ".encodestojson()" + }, + { + "label": ".decodesFromJSON()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/WidgetDataTests.swift", + "source_location": "L89", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_widgetdatatests_widgetdatatests_decodesfromjson", + "community": 43, + "norm_label": ".decodesfromjson()" + }, + { + "label": ".encodingDecodingRoundTrip()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/WidgetDataTests.swift", + "source_location": "L114", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_widgetdatatests_widgetdatatests_encodingdecodingroundtrip", + "community": 43, + "norm_label": ".encodingdecodingroundtrip()" + }, + { + "label": ".equalityWithSameValues()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/WidgetDataTests.swift", + "source_location": "L141", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_widgetdatatests_widgetdatatests_equalitywithsamevalues", + "community": 43, + "norm_label": ".equalitywithsamevalues()" + }, + { + "label": ".inequalityWithDifferentValues()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/WidgetDataTests.swift", + "source_location": "L164", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_widgetdatatests_widgetdatatests_inequalitywithdifferentvalues", + "community": 43, + "norm_label": ".inequalitywithdifferentvalues()" + }, + { + "label": ".hashingBehavior()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/WidgetDataTests.swift", + "source_location": "L187", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_widgetdatatests_widgetdatatests_hashingbehavior", + "community": 43, + "norm_label": ".hashingbehavior()" + }, + { + "label": ".worksInSet()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/WidgetDataTests.swift", + "source_location": "L210", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_widgetdatatests_widgetdatatests_worksinset", + "community": 43, + "norm_label": ".worksinset()" + }, + { + "label": ".worksAsDictionaryKey()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/WidgetDataTests.swift", + "source_location": "L248", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_widgetdatatests_widgetdatatests_worksasdictionarykey", + "community": 43, + "norm_label": ".worksasdictionarykey()" + }, + { + "label": ".handlesSpecialCharacters()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/WidgetDataTests.swift", + "source_location": "L270", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_widgetdatatests_widgetdatatests_handlesspecialcharacters", + "community": 43, + "norm_label": ".handlesspecialcharacters()" + }, + { + "label": ".handlesUnicodeCharacters()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/WidgetDataTests.swift", + "source_location": "L286", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_widgetdatatests_widgetdatatests_handlesunicodecharacters", + "community": 43, + "norm_label": ".handlesunicodecharacters()" + }, + { + "label": "XMLParserTests.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/XMLParserTests.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_xmlparsertests", + "community": 9, + "norm_label": "xmlparsertests.swift" + }, + { + "label": "XMLParserTests", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/XMLParserTests.swift", + "source_location": "L5", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_xmlparsertests_xmlparsertests", + "community": 4, + "norm_label": "xmlparsertests" + }, + { + "label": ".parseFeedXMLSuccessfully()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/XMLParserTests.swift", + "source_location": "L10", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_xmlparsertests_xmlparsertests_parsefeedxmlsuccessfully", + "community": 4, + "norm_label": ".parsefeedxmlsuccessfully()" + }, + { + "label": ".parseFeedXMLWithLimitedPosts()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/XMLParserTests.swift", + "source_location": "L41", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_xmlparsertests_xmlparsertests_parsefeedxmlwithlimitedposts", + "community": 4, + "norm_label": ".parsefeedxmlwithlimitedposts()" + }, + { + "label": ".parseFeedXMLExtractsMediaContent()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/XMLParserTests.swift", + "source_location": "L65", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_xmlparsertests_xmlparsertests_parsefeedxmlextractsmediacontent", + "community": 4, + "norm_label": ".parsefeedxmlextractsmediacontent()" + }, + { + "label": ".parseFeedXMLWithFullContent()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/XMLParserTests.swift", + "source_location": "L89", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_xmlparsertests_xmlparsertests_parsefeedxmlwithfullcontent", + "community": 4, + "norm_label": ".parsefeedxmlwithfullcontent()" + }, + { + "label": ".parsePodcastXMLSuccessfully()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/XMLParserTests.swift", + "source_location": "L115", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_xmlparsertests_xmlparsertests_parsepodcastxmlsuccessfully", + "community": 4, + "norm_label": ".parsepodcastxmlsuccessfully()" + }, + { + "label": ".parsePodcastXMLExtractsPodcastFields()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/XMLParserTests.swift", + "source_location": "L143", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_xmlparsertests_xmlparsertests_parsepodcastxmlextractspodcastfields", + "community": 4, + "norm_label": ".parsepodcastxmlextractspodcastfields()" + }, + { + "label": ".parseInvalidXMLThrowsError()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/XMLParserTests.swift", + "source_location": "L179", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_xmlparsertests_xmlparsertests_parseinvalidxmlthrowserror", + "community": 4, + "norm_label": ".parseinvalidxmlthrowserror()" + }, + { + "label": ".parseEmptyDataReturnsEmptyArray()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/XMLParserTests.swift", + "source_location": "L200", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_xmlparsertests_xmlparsertests_parseemptydatareturnsemptyarray", + "community": 4, + "norm_label": ".parseemptydatareturnsemptyarray()" + }, + { + "label": "XMLPostTests.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/XMLPostTests.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_xmlposttests", + "community": 9, + "norm_label": "xmlposttests.swift" + }, + { + "label": "XMLPostTests", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/XMLPostTests.swift", + "source_location": "L5", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_xmlposttests_xmlposttests", + "community": 4, + "norm_label": "xmlposttests" + }, + { + "label": ".xmlPostDefaultValues()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/XMLPostTests.swift", + "source_location": "L10", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_xmlposttests_xmlposttests_xmlpostdefaultvalues", + "community": 4, + "norm_label": ".xmlpostdefaultvalues()" + }, + { + "label": ".xmlPostCodable()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/XMLPostTests.swift", + "source_location": "L34", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_xmlposttests_xmlposttests_xmlpostcodable", + "community": 4, + "norm_label": ".xmlpostcodable()" + }, + { + "label": ".xmlPostArrayToPodcastDBConversion()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/XMLPostTests.swift", + "source_location": "L63", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_xmlposttests_xmlposttests_xmlpostarraytopodcastdbconversion", + "community": 4, + "norm_label": ".xmlpostarraytopodcastdbconversion()" + }, + { + "label": ".xmlPostArrayToPodcastDBEmptyArray()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/XMLPostTests.swift", + "source_location": "L106", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_xmlposttests_xmlposttests_xmlpostarraytopodcastdbemptyarray", + "community": 4, + "norm_label": ".xmlpostarraytopodcastdbemptyarray()" + }, + { + "label": ".xmlPostToPodcastDBPreservesDates()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/XMLPostTests.swift", + "source_location": "L118", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_xmlposttests_xmlposttests_xmlposttopodcastdbpreservesdates", + "community": 4, + "norm_label": ".xmlposttopodcastdbpreservesdates()" + }, + { + "label": ".xmlPostWithPodcastFields()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/XMLPostTests.swift", + "source_location": "L136", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_xmlposttests_xmlposttests_xmlpostwithpodcastfields", + "community": 4, + "norm_label": ".xmlpostwithpodcastfields()" + }, + { + "label": ".xmlPostWithMultipleCategories()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/XMLPostTests.swift", + "source_location": "L154", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_xmlposttests_xmlposttests_xmlpostwithmultiplecategories", + "community": 4, + "norm_label": ".xmlpostwithmultiplecategories()" + }, + { + "label": ".xmlPostPlayableFlag()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/XMLPostTests.swift", + "source_location": "L168", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_xmlposttests_xmlposttests_xmlpostplayableflag", + "community": 4, + "norm_label": ".xmlpostplayableflag()" + }, + { + "label": ".xmlPostFavoriteFlag()", + "file_type": "code", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/XMLPostTests.swift", + "source_location": "L178", + "_origin": "ast", + "id": "macmagazine_features_feedlibrary_tests_feedlibrarytests_xmlposttests_xmlposttests_xmlpostfavoriteflag", + "community": 4, + "norm_label": ".xmlpostfavoriteflag()" + }, + { + "label": "Package.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/MMLiveLibrary/Package.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_mmlivelibrary_package", + "community": 75, + "norm_label": "package.swift" + }, + { + "label": "MMLive.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/MMLiveLibrary/Sources/MMLiveLibrary/Models/MMLive.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_models_mmlive", + "community": 1, + "norm_label": "mmlive.swift" + }, + { + "label": "MMLive", + "file_type": "code", + "source_file": "MacMagazine/Features/MMLiveLibrary/Sources/MMLiveLibrary/Models/MMLive.swift", + "source_location": "L3", + "_origin": "ast", + "id": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_models_mmlive_mmlive", + "community": 1, + "norm_label": "mmlive" + }, + { + "label": "MMLiveEndpoint.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/MMLiveLibrary/Sources/MMLiveLibrary/Services/MMLiveEndpoint.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_services_mmliveendpoint", + "community": 14, + "norm_label": "mmliveendpoint.swift" + }, + { + "label": "APIDefinitions", + "file_type": "code", + "source_file": "MacMagazine/Features/MMLiveLibrary/Sources/MMLiveLibrary/Services/MMLiveEndpoint.swift", + "source_location": "L4", + "_origin": "ast", + "id": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_services_mmliveendpoint_apidefinitions", + "community": 14, + "norm_label": "apidefinitions" + }, + { + "label": "Endpoint", + "file_type": "code", + "source_file": "MacMagazine/Features/MMLiveLibrary/Sources/MMLiveLibrary/Services/MMLiveEndpoint.swift", + "source_location": "L9", + "_origin": "ast", + "id": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_services_mmliveendpoint_endpoint", + "community": 14, + "norm_label": "endpoint" + }, + { + "label": ".mmLive()", + "file_type": "code", + "source_file": "MacMagazine/Features/MMLiveLibrary/Sources/MMLiveLibrary/Services/MMLiveEndpoint.swift", + "source_location": "L10", + "_origin": "ast", + "id": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_services_mmliveendpoint_endpoint_mmlive", + "community": 14, + "norm_label": ".mmlive()" + }, + { + "label": "Self", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_services_mmliveendpoint_swift_self", + "community": 14, + "norm_label": "self" + }, + { + "label": "NetworkService.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/MMLiveLibrary/Sources/MMLiveLibrary/Services/NetworkService.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_services_networkservice", + "community": 14, + "norm_label": "networkservice.swift" + }, + { + "label": "NetworkService", + "file_type": "code", + "source_file": "MacMagazine/Features/MMLiveLibrary/Sources/MMLiveLibrary/Services/NetworkService.swift", + "source_location": "L4", + "_origin": "ast", + "id": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_services_networkservice_networkservice", + "community": 58, + "norm_label": "networkservice" + }, + { + "label": "Network", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_services_networkservice_swift_network", + "community": 58, + "norm_label": "network" + }, + { + "label": ".init()", + "file_type": "code", + "source_file": "MacMagazine/Features/MMLiveLibrary/Sources/MMLiveLibrary/Services/NetworkService.swift", + "source_location": "L7", + "_origin": "ast", + "id": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_services_networkservice_networkservice_init", + "community": 58, + "norm_label": ".init()" + }, + { + "label": ".fetch()", + "file_type": "code", + "source_file": "MacMagazine/Features/MMLiveLibrary/Sources/MMLiveLibrary/Services/NetworkService.swift", + "source_location": "L13", + "_origin": "ast", + "id": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_services_networkservice_networkservice_fetch", + "community": 58, + "norm_label": ".fetch()" + }, + { + "label": "Data", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_services_networkservice_swift_data", + "community": 58, + "norm_label": "data" + }, + { + "label": "PushNotification.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/MMLiveLibrary/Sources/MMLiveLibrary/Services/PushNotification.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_services_pushnotification", + "community": 24, + "norm_label": "pushnotification.swift" + }, + { + "label": "UserNotifications", + "file_type": "code", + "type": "module", + "source_file": "MacMagazine/WatchApp/MainApp/WatchNotificationsDelegate.swift", + "source_location": "L4", + "_origin": "ast", + "id": "usernotifications", + "community": 24, + "norm_label": "usernotifications" + }, + { + "label": "PushNotificationProtocol", + "file_type": "code", + "source_file": "MacMagazine/Features/MMLiveLibrary/Sources/MMLiveLibrary/Services/PushNotification.swift", + "source_location": "L6", + "_origin": "ast", + "id": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_services_pushnotification_pushnotificationprotocol", + "community": 1, + "norm_label": "pushnotificationprotocol" + }, + { + "label": "PushNotification", + "file_type": "code", + "source_file": "MacMagazine/Features/MMLiveLibrary/Sources/MMLiveLibrary/Services/PushNotification.swift", + "source_location": "L11", + "_origin": "ast", + "id": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_services_pushnotification_pushnotification", + "community": 1, + "norm_label": "pushnotification" + }, + { + "label": ".setLocalNotification()", + "file_type": "code", + "source_file": "MacMagazine/Features/MMLiveLibrary/Sources/MMLiveLibrary/Services/PushNotification.swift", + "source_location": "L12", + "_origin": "ast", + "id": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_services_pushnotification_pushnotification_setlocalnotification", + "community": 1, + "norm_label": ".setlocalnotification()" + }, + { + "label": ".process()", + "file_type": "code", + "source_file": "MacMagazine/Features/MMLiveLibrary/Sources/MMLiveLibrary/Services/PushNotification.swift", + "source_location": "L26", + "_origin": "ast", + "id": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_services_pushnotification_pushnotification_process", + "community": 1, + "norm_label": ".process()" + }, + { + "label": ".startInterval()", + "file_type": "code", + "source_file": "MacMagazine/Features/MMLiveLibrary/Sources/MMLiveLibrary/Services/PushNotification.swift", + "source_location": "L31", + "_origin": "ast", + "id": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_services_pushnotification_pushnotification_startinterval", + "community": 1, + "norm_label": ".startinterval()" + }, + { + "label": ".endInterval()", + "file_type": "code", + "source_file": "MacMagazine/Features/MMLiveLibrary/Sources/MMLiveLibrary/Services/PushNotification.swift", + "source_location": "L51", + "_origin": "ast", + "id": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_services_pushnotification_pushnotification_endinterval", + "community": 1, + "norm_label": ".endinterval()" + }, + { + "label": "StorageService.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/MMLiveLibrary/Sources/MMLiveLibrary/Services/StorageService.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_services_storageservice", + "community": 14, + "norm_label": "storageservice.swift" + }, + { + "label": "Storage", + "file_type": "code", + "source_file": "MacMagazine/Features/MMLiveLibrary/Sources/MMLiveLibrary/Services/StorageService.swift", + "source_location": "L5", + "_origin": "ast", + "id": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_services_storageservice_storage", + "community": 1, + "norm_label": "storage" + }, + { + "label": ".save()", + "file_type": "code", + "source_file": "MacMagazine/Features/MMLiveLibrary/Sources/MMLiveLibrary/Services/StorageService.swift", + "source_location": "L6", + "_origin": "ast", + "id": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_services_storageservice_storage_save", + "community": 1, + "norm_label": ".save()" + }, + { + "label": ".get()", + "file_type": "code", + "source_file": "MacMagazine/Features/MMLiveLibrary/Sources/MMLiveLibrary/Services/StorageService.swift", + "source_location": "L13", + "_origin": "ast", + "id": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_services_storageservice_storage_get", + "community": 1, + "norm_label": ".get()" + }, + { + "label": "MMLiveViewModel.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/MMLiveLibrary/Sources/MMLiveLibrary/ViewModel/MMLiveViewModel.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_viewmodel_mmliveviewmodel", + "community": 14, + "norm_label": "mmliveviewmodel.swift" + }, + { + "label": "MMLiveViewModel", + "file_type": "code", + "source_file": "MacMagazine/Features/MMLiveLibrary/Sources/MMLiveLibrary/ViewModel/MMLiveViewModel.swift", + "source_location": "L6", + "_origin": "ast", + "id": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_viewmodel_mmliveviewmodel_mmliveviewmodel", + "community": 1, + "norm_label": "mmliveviewmodel" + }, + { + "label": "NetworkService", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_viewmodel_mmliveviewmodel_swift_networkservice", + "community": 1, + "norm_label": "networkservice" + }, + { + "label": "TimeInterval", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_viewmodel_mmliveviewmodel_swift_timeinterval", + "community": 1, + "norm_label": "timeinterval" + }, + { + "label": ".init()", + "file_type": "code", + "source_file": "MacMagazine/Features/MMLiveLibrary/Sources/MMLiveLibrary/ViewModel/MMLiveViewModel.swift", + "source_location": "L14", + "_origin": "ast", + "id": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_viewmodel_mmliveviewmodel_mmliveviewmodel_init", + "community": 1, + "norm_label": ".init()" + }, + { + "label": "Network", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_viewmodel_mmliveviewmodel_swift_network", + "community": 1, + "norm_label": "network" + }, + { + "label": ".isLive()", + "file_type": "code", + "source_file": "MacMagazine/Features/MMLiveLibrary/Sources/MMLiveLibrary/ViewModel/MMLiveViewModel.swift", + "source_location": "L23", + "_origin": "ast", + "id": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_viewmodel_mmliveviewmodel_mmliveviewmodel_islive", + "community": 1, + "norm_label": ".islive()" + }, + { + "label": "Bool", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_viewmodel_mmliveviewmodel_swift_bool", + "community": 1, + "norm_label": "bool" + }, + { + "label": ".set()", + "file_type": "code", + "source_file": "MacMagazine/Features/MMLiveLibrary/Sources/MMLiveLibrary/ViewModel/MMLiveViewModel.swift", + "source_location": "L34", + "_origin": "ast", + "id": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_viewmodel_mmliveviewmodel_mmliveviewmodel_set", + "community": 1, + "norm_label": ".set()" + }, + { + "label": ".fetch()", + "file_type": "code", + "source_file": "MacMagazine/Features/MMLiveLibrary/Sources/MMLiveLibrary/ViewModel/MMLiveViewModel.swift", + "source_location": "L49", + "_origin": "ast", + "id": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_viewmodel_mmliveviewmodel_mmliveviewmodel_fetch", + "community": 1, + "norm_label": ".fetch()" + }, + { + "label": "MMLiveViewModelTests.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/MMLiveLibrary/Tests/MMLiveLibraryTests/MMLiveViewModelTests.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_mmlivelibrary_tests_mmlivelibrarytests_mmliveviewmodeltests", + "community": 14, + "norm_label": "mmliveviewmodeltests.swift" + }, + { + "label": "MMLiveLibrary", + "file_type": "code", + "type": "module", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/SettingsViewModel.swift", + "source_location": "L2", + "_origin": "ast", + "id": "mmlivelibrary", + "community": 14, + "norm_label": "mmlivelibrary" + }, + { + "label": "MMLiveViewModelTests", + "file_type": "code", + "source_file": "MacMagazine/Features/MMLiveLibrary/Tests/MMLiveLibraryTests/MMLiveViewModelTests.swift", + "source_location": "L7", + "_origin": "ast", + "id": "macmagazine_features_mmlivelibrary_tests_mmlivelibrarytests_mmliveviewmodeltests_mmliveviewmodeltests", + "community": 1, + "norm_label": "mmliveviewmodeltests" + }, + { + "label": ".fetchEventOnFirstCheck()", + "file_type": "code", + "source_file": "MacMagazine/Features/MMLiveLibrary/Tests/MMLiveLibraryTests/MMLiveViewModelTests.swift", + "source_location": "L13", + "_origin": "ast", + "id": "macmagazine_features_mmlivelibrary_tests_mmlivelibrarytests_mmliveviewmodeltests_mmliveviewmodeltests_fetcheventonfirstcheck", + "community": 1, + "norm_label": ".fetcheventonfirstcheck()" + }, + { + "label": ".isLiveWhenBetweenStartAndEnd()", + "file_type": "code", + "source_file": "MacMagazine/Features/MMLiveLibrary/Tests/MMLiveLibraryTests/MMLiveViewModelTests.swift", + "source_location": "L44", + "_origin": "ast", + "id": "macmagazine_features_mmlivelibrary_tests_mmlivelibrarytests_mmliveviewmodeltests_mmliveviewmodeltests_islivewhenbetweenstartandend", + "community": 1, + "norm_label": ".islivewhenbetweenstartandend()" + }, + { + "label": ".notLiveWhenBeforeStart()", + "file_type": "code", + "source_file": "MacMagazine/Features/MMLiveLibrary/Tests/MMLiveLibraryTests/MMLiveViewModelTests.swift", + "source_location": "L67", + "_origin": "ast", + "id": "macmagazine_features_mmlivelibrary_tests_mmlivelibrarytests_mmliveviewmodeltests_mmliveviewmodeltests_notlivewhenbeforestart", + "community": 1, + "norm_label": ".notlivewhenbeforestart()" + }, + { + "label": ".notLiveWhenAfterEnd()", + "file_type": "code", + "source_file": "MacMagazine/Features/MMLiveLibrary/Tests/MMLiveLibraryTests/MMLiveViewModelTests.swift", + "source_location": "L90", + "_origin": "ast", + "id": "macmagazine_features_mmlivelibrary_tests_mmlivelibrarytests_mmliveviewmodeltests_mmliveviewmodeltests_notlivewhenafterend", + "community": 1, + "norm_label": ".notlivewhenafterend()" + }, + { + "label": ".useCacheWithin24Hours()", + "file_type": "code", + "source_file": "MacMagazine/Features/MMLiveLibrary/Tests/MMLiveLibraryTests/MMLiveViewModelTests.swift", + "source_location": "L115", + "_origin": "ast", + "id": "macmagazine_features_mmlivelibrary_tests_mmlivelibrarytests_mmliveviewmodeltests_mmliveviewmodeltests_usecachewithin24hours", + "community": 1, + "norm_label": ".usecachewithin24hours()" + }, + { + "label": ".refetchAfter24Hours()", + "file_type": "code", + "source_file": "MacMagazine/Features/MMLiveLibrary/Tests/MMLiveLibraryTests/MMLiveViewModelTests.swift", + "source_location": "L142", + "_origin": "ast", + "id": "macmagazine_features_mmlivelibrary_tests_mmlivelibrarytests_mmliveviewmodeltests_mmliveviewmodeltests_refetchafter24hours", + "community": 1, + "norm_label": ".refetchafter24hours()" + }, + { + "label": ".refetchWhenNoCache()", + "file_type": "code", + "source_file": "MacMagazine/Features/MMLiveLibrary/Tests/MMLiveLibraryTests/MMLiveViewModelTests.swift", + "source_location": "L180", + "_origin": "ast", + "id": "macmagazine_features_mmlivelibrary_tests_mmlivelibrarytests_mmliveviewmodeltests_mmliveviewmodeltests_refetchwhennocache", + "community": 1, + "norm_label": ".refetchwhennocache()" + }, + { + "label": ".refetchWhenNoLastChecked()", + "file_type": "code", + "source_file": "MacMagazine/Features/MMLiveLibrary/Tests/MMLiveLibraryTests/MMLiveViewModelTests.swift", + "source_location": "L207", + "_origin": "ast", + "id": "macmagazine_features_mmlivelibrary_tests_mmlivelibrarytests_mmliveviewmodeltests_mmliveviewmodeltests_refetchwhennolastchecked", + "community": 1, + "norm_label": ".refetchwhennolastchecked()" + }, + { + "label": ".returnFalseOnNetworkError()", + "file_type": "code", + "source_file": "MacMagazine/Features/MMLiveLibrary/Tests/MMLiveLibraryTests/MMLiveViewModelTests.swift", + "source_location": "L239", + "_origin": "ast", + "id": "macmagazine_features_mmlivelibrary_tests_mmlivelibrarytests_mmliveviewmodeltests_mmliveviewmodeltests_returnfalseonnetworkerror", + "community": 1, + "norm_label": ".returnfalseonnetworkerror()" + }, + { + "label": ".liveAtExactStartTime()", + "file_type": "code", + "source_file": "MacMagazine/Features/MMLiveLibrary/Tests/MMLiveLibraryTests/MMLiveViewModelTests.swift", + "source_location": "L258", + "_origin": "ast", + "id": "macmagazine_features_mmlivelibrary_tests_mmlivelibrarytests_mmliveviewmodeltests_mmliveviewmodeltests_liveatexactstarttime", + "community": 1, + "norm_label": ".liveatexactstarttime()" + }, + { + "label": ".notLiveAtExactEndTime()", + "file_type": "code", + "source_file": "MacMagazine/Features/MMLiveLibrary/Tests/MMLiveLibraryTests/MMLiveViewModelTests.swift", + "source_location": "L280", + "_origin": "ast", + "id": "macmagazine_features_mmlivelibrary_tests_mmlivelibrarytests_mmliveviewmodeltests_mmliveviewmodeltests_notliveatexactendtime", + "community": 1, + "norm_label": ".notliveatexactendtime()" + }, + { + "label": "MockPushNotification", + "file_type": "code", + "source_file": "MacMagazine/Features/MMLiveLibrary/Tests/MMLiveLibraryTests/MMLiveViewModelTests.swift", + "source_location": "L305", + "_origin": "ast", + "id": "macmagazine_features_mmlivelibrary_tests_mmlivelibrarytests_mmliveviewmodeltests_mockpushnotification", + "community": 1, + "norm_label": "mockpushnotification" + }, + { + "label": ".setLocalNotification()", + "file_type": "code", + "source_file": "MacMagazine/Features/MMLiveLibrary/Tests/MMLiveLibraryTests/MMLiveViewModelTests.swift", + "source_location": "L309", + "_origin": "ast", + "id": "macmagazine_features_mmlivelibrary_tests_mmlivelibrarytests_mmliveviewmodeltests_mockpushnotification_setlocalnotification", + "community": 1, + "norm_label": ".setlocalnotification()" + }, + { + "label": "Package.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Package.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_package", + "community": 75, + "norm_label": "package.swift" + }, + { + "label": "AnalyticsConstants.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants", + "community": 110, + "norm_label": "analyticsconstants.swift" + }, + { + "label": "AnalyticsConstants", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L25", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_analyticsconstants", + "community": 110, + "norm_label": "analyticsconstants" + }, + { + "label": "Screen", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L30", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_screen", + "community": 30, + "norm_label": "screen" + }, + { + "label": "news", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L32", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_screen_news", + "community": 30, + "norm_label": "news" + }, + { + "label": "podcastFullPlayer", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L35", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_screen_podcastfullplayer", + "community": 30, + "norm_label": "podcastfullplayer" + }, + { + "label": "podcastMiniPlayer", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L36", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_screen_podcastminiplayer", + "community": 30, + "norm_label": "podcastminiplayer" + }, + { + "label": "podcast", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L37", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_screen_podcast", + "community": 30, + "norm_label": "podcast" + }, + { + "label": "podcastChapters", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L38", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_screen_podcastchapters", + "community": 30, + "norm_label": "podcastchapters" + }, + { + "label": "videos", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L41", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_screen_videos", + "community": 30, + "norm_label": "videos" + }, + { + "label": "settings", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L44", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_screen_settings", + "community": 30, + "norm_label": "settings" + }, + { + "label": "settingsAppearance", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L45", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_screen_settingsappearance", + "community": 30, + "norm_label": "settingsappearance" + }, + { + "label": "settingsPosts", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L46", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_screen_settingsposts", + "community": 30, + "norm_label": "settingsposts" + }, + { + "label": "socialVideos", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L49", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_screen_socialvideos", + "community": 30, + "norm_label": "socialvideos" + }, + { + "label": "socialPodcast", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L50", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_screen_socialpodcast", + "community": 30, + "norm_label": "socialpodcast" + }, + { + "label": "socialInstagram", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L51", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_screen_socialinstagram", + "community": 30, + "norm_label": "socialinstagram" + }, + { + "label": "live", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L54", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_screen_live", + "community": 30, + "norm_label": "live" + }, + { + "label": "search", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L57", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_screen_search", + "community": 30, + "norm_label": "search" + }, + { + "label": "deepLinkDetail", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L60", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_screen_deeplinkdetail", + "community": 30, + "norm_label": "deeplinkdetail" + }, + { + "label": "loginPatroes", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L63", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_screen_loginpatroes", + "community": 30, + "norm_label": "loginpatroes" + }, + { + "label": "onboardingWelcome", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L66", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_screen_onboardingwelcome", + "community": 30, + "norm_label": "onboardingwelcome" + }, + { + "label": "onboardingFeatures", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L67", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_screen_onboardingfeatures", + "community": 30, + "norm_label": "onboardingfeatures" + }, + { + "label": "onboardingPermissions", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L68", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_screen_onboardingpermissions", + "community": 30, + "norm_label": "onboardingpermissions" + }, + { + "label": "widget", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L71", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_screen_widget", + "community": 30, + "norm_label": "widget" + }, + { + "label": "String", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_swift_string", + "community": 110, + "norm_label": "string" + }, + { + "label": "ButtonID", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L124", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid", + "community": 3, + "norm_label": "buttonid" + }, + { + "label": "newsStarted", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L127", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid_newsstarted", + "community": 3, + "norm_label": "newsstarted" + }, + { + "label": "Int", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_swift_int", + "community": 3, + "norm_label": "int" + }, + { + "label": "newsFavorite", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L128", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid_newsfavorite", + "community": 3, + "norm_label": "newsfavorite" + }, + { + "label": "news", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L129", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid_news", + "community": 3, + "norm_label": "news" + }, + { + "label": "NewsCategory", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_swift_newscategory", + "community": 3, + "norm_label": "newscategory" + }, + { + "label": "podcastCloseFullPlayer", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L132", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid_podcastclosefullplayer", + "community": 3, + "norm_label": "podcastclosefullplayer" + }, + { + "label": "podcastShowChapters", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L133", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid_podcastshowchapters", + "community": 3, + "norm_label": "podcastshowchapters" + }, + { + "label": "podcastPreviousChapter", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L134", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid_podcastpreviouschapter", + "community": 3, + "norm_label": "podcastpreviouschapter" + }, + { + "label": "podcastNextChapter", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L135", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid_podcastnextchapter", + "community": 3, + "norm_label": "podcastnextchapter" + }, + { + "label": "podcastCloseMiniPlayer", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L138", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid_podcastcloseminiplayer", + "community": 3, + "norm_label": "podcastcloseminiplayer" + }, + { + "label": "podcastOpenFullPlayer", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L139", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid_podcastopenfullplayer", + "community": 3, + "norm_label": "podcastopenfullplayer" + }, + { + "label": "podcastTogglePlayPause", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L142", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid_podcasttoggleplaypause", + "community": 3, + "norm_label": "podcasttoggleplaypause" + }, + { + "label": "podcastSkipMinus15", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L143", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid_podcastskipminus15", + "community": 3, + "norm_label": "podcastskipminus15" + }, + { + "label": "podcastSkipPlus15", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L144", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid_podcastskipplus15", + "community": 3, + "norm_label": "podcastskipplus15" + }, + { + "label": "podcastSpeedButton", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L147", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid_podcastspeedbutton", + "community": 3, + "norm_label": "podcastspeedbutton" + }, + { + "label": "podcastSpeed", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L148", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid_podcastspeed", + "community": 3, + "norm_label": "podcastspeed" + }, + { + "label": "Double", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_swift_double", + "community": 3, + "norm_label": "double" + }, + { + "label": "podcastSpeedAdvanced", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L149", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid_podcastspeedadvanced", + "community": 3, + "norm_label": "podcastspeedadvanced" + }, + { + "label": "podcastStarted", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L152", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid_podcaststarted", + "community": 3, + "norm_label": "podcaststarted" + }, + { + "label": "podcastFavorite", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L153", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid_podcastfavorite", + "community": 3, + "norm_label": "podcastfavorite" + }, + { + "label": "videoStarted", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L156", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid_videostarted", + "community": 3, + "norm_label": "videostarted" + }, + { + "label": "videoStopped", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L157", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid_videostopped", + "community": 3, + "norm_label": "videostopped" + }, + { + "label": "videoFavorite", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L158", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid_videofavorite", + "community": 3, + "norm_label": "videofavorite" + }, + { + "label": "share", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L161", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid_share", + "community": 3, + "norm_label": "share" + }, + { + "label": "favoriteButton", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L162", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid_favoritebutton", + "community": 3, + "norm_label": "favoritebutton" + }, + { + "label": "theme", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L165", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid_theme", + "community": 3, + "norm_label": "theme" + }, + { + "label": "icon", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L166", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid_icon", + "community": 3, + "norm_label": "icon" + }, + { + "label": "cleanPostsOptions", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L169", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid_cleanpostsoptions", + "community": 3, + "norm_label": "cleanpostsoptions" + }, + { + "label": "cleanPosts", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L170", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid_cleanposts", + "community": 3, + "norm_label": "cleanposts" + }, + { + "label": "cleanAllPosts", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L171", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid_cleanallposts", + "community": 3, + "norm_label": "cleanallposts" + }, + { + "label": "cleanOnboarding", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L172", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid_cleanonboarding", + "community": 3, + "norm_label": "cleanonboarding" + }, + { + "label": "pushNotifications", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L175", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid_pushnotifications", + "community": 3, + "norm_label": "pushnotifications" + }, + { + "label": "restorePurchase", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L178", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid_restorepurchase", + "community": 3, + "norm_label": "restorepurchase" + }, + { + "label": "manageSubscription", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L179", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid_managesubscription", + "community": 3, + "norm_label": "managesubscription" + }, + { + "label": "loginPatrao", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L180", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid_loginpatrao", + "community": 3, + "norm_label": "loginpatrao" + }, + { + "label": "logoffPatrao", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L181", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid_logoffpatrao", + "community": 3, + "norm_label": "logoffpatrao" + }, + { + "label": "reportProblem", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L184", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid_reportproblem", + "community": 3, + "norm_label": "reportproblem" + }, + { + "label": "termsConditions", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L185", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid_termsconditions", + "community": 3, + "norm_label": "termsconditions" + }, + { + "label": "privacyPolicy", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L186", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid_privacypolicy", + "community": 3, + "norm_label": "privacypolicy" + }, + { + "label": "tabSelected", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L189", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid_tabselected", + "community": 3, + "norm_label": "tabselected" + }, + { + "label": "sidebarItemSelected", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L190", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid_sidebaritemselected", + "community": 3, + "norm_label": "sidebaritemselected" + }, + { + "label": "categoryFilterChanged", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L191", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid_categoryfilterchanged", + "community": 3, + "norm_label": "categoryfilterchanged" + }, + { + "label": "deepLinkOpened", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L192", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid_deeplinkopened", + "community": 3, + "norm_label": "deeplinkopened" + }, + { + "label": "searchResultSelected", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L195", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid_searchresultselected", + "community": 3, + "norm_label": "searchresultselected" + }, + { + "label": "recentSearchTapped", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L196", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid_recentsearchtapped", + "community": 3, + "norm_label": "recentsearchtapped" + }, + { + "label": "recentSearchCleared", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L197", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid_recentsearchcleared", + "community": 3, + "norm_label": "recentsearchcleared" + }, + { + "label": "recentSearchRemoved", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L198", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid_recentsearchremoved", + "community": 3, + "norm_label": "recentsearchremoved" + }, + { + "label": "highlightCardTapped", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L201", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid_highlightcardtapped", + "community": 3, + "norm_label": "highlightcardtapped" + }, + { + "label": "pullToRefresh", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L202", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid_pulltorefresh", + "community": 3, + "norm_label": "pulltorefresh" + }, + { + "label": "appLaunched", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L205", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid_applaunched", + "community": 3, + "norm_label": "applaunched" + }, + { + "label": "onboardingWelcomeSkip", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L208", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid_onboardingwelcomeskip", + "community": 3, + "norm_label": "onboardingwelcomeskip" + }, + { + "label": "onboardingWelcomeContinue", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L209", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid_onboardingwelcomecontinue", + "community": 3, + "norm_label": "onboardingwelcomecontinue" + }, + { + "label": "onboardingFeaturesSkip", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L210", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid_onboardingfeaturesskip", + "community": 3, + "norm_label": "onboardingfeaturesskip" + }, + { + "label": "onboardingFeaturesContinue", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L211", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid_onboardingfeaturescontinue", + "community": 3, + "norm_label": "onboardingfeaturescontinue" + }, + { + "label": "onboardingFeaturePage", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L212", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid_onboardingfeaturepage", + "community": 3, + "norm_label": "onboardingfeaturepage" + }, + { + "label": "onboardingPushSkip", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L213", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid_onboardingpushskip", + "community": 3, + "norm_label": "onboardingpushskip" + }, + { + "label": "onboardingPushContinue", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L214", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid_onboardingpushcontinue", + "community": 3, + "norm_label": "onboardingpushcontinue" + }, + { + "label": "onboardingPushAccepted", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L215", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid_onboardingpushaccepted", + "community": 3, + "norm_label": "onboardingpushaccepted" + }, + { + "label": "onboardingPushDenied", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L216", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid_onboardingpushdenied", + "community": 3, + "norm_label": "onboardingpushdenied" + }, + { + "label": "onboardingATTContinue", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L217", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid_onboardingattcontinue", + "community": 3, + "norm_label": "onboardingattcontinue" + }, + { + "label": "onboardingATTAccepted", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L218", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid_onboardingattaccepted", + "community": 3, + "norm_label": "onboardingattaccepted" + }, + { + "label": "onboardingATTDenied", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L219", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid_onboardingattdenied", + "community": 3, + "norm_label": "onboardingattdenied" + }, + { + "label": "onboardingComplete", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L220", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid_onboardingcomplete", + "community": 3, + "norm_label": "onboardingcomplete" + }, + { + "label": "GenericEvent", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L326", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_genericevent", + "community": 110, + "norm_label": "genericevent" + }, + { + "label": "newsOrder", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L327", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_genericevent_newsorder", + "community": 110, + "norm_label": "newsorder" + }, + { + "label": "tabOrder", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L328", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_genericevent_taborder", + "community": 110, + "norm_label": "taborder" + }, + { + "label": "socialOrder", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L329", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_genericevent_socialorder", + "community": 110, + "norm_label": "socialorder" + }, + { + "label": "AppDefinitions.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AppDefinitions.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions", + "community": 28, + "norm_label": "appdefinitions.swift" + }, + { + "label": "AnalyticsLibrary", + "file_type": "code", + "type": "module", + "source_file": "MacMagazine/Widget/Views/WidgetView.swift", + "source_location": "L1", + "_origin": "ast", + "id": "analyticslibrary", + "community": 2, + "norm_label": "analyticslibrary" + }, + { + "label": "AppTabs", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AppDefinitions.swift", + "source_location": "L4", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_apptabs", + "community": 77, + "norm_label": "apptabs" + }, + { + "label": "String", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "string", + "community": 23, + "norm_label": "string" + }, + { + "label": "CaseIterable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "caseiterable", + "community": 23, + "norm_label": "caseiterable" + }, + { + "label": "live", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AppDefinitions.swift", + "source_location": "L6", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_apptabs_live", + "community": 77, + "norm_label": "live" + }, + { + "label": "news", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AppDefinitions.swift", + "source_location": "L7", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_apptabs_news", + "community": 77, + "norm_label": "news" + }, + { + "label": "social", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AppDefinitions.swift", + "source_location": "L8", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_apptabs_social", + "community": 77, + "norm_label": "social" + }, + { + "label": "settings", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AppDefinitions.swift", + "source_location": "L9", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_apptabs_settings", + "community": 77, + "norm_label": "settings" + }, + { + "label": "search", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AppDefinitions.swift", + "source_location": "L10", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_apptabs_search", + "community": 77, + "norm_label": "search" + }, + { + "label": "News", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AppDefinitions.swift", + "source_location": "L32", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_news", + "community": 51, + "norm_label": "news" + }, + { + "label": "all", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AppDefinitions.swift", + "source_location": "L33", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_news_all", + "community": 51, + "norm_label": "all" + }, + { + "label": "news", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AppDefinitions.swift", + "source_location": "L34", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_news_news", + "community": 51, + "norm_label": "news" + }, + { + "label": "highlights", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AppDefinitions.swift", + "source_location": "L35", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_news_highlights", + "community": 51, + "norm_label": "highlights" + }, + { + "label": "appletv", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AppDefinitions.swift", + "source_location": "L36", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_news_appletv", + "community": 51, + "norm_label": "appletv" + }, + { + "label": "reviews", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AppDefinitions.swift", + "source_location": "L37", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_news_reviews", + "community": 51, + "norm_label": "reviews" + }, + { + "label": "rumors", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AppDefinitions.swift", + "source_location": "L38", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_news_rumors", + "community": 51, + "norm_label": "rumors" + }, + { + "label": "tutoriais", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AppDefinitions.swift", + "source_location": "L39", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_news_tutoriais", + "community": 51, + "norm_label": "tutoriais" + }, + { + "label": "Social", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AppDefinitions.swift", + "source_location": "L54", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_social", + "community": 44, + "norm_label": "social" + }, + { + "label": "videos", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AppDefinitions.swift", + "source_location": "L55", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_social_videos", + "community": 44, + "norm_label": "videos" + }, + { + "label": "podcast", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AppDefinitions.swift", + "source_location": "L56", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_social_podcast", + "community": 44, + "norm_label": "podcast" + }, + { + "label": "instagram", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AppDefinitions.swift", + "source_location": "L57", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_social_instagram", + "community": 44, + "norm_label": "instagram" + }, + { + "label": "areEqual()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AppDefinitions.swift", + "source_location": "L76", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_areequal", + "community": 28, + "norm_label": "areequal()" + }, + { + "label": "Bool", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_swift_bool", + "community": 28, + "norm_label": "bool" + }, + { + "label": "Equatable", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AppDefinitions.swift", + "source_location": "L84", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_equatable", + "community": 28, + "norm_label": "equatable" + }, + { + "label": ".isEqual()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AppDefinitions.swift", + "source_location": "L85", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_equatable_isequal", + "community": 28, + "norm_label": ".isequal()" + }, + { + "label": "DateExtensions.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/DateExtensions.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_dateextensions", + "community": 1, + "norm_label": "dateextensions.swift" + }, + { + "label": "Date", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/DateExtensions.swift", + "source_location": "L3", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_dateextensions_date", + "community": 1, + "norm_label": "date" + }, + { + "label": ".toTimeAgoDisplay()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/DateExtensions.swift", + "source_location": "L4", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_dateextensions_date_totimeagodisplay", + "community": 1, + "norm_label": ".totimeagodisplay()" + }, + { + "label": "Bool", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_dateextensions_swift_bool", + "community": 1, + "norm_label": "bool" + }, + { + "label": "String", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_dateextensions_swift_string", + "community": 1, + "norm_label": "string" + }, + { + "label": "EnvironmentValuesExtensions.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/EnvironmentValuesExtensions.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_environmentvaluesextensions", + "community": 146, + "norm_label": "environmentvaluesextensions.swift" + }, + { + "label": "SwiftUI", + "file_type": "code", + "type": "module", + "source_file": "MacMagazine/Widget/Views/WidgetView.swift", + "source_location": "L4", + "_origin": "ast", + "id": "swiftui", + "community": 2, + "norm_label": "swiftui" + }, + { + "label": "EnvironmentValues", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/EnvironmentValuesExtensions.swift", + "source_location": "L3", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_environmentvaluesextensions_environmentvalues", + "community": 146, + "norm_label": "environmentvalues" + }, + { + "label": "Bool", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_environmentvaluesextensions_swift_bool", + "community": 146, + "norm_label": "bool" + }, + { + "label": "ModelProtocols.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/ModelProtocols.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_modelprotocols", + "community": 120, + "norm_label": "modelprotocols.swift" + }, + { + "label": "ModelFavoritable", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/ModelProtocols.swift", + "source_location": "L4", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_modelprotocols_modelfavoritable", + "community": 120, + "norm_label": "modelfavoritable" + }, + { + "label": "AnyObject", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "anyobject", + "community": 120, + "norm_label": "anyobject" + }, + { + "label": "PersistentModel", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "persistentmodel", + "community": 120, + "norm_label": "persistentmodel" + }, + { + "label": "ModelReadable", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/ModelProtocols.swift", + "source_location": "L8", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_modelprotocols_modelreadable", + "community": 120, + "norm_label": "modelreadable" + }, + { + "label": "ModelDuplicable", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/ModelProtocols.swift", + "source_location": "L12", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_modelprotocols_modelduplicable", + "community": 120, + "norm_label": "modelduplicable" + }, + { + "label": "NewsCategory.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/NewsCategory.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_newscategory", + "community": 23, + "norm_label": "newscategory.swift" + }, + { + "label": "NewsCategory", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/NewsCategory.swift", + "source_location": "L3", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_newscategory_newscategory", + "community": 23, + "norm_label": "newscategory" + }, + { + "label": "all", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/NewsCategory.swift", + "source_location": "L4", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_newscategory_newscategory_all", + "community": 23, + "norm_label": "all" + }, + { + "label": "news", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/NewsCategory.swift", + "source_location": "L5", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_newscategory_newscategory_news", + "community": 23, + "norm_label": "news" + }, + { + "label": "highlights", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/NewsCategory.swift", + "source_location": "L6", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_newscategory_newscategory_highlights", + "community": 23, + "norm_label": "highlights" + }, + { + "label": "appletv", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/NewsCategory.swift", + "source_location": "L7", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_newscategory_newscategory_appletv", + "community": 23, + "norm_label": "appletv" + }, + { + "label": "reviews", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/NewsCategory.swift", + "source_location": "L8", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_newscategory_newscategory_reviews", + "community": 23, + "norm_label": "reviews" + }, + { + "label": "rumors", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/NewsCategory.swift", + "source_location": "L9", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_newscategory_newscategory_rumors", + "community": 23, + "norm_label": "rumors" + }, + { + "label": "tutorials", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/NewsCategory.swift", + "source_location": "L10", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_newscategory_newscategory_tutorials", + "community": 23, + "norm_label": "tutorials" + }, + { + "label": "youtube", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/NewsCategory.swift", + "source_location": "L11", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_newscategory_newscategory_youtube", + "community": 23, + "norm_label": "youtube" + }, + { + "label": "podcast", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/NewsCategory.swift", + "source_location": "L12", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_newscategory_newscategory_podcast", + "community": 23, + "norm_label": "podcast" + }, + { + "label": "PushNotification.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/PushNotification/PushNotification.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_pushnotification", + "community": 24, + "norm_label": "pushnotification.swift" + }, + { + "label": "LoggerLibrary", + "file_type": "code", + "type": "module", + "source_file": "MacMagazine/WatchApp/MainApp/WatchNotificationsDelegate.swift", + "source_location": "L2", + "_origin": "ast", + "id": "loggerlibrary", + "community": 24, + "norm_label": "loggerlibrary" + }, + { + "label": "Observation", + "file_type": "code", + "type": "module", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/PodcastPlayerManager.swift", + "source_location": "L7", + "_origin": "ast", + "id": "observation", + "community": 24, + "norm_label": "observation" + }, + { + "label": "UtilityLibrary", + "file_type": "code", + "type": "module", + "source_file": "MacMagazine/Widget/Views/WidgetElementView.swift", + "source_location": "L6", + "_origin": "ast", + "id": "utilitylibrary", + "community": 2, + "norm_label": "utilitylibrary" + }, + { + "label": "PushPermissionStatus", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/PushNotification/PushNotification.swift", + "source_location": "L7", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_pushnotification_pushpermissionstatus", + "community": 52, + "norm_label": "pushpermissionstatus" + }, + { + "label": "notDetermined", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/PushNotification/PushNotification.swift", + "source_location": "L8", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_pushnotification_pushpermissionstatus_notdetermined", + "community": 52, + "norm_label": "notdetermined" + }, + { + "label": "authorized", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/PushNotification/PushNotification.swift", + "source_location": "L9", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_pushnotification_pushpermissionstatus_authorized", + "community": 52, + "norm_label": "authorized" + }, + { + "label": "denied", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/PushNotification/PushNotification.swift", + "source_location": "L10", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_pushnotification_pushpermissionstatus_denied", + "community": 52, + "norm_label": "denied" + }, + { + "label": "PushNotification", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/PushNotification/PushNotification.swift", + "source_location": "L13", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_pushnotification_pushnotification", + "community": 52, + "norm_label": "pushnotification" + }, + { + "label": "String", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_pushnotification_swift_string", + "community": 52, + "norm_label": "string" + }, + { + "label": "LoggerProtocol", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_pushnotification_swift_loggerprotocol", + "community": 52, + "norm_label": "loggerprotocol" + }, + { + "label": ".init()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/PushNotification/PushNotification.swift", + "source_location": "L20", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_pushnotification_pushnotification_init", + "community": 52, + "norm_label": ".init()" + }, + { + "label": ".addDevice()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/PushNotification/PushNotification.swift", + "source_location": "L50", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_pushnotification_pushnotification_adddevice", + "community": 73, + "norm_label": ".adddevice()" + }, + { + "label": "OneSignalFramework", + "file_type": "code", + "type": "module", + "source_file": "MacMagazine/MacMagazine/MainApp/AppDelegate.swift", + "source_location": "L4", + "_origin": "ast", + "id": "onesignalframework", + "community": 24, + "norm_label": "onesignalframework" + }, + { + "label": ".tag()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/PushNotification/PushNotification.swift", + "source_location": "L99", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_pushnotification_pushnotification_tag", + "community": 52, + "norm_label": ".tag()" + }, + { + "label": "UIKit", + "file_type": "code", + "type": "module", + "source_file": "MacMagazine/Widget/Views/WidgetElementView.swift", + "source_location": "L5", + "_origin": "ast", + "id": "uikit", + "community": 24, + "norm_label": "uikit" + }, + { + "label": "PushNotificationDefinition", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/PushNotification/PushNotification.swift", + "source_location": "L107", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_pushnotification_pushnotificationdefinition", + "community": 122, + "norm_label": "pushnotificationdefinition" + }, + { + "label": "UIApplication", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_pushnotification_swift_uiapplication", + "community": 122, + "norm_label": "uiapplication" + }, + { + "label": "Any", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_pushnotification_swift_any", + "community": 122, + "norm_label": "any" + }, + { + "label": ".resetBadge()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/PushNotification/PushNotification.swift", + "source_location": "L113", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_pushnotification_pushnotification_resetbadge", + "community": 52, + "norm_label": ".resetbadge()" + }, + { + "label": ".initialize()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/PushNotification/PushNotification.swift", + "source_location": "L118", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_pushnotification_pushnotification_initialize", + "community": 122, + "norm_label": ".initialize()" + }, + { + "label": ".setup()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/PushNotification/PushNotification.swift", + "source_location": "L127", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_pushnotification_pushnotification_setup", + "community": 122, + "norm_label": ".setup()" + }, + { + "label": "Bool", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_pushnotification_swift_bool", + "community": 122, + "norm_label": "bool" + }, + { + "label": "OSNotificationLifecycleListener", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "osnotificationlifecyclelistener", + "community": 52, + "norm_label": "osnotificationlifecyclelistener" + }, + { + "label": ".onWillDisplay()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/PushNotification/PushNotification.swift", + "source_location": "L140", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_pushnotification_pushnotification_onwilldisplay", + "community": 52, + "norm_label": ".onwilldisplay()" + }, + { + "label": "OSNotificationWillDisplayEvent", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "osnotificationwilldisplayevent", + "community": 52, + "norm_label": "osnotificationwilldisplayevent" + }, + { + "label": "OSNotificationClickListener", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "osnotificationclicklistener", + "community": 52, + "norm_label": "osnotificationclicklistener" + }, + { + "label": ".onClick()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/PushNotification/PushNotification.swift", + "source_location": "L152", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_pushnotification_pushnotification_onclick", + "community": 52, + "norm_label": ".onclick()" + }, + { + "label": "OSNotificationClickEvent", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "osnotificationclickevent", + "community": 52, + "norm_label": "osnotificationclickevent" + }, + { + "label": "UNUserNotificationCenterDelegate", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "unusernotificationcenterdelegate", + "community": 57, + "norm_label": "unusernotificationcenterdelegate" + }, + { + "label": ".userNotificationCenter()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/PushNotification/PushNotification.swift", + "source_location": "L173", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_pushnotification_pushnotification_usernotificationcenter", + "community": 123, + "norm_label": ".usernotificationcenter()" + }, + { + "label": "UNUserNotificationCenter", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_pushnotification_swift_unusernotificationcenter", + "community": 123, + "norm_label": "unusernotificationcenter" + }, + { + "label": "UNNotification", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "unnotification", + "community": 123, + "norm_label": "unnotification" + }, + { + "label": "UNNotificationPresentationOptions", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "unnotificationpresentationoptions", + "community": 123, + "norm_label": "unnotificationpresentationoptions" + }, + { + "label": "Void", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_pushnotification_swift_void", + "community": 123, + "norm_label": "void" + }, + { + "label": "UNNotificationResponse", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_pushnotification_swift_unnotificationresponse", + "community": 123, + "norm_label": "unnotificationresponse" + }, + { + "label": "UserModel.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/PushNotification/UserModel.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_usermodel", + "community": 73, + "norm_label": "usermodel.swift" + }, + { + "label": "UserModel", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/PushNotification/UserModel.swift", + "source_location": "L3", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_usermodel_usermodel", + "community": 73, + "norm_label": "usermodel" + }, + { + "label": "Encodable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "encodable", + "community": 73, + "norm_label": "encodable" + }, + { + "label": "UserProperties", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/PushNotification/UserModel.swift", + "source_location": "L9", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_usermodel_userproperties", + "community": 73, + "norm_label": "userproperties" + }, + { + "label": "String", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_usermodel_swift_string", + "community": 73, + "norm_label": "string" + }, + { + "label": "UserIdentity", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/PushNotification/UserModel.swift", + "source_location": "L15", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_usermodel_useridentity", + "community": 73, + "norm_label": "useridentity" + }, + { + "label": "UserSubscriptions", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/PushNotification/UserModel.swift", + "source_location": "L19", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_usermodel_usersubscriptions", + "community": 73, + "norm_label": "usersubscriptions" + }, + { + "label": "UserSubscriptionsType", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/PushNotification/UserModel.swift", + "source_location": "L20", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_usermodel_usersubscriptionstype", + "community": 73, + "norm_label": "usersubscriptionstype" + }, + { + "label": "ios", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/PushNotification/UserModel.swift", + "source_location": "L21", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_usermodel_usersubscriptionstype_ios", + "community": 73, + "norm_label": "ios" + }, + { + "label": "Int", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_usermodel_swift_int", + "community": 73, + "norm_label": "int" + }, + { + "label": "SessionState.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/SessionState.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_sessionstate", + "community": 139, + "norm_label": "sessionstate.swift" + }, + { + "label": "SessionState", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/SessionState.swift", + "source_location": "L4", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_sessionstate_sessionstate", + "community": 139, + "norm_label": "sessionstate" + }, + { + "label": "Bool", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_sessionstate_swift_bool", + "community": 139, + "norm_label": "bool" + }, + { + "label": ".init()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/SessionState.swift", + "source_location": "L17", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_sessionstate_sessionstate_init", + "community": 139, + "norm_label": ".init()" + }, + { + "label": "ThemeColor.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/ThemeColor.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_themecolor", + "community": 45, + "norm_label": "themecolor.swift" + }, + { + "label": "UIComponentsLibrary", + "file_type": "code", + "type": "module", + "source_file": "MacMagazine/Widget/Views/WidgetElementView.swift", + "source_location": "L4", + "_origin": "ast", + "id": "uicomponentslibrary", + "community": 2, + "norm_label": "uicomponentslibrary" + }, + { + "label": "ThemeColor", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/ThemeColor.swift", + "source_location": "L5", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_themecolor_themecolor", + "community": 45, + "norm_label": "themecolor" + }, + { + "label": "Themeable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "themeable", + "community": 45, + "norm_label": "themeable" + }, + { + "label": ".init()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/ThemeColor.swift", + "source_location": "L25", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_themecolor_themecolor_init", + "community": 45, + "norm_label": ".init()" + }, + { + "label": "String", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/ThemeColor.swift", + "source_location": "L28", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_themecolor_string", + "community": 45, + "norm_label": "string" + }, + { + "label": "Color", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_themecolor_swift_color", + "community": 45, + "norm_label": "color" + }, + { + "label": "EnvironmentValues", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/ThemeColor.swift", + "source_location": "L32", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_themecolor_environmentvalues", + "community": 45, + "norm_label": "environmentvalues" + }, + { + "label": "URLClassifier.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/URLClassifier.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_urlclassifier", + "community": 85, + "norm_label": "urlclassifier.swift" + }, + { + "label": "URLClassification", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/URLClassifier.swift", + "source_location": "L3", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_urlclassifier_urlclassification", + "community": 85, + "norm_label": "urlclassification" + }, + { + "label": "comments", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/URLClassifier.swift", + "source_location": "L4", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_urlclassifier_urlclassification_comments", + "community": 85, + "norm_label": "comments" + }, + { + "label": "String", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_urlclassifier_swift_string", + "community": 85, + "norm_label": "string" + }, + { + "label": "macmagazinePost", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/URLClassifier.swift", + "source_location": "L5", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_urlclassifier_urlclassification_macmagazinepost", + "community": 85, + "norm_label": "macmagazinepost" + }, + { + "label": "appStore", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/URLClassifier.swift", + "source_location": "L6", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_urlclassifier_urlclassification_appstore", + "community": 85, + "norm_label": "appstore" + }, + { + "label": "youTube", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/URLClassifier.swift", + "source_location": "L7", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_urlclassifier_urlclassification_youtube", + "community": 85, + "norm_label": "youtube" + }, + { + "label": "instagram", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/URLClassifier.swift", + "source_location": "L8", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_urlclassifier_urlclassification_instagram", + "community": 85, + "norm_label": "instagram" + }, + { + "label": "external", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/URLClassifier.swift", + "source_location": "L9", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_urlclassifier_urlclassification_external", + "community": 85, + "norm_label": "external" + }, + { + "label": "URLClassifier", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/URLClassifier.swift", + "source_location": "L12", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_urlclassifier_urlclassifier", + "community": 85, + "norm_label": "urlclassifier" + }, + { + "label": ".classify()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/URLClassifier.swift", + "source_location": "L13", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_urlclassifier_urlclassifier_classify", + "community": 86, + "norm_label": ".classify()" + }, + { + "label": "Utils.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/Utils.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_utils", + "community": 24, + "norm_label": "utils.swift" + }, + { + "label": "Utils", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/Utils.swift", + "source_location": "L4", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_utils_utils", + "community": 5, + "norm_label": "utils" + }, + { + "label": ".isDarkMode()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/Utils.swift", + "source_location": "L12", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_utils_utils_isdarkmode", + "community": 5, + "norm_label": ".isdarkmode()" + }, + { + "label": "Bool", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_utils_swift_bool", + "community": 5, + "norm_label": "bool" + }, + { + "label": "AppDefinitionsTests.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Tests/MacMagazineLibraryTests/AppDefinitionsTests.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_appdefinitionstests", + "community": 9, + "norm_label": "appdefinitionstests.swift" + }, + { + "label": "AppTabsTests", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Tests/MacMagazineLibraryTests/AppDefinitionsTests.swift", + "source_location": "L5", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_appdefinitionstests_apptabstests", + "community": 77, + "norm_label": "apptabstests" + }, + { + "label": ".codableRoundTrip()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Tests/MacMagazineLibraryTests/AppDefinitionsTests.swift", + "source_location": "L8", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_appdefinitionstests_apptabstests_codableroundtrip", + "community": 77, + "norm_label": ".codableroundtrip()" + }, + { + "label": ".usableAsDictionaryKeys()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Tests/MacMagazineLibraryTests/AppDefinitionsTests.swift", + "source_location": "L17", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_appdefinitionstests_apptabstests_usableasdictionarykeys", + "community": 77, + "norm_label": ".usableasdictionarykeys()" + }, + { + "label": "NewsTests", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Tests/MacMagazineLibraryTests/AppDefinitionsTests.swift", + "source_location": "L27", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_appdefinitionstests_newstests", + "community": 147, + "norm_label": "newstests" + }, + { + "label": ".codableRoundTrip()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Tests/MacMagazineLibraryTests/AppDefinitionsTests.swift", + "source_location": "L30", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_appdefinitionstests_newstests_codableroundtrip", + "community": 147, + "norm_label": ".codableroundtrip()" + }, + { + "label": ".usableAsDictionaryKeys()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Tests/MacMagazineLibraryTests/AppDefinitionsTests.swift", + "source_location": "L39", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_appdefinitionstests_newstests_usableasdictionarykeys", + "community": 147, + "norm_label": ".usableasdictionarykeys()" + }, + { + "label": "SocialTests", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Tests/MacMagazineLibraryTests/AppDefinitionsTests.swift", + "source_location": "L49", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_appdefinitionstests_socialtests", + "community": 44, + "norm_label": "socialtests" + }, + { + "label": ".codableRoundTrip()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Tests/MacMagazineLibraryTests/AppDefinitionsTests.swift", + "source_location": "L52", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_appdefinitionstests_socialtests_codableroundtrip", + "community": 44, + "norm_label": ".codableroundtrip()" + }, + { + "label": ".usableAsDictionaryKeys()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Tests/MacMagazineLibraryTests/AppDefinitionsTests.swift", + "source_location": "L61", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_appdefinitionstests_socialtests_usableasdictionarykeys", + "community": 44, + "norm_label": ".usableasdictionarykeys()" + }, + { + "label": "AreEqualTests", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Tests/MacMagazineLibraryTests/AppDefinitionsTests.swift", + "source_location": "L71", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_appdefinitionstests_areequaltests", + "community": 28, + "norm_label": "areequaltests" + }, + { + "label": ".sameValues()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Tests/MacMagazineLibraryTests/AppDefinitionsTests.swift", + "source_location": "L74", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_appdefinitionstests_areequaltests_samevalues", + "community": 28, + "norm_label": ".samevalues()" + }, + { + "label": ".differentValuesSameType()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Tests/MacMagazineLibraryTests/AppDefinitionsTests.swift", + "source_location": "L81", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_appdefinitionstests_areequaltests_differentvaluessametype", + "community": 28, + "norm_label": ".differentvaluessametype()" + }, + { + "label": ".differentTypes()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Tests/MacMagazineLibraryTests/AppDefinitionsTests.swift", + "source_location": "L88", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_appdefinitionstests_areequaltests_differenttypes", + "community": 28, + "norm_label": ".differenttypes()" + }, + { + "label": "URLClassifierTests.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Tests/MacMagazineLibraryTests/URLClassifierTests.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_urlclassifiertests", + "community": 9, + "norm_label": "urlclassifiertests.swift" + }, + { + "label": "URLClassifierTests", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Tests/MacMagazineLibraryTests/URLClassifierTests.swift", + "source_location": "L6", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_urlclassifiertests_urlclassifiertests", + "community": 86, + "norm_label": "urlclassifiertests" + }, + { + "label": ".commentsScheme()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Tests/MacMagazineLibraryTests/URLClassifierTests.swift", + "source_location": "L9", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_urlclassifiertests_urlclassifiertests_commentsscheme", + "community": 86, + "norm_label": ".commentsscheme()" + }, + { + "label": ".disqusAnchor()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Tests/MacMagazineLibraryTests/URLClassifierTests.swift", + "source_location": "L15", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_urlclassifiertests_urlclassifiertests_disqusanchor", + "community": 86, + "norm_label": ".disqusanchor()" + }, + { + "label": ".instagram()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Tests/MacMagazineLibraryTests/URLClassifierTests.swift", + "source_location": "L21", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_urlclassifiertests_urlclassifiertests_instagram", + "community": 86, + "norm_label": ".instagram()" + }, + { + "label": ".appStore()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Tests/MacMagazineLibraryTests/URLClassifierTests.swift", + "source_location": "L27", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_urlclassifiertests_urlclassifiertests_appstore", + "community": 86, + "norm_label": ".appstore()" + }, + { + "label": ".iTunes()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Tests/MacMagazineLibraryTests/URLClassifierTests.swift", + "source_location": "L33", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_urlclassifiertests_urlclassifiertests_itunes", + "community": 86, + "norm_label": ".itunes()" + }, + { + "label": ".youTube()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Tests/MacMagazineLibraryTests/URLClassifierTests.swift", + "source_location": "L39", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_urlclassifiertests_urlclassifiertests_youtube", + "community": 86, + "norm_label": ".youtube()" + }, + { + "label": ".macmagazinePost()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Tests/MacMagazineLibraryTests/URLClassifierTests.swift", + "source_location": "L51", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_urlclassifiertests_urlclassifiertests_macmagazinepost", + "community": 86, + "norm_label": ".macmagazinepost()" + }, + { + "label": ".external()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Tests/MacMagazineLibraryTests/URLClassifierTests.swift", + "source_location": "L57", + "_origin": "ast", + "id": "macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_urlclassifiertests_urlclassifiertests_external", + "community": 86, + "norm_label": ".external()" + }, + { + "label": "Package.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Package.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_package", + "community": 75, + "norm_label": "package.swift" + }, + { + "label": "ArrayExtensions.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/ArrayExtensions.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_arrayextensions", + "community": 148, + "norm_label": "arrayextensions.swift" + }, + { + "label": "Array", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/ArrayExtensions.swift", + "source_location": "L13", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_arrayextensions_array", + "community": 148, + "norm_label": "array" + }, + { + "label": "NewsCategory", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_arrayextensions_swift_newscategory", + "community": 148, + "norm_label": "newscategory" + }, + { + "label": "ButtonWithGlassEffect.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/ButtonWithGlassEffect.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_buttonwithglasseffect", + "community": 124, + "norm_label": "buttonwithglasseffect.swift" + }, + { + "label": "View", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/ButtonWithGlassEffect.swift", + "source_location": "L3", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_buttonwithglasseffect_view", + "community": 124, + "norm_label": "view" + }, + { + "label": ".buttonWithGlassEffect()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/ButtonWithGlassEffect.swift", + "source_location": "L4", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_buttonwithglasseffect_view_buttonwithglasseffect", + "community": 124, + "norm_label": ".buttonwithglasseffect()" + }, + { + "label": "ButtonWithGlassEffect", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/ButtonWithGlassEffect.swift", + "source_location": "L9", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_buttonwithglasseffect_buttonwithglasseffect", + "community": 124, + "norm_label": "buttonwithglasseffect" + }, + { + "label": "ViewModifier", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "viewmodifier", + "community": 103, + "norm_label": "viewmodifier" + }, + { + "label": ".body()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/ButtonWithGlassEffect.swift", + "source_location": "L10", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_buttonwithglasseffect_buttonwithglasseffect_body", + "community": 124, + "norm_label": ".body()" + }, + { + "label": "Content", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_buttonwithglasseffect_swift_content", + "community": 124, + "norm_label": "content" + }, + { + "label": "CardDensity.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardDensity.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_carddensity", + "community": 2, + "norm_label": "carddensity.swift" + }, + { + "label": "CardDensity", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardDensity.swift", + "source_location": "L4", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_carddensity_carddensity", + "community": 42, + "norm_label": "carddensity" + }, + { + "label": "Font", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_carddensity_swift_font", + "community": 42, + "norm_label": "font" + }, + { + "label": "Int", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_carddensity_swift_int", + "community": 42, + "norm_label": "int" + }, + { + "label": ".titleFont()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardDensity.swift", + "source_location": "L20", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_carddensity_carddensity_titlefont", + "community": 42, + "norm_label": ".titlefont()" + }, + { + "label": ".titleLineLimit()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardDensity.swift", + "source_location": "L31", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_carddensity_carddensity_titlelinelimit", + "community": 42, + "norm_label": ".titlelinelimit()" + }, + { + "label": ".from()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardDensity.swift", + "source_location": "L42", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_carddensity_carddensity_from", + "community": 42, + "norm_label": ".from()" + }, + { + "label": "CGFloat", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_carddensity_swift_cgfloat", + "community": 42, + "norm_label": "cgfloat" + }, + { + "label": "DynamicTypeSize.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/DynamicTypeSize.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_dynamictypesize", + "community": 149, + "norm_label": "dynamictypesize.swift" + }, + { + "label": "DynamicTypeSize", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/DynamicTypeSize.swift", + "source_location": "L3", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_dynamictypesize_dynamictypesize", + "community": 149, + "norm_label": "dynamictypesize" + }, + { + "label": "Bool", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_dynamictypesize_swift_bool", + "community": 149, + "norm_label": "bool" + }, + { + "label": "CardContent.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Model/CardContent.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardcontent", + "community": 2, + "norm_label": "cardcontent.swift" + }, + { + "label": "CardContentType", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Model/CardContent.swift", + "source_location": "L5", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardcontent_cardcontenttype", + "community": 50, + "norm_label": "cardcontenttype" + }, + { + "label": "video", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Model/CardContent.swift", + "source_location": "L6", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardcontent_cardcontenttype_video", + "community": 50, + "norm_label": "video" + }, + { + "label": "String", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardcontent_swift_string", + "community": 17, + "norm_label": "string" + }, + { + "label": "podcast", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Model/CardContent.swift", + "source_location": "L7", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardcontent_cardcontenttype_podcast", + "community": 50, + "norm_label": "podcast" + }, + { + "label": "news", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Model/CardContent.swift", + "source_location": "L8", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardcontent_cardcontenttype_news", + "community": 50, + "norm_label": "news" + }, + { + "label": "NewsCategory", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardcontent_swift_newscategory", + "community": 50, + "norm_label": "newscategory" + }, + { + "label": "CardContent", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Model/CardContent.swift", + "source_location": "L65", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardcontent_cardcontent", + "community": 17, + "norm_label": "cardcontent" + }, + { + "label": "AnalyticsManager", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardcontent_swift_analyticsmanager", + "community": 17, + "norm_label": "analyticsmanager" + }, + { + "label": "Bool", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardcontent_swift_bool", + "community": 17, + "norm_label": "bool" + }, + { + "label": "Void", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardcontent_swift_void", + "community": 17, + "norm_label": "void" + }, + { + "label": "CGFloat", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardcontent_swift_cgfloat", + "community": 17, + "norm_label": "cgfloat" + }, + { + "label": ".init()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Model/CardContent.swift", + "source_location": "L82", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardcontent_cardcontent_init", + "community": 17, + "norm_label": ".init()" + }, + { + "label": "CardStyle.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Model/CardStyle.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardstyle", + "community": 68, + "norm_label": "cardstyle.swift" + }, + { + "label": "CardStyle", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Model/CardStyle.swift", + "source_location": "L4", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardstyle_cardstyle", + "community": 68, + "norm_label": "cardstyle" + }, + { + "label": "leadingImage", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Model/CardStyle.swift", + "source_location": "L5", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardstyle_cardstyle_leadingimage", + "community": 68, + "norm_label": "leadingimage" + }, + { + "label": "highlight", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Model/CardStyle.swift", + "source_location": "L6", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardstyle_cardstyle_highlight", + "community": 68, + "norm_label": "highlight" + }, + { + "label": "glass", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Model/CardStyle.swift", + "source_location": "L7", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardstyle_cardstyle_glass", + "community": 68, + "norm_label": "glass" + }, + { + "label": "NewsCategory", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Model/CardStyle.swift", + "source_location": "L10", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardstyle_newscategory", + "community": 68, + "norm_label": "newscategory" + }, + { + "label": "FavoriteButton.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/FavoriteAndShare/FavoriteButton.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_favoriteandshare_favoritebutton", + "community": 24, + "norm_label": "favoritebutton.swift" + }, + { + "label": "FavoriteButton", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/FavoriteAndShare/FavoriteButton.swift", + "source_location": "L6", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_favoriteandshare_favoritebutton_favoritebutton", + "community": 130, + "norm_label": "favoritebutton" + }, + { + "label": "View", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "view", + "community": 61, + "norm_label": "view" + }, + { + "label": "String", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_favoriteandshare_favoritebutton_swift_string", + "community": 130, + "norm_label": "string" + }, + { + "label": "Bool", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_favoriteandshare_favoritebutton_swift_bool", + "community": 130, + "norm_label": "bool" + }, + { + "label": "Void", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_favoriteandshare_favoritebutton_swift_void", + "community": 130, + "norm_label": "void" + }, + { + "label": ".init()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/FavoriteAndShare/FavoriteButton.swift", + "source_location": "L11", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_favoriteandshare_favoritebutton_favoritebutton_init", + "community": 130, + "norm_label": ".init()" + }, + { + "label": "FavoriteShareGlassContainer.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/FavoriteAndShare/FavoriteShareGlassContainer.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_favoriteandshare_favoriteshareglasscontainer", + "community": 128, + "norm_label": "favoriteshareglasscontainer.swift" + }, + { + "label": "FavoriteShareGlassContainer", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/FavoriteAndShare/FavoriteShareGlassContainer.swift", + "source_location": "L3", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_favoriteandshare_favoriteshareglasscontainer_favoriteshareglasscontainer", + "community": 128, + "norm_label": "favoriteshareglasscontainer" + }, + { + "label": "FavoriteView", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "favoriteview", + "community": 128, + "norm_label": "favoriteview" + }, + { + "label": "ShareView", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "shareview", + "community": 128, + "norm_label": "shareview" + }, + { + "label": ".init()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/FavoriteAndShare/FavoriteShareGlassContainer.swift", + "source_location": "L7", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_favoriteandshare_favoriteshareglasscontainer_favoriteshareglasscontainer_init", + "community": 128, + "norm_label": ".init()" + }, + { + "label": "ShareButton.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/FavoriteAndShare/ShareButton.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_favoriteandshare_sharebutton", + "community": 2, + "norm_label": "sharebutton.swift" + }, + { + "label": "ShareButton", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/FavoriteAndShare/ShareButton.swift", + "source_location": "L4", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_favoriteandshare_sharebutton_sharebutton", + "community": 150, + "norm_label": "sharebutton" + }, + { + "label": "String", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_favoriteandshare_sharebutton_swift_string", + "community": 150, + "norm_label": "string" + }, + { + "label": ".init()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/FavoriteAndShare/ShareButton.swift", + "source_location": "L8", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_favoriteandshare_sharebutton_sharebutton_init", + "community": 150, + "norm_label": ".init()" + }, + { + "label": "MenuButton.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/Menu/MenuButton.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_menu_menubutton", + "community": 17, + "norm_label": "menubutton.swift" + }, + { + "label": "MenuButton", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/Menu/MenuButton.swift", + "source_location": "L3", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_menu_menubutton_menubutton", + "community": 17, + "norm_label": "menubutton" + }, + { + "label": ".init()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/Menu/MenuButton.swift", + "source_location": "L6", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_menu_menubutton_menubutton_init", + "community": 17, + "norm_label": ".init()" + }, + { + "label": "MenuContent", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/Menu/MenuButton.swift", + "source_location": "L20", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_menu_menubutton_menucontent", + "community": 17, + "norm_label": "menucontent" + }, + { + "label": ".init()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/Menu/MenuButton.swift", + "source_location": "L25", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_menu_menubutton_menucontent_init", + "community": 17, + "norm_label": ".init()" + }, + { + "label": "String", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_menu_menubutton_swift_string", + "community": 17, + "norm_label": "string" + }, + { + "label": "MetadataContent.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/Metadata/MetadataContent.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_metadata_metadatacontent", + "community": 140, + "norm_label": "metadatacontent.swift" + }, + { + "label": "MetadataContent", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/Metadata/MetadataContent.swift", + "source_location": "L3", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_metadata_metadatacontent_metadatacontent", + "community": 140, + "norm_label": "metadatacontent" + }, + { + "label": "String", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_metadata_metadatacontent_swift_string", + "community": 140, + "norm_label": "string" + }, + { + "label": ".init()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/Metadata/MetadataContent.swift", + "source_location": "L7", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_metadata_metadatacontent_metadatacontent_init", + "community": 140, + "norm_label": ".init()" + }, + { + "label": "MetadataDuration.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/Metadata/MetadataDuration.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_metadata_metadataduration", + "community": 2, + "norm_label": "metadataduration.swift" + }, + { + "label": "MetadataDuration", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/Metadata/MetadataDuration.swift", + "source_location": "L4", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_metadata_metadataduration_metadataduration", + "community": 151, + "norm_label": "metadataduration" + }, + { + "label": "String", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_metadata_metadataduration_swift_string", + "community": 151, + "norm_label": "string" + }, + { + "label": ".init()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/Metadata/MetadataDuration.swift", + "source_location": "L7", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_metadata_metadataduration_metadataduration_init", + "community": 151, + "norm_label": ".init()" + }, + { + "label": "GlassCardView.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/GlassCardView.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_glasscardview", + "community": 2, + "norm_label": "glasscardview.swift" + }, + { + "label": "GlassCardView", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/GlassCardView.swift", + "source_location": "L7", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_glasscardview_glasscardview", + "community": 42, + "norm_label": "glasscardview" + }, + { + "label": "AnalyticsManager", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_glasscardview_swift_analyticsmanager", + "community": 42, + "norm_label": "analyticsmanager" + }, + { + "label": "CGFloat", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_glasscardview_swift_cgfloat", + "community": 42, + "norm_label": "cgfloat" + }, + { + "label": ".init()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/GlassCardView.swift", + "source_location": "L19", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_glasscardview_glasscardview_init", + "community": 42, + "norm_label": ".init()" + }, + { + "label": "LinearGradient", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "lineargradient", + "community": 42, + "norm_label": "lineargradient" + }, + { + "label": ".thumbnail()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/GlassCardView.swift", + "source_location": "L102", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_glasscardview_glasscardview_thumbnail", + "community": 42, + "norm_label": ".thumbnail()" + }, + { + "label": "LeadingImageCard.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/LeadingImageCard.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_leadingimagecard", + "community": 2, + "norm_label": "leadingimagecard.swift" + }, + { + "label": "LeadingImageCard", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/LeadingImageCard.swift", + "source_location": "L7", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_leadingimagecard_leadingimagecard", + "community": 42, + "norm_label": "leadingimagecard" + }, + { + "label": "CardMetrics", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/LeadingImageCard.swift", + "source_location": "L8", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_leadingimagecard_cardmetrics", + "community": 42, + "norm_label": "cardmetrics" + }, + { + "label": "CGFloat", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_leadingimagecard_swift_cgfloat", + "community": 42, + "norm_label": "cgfloat" + }, + { + "label": "AnalyticsManager", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_leadingimagecard_swift_analyticsmanager", + "community": 42, + "norm_label": "analyticsmanager" + }, + { + "label": ".init()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/LeadingImageCard.swift", + "source_location": "L24", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_leadingimagecard_leadingimagecard_init", + "community": 42, + "norm_label": ".init()" + }, + { + "label": "NewsCard.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/NewsCard.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_newscard", + "community": 2, + "norm_label": "newscard.swift" + }, + { + "label": "NewsCard", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/NewsCard.swift", + "source_location": "L4", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_newscard_newscard", + "community": 17, + "norm_label": "newscard" + }, + { + "label": "Void", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_newscard_swift_void", + "community": 17, + "norm_label": "void" + }, + { + "label": ".init()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/NewsCard.swift", + "source_location": "L11", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_newscard_newscard_init", + "community": 17, + "norm_label": ".init()" + }, + { + "label": "MenuView.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/MenuView.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_menuview", + "community": 2, + "norm_label": "menuview.swift" + }, + { + "label": "MenuView", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/MenuView.swift", + "source_location": "L4", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_menuview_menuview", + "community": 108, + "norm_label": "menuview" + }, + { + "label": "T", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "t", + "community": 108, + "norm_label": "t" + }, + { + "label": ".init()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/MenuView.swift", + "source_location": "L36", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_menuview_menuview_init", + "community": 108, + "norm_label": ".init()" + }, + { + "label": "Binding", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_menuview_swift_binding", + "community": 108, + "norm_label": "binding" + }, + { + "label": ".effect()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/MenuView.swift", + "source_location": "L44", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_menuview_menuview_effect", + "community": 108, + "norm_label": ".effect()" + }, + { + "label": "Bool", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_menuview_swift_bool", + "community": 108, + "norm_label": "bool" + }, + { + "label": "Glass", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "glass", + "community": 108, + "norm_label": "glass" + }, + { + "label": "PaginatedForEach.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/PaginatedForEach.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_paginatedforeach", + "community": 99, + "norm_label": "paginatedforeach.swift" + }, + { + "label": "PaginatedForEach", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/PaginatedForEach.swift", + "source_location": "L3", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_paginatedforeach_paginatedforeach", + "community": 99, + "norm_label": "paginatedforeach" + }, + { + "label": "Element", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_paginatedforeach_swift_element", + "community": 99, + "norm_label": "element" + }, + { + "label": "Int", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_paginatedforeach_swift_int", + "community": 99, + "norm_label": "int" + }, + { + "label": "Content", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_paginatedforeach_swift_content", + "community": 99, + "norm_label": "content" + }, + { + "label": ".init()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/PaginatedForEach.swift", + "source_location": "L12", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_paginatedforeach_paginatedforeach_init", + "community": 99, + "norm_label": ".init()" + }, + { + "label": "Bool", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_paginatedforeach_swift_bool", + "community": 99, + "norm_label": "bool" + }, + { + "label": ".loadMore()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/PaginatedForEach.swift", + "source_location": "L51", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_paginatedforeach_paginatedforeach_loadmore", + "community": 99, + "norm_label": ".loadmore()" + }, + { + "label": "ContentPreview.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/PreviewData/ContentPreview.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_previewdata_contentpreview", + "community": 17, + "norm_label": "contentpreview.swift" + }, + { + "label": "ContentPreview", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/PreviewData/ContentPreview.swift", + "source_location": "L4", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_previewdata_contentpreview_contentpreview", + "community": 17, + "norm_label": "contentpreview" + }, + { + "label": "Cookies.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/Cookies.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_cookies", + "community": 78, + "norm_label": "cookies.swift" + }, + { + "label": "WebKit", + "file_type": "code", + "type": "module", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/SettingsView.swift", + "source_location": "L5", + "_origin": "ast", + "id": "webkit", + "community": 78, + "norm_label": "webkit" + }, + { + "label": "Cookies", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/Cookies.swift", + "source_location": "L4", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_cookies_cookies", + "community": 10, + "norm_label": "cookies" + }, + { + "label": "TimeInterval", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_cookies_swift_timeinterval", + "community": 10, + "norm_label": "timeinterval" + }, + { + "label": ".saveDisqusCookies()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/Cookies.swift", + "source_location": "L15", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_cookies_cookies_savedisquscookies", + "community": 10, + "norm_label": ".savedisquscookies()" + }, + { + "label": "WKHTTPCookieStore", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "wkhttpcookiestore", + "community": 10, + "norm_label": "wkhttpcookiestore" + }, + { + "label": ".restoreDisqusCookies()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/Cookies.swift", + "source_location": "L31", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_cookies_cookies_restoredisquscookies", + "community": 10, + "norm_label": ".restoredisquscookies()" + }, + { + "label": ".createColorSchema()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/Cookies.swift", + "source_location": "L49", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_cookies_cookies_createcolorschema", + "community": 10, + "norm_label": ".createcolorschema()" + }, + { + "label": "String", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_cookies_swift_string", + "community": 10, + "norm_label": "string" + }, + { + "label": "HTTPCookie", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_cookies_swift_httpcookie", + "community": 10, + "norm_label": "httpcookie" + }, + { + "label": ".createDarkMode()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/Cookies.swift", + "source_location": "L60", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_cookies_cookies_createdarkmode", + "community": 10, + "norm_label": ".createdarkmode()" + }, + { + "label": ".createFont()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/Cookies.swift", + "source_location": "L71", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_cookies_cookies_createfont", + "community": 10, + "norm_label": ".createfont()" + }, + { + "label": ".createVersion()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/Cookies.swift", + "source_location": "L82", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_cookies_cookies_createversion", + "community": 10, + "norm_label": ".createversion()" + }, + { + "label": ".createPurchased()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/Cookies.swift", + "source_location": "L93", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_cookies_cookies_createpurchased", + "community": 10, + "norm_label": ".createpurchased()" + }, + { + "label": ".makeCookies()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/Cookies.swift", + "source_location": "L106", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_cookies_cookies_makecookies", + "community": 10, + "norm_label": ".makecookies()" + }, + { + "label": "Bool", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_cookies_swift_bool", + "community": 10, + "norm_label": "bool" + }, + { + "label": "String", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/Cookies.swift", + "source_location": "L162", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_cookies_string", + "community": 78, + "norm_label": "string" + }, + { + "label": ".llamaCase()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/Cookies.swift", + "source_location": "L163", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_cookies_string_llamacase", + "community": 78, + "norm_label": ".llamacase()" + }, + { + "label": "DisqusDataStore.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/Disqus/DisqusDataStore.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_disqus_disqusdatastore", + "community": 63, + "norm_label": "disqusdatastore.swift" + }, + { + "label": "DisqusDataStore", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/Disqus/DisqusDataStore.swift", + "source_location": "L6", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_disqus_disqusdatastore_disqusdatastore", + "community": 63, + "norm_label": "disqusdatastore" + }, + { + "label": "DisqusHTMLBuilder.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/Disqus/DisqusHTMLBuilder.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_disqus_disqushtmlbuilder", + "community": 5, + "norm_label": "disqushtmlbuilder.swift" + }, + { + "label": "DisqusHTMLBuilder", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/Disqus/DisqusHTMLBuilder.swift", + "source_location": "L3", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_disqus_disqushtmlbuilder_disqushtmlbuilder", + "community": 5, + "norm_label": "disqushtmlbuilder" + }, + { + "label": ".makeHTML()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/Disqus/DisqusHTMLBuilder.swift", + "source_location": "L4", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_disqus_disqushtmlbuilder_disqushtmlbuilder_makehtml", + "community": 5, + "norm_label": ".makehtml()" + }, + { + "label": "String", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_disqus_disqushtmlbuilder_swift_string", + "community": 5, + "norm_label": "string" + }, + { + "label": "DisqusNewWindowHandler.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/Disqus/DisqusNewWindowHandler.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_disqus_disqusnewwindowhandler", + "community": 100, + "norm_label": "disqusnewwindowhandler.swift" + }, + { + "label": "DisqusNewWindowHandler", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/Disqus/DisqusNewWindowHandler.swift", + "source_location": "L4", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_disqus_disqusnewwindowhandler_disqusnewwindowhandler", + "community": 100, + "norm_label": "disqusnewwindowhandler" + }, + { + "label": "WKScriptMessageHandler", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "wkscriptmessagehandler", + "community": 100, + "norm_label": "wkscriptmessagehandler" + }, + { + "label": "MainActor", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_disqus_disqusnewwindowhandler_swift_mainactor", + "community": 100, + "norm_label": "mainactor" + }, + { + "label": "Void", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_disqus_disqusnewwindowhandler_swift_void", + "community": 100, + "norm_label": "void" + }, + { + "label": ".userContentController()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/Disqus/DisqusNewWindowHandler.swift", + "source_location": "L7", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_disqus_disqusnewwindowhandler_disqusnewwindowhandler_usercontentcontroller", + "community": 100, + "norm_label": ".usercontentcontroller()" + }, + { + "label": "WKUserContentController", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_disqus_disqusnewwindowhandler_swift_wkusercontentcontroller", + "community": 100, + "norm_label": "wkusercontentcontroller" + }, + { + "label": "WKScriptMessage", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_disqus_disqusnewwindowhandler_swift_wkscriptmessage", + "community": 100, + "norm_label": "wkscriptmessage" + }, + { + "label": "DisqusWebView.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/Disqus/DisqusWebView.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_disqus_disquswebview", + "community": 78, + "norm_label": "disquswebview.swift" + }, + { + "label": "DisqusSheet", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/Disqus/DisqusWebView.swift", + "source_location": "L6", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_disqus_disquswebview_disqussheet", + "community": 63, + "norm_label": "disqussheet" + }, + { + "label": "WebPage", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_disqus_disquswebview_swift_webpage", + "community": 63, + "norm_label": "webpage" + }, + { + "label": "String", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_disqus_disquswebview_swift_string", + "community": 63, + "norm_label": "string" + }, + { + "label": "Void", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_disqus_disquswebview_swift_void", + "community": 63, + "norm_label": "void" + }, + { + "label": ".configureNewWindowHandler()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/Disqus/DisqusWebView.swift", + "source_location": "L86", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_disqus_disquswebview_disqussheet_configurenewwindowhandler", + "community": 63, + "norm_label": ".configurenewwindowhandler()" + }, + { + "label": ".setupPage()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/Disqus/DisqusWebView.swift", + "source_location": "L92", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_disqus_disquswebview_disqussheet_setuppage", + "community": 63, + "norm_label": ".setuppage()" + }, + { + "label": ".reloadPage()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/Disqus/DisqusWebView.swift", + "source_location": "L107", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_disqus_disquswebview_disqussheet_reloadpage", + "community": 63, + "norm_label": ".reloadpage()" + }, + { + "label": ".loadContent()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/Disqus/DisqusWebView.swift", + "source_location": "L113", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_disqus_disquswebview_disqussheet_loadcontent", + "community": 63, + "norm_label": ".loadcontent()" + }, + { + "label": "DisqusLoginWebView", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/Disqus/DisqusWebView.swift", + "source_location": "L135", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_disqus_disquswebview_disqusloginwebview", + "community": 63, + "norm_label": "disqusloginwebview" + }, + { + "label": "WKWebsiteDataStore", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "wkwebsitedatastore", + "community": 63, + "norm_label": "wkwebsitedatastore" + }, + { + "label": "MainActor", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_disqus_disquswebview_swift_mainactor", + "community": 63, + "norm_label": "mainactor" + }, + { + "label": "GalleryStateMessageHandler.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/GalleryStateMessageHandler.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_gallerystatemessagehandler", + "community": 5, + "norm_label": "gallerystatemessagehandler.swift" + }, + { + "label": "GalleryStateMessageHandler", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/GalleryStateMessageHandler.swift", + "source_location": "L5", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_gallerystatemessagehandler_gallerystatemessagehandler", + "community": 5, + "norm_label": "gallerystatemessagehandler" + }, + { + "label": "Bool", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_gallerystatemessagehandler_swift_bool", + "community": 5, + "norm_label": "bool" + }, + { + "label": "Void", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_gallerystatemessagehandler_swift_void", + "community": 5, + "norm_label": "void" + }, + { + "label": ".userContentController()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/GalleryStateMessageHandler.swift", + "source_location": "L11", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_gallerystatemessagehandler_gallerystatemessagehandler_usercontentcontroller", + "community": 5, + "norm_label": ".usercontentcontroller()" + }, + { + "label": "WKUserContentController", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_gallerystatemessagehandler_swift_wkusercontentcontroller", + "community": 5, + "norm_label": "wkusercontentcontroller" + }, + { + "label": "WKScriptMessage", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_gallerystatemessagehandler_swift_wkscriptmessage", + "community": 5, + "norm_label": "wkscriptmessage" + }, + { + "label": "InteractivePopGesture.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/InteractivePopGesture.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_interactivepopgesture", + "community": 24, + "norm_label": "interactivepopgesture.swift" + }, + { + "label": "View", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/InteractivePopGesture.swift", + "source_location": "L4", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_interactivepopgesture_view", + "community": 34, + "norm_label": "view" + }, + { + "label": ".interactivePopGesture()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/InteractivePopGesture.swift", + "source_location": "L8", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_interactivepopgesture_view_interactivepopgesture", + "community": 34, + "norm_label": ".interactivepopgesture()" + }, + { + "label": "Bool", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_interactivepopgesture_swift_bool", + "community": 34, + "norm_label": "bool" + }, + { + "label": "InteractivePopGestureBridge", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/InteractivePopGesture.swift", + "source_location": "L13", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_interactivepopgesture_interactivepopgesturebridge", + "community": 34, + "norm_label": "interactivepopgesturebridge" + }, + { + "label": "UIViewControllerRepresentable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "uiviewcontrollerrepresentable", + "community": 34, + "norm_label": "uiviewcontrollerrepresentable" + }, + { + "label": ".makeUIViewController()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/InteractivePopGesture.swift", + "source_location": "L16", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_interactivepopgesture_interactivepopgesturebridge_makeuiviewcontroller", + "community": 34, + "norm_label": ".makeuiviewcontroller()" + }, + { + "label": "Context", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_interactivepopgesture_swift_context", + "community": 34, + "norm_label": "context" + }, + { + "label": ".updateUIViewController()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/InteractivePopGesture.swift", + "source_location": "L20", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_interactivepopgesture_interactivepopgesturebridge_updateuiviewcontroller", + "community": 34, + "norm_label": ".updateuiviewcontroller()" + }, + { + "label": "BridgeViewController", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/InteractivePopGesture.swift", + "source_location": "L25", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_interactivepopgesture_bridgeviewcontroller", + "community": 34, + "norm_label": "bridgeviewcontroller" + }, + { + "label": "UIViewController", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "uiviewcontroller", + "community": 34, + "norm_label": "uiviewcontroller" + }, + { + "label": "UIGestureRecognizerDelegate", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "uigesturerecognizerdelegate", + "community": 34, + "norm_label": "uigesturerecognizerdelegate" + }, + { + "label": "UIGestureRecognizer", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "uigesturerecognizer", + "community": 34, + "norm_label": "uigesturerecognizer" + }, + { + "label": ".viewDidAppear()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/InteractivePopGesture.swift", + "source_location": "L31", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_interactivepopgesture_bridgeviewcontroller_viewdidappear", + "community": 34, + "norm_label": ".viewdidappear()" + }, + { + "label": ".viewWillDisappear()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/InteractivePopGesture.swift", + "source_location": "L40", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_interactivepopgesture_bridgeviewcontroller_viewwilldisappear", + "community": 34, + "norm_label": ".viewwilldisappear()" + }, + { + "label": ".restoreDelegate()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/InteractivePopGesture.swift", + "source_location": "L49", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_interactivepopgesture_bridgeviewcontroller_restoredelegate", + "community": 34, + "norm_label": ".restoredelegate()" + }, + { + "label": ".gestureRecognizerShouldBegin()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/InteractivePopGesture.swift", + "source_location": "L57", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_interactivepopgesture_bridgeviewcontroller_gesturerecognizershouldbegin", + "community": 34, + "norm_label": ".gesturerecognizershouldbegin()" + }, + { + "label": "MMNavigationDecider.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMNavigationDecider.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmnavigationdecider", + "community": 78, + "norm_label": "mmnavigationdecider.swift" + }, + { + "label": "MMNavigationDecider", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMNavigationDecider.swift", + "source_location": "L5", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmnavigationdecider_mmnavigationdecider", + "community": 111, + "norm_label": "mmnavigationdecider" + }, + { + "label": "WebPage", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "webpage", + "community": 111, + "norm_label": "webpage" + }, + { + "label": "String", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmnavigationdecider_swift_string", + "community": 111, + "norm_label": "string" + }, + { + "label": "Void", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmnavigationdecider_swift_void", + "community": 111, + "norm_label": "void" + }, + { + "label": ".decidePolicy()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMNavigationDecider.swift", + "source_location": "L10", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmnavigationdecider_mmnavigationdecider_decidepolicy", + "community": 111, + "norm_label": ".decidepolicy()" + }, + { + "label": "WKNavigationActionPolicy", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "wknavigationactionpolicy", + "community": 111, + "norm_label": "wknavigationactionpolicy" + }, + { + "label": ".open()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMNavigationDecider.swift", + "source_location": "L39", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmnavigationdecider_mmnavigationdecider_open", + "community": 111, + "norm_label": ".open()" + }, + { + "label": "MMWebView.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview", + "community": 78, + "norm_label": "mmwebview.swift" + }, + { + "label": "MMWebView", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift", + "source_location": "L6", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview", + "community": 5, + "norm_label": "mmwebview" + }, + { + "label": "WebPage", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_swift_webpage", + "community": 5, + "norm_label": "webpage" + }, + { + "label": "String", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_swift_string", + "community": 5, + "norm_label": "string" + }, + { + "label": "Void", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_swift_void", + "community": 5, + "norm_label": "void" + }, + { + "label": ".init()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift", + "source_location": "L22", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview_init", + "community": 5, + "norm_label": ".init()" + }, + { + "label": ".makeLoadAction()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift", + "source_location": "L85", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview_makeloadaction", + "community": 5, + "norm_label": ".makeloadaction()" + }, + { + "label": "MainActor", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_swift_mainactor", + "community": 5, + "norm_label": "mainactor" + }, + { + "label": "async", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_swift_async", + "community": 5, + "norm_label": "async" + }, + { + "label": ".urlLoadAction()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift", + "source_location": "L93", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview_urlloadaction", + "community": 5, + "norm_label": ".urlloadaction()" + }, + { + "label": ".makePage()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift", + "source_location": "L105", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview_makepage", + "community": 5, + "norm_label": ".makepage()" + }, + { + "label": ".makeConfiguration()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift", + "source_location": "L142", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview_makeconfiguration", + "community": 5, + "norm_label": ".makeconfiguration()" + }, + { + "label": ".makeCookies()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift", + "source_location": "L156", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview_makecookies", + "community": 5, + "norm_label": ".makecookies()" + }, + { + "label": "HTTPCookie", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_swift_httpcookie", + "community": 5, + "norm_label": "httpcookie" + }, + { + "label": ".updateCookies()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift", + "source_location": "L163", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview_updatecookies", + "community": 5, + "norm_label": ".updatecookies()" + }, + { + "label": "MMWebViewUserScripts.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebViewUserScripts.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebviewuserscripts", + "community": 78, + "norm_label": "mmwebviewuserscripts.swift" + }, + { + "label": "MMWebViewUserScripts", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebViewUserScripts.swift", + "source_location": "L4", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebviewuserscripts_mmwebviewuserscripts", + "community": 78, + "norm_label": "mmwebviewuserscripts" + }, + { + "label": "WKUserScript", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "wkuserscript", + "community": 78, + "norm_label": "wkuserscript" + }, + { + "label": "ManagedWebView.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/ManagedWebView.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview", + "community": 78, + "norm_label": "managedwebview.swift" + }, + { + "label": "ManagedWebViewStyle", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/ManagedWebView.swift", + "source_location": "L5", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_managedwebviewstyle", + "community": 62, + "norm_label": "managedwebviewstyle" + }, + { + "label": "Edge", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "edge", + "community": 62, + "norm_label": "edge" + }, + { + "label": "Bool", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_swift_bool", + "community": 62, + "norm_label": "bool" + }, + { + "label": ".init()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/ManagedWebView.swift", + "source_location": "L9", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_managedwebviewstyle_init", + "community": 62, + "norm_label": ".init()" + }, + { + "label": "ManagedWebView", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/ManagedWebView.swift", + "source_location": "L27", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_managedwebview", + "community": 62, + "norm_label": "managedwebview" + }, + { + "label": "MainActor", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_swift_mainactor", + "community": 62, + "norm_label": "mainactor" + }, + { + "label": "WebPage", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_swift_webpage", + "community": 62, + "norm_label": "webpage" + }, + { + "label": "async", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_swift_async", + "community": 62, + "norm_label": "async" + }, + { + "label": "Void", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_swift_void", + "community": 62, + "norm_label": "void" + }, + { + "label": "UUID", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_swift_uuid", + "community": 62, + "norm_label": "uuid" + }, + { + "label": ".init()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/ManagedWebView.swift", + "source_location": "L44", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_managedwebview_init", + "community": 62, + "norm_label": ".init()" + }, + { + "label": "Binding", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_swift_binding", + "community": 62, + "norm_label": "binding" + }, + { + "label": ".performLoad()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/ManagedWebView.swift", + "source_location": "L122", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_managedwebview_performload", + "community": 62, + "norm_label": ".performload()" + }, + { + "label": "WebPageCache.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WebPageCache.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_webpagecache", + "community": 5, + "norm_label": "webpagecache.swift" + }, + { + "label": "WebPageCache", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WebPageCache.swift", + "source_location": "L3", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_webpagecache_webpagecache", + "community": 5, + "norm_label": "webpagecache" + }, + { + "label": "String", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_webpagecache_swift_string", + "community": 5, + "norm_label": "string" + }, + { + "label": "WebPage", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_webpagecache_swift_webpage", + "community": 5, + "norm_label": "webpage" + }, + { + "label": ".init()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WebPageCache.swift", + "source_location": "L10", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_webpagecache_webpagecache_init", + "community": 5, + "norm_label": ".init()" + }, + { + "label": ".page()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WebPageCache.swift", + "source_location": "L12", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_webpagecache_webpagecache_page", + "community": 5, + "norm_label": ".page()" + }, + { + "label": ".galleryHandler()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WebPageCache.swift", + "source_location": "L39", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_webpagecache_webpagecache_galleryhandler", + "community": 5, + "norm_label": ".galleryhandler()" + }, + { + "label": ".hasPage()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WebPageCache.swift", + "source_location": "L43", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_webpagecache_webpagecache_haspage", + "community": 5, + "norm_label": ".haspage()" + }, + { + "label": "Bool", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_webpagecache_swift_bool", + "community": 5, + "norm_label": "bool" + }, + { + "label": ".removePage()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WebPageCache.swift", + "source_location": "L47", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_webpagecache_webpagecache_removepage", + "community": 5, + "norm_label": ".removepage()" + }, + { + "label": "WebViewStatus.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WebViewStatus.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_webviewstatus", + "community": 101, + "norm_label": "webviewstatus.swift" + }, + { + "label": "WebViewStatus", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WebViewStatus.swift", + "source_location": "L3", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_webviewstatus_webviewstatus", + "community": 101, + "norm_label": "webviewstatus" + }, + { + "label": "idle", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WebViewStatus.swift", + "source_location": "L4", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_webviewstatus_webviewstatus_idle", + "community": 101, + "norm_label": "idle" + }, + { + "label": "loading", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WebViewStatus.swift", + "source_location": "L5", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_webviewstatus_webviewstatus_loading", + "community": 101, + "norm_label": "loading" + }, + { + "label": "error", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WebViewStatus.swift", + "source_location": "L6", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_webviewstatus_webviewstatus_error", + "community": 101, + "norm_label": "error" + }, + { + "label": "String", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_webviewstatus_swift_string", + "community": 101, + "norm_label": "string" + }, + { + "label": "done", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WebViewStatus.swift", + "source_location": "L7", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_webviewstatus_webviewstatus_done", + "community": 101, + "norm_label": "done" + }, + { + "label": "WebViewStatusOverlay", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WebViewStatus.swift", + "source_location": "L10", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_webviewstatus_webviewstatusoverlay", + "community": 101, + "norm_label": "webviewstatusoverlay" + }, + { + "label": "CardSystemTests.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CardSystemTests.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cardsystemtests", + "community": 2, + "norm_label": "cardsystemtests.swift" + }, + { + "label": "MacMagazineUILibrary", + "file_type": "code", + "type": "module", + "source_file": "MacMagazine/MacMagazine/MainApp/Sizecalss/MainView+tabbar.swift", + "source_location": "L3", + "_origin": "ast", + "id": "macmagazineuilibrary", + "community": 2, + "norm_label": "macmagazineuilibrary" + }, + { + "label": "NewsCategoryStyleTests", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CardSystemTests.swift", + "source_location": "L7", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cardsystemtests_newscategorystyletests", + "community": 87, + "norm_label": "newscategorystyletests" + }, + { + "label": ".highlightsStyle()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CardSystemTests.swift", + "source_location": "L10", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cardsystemtests_newscategorystyletests_highlightsstyle", + "community": 87, + "norm_label": ".highlightsstyle()" + }, + { + "label": ".podcastStyle()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CardSystemTests.swift", + "source_location": "L15", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cardsystemtests_newscategorystyletests_podcaststyle", + "community": 87, + "norm_label": ".podcaststyle()" + }, + { + "label": ".youtubeStyle()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CardSystemTests.swift", + "source_location": "L20", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cardsystemtests_newscategorystyletests_youtubestyle", + "community": 87, + "norm_label": ".youtubestyle()" + }, + { + "label": ".newsStyle()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CardSystemTests.swift", + "source_location": "L25", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cardsystemtests_newscategorystyletests_newsstyle", + "community": 87, + "norm_label": ".newsstyle()" + }, + { + "label": ".allStyle()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CardSystemTests.swift", + "source_location": "L30", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cardsystemtests_newscategorystyletests_allstyle", + "community": 87, + "norm_label": ".allstyle()" + }, + { + "label": ".appleTVStyle()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CardSystemTests.swift", + "source_location": "L35", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cardsystemtests_newscategorystyletests_appletvstyle", + "community": 87, + "norm_label": ".appletvstyle()" + }, + { + "label": ".reviewsStyle()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CardSystemTests.swift", + "source_location": "L40", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cardsystemtests_newscategorystyletests_reviewsstyle", + "community": 87, + "norm_label": ".reviewsstyle()" + }, + { + "label": ".rumorsStyle()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CardSystemTests.swift", + "source_location": "L45", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cardsystemtests_newscategorystyletests_rumorsstyle", + "community": 87, + "norm_label": ".rumorsstyle()" + }, + { + "label": ".tutorialsStyle()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CardSystemTests.swift", + "source_location": "L50", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cardsystemtests_newscategorystyletests_tutorialsstyle", + "community": 87, + "norm_label": ".tutorialsstyle()" + }, + { + "label": "MostRelevantCategoryTests", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CardSystemTests.swift", + "source_location": "L58", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cardsystemtests_mostrelevantcategorytests", + "community": 79, + "norm_label": "mostrelevantcategorytests" + }, + { + "label": ".highlightsHighestPriority()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CardSystemTests.swift", + "source_location": "L61", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cardsystemtests_mostrelevantcategorytests_highlightshighestpriority", + "community": 79, + "norm_label": ".highlightshighestpriority()" + }, + { + "label": ".appleTVPriority()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CardSystemTests.swift", + "source_location": "L67", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cardsystemtests_mostrelevantcategorytests_appletvpriority", + "community": 79, + "norm_label": ".appletvpriority()" + }, + { + "label": ".reviewsPriority()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CardSystemTests.swift", + "source_location": "L73", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cardsystemtests_mostrelevantcategorytests_reviewspriority", + "community": 79, + "norm_label": ".reviewspriority()" + }, + { + "label": ".rumorsPriority()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CardSystemTests.swift", + "source_location": "L79", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cardsystemtests_mostrelevantcategorytests_rumorspriority", + "community": 79, + "norm_label": ".rumorspriority()" + }, + { + "label": ".tutorialsPriority()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CardSystemTests.swift", + "source_location": "L85", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cardsystemtests_mostrelevantcategorytests_tutorialspriority", + "community": 79, + "norm_label": ".tutorialspriority()" + }, + { + "label": ".newsLowestPriority()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CardSystemTests.swift", + "source_location": "L91", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cardsystemtests_mostrelevantcategorytests_newslowestpriority", + "community": 79, + "norm_label": ".newslowestpriority()" + }, + { + "label": ".emptyReturnsAll()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CardSystemTests.swift", + "source_location": "L97", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cardsystemtests_mostrelevantcategorytests_emptyreturnsall", + "community": 79, + "norm_label": ".emptyreturnsall()" + }, + { + "label": ".singleHighlight()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CardSystemTests.swift", + "source_location": "L103", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cardsystemtests_mostrelevantcategorytests_singlehighlight", + "community": 79, + "norm_label": ".singlehighlight()" + }, + { + "label": ".unknownCategoriesReturnFirst()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CardSystemTests.swift", + "source_location": "L109", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cardsystemtests_mostrelevantcategorytests_unknowncategoriesreturnfirst", + "community": 79, + "norm_label": ".unknowncategoriesreturnfirst()" + }, + { + "label": ".fullPriorityOrder()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CardSystemTests.swift", + "source_location": "L115", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cardsystemtests_mostrelevantcategorytests_fullpriorityorder", + "community": 79, + "norm_label": ".fullpriorityorder()" + }, + { + "label": "CardContentTypeTests", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CardSystemTests.swift", + "source_location": "L139", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cardsystemtests_cardcontenttypetests", + "community": 50, + "norm_label": "cardcontenttypetests" + }, + { + "label": ".newsTypeCategories()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CardSystemTests.swift", + "source_location": "L142", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cardsystemtests_cardcontenttypetests_newstypecategories", + "community": 50, + "norm_label": ".newstypecategories()" + }, + { + "label": ".podcastTypeCategories()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CardSystemTests.swift", + "source_location": "L148", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cardsystemtests_cardcontenttypetests_podcasttypecategories", + "community": 50, + "norm_label": ".podcasttypecategories()" + }, + { + "label": ".videoTypeCategories()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CardSystemTests.swift", + "source_location": "L154", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cardsystemtests_cardcontenttypetests_videotypecategories", + "community": 50, + "norm_label": ".videotypecategories()" + }, + { + "label": ".newsTypeExplicitStyle()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CardSystemTests.swift", + "source_location": "L160", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cardsystemtests_cardcontenttypetests_newstypeexplicitstyle", + "community": 50, + "norm_label": ".newstypeexplicitstyle()" + }, + { + "label": ".newsTypeNilStyle()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CardSystemTests.swift", + "source_location": "L166", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cardsystemtests_cardcontenttypetests_newstypenilstyle", + "community": 50, + "norm_label": ".newstypenilstyle()" + }, + { + "label": ".podcastTypeStyle()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CardSystemTests.swift", + "source_location": "L172", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cardsystemtests_cardcontenttypetests_podcasttypestyle", + "community": 50, + "norm_label": ".podcasttypestyle()" + }, + { + "label": ".videoTypeStyle()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CardSystemTests.swift", + "source_location": "L178", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cardsystemtests_cardcontenttypetests_videotypestyle", + "community": 50, + "norm_label": ".videotypestyle()" + }, + { + "label": ".highlightNewsDispatch()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CardSystemTests.swift", + "source_location": "L186", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cardsystemtests_cardcontenttypetests_highlightnewsdispatch", + "community": 50, + "norm_label": ".highlightnewsdispatch()" + }, + { + "label": ".regularNewsDispatch()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CardSystemTests.swift", + "source_location": "L193", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cardsystemtests_cardcontenttypetests_regularnewsdispatch", + "community": 50, + "norm_label": ".regularnewsdispatch()" + }, + { + "label": ".mmtvNewsDispatch()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CardSystemTests.swift", + "source_location": "L200", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cardsystemtests_cardcontenttypetests_mmtvnewsdispatch", + "community": 50, + "norm_label": ".mmtvnewsdispatch()" + }, + { + "label": ".podcastContentRouting()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CardSystemTests.swift", + "source_location": "L207", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cardsystemtests_cardcontenttypetests_podcastcontentrouting", + "community": 50, + "norm_label": ".podcastcontentrouting()" + }, + { + "label": "CookiesTests.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CookiesTests.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cookiestests", + "community": 9, + "norm_label": "cookiestests.swift" + }, + { + "label": "CookiesTests", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CookiesTests.swift", + "source_location": "L5", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cookiestests_cookiestests", + "community": 10, + "norm_label": "cookiestests" + }, + { + "label": ".llamaCasePascalCase()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CookiesTests.swift", + "source_location": "L10", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cookiestests_cookiestests_llamacasepascalcase", + "community": 10, + "norm_label": ".llamacasepascalcase()" + }, + { + "label": ".llamaCaseCamelCase()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CookiesTests.swift", + "source_location": "L22", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cookiestests_cookiestests_llamacasecamelcase", + "community": 10, + "norm_label": ".llamacasecamelcase()" + }, + { + "label": ".llamaCaseSingleUppercase()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CookiesTests.swift", + "source_location": "L34", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cookiestests_cookiestests_llamacasesingleuppercase", + "community": 10, + "norm_label": ".llamacasesingleuppercase()" + }, + { + "label": ".llamaCaseSingleLowercase()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CookiesTests.swift", + "source_location": "L46", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cookiestests_cookiestests_llamacasesinglelowercase", + "community": 10, + "norm_label": ".llamacasesinglelowercase()" + }, + { + "label": ".llamaCaseEmpty()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CookiesTests.swift", + "source_location": "L58", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cookiestests_cookiestests_llamacaseempty", + "community": 10, + "norm_label": ".llamacaseempty()" + }, + { + "label": ".llamaCaseAllUppercase()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CookiesTests.swift", + "source_location": "L70", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cookiestests_cookiestests_llamacasealluppercase", + "community": 10, + "norm_label": ".llamacasealluppercase()" + }, + { + "label": ".llamaCaseWithNumbers()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CookiesTests.swift", + "source_location": "L82", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cookiestests_cookiestests_llamacasewithnumbers", + "community": 10, + "norm_label": ".llamacasewithnumbers()" + }, + { + "label": ".llamaCaseWithSpecialChars()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CookiesTests.swift", + "source_location": "L94", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cookiestests_cookiestests_llamacasewithspecialchars", + "community": 10, + "norm_label": ".llamacasewithspecialchars()" + }, + { + "label": ".llamaCaseLowercaseStart()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CookiesTests.swift", + "source_location": "L106", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cookiestests_cookiestests_llamacaselowercasestart", + "community": 10, + "norm_label": ".llamacaselowercasestart()" + }, + { + "label": ".llamaCaseTypicalSize()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CookiesTests.swift", + "source_location": "L118", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cookiestests_cookiestests_llamacasetypicalsize", + "community": 10, + "norm_label": ".llamacasetypicalsize()" + }, + { + "label": ".createDarkModeCookieTrue()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CookiesTests.swift", + "source_location": "L132", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cookiestests_cookiestests_createdarkmodecookietrue", + "community": 10, + "norm_label": ".createdarkmodecookietrue()" + }, + { + "label": ".createDarkModeCookieFalse()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CookiesTests.swift", + "source_location": "L146", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cookiestests_cookiestests_createdarkmodecookiefalse", + "community": 10, + "norm_label": ".createdarkmodecookiefalse()" + }, + { + "label": ".createColorSchemaDark()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CookiesTests.swift", + "source_location": "L156", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cookiestests_cookiestests_createcolorschemadark", + "community": 10, + "norm_label": ".createcolorschemadark()" + }, + { + "label": ".createColorSchemaLight()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CookiesTests.swift", + "source_location": "L167", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cookiestests_cookiestests_createcolorschemalight", + "community": 10, + "norm_label": ".createcolorschemalight()" + }, + { + "label": ".createFontCookie()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CookiesTests.swift", + "source_location": "L177", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cookiestests_cookiestests_createfontcookie", + "community": 10, + "norm_label": ".createfontcookie()" + }, + { + "label": ".createVersionCookie()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CookiesTests.swift", + "source_location": "L188", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cookiestests_cookiestests_createversioncookie", + "community": 10, + "norm_label": ".createversioncookie()" + }, + { + "label": ".createPurchasedCookie()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CookiesTests.swift", + "source_location": "L199", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cookiestests_cookiestests_createpurchasedcookie", + "community": 10, + "norm_label": ".createpurchasedcookie()" + }, + { + "label": ".makeCookiesDarkMode()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CookiesTests.swift", + "source_location": "L212", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cookiestests_cookiestests_makecookiesdarkmode", + "community": 10, + "norm_label": ".makecookiesdarkmode()" + }, + { + "label": ".makeCookiesLightMode()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CookiesTests.swift", + "source_location": "L228", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cookiestests_cookiestests_makecookieslightmode", + "community": 10, + "norm_label": ".makecookieslightmode()" + }, + { + "label": ".makeCookiesCustomFont()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CookiesTests.swift", + "source_location": "L244", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cookiestests_cookiestests_makecookiescustomfont", + "community": 10, + "norm_label": ".makecookiescustomfont()" + }, + { + "label": ".makeCookiesRemoveAds()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CookiesTests.swift", + "source_location": "L255", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cookiestests_cookiestests_makecookiesremoveads", + "community": 10, + "norm_label": ".makecookiesremoveads()" + }, + { + "label": ".makeCookiesNoRemoveAds()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CookiesTests.swift", + "source_location": "L266", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cookiestests_cookiestests_makecookiesnoremoveads", + "community": 10, + "norm_label": ".makecookiesnoremoveads()" + }, + { + "label": ".makeCookiesAllParameters()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CookiesTests.swift", + "source_location": "L277", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cookiestests_cookiestests_makecookiesallparameters", + "community": 10, + "norm_label": ".makecookiesallparameters()" + }, + { + "label": ".makeCookiesNilRemoveAds()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CookiesTests.swift", + "source_location": "L292", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cookiestests_cookiestests_makecookiesnilremoveads", + "community": 10, + "norm_label": ".makecookiesnilremoveads()" + }, + { + "label": ".allCookiesCorrectDomain()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CookiesTests.swift", + "source_location": "L305", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cookiestests_cookiestests_allcookiescorrectdomain", + "community": 10, + "norm_label": ".allcookiescorrectdomain()" + }, + { + "label": ".allCookiesSecure()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CookiesTests.swift", + "source_location": "L317", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cookiestests_cookiestests_allcookiessecure", + "community": 10, + "norm_label": ".allcookiessecure()" + }, + { + "label": ".allCookiesRootPath()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CookiesTests.swift", + "source_location": "L329", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cookiestests_cookiestests_allcookiesrootpath", + "community": 10, + "norm_label": ".allcookiesrootpath()" + }, + { + "label": ".allCookiesHaveExpiration()", + "file_type": "code", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CookiesTests.swift", + "source_location": "L341", + "_origin": "ast", + "id": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cookiestests_cookiestests_allcookieshaveexpiration", + "community": 10, + "norm_label": ".allcookieshaveexpiration()" + }, + { + "label": "Package.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/NewsLibrary/Package.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_newslibrary_package", + "community": 75, + "norm_label": "package.swift" + }, + { + "label": "ArrayExtensions.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Extensions/ArrayExtensions.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_newslibrary_sources_newslibrary_extensions_arrayextensions", + "community": 152, + "norm_label": "arrayextensions.swift" + }, + { + "label": "Array", + "file_type": "code", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Extensions/ArrayExtensions.swift", + "source_location": "L12", + "_origin": "ast", + "id": "macmagazine_features_newslibrary_sources_newslibrary_extensions_arrayextensions_array", + "community": 152, + "norm_label": "array" + }, + { + "label": "NewsCategory", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_newslibrary_sources_newslibrary_extensions_arrayextensions_swift_newscategory", + "community": 152, + "norm_label": "newscategory" + }, + { + "label": "FeedDBExtensions.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Extensions/FeedDBExtensions.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_newslibrary_sources_newslibrary_extensions_feeddbextensions", + "community": 2, + "norm_label": "feeddbextensions.swift" + }, + { + "label": "FeedDB", + "file_type": "code", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Extensions/FeedDBExtensions.swift", + "source_location": "L8", + "_origin": "ast", + "id": "macmagazine_features_newslibrary_sources_newslibrary_extensions_feeddbextensions_feeddb", + "community": 68, + "norm_label": "feeddb" + }, + { + "label": ".toCardContent()", + "file_type": "code", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Extensions/FeedDBExtensions.swift", + "source_location": "L9", + "_origin": "ast", + "id": "macmagazine_features_newslibrary_sources_newslibrary_extensions_feeddbextensions_feeddb_tocardcontent", + "community": 68, + "norm_label": ".tocardcontent()" + }, + { + "label": "ModelContext", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_newslibrary_sources_newslibrary_extensions_feeddbextensions_swift_modelcontext", + "community": 68, + "norm_label": "modelcontext" + }, + { + "label": "AnalyticsManager", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_newslibrary_sources_newslibrary_extensions_feeddbextensions_swift_analyticsmanager", + "community": 68, + "norm_label": "analyticsmanager" + }, + { + "label": "String", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_newslibrary_sources_newslibrary_extensions_feeddbextensions_swift_string", + "community": 68, + "norm_label": "string" + }, + { + "label": "CGFloat", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_newslibrary_sources_newslibrary_extensions_feeddbextensions_swift_cgfloat", + "community": 68, + "norm_label": "cgfloat" + }, + { + "label": "CardAccessibilityModifier.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Modifiers/CardAccessibilityModifier.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_newslibrary_sources_newslibrary_modifiers_cardaccessibilitymodifier", + "community": 46, + "norm_label": "cardaccessibilitymodifier.swift" + }, + { + "label": "CardLabel", + "file_type": "code", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Modifiers/CardAccessibilityModifier.swift", + "source_location": "L6", + "_origin": "ast", + "id": "macmagazine_features_newslibrary_sources_newslibrary_modifiers_cardaccessibilitymodifier_cardlabel", + "community": 46, + "norm_label": "cardlabel" + }, + { + "label": "title", + "file_type": "code", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Modifiers/CardAccessibilityModifier.swift", + "source_location": "L7", + "_origin": "ast", + "id": "macmagazine_features_newslibrary_sources_newslibrary_modifiers_cardaccessibilitymodifier_cardlabel_title", + "community": 46, + "norm_label": "title" + }, + { + "label": "date", + "file_type": "code", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Modifiers/CardAccessibilityModifier.swift", + "source_location": "L8", + "_origin": "ast", + "id": "macmagazine_features_newslibrary_sources_newslibrary_modifiers_cardaccessibilitymodifier_cardlabel_date", + "community": 46, + "norm_label": "date" + }, + { + "label": "author", + "file_type": "code", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Modifiers/CardAccessibilityModifier.swift", + "source_location": "L9", + "_origin": "ast", + "id": "macmagazine_features_newslibrary_sources_newslibrary_modifiers_cardaccessibilitymodifier_cardlabel_author", + "community": 46, + "norm_label": "author" + }, + { + "label": "Array", + "file_type": "code", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Modifiers/CardAccessibilityModifier.swift", + "source_location": "L12", + "_origin": "ast", + "id": "macmagazine_features_newslibrary_sources_newslibrary_modifiers_cardaccessibilitymodifier_array", + "community": 46, + "norm_label": "array" + }, + { + "label": ".makeText()", + "file_type": "code", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Modifiers/CardAccessibilityModifier.swift", + "source_location": "L13", + "_origin": "ast", + "id": "macmagazine_features_newslibrary_sources_newslibrary_modifiers_cardaccessibilitymodifier_array_maketext", + "community": 46, + "norm_label": ".maketext()" + }, + { + "label": "String", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_newslibrary_sources_newslibrary_modifiers_cardaccessibilitymodifier_swift_string", + "community": 46, + "norm_label": "string" + }, + { + "label": "CardButton", + "file_type": "code", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Modifiers/CardAccessibilityModifier.swift", + "source_location": "L29", + "_origin": "ast", + "id": "macmagazine_features_newslibrary_sources_newslibrary_modifiers_cardaccessibilitymodifier_cardbutton", + "community": 46, + "norm_label": "cardbutton" + }, + { + "label": "share", + "file_type": "code", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Modifiers/CardAccessibilityModifier.swift", + "source_location": "L30", + "_origin": "ast", + "id": "macmagazine_features_newslibrary_sources_newslibrary_modifiers_cardaccessibilitymodifier_cardbutton_share", + "community": 46, + "norm_label": "share" + }, + { + "label": "favorite", + "file_type": "code", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Modifiers/CardAccessibilityModifier.swift", + "source_location": "L31", + "_origin": "ast", + "id": "macmagazine_features_newslibrary_sources_newslibrary_modifiers_cardaccessibilitymodifier_cardbutton_favorite", + "community": 46, + "norm_label": "favorite" + }, + { + "label": ".makeButtons()", + "file_type": "code", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Modifiers/CardAccessibilityModifier.swift", + "source_location": "L35", + "_origin": "ast", + "id": "macmagazine_features_newslibrary_sources_newslibrary_modifiers_cardaccessibilitymodifier_array_makebuttons", + "community": 46, + "norm_label": ".makebuttons()" + }, + { + "label": "View", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_newslibrary_sources_newslibrary_modifiers_cardaccessibilitymodifier_swift_view", + "community": 46, + "norm_label": "view" + }, + { + "label": "View", + "file_type": "code", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Modifiers/CardAccessibilityModifier.swift", + "source_location": "L48", + "_origin": "ast", + "id": "macmagazine_features_newslibrary_sources_newslibrary_modifiers_cardaccessibilitymodifier_view", + "community": 46, + "norm_label": "view" + }, + { + "label": ".cardAccessibility()", + "file_type": "code", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Modifiers/CardAccessibilityModifier.swift", + "source_location": "L49", + "_origin": "ast", + "id": "macmagazine_features_newslibrary_sources_newslibrary_modifiers_cardaccessibilitymodifier_view_cardaccessibility", + "community": 46, + "norm_label": ".cardaccessibility()" + }, + { + "label": "CardAccessibilityModifier", + "file_type": "code", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Modifiers/CardAccessibilityModifier.swift", + "source_location": "L62", + "_origin": "ast", + "id": "macmagazine_features_newslibrary_sources_newslibrary_modifiers_cardaccessibilitymodifier_cardaccessibilitymodifier", + "community": 46, + "norm_label": "cardaccessibilitymodifier" + }, + { + "label": ".body()", + "file_type": "code", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Modifiers/CardAccessibilityModifier.swift", + "source_location": "L67", + "_origin": "ast", + "id": "macmagazine_features_newslibrary_sources_newslibrary_modifiers_cardaccessibilitymodifier_cardaccessibilitymodifier_body", + "community": 46, + "norm_label": ".body()" + }, + { + "label": "Content", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_newslibrary_sources_newslibrary_modifiers_cardaccessibilitymodifier_swift_content", + "community": 46, + "norm_label": "content" + }, + { + "label": "NewsViewModel.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/ViewModel/NewsViewModel.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_newslibrary_sources_newslibrary_viewmodel_newsviewmodel", + "community": 14, + "norm_label": "newsviewmodel.swift" + }, + { + "label": "NewsViewModel", + "file_type": "code", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/ViewModel/NewsViewModel.swift", + "source_location": "L8", + "_origin": "ast", + "id": "macmagazine_features_newslibrary_sources_newslibrary_viewmodel_newsviewmodel_newsviewmodel", + "community": 7, + "norm_label": "newsviewmodel" + }, + { + "label": "Options", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_newslibrary_sources_newslibrary_viewmodel_newsviewmodel_swift_options", + "community": 7, + "norm_label": "options" + }, + { + "label": "APIStatus", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_newslibrary_sources_newslibrary_viewmodel_newsviewmodel_swift_apistatus", + "community": 7, + "norm_label": "apistatus" + }, + { + "label": "FeedDB", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_newslibrary_sources_newslibrary_viewmodel_newsviewmodel_swift_feeddb", + "community": 7, + "norm_label": "feeddb" + }, + { + "label": "Options", + "file_type": "code", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/ViewModel/NewsViewModel.swift", + "source_location": "L14", + "_origin": "ast", + "id": "macmagazine_features_newslibrary_sources_newslibrary_viewmodel_newsviewmodel_options", + "community": 28, + "norm_label": "options" + }, + { + "label": "home", + "file_type": "code", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/ViewModel/NewsViewModel.swift", + "source_location": "L15", + "_origin": "ast", + "id": "macmagazine_features_newslibrary_sources_newslibrary_viewmodel_newsviewmodel_options_home", + "community": 28, + "norm_label": "home" + }, + { + "label": "search", + "file_type": "code", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/ViewModel/NewsViewModel.swift", + "source_location": "L16", + "_origin": "ast", + "id": "macmagazine_features_newslibrary_sources_newslibrary_viewmodel_newsviewmodel_options_search", + "community": 28, + "norm_label": "search" + }, + { + "label": "String", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_newslibrary_sources_newslibrary_viewmodel_newsviewmodel_swift_string", + "community": 28, + "norm_label": "string" + }, + { + "label": ".init()", + "file_type": "code", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/ViewModel/NewsViewModel.swift", + "source_location": "L23", + "_origin": "ast", + "id": "macmagazine_features_newslibrary_sources_newslibrary_viewmodel_newsviewmodel_newsviewmodel_init", + "community": 7, + "norm_label": ".init()" + }, + { + "label": "Database", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_newslibrary_sources_newslibrary_viewmodel_newsviewmodel_swift_database", + "community": 7, + "norm_label": "database" + }, + { + "label": "NetworkMockData", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_newslibrary_sources_newslibrary_viewmodel_newsviewmodel_swift_networkmockdata", + "community": 7, + "norm_label": "networkmockdata" + }, + { + "label": ".getNews()", + "file_type": "code", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/ViewModel/NewsViewModel.swift", + "source_location": "L32", + "_origin": "ast", + "id": "macmagazine_features_newslibrary_sources_newslibrary_viewmodel_newsviewmodel_newsviewmodel_getnews", + "community": 7, + "norm_label": ".getnews()" + }, + { + "label": "Int", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_newslibrary_sources_newslibrary_viewmodel_newsviewmodel_swift_int", + "community": 7, + "norm_label": "int" + }, + { + "label": ".loadMoreIfNeeded()", + "file_type": "code", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/ViewModel/NewsViewModel.swift", + "source_location": "L45", + "_origin": "ast", + "id": "macmagazine_features_newslibrary_sources_newslibrary_viewmodel_newsviewmodel_newsviewmodel_loadmoreifneeded", + "community": 7, + "norm_label": ".loadmoreifneeded()" + }, + { + "label": "CollectionViewWithHeader.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/CollectionViewWithHeader.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_newslibrary_sources_newslibrary_views_components_collectionviewwithheader", + "community": 2, + "norm_label": "collectionviewwithheader.swift" + }, + { + "label": "CollectionViewWithHeader", + "file_type": "code", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/CollectionViewWithHeader.swift", + "source_location": "L8", + "_origin": "ast", + "id": "macmagazine_features_newslibrary_sources_newslibrary_views_components_collectionviewwithheader_collectionviewwithheader", + "community": 74, + "norm_label": "collectionviewwithheader" + }, + { + "label": "ScrollPosition", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_newslibrary_sources_newslibrary_views_components_collectionviewwithheader_swift_scrollposition", + "community": 74, + "norm_label": "scrollposition" + }, + { + "label": "String", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_newslibrary_sources_newslibrary_views_components_collectionviewwithheader_swift_string", + "community": 74, + "norm_label": "string" + }, + { + "label": "APIStatus", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_newslibrary_sources_newslibrary_views_components_collectionviewwithheader_swift_apistatus", + "community": 74, + "norm_label": "apistatus" + }, + { + "label": "Bool", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_newslibrary_sources_newslibrary_views_components_collectionviewwithheader_swift_bool", + "community": 74, + "norm_label": "bool" + }, + { + "label": "Int", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_newslibrary_sources_newslibrary_views_components_collectionviewwithheader_swift_int", + "community": 74, + "norm_label": "int" + }, + { + "label": "Header", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "header", + "community": 74, + "norm_label": "header" + }, + { + "label": "Void", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_newslibrary_sources_newslibrary_views_components_collectionviewwithheader_swift_void", + "community": 74, + "norm_label": "void" + }, + { + "label": "Content", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_newslibrary_sources_newslibrary_views_components_collectionviewwithheader_swift_content", + "community": 74, + "norm_label": "content" + }, + { + "label": ".init()", + "file_type": "code", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/CollectionViewWithHeader.swift", + "source_location": "L35", + "_origin": "ast", + "id": "macmagazine_features_newslibrary_sources_newslibrary_views_components_collectionviewwithheader_collectionviewwithheader_init", + "community": 74, + "norm_label": ".init()" + }, + { + "label": "Binding", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_newslibrary_sources_newslibrary_views_components_collectionviewwithheader_swift_binding", + "community": 74, + "norm_label": "binding" + }, + { + "label": "FeedHighlightCardView.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/FeedHighlightCardView.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_newslibrary_sources_newslibrary_views_components_feedhighlightcardview", + "community": 2, + "norm_label": "feedhighlightcardview.swift" + }, + { + "label": "FeedHighlightCardView", + "file_type": "code", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/FeedHighlightCardView.swift", + "source_location": "L12", + "_origin": "ast", + "id": "macmagazine_features_newslibrary_sources_newslibrary_views_components_feedhighlightcardview_feedhighlightcardview", + "community": 141, + "norm_label": "feedhighlightcardview" + }, + { + "label": "FeedDB", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_newslibrary_sources_newslibrary_views_components_feedhighlightcardview_swift_feeddb", + "community": 141, + "norm_label": "feeddb" + }, + { + "label": "AnalyticsManager", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_newslibrary_sources_newslibrary_views_components_feedhighlightcardview_swift_analyticsmanager", + "community": 141, + "norm_label": "analyticsmanager" + }, + { + "label": ".init()", + "file_type": "code", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/FeedHighlightCardView.swift", + "source_location": "L39", + "_origin": "ast", + "id": "macmagazine_features_newslibrary_sources_newslibrary_views_components_feedhighlightcardview_feedhighlightcardview_init", + "community": 141, + "norm_label": ".init()" + }, + { + "label": "FeedHighlightsCarouselView.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/FeedHighlightsCarouselView.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_newslibrary_sources_newslibrary_views_components_feedhighlightscarouselview", + "community": 2, + "norm_label": "feedhighlightscarouselview.swift" + }, + { + "label": "FeedHighlightsCarouselView", + "file_type": "code", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/FeedHighlightsCarouselView.swift", + "source_location": "L9", + "_origin": "ast", + "id": "macmagazine_features_newslibrary_sources_newslibrary_views_components_feedhighlightscarouselview_feedhighlightscarouselview", + "community": 88, + "norm_label": "feedhighlightscarouselview" + }, + { + "label": "FeedDB", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_newslibrary_sources_newslibrary_views_components_feedhighlightscarouselview_swift_feeddb", + "community": 88, + "norm_label": "feeddb" + }, + { + "label": "Void", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_newslibrary_sources_newslibrary_views_components_feedhighlightscarouselview_swift_void", + "community": 88, + "norm_label": "void" + }, + { + "label": "ScrollPosition", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_newslibrary_sources_newslibrary_views_components_feedhighlightscarouselview_swift_scrollposition", + "community": 88, + "norm_label": "scrollposition" + }, + { + "label": "CGFloat", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_newslibrary_sources_newslibrary_views_components_feedhighlightscarouselview_swift_cgfloat", + "community": 88, + "norm_label": "cgfloat" + }, + { + "label": "Layout", + "file_type": "code", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/FeedHighlightsCarouselView.swift", + "source_location": "L25", + "_origin": "ast", + "id": "macmagazine_features_newslibrary_sources_newslibrary_views_components_feedhighlightscarouselview_layout", + "community": 88, + "norm_label": "layout" + }, + { + "label": "Bool", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_newslibrary_sources_newslibrary_views_components_feedhighlightscarouselview_swift_bool", + "community": 88, + "norm_label": "bool" + }, + { + "label": "Int", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_newslibrary_sources_newslibrary_views_components_feedhighlightscarouselview_swift_int", + "community": 88, + "norm_label": "int" + }, + { + "label": ".init()", + "file_type": "code", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/FeedHighlightsCarouselView.swift", + "source_location": "L69", + "_origin": "ast", + "id": "macmagazine_features_newslibrary_sources_newslibrary_views_components_feedhighlightscarouselview_feedhighlightscarouselview_init", + "community": 88, + "norm_label": ".init()" + }, + { + "label": "Binding", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_newslibrary_sources_newslibrary_views_components_feedhighlightscarouselview_swift_binding", + "community": 88, + "norm_label": "binding" + }, + { + "label": "PreviewData.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Mock/PreviewData.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_newslibrary_sources_newslibrary_views_mock_previewdata", + "community": 9, + "norm_label": "previewdata.swift" + }, + { + "label": "PreviewData", + "file_type": "code", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Mock/PreviewData.swift", + "source_location": "L8", + "_origin": "ast", + "id": "macmagazine_features_newslibrary_sources_newslibrary_views_mock_previewdata_previewdata", + "community": 131, + "norm_label": "previewdata" + }, + { + "label": ".samplePost()", + "file_type": "code", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Mock/PreviewData.swift", + "source_location": "L12", + "_origin": "ast", + "id": "macmagazine_features_newslibrary_sources_newslibrary_views_mock_previewdata_previewdata_samplepost", + "community": 131, + "norm_label": ".samplepost()" + }, + { + "label": "String", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_newslibrary_sources_newslibrary_views_mock_previewdata_swift_string", + "community": 131, + "norm_label": "string" + }, + { + "label": "Bool", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_newslibrary_sources_newslibrary_views_mock_previewdata_swift_bool", + "community": 131, + "norm_label": "bool" + }, + { + "label": "FeedDB", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_newslibrary_sources_newslibrary_views_mock_previewdata_swift_feeddb", + "community": 131, + "norm_label": "feeddb" + }, + { + "label": "NewsView.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/NewsView.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_newslibrary_sources_newslibrary_views_newsview", + "community": 2, + "norm_label": "newsview.swift" + }, + { + "label": "NewsView", + "file_type": "code", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/NewsView.swift", + "source_location": "L13", + "_origin": "ast", + "id": "macmagazine_features_newslibrary_sources_newslibrary_views_newsview_newsview", + "community": 7, + "norm_label": "newsview" + }, + { + "label": "AnalyticsManager", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_newslibrary_sources_newslibrary_views_newsview_swift_analyticsmanager", + "community": 7, + "norm_label": "analyticsmanager" + }, + { + "label": "Bool", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_newslibrary_sources_newslibrary_views_newsview_swift_bool", + "community": 7, + "norm_label": "bool" + }, + { + "label": "NewsCategory", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_newslibrary_sources_newslibrary_views_newsview_swift_newscategory", + "community": 7, + "norm_label": "newscategory" + }, + { + "label": "ScrollPosition", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_newslibrary_sources_newslibrary_views_newsview_swift_scrollposition", + "community": 7, + "norm_label": "scrollposition" + }, + { + "label": "String", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_newslibrary_sources_newslibrary_views_newsview_swift_string", + "community": 7, + "norm_label": "string" + }, + { + "label": "FeedDB", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_newslibrary_sources_newslibrary_views_newsview_swift_feeddb", + "community": 7, + "norm_label": "feeddb" + }, + { + "label": "Filter", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "filter", + "community": 7, + "norm_label": "filter" + }, + { + "label": ".init()", + "file_type": "code", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/NewsView.swift", + "source_location": "L43", + "_origin": "ast", + "id": "macmagazine_features_newslibrary_sources_newslibrary_views_newsview_newsview_init", + "community": 7, + "norm_label": ".init()" + }, + { + "label": "Database", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_newslibrary_sources_newslibrary_views_newsview_swift_database", + "community": 7, + "norm_label": "database" + }, + { + "label": "Binding", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_newslibrary_sources_newslibrary_views_newsview_swift_binding", + "community": 7, + "norm_label": "binding" + }, + { + "label": ".handleTap()", + "file_type": "code", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/NewsView.swift", + "source_location": "L197", + "_origin": "ast", + "id": "macmagazine_features_newslibrary_sources_newslibrary_views_newsview_newsview_handletap", + "community": 7, + "norm_label": ".handletap()" + }, + { + "label": "Int", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_newslibrary_sources_newslibrary_views_newsview_swift_int", + "community": 7, + "norm_label": "int" + }, + { + "label": "CGFloat", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_newslibrary_sources_newslibrary_views_newsview_swift_cgfloat", + "community": 7, + "norm_label": "cgfloat" + }, + { + "label": "NewsViewModelTests.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/NewsLibrary/Tests/NewsLibraryTests/NewsViewModelTests.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests", + "community": 9, + "norm_label": "newsviewmodeltests.swift" + }, + { + "label": "NewsLibrary", + "file_type": "code", + "type": "module", + "source_file": "MacMagazine/MacMagazine/Features/News/NewsView.swift", + "source_location": "L4", + "_origin": "ast", + "id": "newslibrary", + "community": 36, + "norm_label": "newslibrary" + }, + { + "label": "NewsViewModelTests", + "file_type": "code", + "source_file": "MacMagazine/Features/NewsLibrary/Tests/NewsLibraryTests/NewsViewModelTests.swift", + "source_location": "L8", + "_origin": "ast", + "id": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests_newsviewmodeltests", + "community": 7, + "norm_label": "newsviewmodeltests" + }, + { + "label": ".initialStatusIsIdle()", + "file_type": "code", + "source_file": "MacMagazine/Features/NewsLibrary/Tests/NewsLibraryTests/NewsViewModelTests.swift", + "source_location": "L14", + "_origin": "ast", + "id": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests_newsviewmodeltests_initialstatusisidle", + "community": 7, + "norm_label": ".initialstatusisidle()" + }, + { + "label": ".initialOptionIsHome()", + "file_type": "code", + "source_file": "MacMagazine/Features/NewsLibrary/Tests/NewsLibraryTests/NewsViewModelTests.swift", + "source_location": "L22", + "_origin": "ast", + "id": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests_newsviewmodeltests_initialoptionishome", + "community": 7, + "norm_label": ".initialoptionishome()" + }, + { + "label": ".supportsSearchOption()", + "file_type": "code", + "source_file": "MacMagazine/Features/NewsLibrary/Tests/NewsLibraryTests/NewsViewModelTests.swift", + "source_location": "L32", + "_origin": "ast", + "id": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests_newsviewmodeltests_supportssearchoption", + "community": 7, + "norm_label": ".supportssearchoption()" + }, + { + "label": ".supportsEmptySearchText()", + "file_type": "code", + "source_file": "MacMagazine/Features/NewsLibrary/Tests/NewsLibraryTests/NewsViewModelTests.swift", + "source_location": "L46", + "_origin": "ast", + "id": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests_newsviewmodeltests_supportsemptysearchtext", + "community": 7, + "norm_label": ".supportsemptysearchtext()" + }, + { + "label": ".transitionBetweenOptions()", + "file_type": "code", + "source_file": "MacMagazine/Features/NewsLibrary/Tests/NewsLibraryTests/NewsViewModelTests.swift", + "source_location": "L60", + "_origin": "ast", + "id": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests_newsviewmodeltests_transitionbetweenoptions", + "community": 7, + "norm_label": ".transitionbetweenoptions()" + }, + { + "label": ".optionsEquatable()", + "file_type": "code", + "source_file": "MacMagazine/Features/NewsLibrary/Tests/NewsLibraryTests/NewsViewModelTests.swift", + "source_location": "L78", + "_origin": "ast", + "id": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests_newsviewmodeltests_optionsequatable", + "community": 7, + "norm_label": ".optionsequatable()" + }, + { + "label": ".noLoadAtIndexZero()", + "file_type": "code", + "source_file": "MacMagazine/Features/NewsLibrary/Tests/NewsLibraryTests/NewsViewModelTests.swift", + "source_location": "L88", + "_origin": "ast", + "id": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests_newsviewmodeltests_noloadatindexzero", + "community": 7, + "norm_label": ".noloadatindexzero()" + }, + { + "label": ".noLoadBelowThreshold()", + "file_type": "code", + "source_file": "MacMagazine/Features/NewsLibrary/Tests/NewsLibraryTests/NewsViewModelTests.swift", + "source_location": "L99", + "_origin": "ast", + "id": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests_newsviewmodeltests_noloadbelowthreshold", + "community": 7, + "norm_label": ".noloadbelowthreshold()" + }, + { + "label": ".noLoadAtNonMultiples()", + "file_type": "code", + "source_file": "MacMagazine/Features/NewsLibrary/Tests/NewsLibraryTests/NewsViewModelTests.swift", + "source_location": "L112", + "_origin": "ast", + "id": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests_newsviewmodeltests_noloadatnonmultiples", + "community": 7, + "norm_label": ".noloadatnonmultiples()" + }, + { + "label": ".noLoadOnBackwardScroll()", + "file_type": "code", + "source_file": "MacMagazine/Features/NewsLibrary/Tests/NewsLibraryTests/NewsViewModelTests.swift", + "source_location": "L131", + "_origin": "ast", + "id": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests_newsviewmodeltests_noloadonbackwardscroll", + "community": 7, + "norm_label": ".noloadonbackwardscroll()" + }, + { + "label": ".noLoadForSameIndex()", + "file_type": "code", + "source_file": "MacMagazine/Features/NewsLibrary/Tests/NewsLibraryTests/NewsViewModelTests.swift", + "source_location": "L144", + "_origin": "ast", + "id": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests_newsviewmodeltests_noloadforsameindex", + "community": 7, + "norm_label": ".noloadforsameindex()" + }, + { + "label": ".statusUpdatesOnSuccess()", + "file_type": "code", + "source_file": "MacMagazine/Features/NewsLibrary/Tests/NewsLibraryTests/NewsViewModelTests.swift", + "source_location": "L159", + "_origin": "ast", + "id": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests_newsviewmodeltests_statusupdatesonsuccess", + "community": 7, + "norm_label": ".statusupdatesonsuccess()" + }, + { + "label": ".setsLoadingStatus()", + "file_type": "code", + "source_file": "MacMagazine/Features/NewsLibrary/Tests/NewsLibraryTests/NewsViewModelTests.swift", + "source_location": "L170", + "_origin": "ast", + "id": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests_newsviewmodeltests_setsloadingstatus", + "community": 7, + "norm_label": ".setsloadingstatus()" + }, + { + "label": ".keepsStatusWhenNilPassed()", + "file_type": "code", + "source_file": "MacMagazine/Features/NewsLibrary/Tests/NewsLibraryTests/NewsViewModelTests.swift", + "source_location": "L183", + "_origin": "ast", + "id": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests_newsviewmodeltests_keepsstatuswhennilpassed", + "community": 7, + "norm_label": ".keepsstatuswhennilpassed()" + }, + { + "label": ".statusUpdatesOnError()", + "file_type": "code", + "source_file": "MacMagazine/Features/NewsLibrary/Tests/NewsLibraryTests/NewsViewModelTests.swift", + "source_location": "L194", + "_origin": "ast", + "id": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests_newsviewmodeltests_statusupdatesonerror", + "community": 7, + "norm_label": ".statusupdatesonerror()" + }, + { + "label": ".fetchesDefaultPage()", + "file_type": "code", + "source_file": "MacMagazine/Features/NewsLibrary/Tests/NewsLibraryTests/NewsViewModelTests.swift", + "source_location": "L211", + "_origin": "ast", + "id": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests_newsviewmodeltests_fetchesdefaultpage", + "community": 7, + "norm_label": ".fetchesdefaultpage()" + }, + { + "label": ".fetchesSpecifiedPage()", + "file_type": "code", + "source_file": "MacMagazine/Features/NewsLibrary/Tests/NewsLibraryTests/NewsViewModelTests.swift", + "source_location": "L222", + "_origin": "ast", + "id": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests_newsviewmodeltests_fetchesspecifiedpage", + "community": 7, + "norm_label": ".fetchesspecifiedpage()" + }, + { + "label": ".handleNegativeIndex()", + "file_type": "code", + "source_file": "MacMagazine/Features/NewsLibrary/Tests/NewsLibraryTests/NewsViewModelTests.swift", + "source_location": "L235", + "_origin": "ast", + "id": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests_newsviewmodeltests_handlenegativeindex", + "community": 7, + "norm_label": ".handlenegativeindex()" + }, + { + "label": ".handleVeryLargeIndex()", + "file_type": "code", + "source_file": "MacMagazine/Features/NewsLibrary/Tests/NewsLibraryTests/NewsViewModelTests.swift", + "source_location": "L246", + "_origin": "ast", + "id": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests_newsviewmodeltests_handleverylargeindex", + "community": 7, + "norm_label": ".handleverylargeindex()" + }, + { + "label": "createMockNetwork()", + "file_type": "code", + "source_file": "MacMagazine/Features/NewsLibrary/Tests/NewsLibraryTests/NewsViewModelTests.swift", + "source_location": "L262", + "_origin": "ast", + "id": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests_createmocknetwork", + "community": 7, + "norm_label": "createmocknetwork()" + }, + { + "label": "NetworkMockData", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests_swift_networkmockdata", + "community": 7, + "norm_label": "networkmockdata" + }, + { + "label": "Package.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/OnboardingLibrary/Package.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_package", + "community": 75, + "norm_label": "package.swift" + }, + { + "label": "Array.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Extensions/Array.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_extensions_array", + "community": 132, + "norm_label": "array.swift" + }, + { + "label": "Array", + "file_type": "code", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Extensions/Array.swift", + "source_location": "L3", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_extensions_array_array", + "community": 132, + "norm_label": "array" + }, + { + "label": ".chunked()", + "file_type": "code", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Extensions/Array.swift", + "source_location": "L4", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_extensions_array_array_chunked", + "community": 132, + "norm_label": ".chunked()" + }, + { + "label": "Int", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_extensions_array_swift_int", + "community": 132, + "norm_label": "int" + }, + { + "label": "Element", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_extensions_array_swift_element", + "community": 132, + "norm_label": "element" + }, + { + "label": "View.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Extensions/View.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_extensions_view", + "community": 102, + "norm_label": "view.swift" + }, + { + "label": "View", + "file_type": "code", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Extensions/View.swift", + "source_location": "L3", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_extensions_view_view", + "community": 102, + "norm_label": "view" + }, + { + "label": ".blurSlide()", + "file_type": "code", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Extensions/View.swift", + "source_location": "L5", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_extensions_view_view_blurslide", + "community": 102, + "norm_label": ".blurslide()" + }, + { + "label": "Bool", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_extensions_view_swift_bool", + "community": 102, + "norm_label": "bool" + }, + { + "label": ".setUpOnBoarding()", + "file_type": "code", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Extensions/View.swift", + "source_location": "L14", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_extensions_view_view_setuponboarding", + "community": 102, + "norm_label": ".setuponboarding()" + }, + { + "label": ".onboardingAnimateIn()", + "file_type": "code", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Extensions/View.swift", + "source_location": "L36", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_extensions_view_view_onboardinganimatein", + "community": 102, + "norm_label": ".onboardinganimatein()" + }, + { + "label": "Double", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_extensions_view_swift_double", + "community": 102, + "norm_label": "double" + }, + { + "label": ".onboardingFade()", + "file_type": "code", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Extensions/View.swift", + "source_location": "L50", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_extensions_view_view_onboardingfade", + "community": 102, + "norm_label": ".onboardingfade()" + }, + { + "label": "OnBoardingFeature.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Model/OnBoardingFeature.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_model_onboardingfeature", + "community": 67, + "norm_label": "onboardingfeature.swift" + }, + { + "label": "OnBoardingFeature", + "file_type": "code", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Model/OnBoardingFeature.swift", + "source_location": "L3", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_model_onboardingfeature_onboardingfeature", + "community": 67, + "norm_label": "onboardingfeature" + }, + { + "label": "Identifiable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "identifiable", + "community": 67, + "norm_label": "identifiable" + }, + { + "label": "String", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_model_onboardingfeature_swift_string", + "community": 67, + "norm_label": "string" + }, + { + "label": "OnboardingCoordinator.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/ViewModels/OnboardingCoordinator.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_onboardingcoordinator", + "community": 2, + "norm_label": "onboardingcoordinator.swift" + }, + { + "label": "OnboardingCoordinator", + "file_type": "code", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/ViewModels/OnboardingCoordinator.swift", + "source_location": "L7", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_onboardingcoordinator_onboardingcoordinator", + "community": 22, + "norm_label": "onboardingcoordinator" + }, + { + "label": "String", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_onboardingcoordinator_swift_string", + "community": 121, + "norm_label": "string" + }, + { + "label": "Void", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_onboardingcoordinator_swift_void", + "community": 22, + "norm_label": "void" + }, + { + "label": "AnalyticsManager", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_onboardingcoordinator_swift_analyticsmanager", + "community": 35, + "norm_label": "analyticsmanager" + }, + { + "label": ".init()", + "file_type": "code", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/ViewModels/OnboardingCoordinator.swift", + "source_location": "L26", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_onboardingcoordinator_onboardingcoordinator_init", + "community": 35, + "norm_label": ".init()" + }, + { + "label": ".navigate()", + "file_type": "code", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/ViewModels/OnboardingCoordinator.swift", + "source_location": "L36", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_onboardingcoordinator_onboardingcoordinator_navigate", + "community": 22, + "norm_label": ".navigate()" + }, + { + "label": ".skipToPermissions()", + "file_type": "code", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/ViewModels/OnboardingCoordinator.swift", + "source_location": "L46", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_onboardingcoordinator_onboardingcoordinator_skiptopermissions", + "community": 22, + "norm_label": ".skiptopermissions()" + }, + { + "label": ".completeOnboarding()", + "file_type": "code", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/ViewModels/OnboardingCoordinator.swift", + "source_location": "L59", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_onboardingcoordinator_onboardingcoordinator_completeonboarding", + "community": 22, + "norm_label": ".completeonboarding()" + }, + { + "label": ".markFeaturesAsSeen()", + "file_type": "code", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/ViewModels/OnboardingCoordinator.swift", + "source_location": "L71", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_onboardingcoordinator_onboardingcoordinator_markfeaturesasseen", + "community": 22, + "norm_label": ".markfeaturesasseen()" + }, + { + "label": "Bool", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_onboardingcoordinator_swift_bool", + "community": 22, + "norm_label": "bool" + }, + { + "label": ".createIfNeeded()", + "file_type": "code", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/ViewModels/OnboardingCoordinator.swift", + "source_location": "L82", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_onboardingcoordinator_onboardingcoordinator_createifneeded", + "community": 35, + "norm_label": ".createifneeded()" + }, + { + "label": "PushNotification", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_onboardingcoordinator_swift_pushnotification", + "community": 35, + "norm_label": "pushnotification" + }, + { + "label": ".resetOnboarding()", + "file_type": "code", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/ViewModels/OnboardingCoordinator.swift", + "source_location": "L114", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_onboardingcoordinator_onboardingcoordinator_resetonboarding", + "community": 22, + "norm_label": ".resetonboarding()" + }, + { + "label": "OnboardingScreen", + "file_type": "code", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/ViewModels/OnboardingCoordinator.swift", + "source_location": "L122", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_onboardingcoordinator_onboardingscreen", + "community": 121, + "norm_label": "onboardingscreen" + }, + { + "label": "welcome", + "file_type": "code", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/ViewModels/OnboardingCoordinator.swift", + "source_location": "L123", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_onboardingcoordinator_onboardingscreen_welcome", + "community": 121, + "norm_label": "welcome" + }, + { + "label": "features", + "file_type": "code", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/ViewModels/OnboardingCoordinator.swift", + "source_location": "L124", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_onboardingcoordinator_onboardingscreen_features", + "community": 121, + "norm_label": "features" + }, + { + "label": "permissions", + "file_type": "code", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/ViewModels/OnboardingCoordinator.swift", + "source_location": "L125", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_onboardingcoordinator_onboardingscreen_permissions", + "community": 121, + "norm_label": "permissions" + }, + { + "label": "PermissionManager.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/ViewModels/PermissionManager.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_permissionmanager", + "community": 24, + "norm_label": "permissionmanager.swift" + }, + { + "label": "AppTrackingTransparency", + "file_type": "code", + "type": "module", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/ViewModels/PermissionManager.swift", + "source_location": "L2", + "_origin": "ast", + "id": "apptrackingtransparency", + "community": 24, + "norm_label": "apptrackingtransparency" + }, + { + "label": "PermissionManager", + "file_type": "code", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/ViewModels/PermissionManager.swift", + "source_location": "L7", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_permissionmanager_permissionmanager", + "community": 35, + "norm_label": "permissionmanager" + }, + { + "label": "AnalyticsManager", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_permissionmanager_swift_analyticsmanager", + "community": 35, + "norm_label": "analyticsmanager" + }, + { + "label": "PushNotification", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_permissionmanager_swift_pushnotification", + "community": 35, + "norm_label": "pushnotification" + }, + { + "label": ".init()", + "file_type": "code", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/ViewModels/PermissionManager.swift", + "source_location": "L17", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_permissionmanager_permissionmanager_init", + "community": 35, + "norm_label": ".init()" + }, + { + "label": ".checkPushPermissionStatus()", + "file_type": "code", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/ViewModels/PermissionManager.swift", + "source_location": "L25", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_permissionmanager_permissionmanager_checkpushpermissionstatus", + "community": 35, + "norm_label": ".checkpushpermissionstatus()" + }, + { + "label": ".requestPushPermission()", + "file_type": "code", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/ViewModels/PermissionManager.swift", + "source_location": "L36", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_permissionmanager_permissionmanager_requestpushpermission", + "community": 35, + "norm_label": ".requestpushpermission()" + }, + { + "label": "Bool", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_permissionmanager_swift_bool", + "community": 35, + "norm_label": "bool" + }, + { + "label": ".skipPushPermission()", + "file_type": "code", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/ViewModels/PermissionManager.swift", + "source_location": "L63", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_permissionmanager_permissionmanager_skippushpermission", + "community": 35, + "norm_label": ".skippushpermission()" + }, + { + "label": "String", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_permissionmanager_swift_string", + "community": 35, + "norm_label": "string" + }, + { + "label": ".checkATTPermissionStatus()", + "file_type": "code", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/ViewModels/PermissionManager.swift", + "source_location": "L99", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_permissionmanager_permissionmanager_checkattpermissionstatus", + "community": 35, + "norm_label": ".checkattpermissionstatus()" + }, + { + "label": ".requestATTPermission()", + "file_type": "code", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/ViewModels/PermissionManager.swift", + "source_location": "L123", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_permissionmanager_permissionmanager_requestattpermission", + "community": 35, + "norm_label": ".requestattpermission()" + }, + { + "label": ".refreshAllPermissionStatuses()", + "file_type": "code", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/ViewModels/PermissionManager.swift", + "source_location": "L182", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_permissionmanager_permissionmanager_refreshallpermissionstatuses", + "community": 35, + "norm_label": ".refreshallpermissionstatuses()" + }, + { + "label": "ATTPermissionStatus", + "file_type": "code", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/ViewModels/PermissionManager.swift", + "source_location": "L190", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_permissionmanager_attpermissionstatus", + "community": 133, + "norm_label": "attpermissionstatus" + }, + { + "label": "notDetermined", + "file_type": "code", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/ViewModels/PermissionManager.swift", + "source_location": "L191", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_permissionmanager_attpermissionstatus_notdetermined", + "community": 133, + "norm_label": "notdetermined" + }, + { + "label": "authorized", + "file_type": "code", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/ViewModels/PermissionManager.swift", + "source_location": "L192", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_permissionmanager_attpermissionstatus_authorized", + "community": 133, + "norm_label": "authorized" + }, + { + "label": "denied", + "file_type": "code", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/ViewModels/PermissionManager.swift", + "source_location": "L193", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_permissionmanager_attpermissionstatus_denied", + "community": 133, + "norm_label": "denied" + }, + { + "label": "restricted", + "file_type": "code", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/ViewModels/PermissionManager.swift", + "source_location": "L194", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_permissionmanager_attpermissionstatus_restricted", + "community": 133, + "norm_label": "restricted" + }, + { + "label": "OnboardingCTAButton.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Components/OnboardingCTAButton.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_onboardingctabutton", + "community": 2, + "norm_label": "onboardingctabutton.swift" + }, + { + "label": "OnboardingCTAButton", + "file_type": "code", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Components/OnboardingCTAButton.swift", + "source_location": "L7", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_onboardingctabutton_onboardingctabutton", + "community": 134, + "norm_label": "onboardingctabutton" + }, + { + "label": "String", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_onboardingctabutton_swift_string", + "community": 134, + "norm_label": "string" + }, + { + "label": "Bool", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_onboardingctabutton_swift_bool", + "community": 134, + "norm_label": "bool" + }, + { + "label": "Void", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_onboardingctabutton_swift_void", + "community": 134, + "norm_label": "void" + }, + { + "label": ".init()", + "file_type": "code", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Components/OnboardingCTAButton.swift", + "source_location": "L20", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_onboardingctabutton_onboardingctabutton_init", + "community": 134, + "norm_label": ".init()" + }, + { + "label": "OnboardingLogoView.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Components/OnboardingLogoView.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_onboardinglogoview", + "community": 125, + "norm_label": "onboardinglogoview.swift" + }, + { + "label": "OnboardingLogoView", + "file_type": "code", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Components/OnboardingLogoView.swift", + "source_location": "L3", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_onboardinglogoview_onboardinglogoview", + "community": 125, + "norm_label": "onboardinglogoview" + }, + { + "label": "CGFloat", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_onboardinglogoview_swift_cgfloat", + "community": 125, + "norm_label": "cgfloat" + }, + { + "label": ".init()", + "file_type": "code", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Components/OnboardingLogoView.swift", + "source_location": "L12", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_onboardinglogoview_onboardinglogoview_init", + "community": 125, + "norm_label": ".init()" + }, + { + "label": "OnboardingSkipButton.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Components/OnboardingSkipButton.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_onboardingskipbutton", + "community": 2, + "norm_label": "onboardingskipbutton.swift" + }, + { + "label": "OnboardingSkipButton", + "file_type": "code", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Components/OnboardingSkipButton.swift", + "source_location": "L7", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_onboardingskipbutton_onboardingskipbutton", + "community": 142, + "norm_label": "onboardingskipbutton" + }, + { + "label": "Void", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_onboardingskipbutton_swift_void", + "community": 142, + "norm_label": "void" + }, + { + "label": "String", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_onboardingskipbutton_swift_string", + "community": 142, + "norm_label": "string" + }, + { + "label": ".init()", + "file_type": "code", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Components/OnboardingSkipButton.swift", + "source_location": "L12", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_onboardingskipbutton_onboardingskipbutton_init", + "community": 142, + "norm_label": ".init()" + }, + { + "label": "OnboardingTitleView.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Components/OnboardingTitleView.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_onboardingtitleview", + "community": 2, + "norm_label": "onboardingtitleview.swift" + }, + { + "label": "OnboardingTitleView", + "file_type": "code", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Components/OnboardingTitleView.swift", + "source_location": "L7", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_onboardingtitleview_onboardingtitleview", + "community": 135, + "norm_label": "onboardingtitleview" + }, + { + "label": "String", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_onboardingtitleview_swift_string", + "community": 135, + "norm_label": "string" + }, + { + "label": "Bool", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_onboardingtitleview_swift_bool", + "community": 135, + "norm_label": "bool" + }, + { + "label": "Double", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_onboardingtitleview_swift_double", + "community": 135, + "norm_label": "double" + }, + { + "label": ".init()", + "file_type": "code", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Components/OnboardingTitleView.swift", + "source_location": "L14", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_onboardingtitleview_onboardingtitleview_init", + "community": 135, + "norm_label": ".init()" + }, + { + "label": "PermissionCard.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Components/PermissionCard.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_permissioncard", + "community": 94, + "norm_label": "permissioncard.swift" + }, + { + "label": "PermissionCard", + "file_type": "code", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Components/PermissionCard.swift", + "source_location": "L3", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_permissioncard_permissioncard", + "community": 94, + "norm_label": "permissioncard" + }, + { + "label": "String", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_permissioncard_swift_string", + "community": 94, + "norm_label": "string" + }, + { + "label": "Void", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_permissioncard_swift_void", + "community": 94, + "norm_label": "void" + }, + { + "label": ".init()", + "file_type": "code", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Components/PermissionCard.swift", + "source_location": "L12", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_permissioncard_permissioncard_init", + "community": 94, + "norm_label": ".init()" + }, + { + "label": "PermissionCardStatus", + "file_type": "code", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Components/PermissionCard.swift", + "source_location": "L128", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_permissioncard_permissioncardstatus", + "community": 94, + "norm_label": "permissioncardstatus" + }, + { + "label": "notDetermined", + "file_type": "code", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Components/PermissionCard.swift", + "source_location": "L129", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_permissioncard_permissioncardstatus_notdetermined", + "community": 94, + "norm_label": "notdetermined" + }, + { + "label": "granted", + "file_type": "code", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Components/PermissionCard.swift", + "source_location": "L130", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_permissioncard_permissioncardstatus_granted", + "community": 94, + "norm_label": "granted" + }, + { + "label": "denied", + "file_type": "code", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Components/PermissionCard.swift", + "source_location": "L131", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_permissioncard_permissioncardstatus_denied", + "community": 94, + "norm_label": "denied" + }, + { + "label": "OnboardingFadeModifier.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Modifiers/OnboardingFadeModifier.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_modifiers_onboardingfademodifier", + "community": 112, + "norm_label": "onboardingfademodifier.swift" + }, + { + "label": "OnboardingFadeModifier", + "file_type": "code", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Modifiers/OnboardingFadeModifier.swift", + "source_location": "L3", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_modifiers_onboardingfademodifier_onboardingfademodifier", + "community": 112, + "norm_label": "onboardingfademodifier" + }, + { + "label": "Bool", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_modifiers_onboardingfademodifier_swift_bool", + "community": 112, + "norm_label": "bool" + }, + { + "label": "Double", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_modifiers_onboardingfademodifier_swift_double", + "community": 112, + "norm_label": "double" + }, + { + "label": ".body()", + "file_type": "code", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Modifiers/OnboardingFadeModifier.swift", + "source_location": "L8", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_modifiers_onboardingfademodifier_onboardingfademodifier_body", + "community": 112, + "norm_label": ".body()" + }, + { + "label": "Content", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_modifiers_onboardingfademodifier_swift_content", + "community": 112, + "norm_label": "content" + }, + { + "label": "View", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_modifiers_onboardingfademodifier_swift_view", + "community": 112, + "norm_label": "view" + }, + { + "label": "OnboardingContainerView.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/OnboardingContainerView.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_onboardingcontainerview", + "community": 2, + "norm_label": "onboardingcontainerview.swift" + }, + { + "label": "OnboardingContainerView", + "file_type": "code", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/OnboardingContainerView.swift", + "source_location": "L5", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_onboardingcontainerview_onboardingcontainerview", + "community": 45, + "norm_label": "onboardingcontainerview" + }, + { + "label": "Bool", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_onboardingcontainerview_swift_bool", + "community": 45, + "norm_label": "bool" + }, + { + "label": ".init()", + "file_type": "code", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/OnboardingContainerView.swift", + "source_location": "L15", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_onboardingcontainerview_onboardingcontainerview_init", + "community": 45, + "norm_label": ".init()" + }, + { + "label": "OnboardingSheetPreviewHost", + "file_type": "code", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/OnboardingContainerView.swift", + "source_location": "L52", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_onboardingcontainerview_onboardingsheetpreviewhost", + "community": 35, + "norm_label": "onboardingsheetpreviewhost" + }, + { + "label": "Screen1_WelcomeView.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Screen1_WelcomeView.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_screen1_welcomeview", + "community": 2, + "norm_label": "screen1_welcomeview.swift" + }, + { + "label": "WelcomeView", + "file_type": "code", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Screen1_WelcomeView.swift", + "source_location": "L6", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_screen1_welcomeview_welcomeview", + "community": 45, + "norm_label": "welcomeview" + }, + { + "label": "Namespace", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_screen1_welcomeview_swift_namespace", + "community": 45, + "norm_label": "namespace" + }, + { + "label": "Bool", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_screen1_welcomeview_swift_bool", + "community": 45, + "norm_label": "bool" + }, + { + "label": ".logoView()", + "file_type": "code", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Screen1_WelcomeView.swift", + "source_location": "L104", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_screen1_welcomeview_welcomeview_logoview", + "community": 125, + "norm_label": ".logoview()" + }, + { + "label": "CGFloat", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_screen1_welcomeview_swift_cgfloat", + "community": 125, + "norm_label": "cgfloat" + }, + { + "label": ".trackAndNavigate()", + "file_type": "code", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Screen1_WelcomeView.swift", + "source_location": "L140", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_screen1_welcomeview_welcomeview_trackandnavigate", + "community": 22, + "norm_label": ".trackandnavigate()" + }, + { + "label": "WelcomeSheetPreviewHost", + "file_type": "code", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Screen1_WelcomeView.swift", + "source_location": "L164", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_screen1_welcomeview_welcomesheetpreviewhost", + "community": 35, + "norm_label": "welcomesheetpreviewhost" + }, + { + "label": "Screen2_FeaturesView.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Screen2_FeaturesView.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_screen2_featuresview", + "community": 2, + "norm_label": "screen2_featuresview.swift" + }, + { + "label": "FeaturesView", + "file_type": "code", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Screen2_FeaturesView.swift", + "source_location": "L6", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_screen2_featuresview_featuresview", + "community": 67, + "norm_label": "featuresview" + }, + { + "label": "Namespace", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_screen2_featuresview_swift_namespace", + "community": 67, + "norm_label": "namespace" + }, + { + "label": "Int", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_screen2_featuresview_swift_int", + "community": 67, + "norm_label": "int" + }, + { + "label": "Bool", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_screen2_featuresview_swift_bool", + "community": 67, + "norm_label": "bool" + }, + { + "label": "GridItem", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_screen2_featuresview_swift_griditem", + "community": 67, + "norm_label": "griditem" + }, + { + "label": "CGFloat", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_screen2_featuresview_swift_cgfloat", + "community": 67, + "norm_label": "cgfloat" + }, + { + "label": ".pageView()", + "file_type": "code", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Screen2_FeaturesView.swift", + "source_location": "L187", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_screen2_featuresview_featuresview_pageview", + "community": 67, + "norm_label": ".pageview()" + }, + { + "label": ".cardView()", + "file_type": "code", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Screen2_FeaturesView.swift", + "source_location": "L196", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_screen2_featuresview_featuresview_cardview", + "community": 67, + "norm_label": ".cardview()" + }, + { + "label": ".handleContinue()", + "file_type": "code", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Screen2_FeaturesView.swift", + "source_location": "L278", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_screen2_featuresview_featuresview_handlecontinue", + "community": 22, + "norm_label": ".handlecontinue()" + }, + { + "label": "FeaturesViewSheetPreviewHost", + "file_type": "code", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Screen2_FeaturesView.swift", + "source_location": "L302", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_screen2_featuresview_featuresviewsheetpreviewhost", + "community": 35, + "norm_label": "featuresviewsheetpreviewhost" + }, + { + "label": "Screen3_PermissionsView.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Screen3_PermissionsView.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_screen3_permissionsview", + "community": 2, + "norm_label": "screen3_permissionsview.swift" + }, + { + "label": "PermissionsView", + "file_type": "code", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Screen3_PermissionsView.swift", + "source_location": "L6", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_screen3_permissionsview_permissionsview", + "community": 45, + "norm_label": "permissionsview" + }, + { + "label": "Namespace", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_screen3_permissionsview_swift_namespace", + "community": 45, + "norm_label": "namespace" + }, + { + "label": "Bool", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_screen3_permissionsview_swift_bool", + "community": 45, + "norm_label": "bool" + }, + { + "label": ".requestPushPermission()", + "file_type": "code", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Screen3_PermissionsView.swift", + "source_location": "L219", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_screen3_permissionsview_permissionsview_requestpushpermission", + "community": 45, + "norm_label": ".requestpushpermission()" + }, + { + "label": ".requestATTPermission()", + "file_type": "code", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Screen3_PermissionsView.swift", + "source_location": "L224", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_screen3_permissionsview_permissionsview_requestattpermission", + "community": 45, + "norm_label": ".requestattpermission()" + }, + { + "label": "PermissionViewSheetPreviewHost", + "file_type": "code", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Screen3_PermissionsView.swift", + "source_location": "L241", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_screen3_permissionsview_permissionviewsheetpreviewhost", + "community": 35, + "norm_label": "permissionviewsheetpreviewhost" + }, + { + "label": "OnboardingCoordinatorTests.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/OnboardingLibrary/Tests/OnboardingLibraryTests/OnboardingCoordinatorTests.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_tests_onboardinglibrarytests_onboardingcoordinatortests", + "community": 36, + "norm_label": "onboardingcoordinatortests.swift" + }, + { + "label": "OnboardingLibrary", + "file_type": "code", + "type": "module", + "source_file": "MacMagazine/MacMagazine/MainApp/MainViewModel.swift", + "source_location": "L5", + "_origin": "ast", + "id": "onboardinglibrary", + "community": 36, + "norm_label": "onboardinglibrary" + }, + { + "label": "OnboardingCoordinatorTests", + "file_type": "code", + "source_file": "MacMagazine/Features/OnboardingLibrary/Tests/OnboardingLibraryTests/OnboardingCoordinatorTests.swift", + "source_location": "L7", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_tests_onboardinglibrarytests_onboardingcoordinatortests_onboardingcoordinatortests", + "community": 22, + "norm_label": "onboardingcoordinatortests" + }, + { + "label": ".init()", + "file_type": "code", + "source_file": "MacMagazine/Features/OnboardingLibrary/Tests/OnboardingLibraryTests/OnboardingCoordinatorTests.swift", + "source_location": "L13", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_tests_onboardinglibrarytests_onboardingcoordinatortests_onboardingcoordinatortests_init", + "community": 22, + "norm_label": ".init()" + }, + { + "label": ".initialScreenIsWelcome()", + "file_type": "code", + "source_file": "MacMagazine/Features/OnboardingLibrary/Tests/OnboardingLibraryTests/OnboardingCoordinatorTests.swift", + "source_location": "L19", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_tests_onboardinglibrarytests_onboardingcoordinatortests_onboardingcoordinatortests_initialscreeniswelcome", + "community": 22, + "norm_label": ".initialscreeniswelcome()" + }, + { + "label": ".hasStableIdentifier()", + "file_type": "code", + "source_file": "MacMagazine/Features/OnboardingLibrary/Tests/OnboardingLibraryTests/OnboardingCoordinatorTests.swift", + "source_location": "L28", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_tests_onboardinglibrarytests_onboardingcoordinatortests_onboardingcoordinatortests_hasstableidentifier", + "community": 22, + "norm_label": ".hasstableidentifier()" + }, + { + "label": ".initialCompletionIsNil()", + "file_type": "code", + "source_file": "MacMagazine/Features/OnboardingLibrary/Tests/OnboardingLibraryTests/OnboardingCoordinatorTests.swift", + "source_location": "L37", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_tests_onboardinglibrarytests_onboardingcoordinatortests_onboardingcoordinatortests_initialcompletionisnil", + "community": 22, + "norm_label": ".initialcompletionisnil()" + }, + { + "label": ".navigateToFeatures()", + "file_type": "code", + "source_file": "MacMagazine/Features/OnboardingLibrary/Tests/OnboardingLibraryTests/OnboardingCoordinatorTests.swift", + "source_location": "L48", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_tests_onboardinglibrarytests_onboardingcoordinatortests_onboardingcoordinatortests_navigatetofeatures", + "community": 22, + "norm_label": ".navigatetofeatures()" + }, + { + "label": ".navigateToPermissions()", + "file_type": "code", + "source_file": "MacMagazine/Features/OnboardingLibrary/Tests/OnboardingLibraryTests/OnboardingCoordinatorTests.swift", + "source_location": "L59", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_tests_onboardinglibrarytests_onboardingcoordinatortests_onboardingcoordinatortests_navigatetopermissions", + "community": 22, + "norm_label": ".navigatetopermissions()" + }, + { + "label": ".navigateBackToWelcome()", + "file_type": "code", + "source_file": "MacMagazine/Features/OnboardingLibrary/Tests/OnboardingLibraryTests/OnboardingCoordinatorTests.swift", + "source_location": "L70", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_tests_onboardinglibrarytests_onboardingcoordinatortests_onboardingcoordinatortests_navigatebacktowelcome", + "community": 22, + "norm_label": ".navigatebacktowelcome()" + }, + { + "label": ".skipToPermissions()", + "file_type": "code", + "source_file": "MacMagazine/Features/OnboardingLibrary/Tests/OnboardingLibraryTests/OnboardingCoordinatorTests.swift", + "source_location": "L82", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_tests_onboardinglibrarytests_onboardingcoordinatortests_onboardingcoordinatortests_skiptopermissions", + "community": 22, + "norm_label": ".skiptopermissions()" + }, + { + "label": ".skipToPermissionsFromFeatures()", + "file_type": "code", + "source_file": "MacMagazine/Features/OnboardingLibrary/Tests/OnboardingLibraryTests/OnboardingCoordinatorTests.swift", + "source_location": "L93", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_tests_onboardinglibrarytests_onboardingcoordinatortests_onboardingcoordinatortests_skiptopermissionsfromfeatures", + "community": 22, + "norm_label": ".skiptopermissionsfromfeatures()" + }, + { + "label": ".completionHandlerCalled()", + "file_type": "code", + "source_file": "MacMagazine/Features/OnboardingLibrary/Tests/OnboardingLibraryTests/OnboardingCoordinatorTests.swift", + "source_location": "L107", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_tests_onboardinglibrarytests_onboardingcoordinatortests_onboardingcoordinatortests_completionhandlercalled", + "community": 22, + "norm_label": ".completionhandlercalled()" + }, + { + "label": ".completionWithNilHandler()", + "file_type": "code", + "source_file": "MacMagazine/Features/OnboardingLibrary/Tests/OnboardingLibraryTests/OnboardingCoordinatorTests.swift", + "source_location": "L121", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_tests_onboardinglibrarytests_onboardingcoordinatortests_onboardingcoordinatortests_completionwithnilhandler", + "community": 22, + "norm_label": ".completionwithnilhandler()" + }, + { + "label": ".marksOnboardingAsCompleted()", + "file_type": "code", + "source_file": "MacMagazine/Features/OnboardingLibrary/Tests/OnboardingLibraryTests/OnboardingCoordinatorTests.swift", + "source_location": "L132", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_tests_onboardinglibrarytests_onboardingcoordinatortests_onboardingcoordinatortests_marksonboardingascompleted", + "community": 22, + "norm_label": ".marksonboardingascompleted()" + }, + { + "label": ".resetOnboardingState()", + "file_type": "code", + "source_file": "MacMagazine/Features/OnboardingLibrary/Tests/OnboardingLibraryTests/OnboardingCoordinatorTests.swift", + "source_location": "L148", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_tests_onboardinglibrarytests_onboardingcoordinatortests_onboardingcoordinatortests_resetonboardingstate", + "community": 22, + "norm_label": ".resetonboardingstate()" + }, + { + "label": ".typicalNavigationFlow()", + "file_type": "code", + "source_file": "MacMagazine/Features/OnboardingLibrary/Tests/OnboardingLibraryTests/OnboardingCoordinatorTests.swift", + "source_location": "L164", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_tests_onboardinglibrarytests_onboardingcoordinatortests_onboardingcoordinatortests_typicalnavigationflow", + "community": 22, + "norm_label": ".typicalnavigationflow()" + }, + { + "label": ".skipNavigationFlow()", + "file_type": "code", + "source_file": "MacMagazine/Features/OnboardingLibrary/Tests/OnboardingLibraryTests/OnboardingCoordinatorTests.swift", + "source_location": "L179", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_tests_onboardinglibrarytests_onboardingcoordinatortests_onboardingcoordinatortests_skipnavigationflow", + "community": 22, + "norm_label": ".skipnavigationflow()" + }, + { + "label": "OnboardingScreenTests", + "file_type": "code", + "source_file": "MacMagazine/Features/OnboardingLibrary/Tests/OnboardingLibraryTests/OnboardingCoordinatorTests.swift", + "source_location": "L192", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_tests_onboardinglibrarytests_onboardingcoordinatortests_onboardingscreentests", + "community": 36, + "norm_label": "onboardingscreentests" + }, + { + "label": ".screensAreHashable()", + "file_type": "code", + "source_file": "MacMagazine/Features/OnboardingLibrary/Tests/OnboardingLibraryTests/OnboardingCoordinatorTests.swift", + "source_location": "L195", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_tests_onboardinglibrarytests_onboardingcoordinatortests_onboardingscreentests_screensarehashable", + "community": 36, + "norm_label": ".screensarehashable()" + }, + { + "label": ".screensHaveAnalyticsNames()", + "file_type": "code", + "source_file": "MacMagazine/Features/OnboardingLibrary/Tests/OnboardingLibraryTests/OnboardingCoordinatorTests.swift", + "source_location": "L205", + "_origin": "ast", + "id": "macmagazine_features_onboardinglibrary_tests_onboardinglibrarytests_onboardingcoordinatortests_onboardingscreentests_screenshaveanalyticsnames", + "community": 36, + "norm_label": ".screenshaveanalyticsnames()" + }, + { + "label": "Package.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Package.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_package", + "community": 75, + "norm_label": "package.swift" + }, + { + "label": "PodcastDBExtensions.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Extensions/PodcastDBExtensions.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_extensions_podcastdbextensions", + "community": 2, + "norm_label": "podcastdbextensions.swift" + }, + { + "label": "PodcastDB", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Extensions/PodcastDBExtensions.swift", + "source_location": "L8", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_extensions_podcastdbextensions_podcastdb", + "community": 113, + "norm_label": "podcastdb" + }, + { + "label": ".toCardContent()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Extensions/PodcastDBExtensions.swift", + "source_location": "L9", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_extensions_podcastdbextensions_podcastdb_tocardcontent", + "community": 113, + "norm_label": ".tocardcontent()" + }, + { + "label": "ModelContext", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_extensions_podcastdbextensions_swift_modelcontext", + "community": 113, + "norm_label": "modelcontext" + }, + { + "label": "AnalyticsManager", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_extensions_podcastdbextensions_swift_analyticsmanager", + "community": 113, + "norm_label": "analyticsmanager" + }, + { + "label": "String", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_extensions_podcastdbextensions_swift_string", + "community": 113, + "norm_label": "string" + }, + { + "label": ".save()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Extensions/PodcastDBExtensions.swift", + "source_location": "L36", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_extensions_podcastdbextensions_podcastdb_save", + "community": 113, + "norm_label": ".save()" + }, + { + "label": "Double", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_extensions_podcastdbextensions_swift_double", + "community": 113, + "norm_label": "double" + }, + { + "label": "UIColorExtensions.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Extensions/UIColorExtensions.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_extensions_uicolorextensions", + "community": 95, + "norm_label": "uicolorextensions.swift" + }, + { + "label": "UIColor", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Extensions/UIColorExtensions.swift", + "source_location": "L3", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_extensions_uicolorextensions_uicolor", + "community": 95, + "norm_label": "uicolor" + }, + { + "label": "CGFloat", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_extensions_uicolorextensions_swift_cgfloat", + "community": 95, + "norm_label": "cgfloat" + }, + { + "label": "UIImageExtensions.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Extensions/UIImageExtensions.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_extensions_uiimageextensions", + "community": 95, + "norm_label": "uiimageextensions.swift" + }, + { + "label": "UIImage", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Extensions/UIImageExtensions.swift", + "source_location": "L3", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_extensions_uiimageextensions_uiimage", + "community": 95, + "norm_label": "uiimage" + }, + { + "label": ".averageColor()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Extensions/UIImageExtensions.swift", + "source_location": "L5", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_extensions_uiimageextensions_uiimage_averagecolor", + "community": 95, + "norm_label": ".averagecolor()" + }, + { + "label": ".twoToneGradientColors()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Extensions/UIImageExtensions.swift", + "source_location": "L43", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_extensions_uiimageextensions_uiimage_twotonegradientcolors", + "community": 95, + "norm_label": ".twotonegradientcolors()" + }, + { + "label": ".threeToneGradientColors()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Extensions/UIImageExtensions.swift", + "source_location": "L77", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_extensions_uiimageextensions_uiimage_threetonegradientcolors", + "community": 95, + "norm_label": ".threetonegradientcolors()" + }, + { + "label": ".fourToneGradientColors()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Extensions/UIImageExtensions.swift", + "source_location": "L118", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_extensions_uiimageextensions_uiimage_fourtonegradientcolors", + "community": 95, + "norm_label": ".fourtonegradientcolors()" + }, + { + "label": "PodcastChapter.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/PodcastChapter.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastchapter", + "community": 9, + "norm_label": "podcastchapter.swift" + }, + { + "label": "AVFoundation", + "file_type": "code", + "type": "module", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastPlayerManagerTests.swift", + "source_location": "L1", + "_origin": "ast", + "id": "avfoundation", + "community": 9, + "norm_label": "avfoundation" + }, + { + "label": "PodcastChapter", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/PodcastChapter.swift", + "source_location": "L5", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastchapter_podcastchapter", + "community": 32, + "norm_label": "podcastchapter" + }, + { + "label": "String", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastchapter_swift_string", + "community": 32, + "norm_label": "string" + }, + { + "label": "CMTime", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "cmtime", + "community": 32, + "norm_label": "cmtime" + }, + { + "label": "Data", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastchapter_swift_data", + "community": 32, + "norm_label": "data" + }, + { + "label": ".backgroundColor()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/PodcastChapter.swift", + "source_location": "L21", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastchapter_podcastchapter_backgroundcolor", + "community": 19, + "norm_label": ".backgroundcolor()" + }, + { + "label": "Double", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastchapter_swift_double", + "community": 32, + "norm_label": "double" + }, + { + "label": "Color", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastchapter_swift_color", + "community": 19, + "norm_label": "color" + }, + { + "label": ".timeString()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/PodcastChapter.swift", + "source_location": "L29", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastchapter_podcastchapter_timestring", + "community": 32, + "norm_label": ".timestring()" + }, + { + "label": "PodcastPlayerManager.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/PodcastPlayerManager.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager", + "community": 9, + "norm_label": "podcastplayermanager.swift" + }, + { + "label": "Combine", + "file_type": "code", + "type": "module", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/PodcastPlayerManager.swift", + "source_location": "L2", + "_origin": "ast", + "id": "combine", + "community": 9, + "norm_label": "combine" + }, + { + "label": "MediaPlayer", + "file_type": "code", + "type": "module", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/SystemVolumeView.swift", + "source_location": "L2", + "_origin": "ast", + "id": "mediaplayer", + "community": 91, + "norm_label": "mediaplayer" + }, + { + "label": "PodcastPlayerManager", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/PodcastPlayerManager.swift", + "source_location": "L10", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager", + "community": 21, + "norm_label": "podcastplayermanager" + }, + { + "label": "PodcastDB", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_swift_podcastdb", + "community": 21, + "norm_label": "podcastdb" + }, + { + "label": "TimeInterval", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_swift_timeinterval", + "community": 21, + "norm_label": "timeinterval" + }, + { + "label": "Float", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "float", + "community": 21, + "norm_label": "float" + }, + { + "label": "AVPlayer", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "avplayer", + "community": 21, + "norm_label": "avplayer" + }, + { + "label": "Any", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_swift_any", + "community": 21, + "norm_label": "any" + }, + { + "label": ".init()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/PodcastPlayerManager.swift", + "source_location": "L36", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager_init", + "community": 21, + "norm_label": ".init()" + }, + { + "label": ".observeSessionState()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/PodcastPlayerManager.swift", + "source_location": "L38", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager_observesessionstate", + "community": 21, + "norm_label": ".observesessionstate()" + }, + { + "label": ".loadPodcast()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/PodcastPlayerManager.swift", + "source_location": "L58", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager_loadpodcast", + "community": 21, + "norm_label": ".loadpodcast()" + }, + { + "label": ".play()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/PodcastPlayerManager.swift", + "source_location": "L98", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager_play", + "community": 21, + "norm_label": ".play()" + }, + { + "label": ".pause()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/PodcastPlayerManager.swift", + "source_location": "L105", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager_pause", + "community": 21, + "norm_label": ".pause()" + }, + { + "label": ".togglePlayPause()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/PodcastPlayerManager.swift", + "source_location": "L111", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager_toggleplaypause", + "community": 21, + "norm_label": ".toggleplaypause()" + }, + { + "label": ".seek()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/PodcastPlayerManager.swift", + "source_location": "L119", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager_seek", + "community": 21, + "norm_label": ".seek()" + }, + { + "label": ".skip()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/PodcastPlayerManager.swift", + "source_location": "L125", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager_skip", + "community": 21, + "norm_label": ".skip()" + }, + { + "label": "Double", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_swift_double", + "community": 21, + "norm_label": "double" + }, + { + "label": ".setPlaybackRate()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/PodcastPlayerManager.swift", + "source_location": "L130", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager_setplaybackrate", + "community": 21, + "norm_label": ".setplaybackrate()" + }, + { + "label": ".toPreviousChapter()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/PodcastPlayerManager.swift", + "source_location": "L137", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager_topreviouschapter", + "community": 21, + "norm_label": ".topreviouschapter()" + }, + { + "label": ".toNextChapter()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/PodcastPlayerManager.swift", + "source_location": "L145", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager_tonextchapter", + "community": 21, + "norm_label": ".tonextchapter()" + }, + { + "label": ".setupAudioSession()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/PodcastPlayerManager.swift", + "source_location": "L157", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager_setupaudiosession", + "community": 21, + "norm_label": ".setupaudiosession()" + }, + { + "label": ".setupRemoteTransportControls()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/PodcastPlayerManager.swift", + "source_location": "L167", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager_setupremotetransportcontrols", + "community": 21, + "norm_label": ".setupremotetransportcontrols()" + }, + { + "label": ".setupTimeObserver()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/PodcastPlayerManager.swift", + "source_location": "L214", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager_setuptimeobserver", + "community": 21, + "norm_label": ".setuptimeobserver()" + }, + { + "label": ".setupItemObservers()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/PodcastPlayerManager.swift", + "source_location": "L231", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager_setupitemobservers", + "community": 21, + "norm_label": ".setupitemobservers()" + }, + { + "label": "AVPlayerItem", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "avplayeritem", + "community": 21, + "norm_label": "avplayeritem" + }, + { + "label": ".handlePlaybackEnd()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/PodcastPlayerManager.swift", + "source_location": "L249", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager_handleplaybackend", + "community": 21, + "norm_label": ".handleplaybackend()" + }, + { + "label": ".updateNowPlayingInfo()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/PodcastPlayerManager.swift", + "source_location": "L256", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager_updatenowplayinginfo", + "community": 21, + "norm_label": ".updatenowplayinginfo()" + }, + { + "label": ".getChapter()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/PodcastPlayerManager.swift", + "source_location": "L282", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager_getchapter", + "community": 21, + "norm_label": ".getchapter()" + }, + { + "label": "Array", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/PodcastPlayerManager.swift", + "source_location": "L327", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_array", + "community": 9, + "norm_label": "array" + }, + { + "label": "Self", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_swift_self", + "community": 9, + "norm_label": "self" + }, + { + "label": "SystemVolumeView.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/SystemVolumeView.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_manager_systemvolumeview", + "community": 91, + "norm_label": "systemvolumeview.swift" + }, + { + "label": "AVKit", + "file_type": "code", + "type": "module", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/SystemVolumeView.swift", + "source_location": "L1", + "_origin": "ast", + "id": "avkit", + "community": 91, + "norm_label": "avkit" + }, + { + "label": "SystemVolumeView", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/SystemVolumeView.swift", + "source_location": "L5", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_manager_systemvolumeview_systemvolumeview", + "community": 91, + "norm_label": "systemvolumeview" + }, + { + "label": "UIViewRepresentable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "uiviewrepresentable", + "community": 91, + "norm_label": "uiviewrepresentable" + }, + { + "label": ".makeUIView()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/SystemVolumeView.swift", + "source_location": "L6", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_manager_systemvolumeview_systemvolumeview_makeuiview", + "community": 91, + "norm_label": ".makeuiview()" + }, + { + "label": "Context", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_manager_systemvolumeview_swift_context", + "community": 91, + "norm_label": "context" + }, + { + "label": "MPVolumeView", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "mpvolumeview", + "community": 91, + "norm_label": "mpvolumeview" + }, + { + "label": ".updateUIView()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/SystemVolumeView.swift", + "source_location": "L25", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_manager_systemvolumeview_systemvolumeview_updateuiview", + "community": 91, + "norm_label": ".updateuiview()" + }, + { + "label": "CardAccessibilityModifier.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Modifiers/CardAccessibilityModifier.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_modifiers_cardaccessibilitymodifier", + "community": 47, + "norm_label": "cardaccessibilitymodifier.swift" + }, + { + "label": "CardLabel", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Modifiers/CardAccessibilityModifier.swift", + "source_location": "L6", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_modifiers_cardaccessibilitymodifier_cardlabel", + "community": 47, + "norm_label": "cardlabel" + }, + { + "label": "title", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Modifiers/CardAccessibilityModifier.swift", + "source_location": "L7", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_modifiers_cardaccessibilitymodifier_cardlabel_title", + "community": 47, + "norm_label": "title" + }, + { + "label": "date", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Modifiers/CardAccessibilityModifier.swift", + "source_location": "L8", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_modifiers_cardaccessibilitymodifier_cardlabel_date", + "community": 47, + "norm_label": "date" + }, + { + "label": "duration", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Modifiers/CardAccessibilityModifier.swift", + "source_location": "L9", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_modifiers_cardaccessibilitymodifier_cardlabel_duration", + "community": 47, + "norm_label": "duration" + }, + { + "label": "Array", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Modifiers/CardAccessibilityModifier.swift", + "source_location": "L12", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_modifiers_cardaccessibilitymodifier_array", + "community": 47, + "norm_label": "array" + }, + { + "label": ".makeText()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Modifiers/CardAccessibilityModifier.swift", + "source_location": "L13", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_modifiers_cardaccessibilitymodifier_array_maketext", + "community": 47, + "norm_label": ".maketext()" + }, + { + "label": "String", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_modifiers_cardaccessibilitymodifier_swift_string", + "community": 47, + "norm_label": "string" + }, + { + "label": "CardButton", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Modifiers/CardAccessibilityModifier.swift", + "source_location": "L26", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_modifiers_cardaccessibilitymodifier_cardbutton", + "community": 47, + "norm_label": "cardbutton" + }, + { + "label": "share", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Modifiers/CardAccessibilityModifier.swift", + "source_location": "L27", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_modifiers_cardaccessibilitymodifier_cardbutton_share", + "community": 47, + "norm_label": "share" + }, + { + "label": "favorite", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Modifiers/CardAccessibilityModifier.swift", + "source_location": "L28", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_modifiers_cardaccessibilitymodifier_cardbutton_favorite", + "community": 47, + "norm_label": "favorite" + }, + { + "label": ".makeButtons()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Modifiers/CardAccessibilityModifier.swift", + "source_location": "L32", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_modifiers_cardaccessibilitymodifier_array_makebuttons", + "community": 47, + "norm_label": ".makebuttons()" + }, + { + "label": "View", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_modifiers_cardaccessibilitymodifier_swift_view", + "community": 47, + "norm_label": "view" + }, + { + "label": "View", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Modifiers/CardAccessibilityModifier.swift", + "source_location": "L45", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_modifiers_cardaccessibilitymodifier_view", + "community": 47, + "norm_label": "view" + }, + { + "label": ".cardAccessibility()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Modifiers/CardAccessibilityModifier.swift", + "source_location": "L46", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_modifiers_cardaccessibilitymodifier_view_cardaccessibility", + "community": 47, + "norm_label": ".cardaccessibility()" + }, + { + "label": "CardAccessibilityModifier", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Modifiers/CardAccessibilityModifier.swift", + "source_location": "L59", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_modifiers_cardaccessibilitymodifier_cardaccessibilitymodifier", + "community": 47, + "norm_label": "cardaccessibilitymodifier" + }, + { + "label": ".body()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Modifiers/CardAccessibilityModifier.swift", + "source_location": "L64", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_modifiers_cardaccessibilitymodifier_cardaccessibilitymodifier_body", + "community": 47, + "norm_label": ".body()" + }, + { + "label": "Content", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_modifiers_cardaccessibilitymodifier_swift_content", + "community": 47, + "norm_label": "content" + }, + { + "label": "PodcastMiniPlayerModifier.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Modifiers/PodcastMiniPlayerModifier.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_modifiers_podcastminiplayermodifier", + "community": 2, + "norm_label": "podcastminiplayermodifier.swift" + }, + { + "label": "View", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Modifiers/PodcastMiniPlayerModifier.swift", + "source_location": "L6", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_modifiers_podcastminiplayermodifier_view", + "community": 103, + "norm_label": "view" + }, + { + "label": ".podcastMiniPlayer()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Modifiers/PodcastMiniPlayerModifier.swift", + "source_location": "L7", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_modifiers_podcastminiplayermodifier_view_podcastminiplayer", + "community": 103, + "norm_label": ".podcastminiplayer()" + }, + { + "label": "PodcastMiniPlayerModifier", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Modifiers/PodcastMiniPlayerModifier.swift", + "source_location": "L12", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_modifiers_podcastminiplayermodifier_podcastminiplayermodifier", + "community": 103, + "norm_label": "podcastminiplayermodifier" + }, + { + "label": ".init()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Modifiers/PodcastMiniPlayerModifier.swift", + "source_location": "L18", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_modifiers_podcastminiplayermodifier_podcastminiplayermodifier_init", + "community": 103, + "norm_label": ".init()" + }, + { + "label": ".body()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Modifiers/PodcastMiniPlayerModifier.swift", + "source_location": "L20", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_modifiers_podcastminiplayermodifier_podcastminiplayermodifier_body", + "community": 103, + "norm_label": ".body()" + }, + { + "label": "Content", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_modifiers_podcastminiplayermodifier_swift_content", + "community": 103, + "norm_label": "content" + }, + { + "label": ".fullPlayerSheet()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Modifiers/PodcastMiniPlayerModifier.swift", + "source_location": "L58", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_modifiers_podcastminiplayermodifier_view_fullplayersheet", + "community": 103, + "norm_label": ".fullplayersheet()" + }, + { + "label": "PodcastViewModel.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/ViewModel/PodcastViewModel.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_viewmodel_podcastviewmodel", + "community": 14, + "norm_label": "podcastviewmodel.swift" + }, + { + "label": "PodcastViewModel", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/ViewModel/PodcastViewModel.swift", + "source_location": "L8", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_viewmodel_podcastviewmodel_podcastviewmodel", + "community": 11, + "norm_label": "podcastviewmodel" + }, + { + "label": "Options", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_viewmodel_podcastviewmodel_swift_options", + "community": 11, + "norm_label": "options" + }, + { + "label": "APIStatus", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_viewmodel_podcastviewmodel_swift_apistatus", + "community": 11, + "norm_label": "apistatus" + }, + { + "label": "Options", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/ViewModel/PodcastViewModel.swift", + "source_location": "L13", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_viewmodel_podcastviewmodel_options", + "community": 28, + "norm_label": "options" + }, + { + "label": "home", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/ViewModel/PodcastViewModel.swift", + "source_location": "L14", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_viewmodel_podcastviewmodel_options_home", + "community": 28, + "norm_label": "home" + }, + { + "label": "search", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/ViewModel/PodcastViewModel.swift", + "source_location": "L15", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_viewmodel_podcastviewmodel_options_search", + "community": 28, + "norm_label": "search" + }, + { + "label": "String", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_viewmodel_podcastviewmodel_swift_string", + "community": 28, + "norm_label": "string" + }, + { + "label": ".init()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/ViewModel/PodcastViewModel.swift", + "source_location": "L22", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_viewmodel_podcastviewmodel_podcastviewmodel_init", + "community": 11, + "norm_label": ".init()" + }, + { + "label": "Database", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_viewmodel_podcastviewmodel_swift_database", + "community": 11, + "norm_label": "database" + }, + { + "label": "NetworkMockData", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_viewmodel_podcastviewmodel_swift_networkmockdata", + "community": 11, + "norm_label": "networkmockdata" + }, + { + "label": ".getPodcasts()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/ViewModel/PodcastViewModel.swift", + "source_location": "L31", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_viewmodel_podcastviewmodel_podcastviewmodel_getpodcasts", + "community": 11, + "norm_label": ".getpodcasts()" + }, + { + "label": "Int", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_viewmodel_podcastviewmodel_swift_int", + "community": 11, + "norm_label": "int" + }, + { + "label": ".loadMoreIfNeeded()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/ViewModel/PodcastViewModel.swift", + "source_location": "L44", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_viewmodel_podcastviewmodel_podcastviewmodel_loadmoreifneeded", + "community": 11, + "norm_label": ".loadmoreifneeded()" + }, + { + "label": "AdaptivePodcastCardView.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Card/AdaptivePodcastCardView.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_views_card_adaptivepodcastcardview", + "community": 2, + "norm_label": "adaptivepodcastcardview.swift" + }, + { + "label": "AdaptivePodcastCardView", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Card/AdaptivePodcastCardView.swift", + "source_location": "L8", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_views_card_adaptivepodcastcardview_adaptivepodcastcardview", + "community": 17, + "norm_label": "adaptivepodcastcardview" + }, + { + "label": "Void", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_views_card_adaptivepodcastcardview_swift_void", + "community": 17, + "norm_label": "void" + }, + { + "label": ".init()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Card/AdaptivePodcastCardView.swift", + "source_location": "L13", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_views_card_adaptivepodcastcardview_adaptivepodcastcardview_init", + "community": 17, + "norm_label": ".init()" + }, + { + "label": "GlassPodcastCardView.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Card/GlassPodcastCardView.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_views_card_glasspodcastcardview", + "community": 2, + "norm_label": "glasspodcastcardview.swift" + }, + { + "label": "GlassPodcastCardView", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Card/GlassPodcastCardView.swift", + "source_location": "L8", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_views_card_glasspodcastcardview_glasspodcastcardview", + "community": 17, + "norm_label": "glasspodcastcardview" + }, + { + "label": "AnalyticsManager", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_views_card_glasspodcastcardview_swift_analyticsmanager", + "community": 17, + "norm_label": "analyticsmanager" + }, + { + "label": "Void", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_views_card_glasspodcastcardview_swift_void", + "community": 17, + "norm_label": "void" + }, + { + "label": ".init()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Card/GlassPodcastCardView.swift", + "source_location": "L13", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_views_card_glasspodcastcardview_glasspodcastcardview_init", + "community": 17, + "norm_label": ".init()" + }, + { + "label": "PodcastCardView.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Card/PodcastCardView.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_views_card_podcastcardview", + "community": 2, + "norm_label": "podcastcardview.swift" + }, + { + "label": "PodcastCardView", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Card/PodcastCardView.swift", + "source_location": "L8", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_views_card_podcastcardview_podcastcardview", + "community": 17, + "norm_label": "podcastcardview" + }, + { + "label": "Void", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_views_card_podcastcardview_swift_void", + "community": 17, + "norm_label": "void" + }, + { + "label": ".init()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Card/PodcastCardView.swift", + "source_location": "L14", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_views_card_podcastcardview_podcastcardview_init", + "community": 17, + "norm_label": ".init()" + }, + { + "label": "ChaptersView.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/ChaptersView.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_views_player_chaptersview", + "community": 2, + "norm_label": "chaptersview.swift" + }, + { + "label": "ChaptersView", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/ChaptersView.swift", + "source_location": "L6", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_views_player_chaptersview_chaptersview", + "community": 32, + "norm_label": "chaptersview" + }, + { + "label": "AnalyticsManager", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_views_player_chaptersview_swift_analyticsmanager", + "community": 32, + "norm_label": "analyticsmanager" + }, + { + "label": "Bool", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_views_player_chaptersview_swift_bool", + "community": 32, + "norm_label": "bool" + }, + { + "label": "Color", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_views_player_chaptersview_swift_color", + "community": 32, + "norm_label": "color" + }, + { + "label": ".init()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/ChaptersView.swift", + "source_location": "L16", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_views_player_chaptersview_chaptersview_init", + "community": 32, + "norm_label": ".init()" + }, + { + "label": "Binding", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_views_player_chaptersview_swift_binding", + "community": 32, + "norm_label": "binding" + }, + { + "label": ".chapterRow()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/ChaptersView.swift", + "source_location": "L69", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_views_player_chaptersview_chaptersview_chapterrow", + "community": 32, + "norm_label": ".chapterrow()" + }, + { + "label": ".cardBackground()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/ChaptersView.swift", + "source_location": "L134", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_views_player_chaptersview_chaptersview_cardbackground", + "community": 32, + "norm_label": ".cardbackground()" + }, + { + "label": ".chapterTintColor()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/ChaptersView.swift", + "source_location": "L148", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_views_player_chaptersview_chaptersview_chaptertintcolor", + "community": 32, + "norm_label": ".chaptertintcolor()" + }, + { + "label": ".progressBar()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/ChaptersView.swift", + "source_location": "L156", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_views_player_chaptersview_chaptersview_progressbar", + "community": 32, + "norm_label": ".progressbar()" + }, + { + "label": ".isActive()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/ChaptersView.swift", + "source_location": "L175", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_views_player_chaptersview_chaptersview_isactive", + "community": 32, + "norm_label": ".isactive()" + }, + { + "label": ".progress()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/ChaptersView.swift", + "source_location": "L180", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_views_player_chaptersview_chaptersview_progress", + "community": 32, + "norm_label": ".progress()" + }, + { + "label": "CGFloat", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_views_player_chaptersview_swift_cgfloat", + "community": 32, + "norm_label": "cgfloat" + }, + { + "label": ".updateBackgroundGradient()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/ChaptersView.swift", + "source_location": "L192", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_views_player_chaptersview_chaptersview_updatebackgroundgradient", + "community": 15, + "norm_label": ".updatebackgroundgradient()" + }, + { + "label": "Data", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_views_player_chaptersview_swift_data", + "community": 15, + "norm_label": "data" + }, + { + "label": "FullPlayerView.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/FullPlayerView.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_views_player_fullplayerview", + "community": 2, + "norm_label": "fullplayerview.swift" + }, + { + "label": "Constants", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/FullPlayerView.swift", + "source_location": "L10", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_views_player_fullplayerview_constants", + "community": 2, + "norm_label": "constants" + }, + { + "label": "PodcastBackgroundGradientStyle", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/FullPlayerView.swift", + "source_location": "L16", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_views_player_fullplayerview_podcastbackgroundgradientstyle", + "community": 15, + "norm_label": "podcastbackgroundgradientstyle" + }, + { + "label": "twoTone", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/FullPlayerView.swift", + "source_location": "L17", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_views_player_fullplayerview_podcastbackgroundgradientstyle_twotone", + "community": 15, + "norm_label": "twotone" + }, + { + "label": "threeTone", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/FullPlayerView.swift", + "source_location": "L18", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_views_player_fullplayerview_podcastbackgroundgradientstyle_threetone", + "community": 15, + "norm_label": "threetone" + }, + { + "label": "fourTone", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/FullPlayerView.swift", + "source_location": "L19", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_views_player_fullplayerview_podcastbackgroundgradientstyle_fourtone", + "community": 15, + "norm_label": "fourtone" + }, + { + "label": "PlayerAccessibilityPriority", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/FullPlayerView.swift", + "source_location": "L24", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_views_player_fullplayerview_playeraccessibilitypriority", + "community": 15, + "norm_label": "playeraccessibilitypriority" + }, + { + "label": "Double", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_views_player_fullplayerview_swift_double", + "community": 15, + "norm_label": "double" + }, + { + "label": "FullPlayerView", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/FullPlayerView.swift", + "source_location": "L41", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_views_player_fullplayerview_fullplayerview", + "community": 15, + "norm_label": "fullplayerview" + }, + { + "label": "AnalyticsManager", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_views_player_fullplayerview_swift_analyticsmanager", + "community": 15, + "norm_label": "analyticsmanager" + }, + { + "label": "Color", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_views_player_fullplayerview_swift_color", + "community": 15, + "norm_label": "color" + }, + { + "label": "TimeInterval", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_views_player_fullplayerview_swift_timeinterval", + "community": 15, + "norm_label": "timeinterval" + }, + { + "label": ".init()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/FullPlayerView.swift", + "source_location": "L61", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_views_player_fullplayerview_fullplayerview_init", + "community": 15, + "norm_label": ".init()" + }, + { + "label": ".fullPlayerContent()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/FullPlayerView.swift", + "source_location": "L115", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_views_player_fullplayerview_fullplayerview_fullplayercontent", + "community": 15, + "norm_label": ".fullplayercontent()" + }, + { + "label": "PodcastDB", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_views_player_fullplayerview_swift_podcastdb", + "community": 15, + "norm_label": "podcastdb" + }, + { + "label": ".podcastTitle()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/FullPlayerView.swift", + "source_location": "L229", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_views_player_fullplayerview_fullplayerview_podcasttitle", + "community": 15, + "norm_label": ".podcasttitle()" + }, + { + "label": "String", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_views_player_fullplayerview_swift_string", + "community": 15, + "norm_label": "string" + }, + { + "label": ".skipButton()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/FullPlayerView.swift", + "source_location": "L411", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_views_player_fullplayerview_fullplayerview_skipbutton", + "community": 15, + "norm_label": ".skipbutton()" + }, + { + "label": "Void", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_views_player_fullplayerview_swift_void", + "community": 15, + "norm_label": "void" + }, + { + "label": ".formatTime()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/FullPlayerView.swift", + "source_location": "L611", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_views_player_fullplayerview_fullplayerview_formattime", + "community": 15, + "norm_label": ".formattime()" + }, + { + "label": ".accessibleSpeedValue()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/FullPlayerView.swift", + "source_location": "L625", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_views_player_fullplayerview_fullplayerview_accessiblespeedvalue", + "community": 15, + "norm_label": ".accessiblespeedvalue()" + }, + { + "label": ".formattedSpeedForButton()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/FullPlayerView.swift", + "source_location": "L637", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_views_player_fullplayerview_fullplayerview_formattedspeedforbutton", + "community": 15, + "norm_label": ".formattedspeedforbutton()" + }, + { + "label": "Bool", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_views_player_fullplayerview_swift_bool", + "community": 15, + "norm_label": "bool" + }, + { + "label": ".hapticTick()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/FullPlayerView.swift", + "source_location": "L647", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_views_player_fullplayerview_fullplayerview_haptictick", + "community": 15, + "norm_label": ".haptictick()" + }, + { + "label": ".updateBackgroundGradient()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/FullPlayerView.swift", + "source_location": "L652", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_views_player_fullplayerview_fullplayerview_updatebackgroundgradient", + "community": 15, + "norm_label": ".updatebackgroundgradient()" + }, + { + "label": "Data", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_views_player_fullplayerview_swift_data", + "community": 15, + "norm_label": "data" + }, + { + "label": "BackgroundView.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/Background/BackgroundView.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_background_backgroundview", + "community": 2, + "norm_label": "backgroundview.swift" + }, + { + "label": "BackgroundView", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/Background/BackgroundView.swift", + "source_location": "L4", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_background_backgroundview_backgroundview", + "community": 61, + "norm_label": "backgroundview" + }, + { + "label": "Color", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_background_backgroundview_swift_color", + "community": 61, + "norm_label": "color" + }, + { + "label": "Bool", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_background_backgroundview_swift_bool", + "community": 61, + "norm_label": "bool" + }, + { + "label": "BackgroundViewModel.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/Background/BackgroundViewModel.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_background_backgroundviewmodel", + "community": 24, + "norm_label": "backgroundviewmodel.swift" + }, + { + "label": "BackgroundGradientStatus", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/Background/BackgroundViewModel.swift", + "source_location": "L5", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_background_backgroundviewmodel_backgroundgradientstatus", + "community": 15, + "norm_label": "backgroundgradientstatus" + }, + { + "label": "Color", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_background_backgroundviewmodel_swift_color", + "community": 15, + "norm_label": "color" + }, + { + "label": "Bool", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_background_backgroundviewmodel_swift_bool", + "community": 15, + "norm_label": "bool" + }, + { + "label": "BackgroundViewModel", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/Background/BackgroundViewModel.swift", + "source_location": "L10", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_background_backgroundviewmodel_backgroundviewmodel", + "community": 15, + "norm_label": "backgroundviewmodel" + }, + { + "label": ".backgroundGradient()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/Background/BackgroundViewModel.swift", + "source_location": "L11", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_background_backgroundviewmodel_backgroundviewmodel_backgroundgradient", + "community": 15, + "norm_label": ".backgroundgradient()" + }, + { + "label": "Data", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_background_backgroundviewmodel_swift_data", + "community": 15, + "norm_label": "data" + }, + { + "label": "String", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_background_backgroundviewmodel_swift_string", + "community": 15, + "norm_label": "string" + }, + { + "label": "Binding", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_background_backgroundviewmodel_swift_binding", + "community": 15, + "norm_label": "binding" + }, + { + "label": ".updateBackgroundGradient()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/Background/BackgroundViewModel.swift", + "source_location": "L41", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_background_backgroundviewmodel_backgroundviewmodel_updatebackgroundgradient", + "community": 15, + "norm_label": ".updatebackgroundgradient()" + }, + { + "label": ".processArtworkColors()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/Background/BackgroundViewModel.swift", + "source_location": "L78", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_background_backgroundviewmodel_backgroundviewmodel_processartworkcolors", + "community": 15, + "norm_label": ".processartworkcolors()" + }, + { + "label": "PodcastImageView.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/PodcastImageView.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_podcastimageview", + "community": 2, + "norm_label": "podcastimageview.swift" + }, + { + "label": "PodcastImageView", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/PodcastImageView.swift", + "source_location": "L4", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_podcastimageview_podcastimageview", + "community": 61, + "norm_label": "podcastimageview" + }, + { + "label": "ImageLocation", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/PodcastImageView.swift", + "source_location": "L5", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_podcastimageview_imagelocation", + "community": 34, + "norm_label": "imagelocation" + }, + { + "label": "chapter", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/PodcastImageView.swift", + "source_location": "L6", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_podcastimageview_imagelocation_chapter", + "community": 34, + "norm_label": "chapter" + }, + { + "label": "player", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/PodcastImageView.swift", + "source_location": "L7", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_podcastimageview_imagelocation_player", + "community": 34, + "norm_label": "player" + }, + { + "label": "background", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/PodcastImageView.swift", + "source_location": "L8", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_podcastimageview_imagelocation_background", + "community": 34, + "norm_label": "background" + }, + { + "label": "Data", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_podcastimageview_swift_data", + "community": 61, + "norm_label": "data" + }, + { + "label": "Content", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_podcastimageview_swift_content", + "community": 61, + "norm_label": "content" + }, + { + "label": ".dataImage()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/PodcastImageView.swift", + "source_location": "L28", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_podcastimageview_podcastimageview_dataimage", + "community": 61, + "norm_label": ".dataimage()" + }, + { + "label": ".coverImage()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/PodcastImageView.swift", + "source_location": "L49", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_podcastimageview_podcastimageview_coverimage", + "community": 61, + "norm_label": ".coverimage()" + }, + { + "label": "ScrollStylePicker.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/ScrollStylePicker.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_scrollstylepicker", + "community": 49, + "norm_label": "scrollstylepicker.swift" + }, + { + "label": "SpeedWheelPicker", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/ScrollStylePicker.swift", + "source_location": "L3", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_scrollstylepicker_speedwheelpicker", + "community": 49, + "norm_label": "speedwheelpicker" + }, + { + "label": "Double", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_scrollstylepicker_swift_double", + "community": 49, + "norm_label": "double" + }, + { + "label": "CGFloat", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_scrollstylepicker_swift_cgfloat", + "community": 49, + "norm_label": "cgfloat" + }, + { + "label": "LeftIcon", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "lefticon", + "community": 49, + "norm_label": "lefticon" + }, + { + "label": "RightIcon", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "righticon", + "community": 49, + "norm_label": "righticon" + }, + { + "label": "Int", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_scrollstylepicker_swift_int", + "community": 49, + "norm_label": "int" + }, + { + "label": ".init()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/ScrollStylePicker.swift", + "source_location": "L21", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_scrollstylepicker_speedwheelpicker_init", + "community": 49, + "norm_label": ".init()" + }, + { + "label": "Binding", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_scrollstylepicker_swift_binding", + "community": 49, + "norm_label": "binding" + }, + { + "label": ".index()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/ScrollStylePicker.swift", + "source_location": "L126", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_scrollstylepicker_speedwheelpicker_index", + "community": 49, + "norm_label": ".index()" + }, + { + "label": ".formattedLabel()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/ScrollStylePicker.swift", + "source_location": "L132", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_scrollstylepicker_speedwheelpicker_formattedlabel", + "community": 49, + "norm_label": ".formattedlabel()" + }, + { + "label": "String", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_scrollstylepicker_swift_string", + "community": 49, + "norm_label": "string" + }, + { + "label": ".roundedToOneDecimal()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/ScrollStylePicker.swift", + "source_location": "L140", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_scrollstylepicker_speedwheelpicker_roundedtoonedecimal", + "community": 49, + "norm_label": ".roundedtoonedecimal()" + }, + { + "label": ".stepDown()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/ScrollStylePicker.swift", + "source_location": "L145", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_scrollstylepicker_speedwheelpicker_stepdown", + "community": 49, + "norm_label": ".stepdown()" + }, + { + "label": ".stepUp()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/ScrollStylePicker.swift", + "source_location": "L156", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_scrollstylepicker_speedwheelpicker_stepup", + "community": 49, + "norm_label": ".stepup()" + }, + { + "label": ".haptic()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/ScrollStylePicker.swift", + "source_location": "L167", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_scrollstylepicker_speedwheelpicker_haptic", + "community": 49, + "norm_label": ".haptic()" + }, + { + "label": "Wrapper", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/ScrollStylePicker.swift", + "source_location": "L174", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_scrollstylepicker_wrapper", + "community": 49, + "norm_label": "wrapper" + }, + { + "label": "Ticker.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/Ticker.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_ticker", + "community": 1, + "norm_label": "ticker.swift" + }, + { + "label": "Ticker", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/Ticker.swift", + "source_location": "L3", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_ticker_ticker", + "community": 1, + "norm_label": "ticker" + }, + { + "label": "String", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_ticker_swift_string", + "community": 1, + "norm_label": "string" + }, + { + "label": "Double", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_ticker_swift_double", + "community": 1, + "norm_label": "double" + }, + { + "label": "CGFloat", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_ticker_swift_cgfloat", + "community": 1, + "norm_label": "cgfloat" + }, + { + "label": ".update()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/Ticker.swift", + "source_location": "L40", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_ticker_ticker_update", + "community": 1, + "norm_label": ".update()" + }, + { + "label": ".calculateOffset()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/Ticker.swift", + "source_location": "L45", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_ticker_ticker_calculateoffset", + "community": 1, + "norm_label": ".calculateoffset()" + }, + { + "label": "MiniPlayerView.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/MiniPlayerView.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_views_player_miniplayerview", + "community": 2, + "norm_label": "miniplayerview.swift" + }, + { + "label": "MiniPlayerView", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/MiniPlayerView.swift", + "source_location": "L7", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_views_player_miniplayerview_miniplayerview", + "community": 92, + "norm_label": "miniplayerview" + }, + { + "label": "AnalyticsManager", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_views_player_miniplayerview_swift_analyticsmanager", + "community": 92, + "norm_label": "analyticsmanager" + }, + { + "label": "PodcastDB", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_views_player_miniplayerview_swift_podcastdb", + "community": 92, + "norm_label": "podcastdb" + }, + { + "label": "Color", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_views_player_miniplayerview_swift_color", + "community": 92, + "norm_label": "color" + }, + { + "label": ".init()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/MiniPlayerView.swift", + "source_location": "L29", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_views_player_miniplayerview_miniplayerview_init", + "community": 92, + "norm_label": ".init()" + }, + { + "label": "Gesture", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "gesture", + "community": 92, + "norm_label": "gesture" + }, + { + "label": ".closeMiniPlayer()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/MiniPlayerView.swift", + "source_location": "L67", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_views_player_miniplayerview_miniplayerview_closeminiplayer", + "community": 92, + "norm_label": ".closeminiplayer()" + }, + { + "label": ".artwork()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/MiniPlayerView.swift", + "source_location": "L143", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_views_player_miniplayerview_miniplayerview_artwork", + "community": 92, + "norm_label": ".artwork()" + }, + { + "label": "String", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_views_player_miniplayerview_swift_string", + "community": 92, + "norm_label": "string" + }, + { + "label": "PodcastView.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/PodcastView.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_views_podcastview", + "community": 2, + "norm_label": "podcastview.swift" + }, + { + "label": "PodcastView", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/PodcastView.swift", + "source_location": "L10", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_views_podcastview_podcastview", + "community": 11, + "norm_label": "podcastview" + }, + { + "label": "AnalyticsManager", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_views_podcastview_swift_analyticsmanager", + "community": 11, + "norm_label": "analyticsmanager" + }, + { + "label": "Bool", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_views_podcastview_swift_bool", + "community": 11, + "norm_label": "bool" + }, + { + "label": "ScrollPosition", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_views_podcastview_swift_scrollposition", + "community": 11, + "norm_label": "scrollposition" + }, + { + "label": "String", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_views_podcastview_swift_string", + "community": 11, + "norm_label": "string" + }, + { + "label": "PodcastDB", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_views_podcastview_swift_podcastdb", + "community": 11, + "norm_label": "podcastdb" + }, + { + "label": ".init()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/PodcastView.swift", + "source_location": "L26", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_views_podcastview_podcastview_init", + "community": 11, + "norm_label": ".init()" + }, + { + "label": "Database", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_views_podcastview_swift_database", + "community": 11, + "norm_label": "database" + }, + { + "label": "Binding", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_sources_podcast_views_podcastview_swift_binding", + "community": 11, + "norm_label": "binding" + }, + { + "label": "PodcastChapterTests.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastChapterTests.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests", + "community": 9, + "norm_label": "podcastchaptertests.swift" + }, + { + "label": "PodcastLibrary", + "file_type": "code", + "type": "module", + "source_file": "MacMagazine/MacMagazine/MainApp/Sizecalss/MainView+tabbar.swift", + "source_location": "L4", + "_origin": "ast", + "id": "podcastlibrary", + "community": 36, + "norm_label": "podcastlibrary" + }, + { + "label": "PodcastChapterTests", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastChapterTests.swift", + "source_location": "L7", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_podcastchaptertests", + "community": 19, + "norm_label": "podcastchaptertests" + }, + { + "label": ".formatUnder1Minute()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastChapterTests.swift", + "source_location": "L12", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_podcastchaptertests_formatunder1minute", + "community": 19, + "norm_label": ".formatunder1minute()" + }, + { + "label": ".formatExactly1Minute()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastChapterTests.swift", + "source_location": "L24", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_podcastchaptertests_formatexactly1minute", + "community": 19, + "norm_label": ".formatexactly1minute()" + }, + { + "label": ".formatUnder1Hour()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastChapterTests.swift", + "source_location": "L36", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_podcastchaptertests_formatunder1hour", + "community": 19, + "norm_label": ".formatunder1hour()" + }, + { + "label": ".formatExactly1Hour()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastChapterTests.swift", + "source_location": "L48", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_podcastchaptertests_formatexactly1hour", + "community": 19, + "norm_label": ".formatexactly1hour()" + }, + { + "label": ".formatOver1Hour()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastChapterTests.swift", + "source_location": "L60", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_podcastchaptertests_formatover1hour", + "community": 19, + "norm_label": ".formatover1hour()" + }, + { + "label": ".formatJustUnder1Hour()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastChapterTests.swift", + "source_location": "L72", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_podcastchaptertests_formatjustunder1hour", + "community": 19, + "norm_label": ".formatjustunder1hour()" + }, + { + "label": ".formatJustOver1Hour()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastChapterTests.swift", + "source_location": "L84", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_podcastchaptertests_formatjustover1hour", + "community": 19, + "norm_label": ".formatjustover1hour()" + }, + { + "label": ".formatStartTime()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastChapterTests.swift", + "source_location": "L96", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_podcastchaptertests_formatstarttime", + "community": 19, + "norm_label": ".formatstarttime()" + }, + { + "label": ".formatZeroDuration()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastChapterTests.swift", + "source_location": "L108", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_podcastchaptertests_formatzeroduration", + "community": 19, + "norm_label": ".formatzeroduration()" + }, + { + "label": ".formatMultiHourDuration()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastChapterTests.swift", + "source_location": "L120", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_podcastchaptertests_formatmultihourduration", + "community": 19, + "norm_label": ".formatmultihourduration()" + }, + { + "label": ".formatVeryLongDuration()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastChapterTests.swift", + "source_location": "L132", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_podcastchaptertests_formatverylongduration", + "community": 19, + "norm_label": ".formatverylongduration()" + }, + { + "label": ".backgroundColorDuringChapter()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastChapterTests.swift", + "source_location": "L146", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_podcastchaptertests_backgroundcolorduringchapter", + "community": 19, + "norm_label": ".backgroundcolorduringchapter()" + }, + { + "label": ".backgroundColorBeforeChapter()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastChapterTests.swift", + "source_location": "L163", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_podcastchaptertests_backgroundcolorbeforechapter", + "community": 19, + "norm_label": ".backgroundcolorbeforechapter()" + }, + { + "label": ".backgroundColorAfterChapter()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastChapterTests.swift", + "source_location": "L179", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_podcastchaptertests_backgroundcolorafterchapter", + "community": 19, + "norm_label": ".backgroundcolorafterchapter()" + }, + { + "label": ".backgroundColorAtExactStart()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastChapterTests.swift", + "source_location": "L195", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_podcastchaptertests_backgroundcoloratexactstart", + "community": 19, + "norm_label": ".backgroundcoloratexactstart()" + }, + { + "label": ".backgroundColorAtExactEnd()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastChapterTests.swift", + "source_location": "L211", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_podcastchaptertests_backgroundcoloratexactend", + "community": 19, + "norm_label": ".backgroundcoloratexactend()" + }, + { + "label": ".backgroundColorEmptyArrayDuringChapter()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastChapterTests.swift", + "source_location": "L227", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_podcastchaptertests_backgroundcoloremptyarrayduringchapter", + "community": 19, + "norm_label": ".backgroundcoloremptyarrayduringchapter()" + }, + { + "label": ".backgroundColorEmptyArrayOutsideChapter()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastChapterTests.swift", + "source_location": "L243", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_podcastchaptertests_backgroundcoloremptyarrayoutsidechapter", + "community": 19, + "norm_label": ".backgroundcoloremptyarrayoutsidechapter()" + }, + { + "label": ".hashableWithUniqueIDs()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastChapterTests.swift", + "source_location": "L261", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_podcastchaptertests_hashablewithuniqueids", + "community": 19, + "norm_label": ".hashablewithuniqueids()" + }, + { + "label": ".usableInSet()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastChapterTests.swift", + "source_location": "L272", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_podcastchaptertests_usableinset", + "community": 19, + "norm_label": ".usableinset()" + }, + { + "label": ".formatFractionalSeconds()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastChapterTests.swift", + "source_location": "L291", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_podcastchaptertests_formatfractionalseconds", + "community": 32, + "norm_label": ".formatfractionalseconds()" + }, + { + "label": ".backgroundColorPrecisePosition()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastChapterTests.swift", + "source_location": "L313", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_podcastchaptertests_backgroundcolorpreciseposition", + "community": 19, + "norm_label": ".backgroundcolorpreciseposition()" + }, + { + "label": "createChapter()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastChapterTests.swift", + "source_location": "L331", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_createchapter", + "community": 19, + "norm_label": "createchapter()" + }, + { + "label": "Double", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_swift_double", + "community": 19, + "norm_label": "double" + }, + { + "label": "String", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_swift_string", + "community": 19, + "norm_label": "string" + }, + { + "label": "PodcastPlayerManagerTests.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastPlayerManagerTests.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastplayermanagertests", + "community": 9, + "norm_label": "podcastplayermanagertests.swift" + }, + { + "label": "PodcastPlayerManagerTests", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastPlayerManagerTests.swift", + "source_location": "L7", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastplayermanagertests_podcastplayermanagertests", + "community": 26, + "norm_label": "podcastplayermanagertests" + }, + { + "label": ".currentChapterWithinRange()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastPlayerManagerTests.swift", + "source_location": "L13", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastplayermanagertests_podcastplayermanagertests_currentchapterwithinrange", + "community": 26, + "norm_label": ".currentchapterwithinrange()" + }, + { + "label": ".currentChapterBeforeAll()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastPlayerManagerTests.swift", + "source_location": "L27", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastplayermanagertests_podcastplayermanagertests_currentchapterbeforeall", + "community": 26, + "norm_label": ".currentchapterbeforeall()" + }, + { + "label": ".currentChapterAfterAll()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastPlayerManagerTests.swift", + "source_location": "L44", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastplayermanagertests_podcastplayermanagertests_currentchapterafterall", + "community": 26, + "norm_label": ".currentchapterafterall()" + }, + { + "label": ".currentChapterAtExactStart()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastPlayerManagerTests.swift", + "source_location": "L58", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastplayermanagertests_podcastplayermanagertests_currentchapteratexactstart", + "community": 26, + "norm_label": ".currentchapteratexactstart()" + }, + { + "label": ".currentChapterAtExactEnd()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastPlayerManagerTests.swift", + "source_location": "L72", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastplayermanagertests_podcastplayermanagertests_currentchapteratexactend", + "community": 26, + "norm_label": ".currentchapteratexactend()" + }, + { + "label": ".currentChapterLast()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastPlayerManagerTests.swift", + "source_location": "L87", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastplayermanagertests_podcastplayermanagertests_currentchapterlast", + "community": 26, + "norm_label": ".currentchapterlast()" + }, + { + "label": ".currentChapterNoChapters()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastPlayerManagerTests.swift", + "source_location": "L101", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastplayermanagertests_podcastplayermanagertests_currentchapternochapters", + "community": 26, + "norm_label": ".currentchapternochapters()" + }, + { + "label": ".skipForwardWithinBounds()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastPlayerManagerTests.swift", + "source_location": "L117", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastplayermanagertests_podcastplayermanagertests_skipforwardwithinbounds", + "community": 26, + "norm_label": ".skipforwardwithinbounds()" + }, + { + "label": ".skipForwardPastEnd()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastPlayerManagerTests.swift", + "source_location": "L132", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastplayermanagertests_podcastplayermanagertests_skipforwardpastend", + "community": 26, + "norm_label": ".skipforwardpastend()" + }, + { + "label": ".skipBackwardWithinBounds()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastPlayerManagerTests.swift", + "source_location": "L147", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastplayermanagertests_podcastplayermanagertests_skipbackwardwithinbounds", + "community": 26, + "norm_label": ".skipbackwardwithinbounds()" + }, + { + "label": ".skipBackwardPastStart()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastPlayerManagerTests.swift", + "source_location": "L162", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastplayermanagertests_podcastplayermanagertests_skipbackwardpaststart", + "community": 26, + "norm_label": ".skipbackwardpaststart()" + }, + { + "label": ".skipByZero()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastPlayerManagerTests.swift", + "source_location": "L177", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastplayermanagertests_podcastplayermanagertests_skipbyzero", + "community": 26, + "norm_label": ".skipbyzero()" + }, + { + "label": ".navigateWithNoChapters()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastPlayerManagerTests.swift", + "source_location": "L194", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastplayermanagertests_podcastplayermanagertests_navigatewithnochapters", + "community": 26, + "norm_label": ".navigatewithnochapters()" + }, + { + "label": ".navigateWithSingleChapter()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastPlayerManagerTests.swift", + "source_location": "L206", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastplayermanagertests_podcastplayermanagertests_navigatewithsinglechapter", + "community": 26, + "norm_label": ".navigatewithsinglechapter()" + }, + { + "label": ".navigateWithManyChapters()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastPlayerManagerTests.swift", + "source_location": "L220", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastplayermanagertests_podcastplayermanagertests_navigatewithmanychapters", + "community": 26, + "norm_label": ".navigatewithmanychapters()" + }, + { + "label": ".navigateWithOverlappingChapters()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastPlayerManagerTests.swift", + "source_location": "L243", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastplayermanagertests_podcastplayermanagertests_navigatewithoverlappingchapters", + "community": 26, + "norm_label": ".navigatewithoverlappingchapters()" + }, + { + "label": ".navigateWithPreciseTime()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastPlayerManagerTests.swift", + "source_location": "L260", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastplayermanagertests_podcastplayermanagertests_navigatewithprecisetime", + "community": 26, + "norm_label": ".navigatewithprecisetime()" + }, + { + "label": ".navigateWithZeroDurationChapter()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastPlayerManagerTests.swift", + "source_location": "L274", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastplayermanagertests_podcastplayermanagertests_navigatewithzerodurationchapter", + "community": 26, + "norm_label": ".navigatewithzerodurationchapter()" + }, + { + "label": "createChapter()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastPlayerManagerTests.swift", + "source_location": "L298", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastplayermanagertests_createchapter", + "community": 26, + "norm_label": "createchapter()" + }, + { + "label": "String", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastplayermanagertests_swift_string", + "community": 26, + "norm_label": "string" + }, + { + "label": "Double", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastplayermanagertests_swift_double", + "community": 26, + "norm_label": "double" + }, + { + "label": "createTestChapters()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastPlayerManagerTests.swift", + "source_location": "L312", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastplayermanagertests_createtestchapters", + "community": 26, + "norm_label": "createtestchapters()" + }, + { + "label": "PodcastViewModelTests.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastViewModelTests.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests", + "community": 9, + "norm_label": "podcastviewmodeltests.swift" + }, + { + "label": "PodcastViewModelTests", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastViewModelTests.swift", + "source_location": "L9", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_podcastviewmodeltests", + "community": 11, + "norm_label": "podcastviewmodeltests" + }, + { + "label": ".noLoadAtIndexZero()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastViewModelTests.swift", + "source_location": "L15", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_podcastviewmodeltests_noloadatindexzero", + "community": 11, + "norm_label": ".noloadatindexzero()" + }, + { + "label": ".noLoadBelowThreshold()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastViewModelTests.swift", + "source_location": "L29", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_podcastviewmodeltests_noloadbelowthreshold", + "community": 11, + "norm_label": ".noloadbelowthreshold()" + }, + { + "label": ".loadPage2AtThreshold()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastViewModelTests.swift", + "source_location": "L45", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_podcastviewmodeltests_loadpage2atthreshold", + "community": 11, + "norm_label": ".loadpage2atthreshold()" + }, + { + "label": ".loadPage3AtSecondThreshold()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastViewModelTests.swift", + "source_location": "L68", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_podcastviewmodeltests_loadpage3atsecondthreshold", + "community": 11, + "norm_label": ".loadpage3atsecondthreshold()" + }, + { + "label": ".onlyLoadAtExactMultiples()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastViewModelTests.swift", + "source_location": "L96", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_podcastviewmodeltests_onlyloadatexactmultiples", + "community": 11, + "norm_label": ".onlyloadatexactmultiples()" + }, + { + "label": ".noReloadSamePage()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastViewModelTests.swift", + "source_location": "L122", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_podcastviewmodeltests_noreloadsamepage", + "community": 11, + "norm_label": ".noreloadsamepage()" + }, + { + "label": ".correctPageCalculation()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastViewModelTests.swift", + "source_location": "L145", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_podcastviewmodeltests_correctpagecalculation", + "community": 11, + "norm_label": ".correctpagecalculation()" + }, + { + "label": ".onlyLoadWhenIndexIncreases()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastViewModelTests.swift", + "source_location": "L188", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_podcastviewmodeltests_onlyloadwhenindexincreases", + "community": 11, + "norm_label": ".onlyloadwhenindexincreases()" + }, + { + "label": ".handleRapidScrolling()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastViewModelTests.swift", + "source_location": "L217", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_podcastviewmodeltests_handlerapidscrolling", + "community": 11, + "norm_label": ".handlerapidscrolling()" + }, + { + "label": ".initialStatusIsIdle()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastViewModelTests.swift", + "source_location": "L242", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_podcastviewmodeltests_initialstatusisidle", + "community": 11, + "norm_label": ".initialstatusisidle()" + }, + { + "label": ".statusUpdatesOnSuccess()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastViewModelTests.swift", + "source_location": "L252", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_podcastviewmodeltests_statusupdatesonsuccess", + "community": 11, + "norm_label": ".statusupdatesonsuccess()" + }, + { + "label": ".statusUpdatesOnError()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastViewModelTests.swift", + "source_location": "L266", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_podcastviewmodeltests_statusupdatesonerror", + "community": 11, + "norm_label": ".statusupdatesonerror()" + }, + { + "label": ".preserveCustomStatus()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastViewModelTests.swift", + "source_location": "L288", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_podcastviewmodeltests_preservecustomstatus", + "community": 11, + "norm_label": ".preservecustomstatus()" + }, + { + "label": ".initialOptionIsHome()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastViewModelTests.swift", + "source_location": "L304", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_podcastviewmodeltests_initialoptionishome", + "community": 11, + "norm_label": ".initialoptionishome()" + }, + { + "label": ".supportsSearchOption()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastViewModelTests.swift", + "source_location": "L314", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_podcastviewmodeltests_supportssearchoption", + "community": 11, + "norm_label": ".supportssearchoption()" + }, + { + "label": ".waitForStatusChange()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastViewModelTests.swift", + "source_location": "L333", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_podcastviewmodeltests_waitforstatuschange", + "community": 11, + "norm_label": ".waitforstatuschange()" + }, + { + "label": "APIStatus", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_swift_apistatus", + "community": 11, + "norm_label": "apistatus" + }, + { + "label": "Duration", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_swift_duration", + "community": 11, + "norm_label": "duration" + }, + { + "label": "Bool", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_swift_bool", + "community": 11, + "norm_label": "bool" + }, + { + "label": "createMockNetwork()", + "file_type": "code", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastViewModelTests.swift", + "source_location": "L350", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_createmocknetwork", + "community": 11, + "norm_label": "createmocknetwork()" + }, + { + "label": "NetworkMockData", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_swift_networkmockdata", + "community": 11, + "norm_label": "networkmockdata" + }, + { + "label": "Package.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Package.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_package", + "community": 75, + "norm_label": "package.swift" + }, + { + "label": "RecentSearchDB.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Models/RecentSearchDB.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_models_recentsearchdb", + "community": 20, + "norm_label": "recentsearchdb.swift" + }, + { + "label": "RecentSearchDB", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Models/RecentSearchDB.swift", + "source_location": "L4", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_models_recentsearchdb_recentsearchdb", + "community": 20, + "norm_label": "recentsearchdb" + }, + { + "label": "String", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_models_recentsearchdb_swift_string", + "community": 20, + "norm_label": "string" + }, + { + "label": ".init()", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Models/RecentSearchDB.swift", + "source_location": "L9", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_models_recentsearchdb_recentsearchdb_init", + "community": 20, + "norm_label": ".init()" + }, + { + "label": "SearchResult.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Models/SearchResult.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_models_searchresult", + "community": 1, + "norm_label": "searchresult.swift" + }, + { + "label": "YouTubeLibrary", + "file_type": "code", + "type": "module", + "source_file": "MacMagazine/MacMagazine/MainApp/MainViewModel.swift", + "source_location": "L12", + "_origin": "ast", + "id": "youtubelibrary", + "community": 36, + "norm_label": "youtubelibrary" + }, + { + "label": "SearchResultType", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Models/SearchResult.swift", + "source_location": "L5", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_models_searchresult_searchresulttype", + "community": 1, + "norm_label": "searchresulttype" + }, + { + "label": "news", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Models/SearchResult.swift", + "source_location": "L6", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_models_searchresult_searchresulttype_news", + "community": 1, + "norm_label": "news" + }, + { + "label": "podcast", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Models/SearchResult.swift", + "source_location": "L7", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_models_searchresult_searchresulttype_podcast", + "community": 1, + "norm_label": "podcast" + }, + { + "label": "video", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Models/SearchResult.swift", + "source_location": "L8", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_models_searchresult_searchresulttype_video", + "community": 1, + "norm_label": "video" + }, + { + "label": "SearchResult", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Models/SearchResult.swift", + "source_location": "L11", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_models_searchresult_searchresult", + "community": 1, + "norm_label": "searchresult" + }, + { + "label": "String", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_models_searchresult_swift_string", + "community": 1, + "norm_label": "string" + }, + { + "label": "Double", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_models_searchresult_swift_double", + "community": 1, + "norm_label": "double" + }, + { + "label": "FeedDB", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_models_searchresult_swift_feeddb", + "community": 1, + "norm_label": "feeddb" + }, + { + "label": "PodcastDB", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_models_searchresult_swift_podcastdb", + "community": 1, + "norm_label": "podcastdb" + }, + { + "label": "VideoDB", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_models_searchresult_swift_videodb", + "community": 1, + "norm_label": "videodb" + }, + { + "label": ".init()", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Models/SearchResult.swift", + "source_location": "L20", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_models_searchresult_searchresult_init", + "community": 1, + "norm_label": ".init()" + }, + { + "label": "FeedDB", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Models/SearchResult.swift", + "source_location": "L39", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_models_searchresult_feeddb", + "community": 1, + "norm_label": "feeddb" + }, + { + "label": ".toSearchResult()", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Models/SearchResult.swift", + "source_location": "L40", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_models_searchresult_feeddb_tosearchresult", + "community": 1, + "norm_label": ".tosearchresult()" + }, + { + "label": "PodcastDB", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Models/SearchResult.swift", + "source_location": "L51", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_models_searchresult_podcastdb", + "community": 1, + "norm_label": "podcastdb" + }, + { + "label": ".toSearchResult()", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Models/SearchResult.swift", + "source_location": "L52", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_models_searchresult_podcastdb_tosearchresult", + "community": 1, + "norm_label": ".tosearchresult()" + }, + { + "label": "VideoDB", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Models/SearchResult.swift", + "source_location": "L63", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_models_searchresult_videodb", + "community": 1, + "norm_label": "videodb" + }, + { + "label": ".toSearchResult()", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Models/SearchResult.swift", + "source_location": "L64", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_models_searchresult_videodb_tosearchresult", + "community": 1, + "norm_label": ".tosearchresult()" + }, + { + "label": "PortugueseLexicon.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/NLP/PortugueseLexicon.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_portugueselexicon", + "community": 89, + "norm_label": "portugueselexicon.swift" + }, + { + "label": "PortugueseLexicon", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/NLP/PortugueseLexicon.swift", + "source_location": "L3", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_portugueselexicon_portugueselexicon", + "community": 89, + "norm_label": "portugueselexicon" + }, + { + "label": "String", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_portugueselexicon_swift_string", + "community": 89, + "norm_label": "string" + }, + { + "label": "NewsCategory", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_portugueselexicon_swift_newscategory", + "community": 89, + "norm_label": "newscategory" + }, + { + "label": "Set", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_portugueselexicon_swift_set", + "community": 89, + "norm_label": "set" + }, + { + "label": ".matchCategories()", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/NLP/PortugueseLexicon.swift", + "source_location": "L63", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_portugueselexicon_portugueselexicon_matchcategories", + "community": 89, + "norm_label": ".matchcategories()" + }, + { + "label": ".matchContentTypes()", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/NLP/PortugueseLexicon.swift", + "source_location": "L78", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_portugueselexicon_portugueselexicon_matchcontenttypes", + "community": 89, + "norm_label": ".matchcontenttypes()" + }, + { + "label": ".matchRecency()", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/NLP/PortugueseLexicon.swift", + "source_location": "L87", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_portugueselexicon_portugueselexicon_matchrecency", + "community": 89, + "norm_label": ".matchrecency()" + }, + { + "label": "Bool", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_portugueselexicon_swift_bool", + "community": 89, + "norm_label": "bool" + }, + { + "label": ".removeStopWords()", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/NLP/PortugueseLexicon.swift", + "source_location": "L91", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_portugueselexicon_portugueselexicon_removestopwords", + "community": 89, + "norm_label": ".removestopwords()" + }, + { + "label": "QueryIntent.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/NLP/QueryIntent.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryintent", + "community": 58, + "norm_label": "queryintent.swift" + }, + { + "label": "SortPreference", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/NLP/QueryIntent.swift", + "source_location": "L4", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryintent_sortpreference", + "community": 58, + "norm_label": "sortpreference" + }, + { + "label": "relevance", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/NLP/QueryIntent.swift", + "source_location": "L5", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryintent_sortpreference_relevance", + "community": 58, + "norm_label": "relevance" + }, + { + "label": "recent", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/NLP/QueryIntent.swift", + "source_location": "L6", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryintent_sortpreference_recent", + "community": 58, + "norm_label": "recent" + }, + { + "label": "ContentType", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/NLP/QueryIntent.swift", + "source_location": "L9", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryintent_contenttype", + "community": 58, + "norm_label": "contenttype" + }, + { + "label": "news", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/NLP/QueryIntent.swift", + "source_location": "L10", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryintent_contenttype_news", + "community": 58, + "norm_label": "news" + }, + { + "label": "podcast", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/NLP/QueryIntent.swift", + "source_location": "L11", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryintent_contenttype_podcast", + "community": 58, + "norm_label": "podcast" + }, + { + "label": "video", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/NLP/QueryIntent.swift", + "source_location": "L12", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryintent_contenttype_video", + "community": 58, + "norm_label": "video" + }, + { + "label": "QueryIntent", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/NLP/QueryIntent.swift", + "source_location": "L15", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryintent_queryintent", + "community": 80, + "norm_label": "queryintent" + }, + { + "label": "String", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryintent_swift_string", + "community": 80, + "norm_label": "string" + }, + { + "label": "NewsCategory", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryintent_swift_newscategory", + "community": 80, + "norm_label": "newscategory" + }, + { + "label": "Set", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryintent_swift_set", + "community": 80, + "norm_label": "set" + }, + { + "label": "QueryProcessor.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/NLP/QueryProcessor.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryprocessor", + "community": 29, + "norm_label": "queryprocessor.swift" + }, + { + "label": "NaturalLanguage", + "file_type": "code", + "type": "module", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/NLP/QueryProcessor.swift", + "source_location": "L2", + "_origin": "ast", + "id": "naturallanguage", + "community": 29, + "norm_label": "naturallanguage" + }, + { + "label": "QueryProcessor", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/NLP/QueryProcessor.swift", + "source_location": "L4", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryprocessor_queryprocessor", + "community": 29, + "norm_label": "queryprocessor" + }, + { + "label": ".process()", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/NLP/QueryProcessor.swift", + "source_location": "L6", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryprocessor_queryprocessor_process", + "community": 29, + "norm_label": ".process()" + }, + { + "label": "String", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryprocessor_swift_string", + "community": 29, + "norm_label": "string" + }, + { + "label": ".tokenize()", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/NLP/QueryProcessor.swift", + "source_location": "L55", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryprocessor_queryprocessor_tokenize", + "community": 29, + "norm_label": ".tokenize()" + }, + { + "label": ".lemmatize()", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/NLP/QueryProcessor.swift", + "source_location": "L68", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryprocessor_queryprocessor_lemmatize", + "community": 29, + "norm_label": ".lemmatize()" + }, + { + "label": ".extractEntities()", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/NLP/QueryProcessor.swift", + "source_location": "L86", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryprocessor_queryprocessor_extractentities", + "community": 29, + "norm_label": ".extractentities()" + }, + { + "label": ".buildRemoteSearchTerm()", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/NLP/QueryProcessor.swift", + "source_location": "L110", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryprocessor_queryprocessor_buildremotesearchterm", + "community": 29, + "norm_label": ".buildremotesearchterm()" + }, + { + "label": "LocalSearchService.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Services/LocalSearchService.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_services_localsearchservice", + "community": 9, + "norm_label": "localsearchservice.swift" + }, + { + "label": "LocalSearchServiceProtocol", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Services/LocalSearchService.swift", + "source_location": "L6", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_services_localsearchservice_localsearchserviceprotocol", + "community": 20, + "norm_label": "localsearchserviceprotocol" + }, + { + "label": "LocalSearchService", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Services/LocalSearchService.swift", + "source_location": "L11", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_services_localsearchservice_localsearchservice", + "community": 80, + "norm_label": "localsearchservice" + }, + { + "label": ".search()", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Services/LocalSearchService.swift", + "source_location": "L14", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_services_localsearchservice_localsearchservice_search", + "community": 80, + "norm_label": ".search()" + }, + { + "label": "ModelContext", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_services_localsearchservice_swift_modelcontext", + "community": 80, + "norm_label": "modelcontext" + }, + { + "label": "SearchResult", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_services_localsearchservice_swift_searchresult", + "community": 80, + "norm_label": "searchresult" + }, + { + "label": ".searchFeed()", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Services/LocalSearchService.swift", + "source_location": "L53", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_services_localsearchservice_localsearchservice_searchfeed", + "community": 80, + "norm_label": ".searchfeed()" + }, + { + "label": ".searchPodcasts()", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Services/LocalSearchService.swift", + "source_location": "L70", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_services_localsearchservice_localsearchservice_searchpodcasts", + "community": 80, + "norm_label": ".searchpodcasts()" + }, + { + "label": ".searchVideos()", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Services/LocalSearchService.swift", + "source_location": "L86", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_services_localsearchservice_localsearchservice_searchvideos", + "community": 80, + "norm_label": ".searchvideos()" + }, + { + "label": "RelevanceScorer.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Services/RelevanceScorer.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_services_relevancescorer", + "community": 59, + "norm_label": "relevancescorer.swift" + }, + { + "label": "RelevanceScorer", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Services/RelevanceScorer.swift", + "source_location": "L3", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_services_relevancescorer_relevancescorer", + "community": 59, + "norm_label": "relevancescorer" + }, + { + "label": ".score()", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Services/RelevanceScorer.swift", + "source_location": "L4", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_services_relevancescorer_relevancescorer_score", + "community": 59, + "norm_label": ".score()" + }, + { + "label": "SearchResult", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_services_relevancescorer_swift_searchresult", + "community": 59, + "norm_label": "searchresult" + }, + { + "label": "Double", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_services_relevancescorer_swift_double", + "community": 59, + "norm_label": "double" + }, + { + "label": "SearchResult", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Services/RelevanceScorer.swift", + "source_location": "L30", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_services_relevancescorer_searchresult", + "community": 59, + "norm_label": "searchresult" + }, + { + "label": "String", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_services_relevancescorer_swift_string", + "community": 59, + "norm_label": "string" + }, + { + "label": "RemoteFeedSearchService.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Services/RemoteFeedSearchService.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_services_remotefeedsearchservice", + "community": 9, + "norm_label": "remotefeedsearchservice.swift" + }, + { + "label": "RemoteSearchServiceProtocol", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Services/RemoteFeedSearchService.swift", + "source_location": "L6", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_services_remotefeedsearchservice_remotesearchserviceprotocol", + "community": 20, + "norm_label": "remotesearchserviceprotocol" + }, + { + "label": "RemoteFeedSearchService", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Services/RemoteFeedSearchService.swift", + "source_location": "L10", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_services_remotefeedsearchservice_remotefeedsearchservice", + "community": 104, + "norm_label": "remotefeedsearchservice" + }, + { + "label": ".init()", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Services/RemoteFeedSearchService.swift", + "source_location": "L13", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_services_remotefeedsearchservice_remotefeedsearchservice_init", + "community": 104, + "norm_label": ".init()" + }, + { + "label": "Database", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_services_remotefeedsearchservice_swift_database", + "community": 104, + "norm_label": "database" + }, + { + "label": ".search()", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Services/RemoteFeedSearchService.swift", + "source_location": "L23", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_services_remotefeedsearchservice_remotefeedsearchservice_search", + "community": 104, + "norm_label": ".search()" + }, + { + "label": "String", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_services_remotefeedsearchservice_swift_string", + "community": 104, + "norm_label": "string" + }, + { + "label": "Int", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_services_remotefeedsearchservice_swift_int", + "community": 104, + "norm_label": "int" + }, + { + "label": "SearchResult", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_services_remotefeedsearchservice_swift_searchresult", + "community": 104, + "norm_label": "searchresult" + }, + { + "label": ".resultType()", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Services/RemoteFeedSearchService.swift", + "source_location": "L56", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_services_remotefeedsearchservice_remotefeedsearchservice_resulttype", + "community": 104, + "norm_label": ".resulttype()" + }, + { + "label": "SearchResultMerger.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Services/SearchResultMerger.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_services_searchresultmerger", + "community": 40, + "norm_label": "searchresultmerger.swift" + }, + { + "label": "SearchResultMergerProtocol", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Services/SearchResultMerger.swift", + "source_location": "L3", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_services_searchresultmerger_searchresultmergerprotocol", + "community": 40, + "norm_label": "searchresultmergerprotocol" + }, + { + "label": "SearchResultMerger", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Services/SearchResultMerger.swift", + "source_location": "L7", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_services_searchresultmerger_searchresultmerger", + "community": 40, + "norm_label": "searchresultmerger" + }, + { + "label": ".merge()", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Services/SearchResultMerger.swift", + "source_location": "L10", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_services_searchresultmerger_searchresultmerger_merge", + "community": 40, + "norm_label": ".merge()" + }, + { + "label": "SearchResult", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_services_searchresultmerger_swift_searchresult", + "community": 40, + "norm_label": "searchresult" + }, + { + "label": ".deduplicationKey()", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Services/SearchResultMerger.swift", + "source_location": "L49", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_services_searchresultmerger_searchresultmerger_deduplicationkey", + "community": 40, + "norm_label": ".deduplicationkey()" + }, + { + "label": "String", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_services_searchresultmerger_swift_string", + "community": 40, + "norm_label": "string" + }, + { + "label": ".extractId()", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Services/SearchResultMerger.swift", + "source_location": "L63", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_services_searchresultmerger_searchresultmerger_extractid", + "community": 40, + "norm_label": ".extractid()" + }, + { + "label": "SearchViewModel.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/ViewModel/SearchViewModel.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_viewmodel_searchviewmodel", + "community": 14, + "norm_label": "searchviewmodel.swift" + }, + { + "label": "SearchStatus", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/ViewModel/SearchViewModel.swift", + "source_location": "L5", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_viewmodel_searchviewmodel_searchstatus", + "community": 27, + "norm_label": "searchstatus" + }, + { + "label": "idle", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/ViewModel/SearchViewModel.swift", + "source_location": "L6", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_viewmodel_searchviewmodel_searchstatus_idle", + "community": 27, + "norm_label": "idle" + }, + { + "label": "searching", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/ViewModel/SearchViewModel.swift", + "source_location": "L7", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_viewmodel_searchviewmodel_searchstatus_searching", + "community": 27, + "norm_label": "searching" + }, + { + "label": "localResults", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/ViewModel/SearchViewModel.swift", + "source_location": "L8", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_viewmodel_searchviewmodel_searchstatus_localresults", + "community": 27, + "norm_label": "localresults" + }, + { + "label": "done", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/ViewModel/SearchViewModel.swift", + "source_location": "L9", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_viewmodel_searchviewmodel_searchstatus_done", + "community": 27, + "norm_label": "done" + }, + { + "label": "error", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/ViewModel/SearchViewModel.swift", + "source_location": "L10", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_viewmodel_searchviewmodel_searchstatus_error", + "community": 27, + "norm_label": "error" + }, + { + "label": "String", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_viewmodel_searchviewmodel_swift_string", + "community": 20, + "norm_label": "string" + }, + { + "label": "SearchViewModel", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/ViewModel/SearchViewModel.swift", + "source_location": "L13", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_viewmodel_searchviewmodel_searchviewmodel", + "community": 20, + "norm_label": "searchviewmodel" + }, + { + "label": "SearchResult", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_viewmodel_searchviewmodel_swift_searchresult", + "community": 20, + "norm_label": "searchresult" + }, + { + "label": "Database", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_viewmodel_searchviewmodel_swift_database", + "community": 20, + "norm_label": "database" + }, + { + "label": "Duration", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_viewmodel_searchviewmodel_swift_duration", + "community": 20, + "norm_label": "duration" + }, + { + "label": "Task", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_viewmodel_searchviewmodel_swift_task", + "community": 20, + "norm_label": "task" + }, + { + "label": "Void", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_viewmodel_searchviewmodel_swift_void", + "community": 20, + "norm_label": "void" + }, + { + "label": "Never", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_viewmodel_searchviewmodel_swift_never", + "community": 20, + "norm_label": "never" + }, + { + "label": ".init()", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/ViewModel/SearchViewModel.swift", + "source_location": "L29", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_viewmodel_searchviewmodel_searchviewmodel_init", + "community": 20, + "norm_label": ".init()" + }, + { + "label": ".performSearch()", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/ViewModel/SearchViewModel.swift", + "source_location": "L52", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_viewmodel_searchviewmodel_searchviewmodel_performsearch", + "community": 20, + "norm_label": ".performsearch()" + }, + { + "label": "Bool", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_viewmodel_searchviewmodel_swift_bool", + "community": 20, + "norm_label": "bool" + }, + { + "label": ".clearSearch()", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/ViewModel/SearchViewModel.swift", + "source_location": "L93", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_viewmodel_searchviewmodel_searchviewmodel_clearsearch", + "community": 20, + "norm_label": ".clearsearch()" + }, + { + "label": ".selectRecentSearch()", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/ViewModel/SearchViewModel.swift", + "source_location": "L100", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_viewmodel_searchviewmodel_searchviewmodel_selectrecentsearch", + "community": 20, + "norm_label": ".selectrecentsearch()" + }, + { + "label": ".clearRecentSearches()", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/ViewModel/SearchViewModel.swift", + "source_location": "L105", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_viewmodel_searchviewmodel_searchviewmodel_clearrecentsearches", + "community": 20, + "norm_label": ".clearrecentsearches()" + }, + { + "label": ".removeRecentSearch()", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/ViewModel/SearchViewModel.swift", + "source_location": "L114", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_viewmodel_searchviewmodel_searchviewmodel_removerecentsearch", + "community": 20, + "norm_label": ".removerecentsearch()" + }, + { + "label": ".searchRemote()", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/ViewModel/SearchViewModel.swift", + "source_location": "L126", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_viewmodel_searchviewmodel_searchviewmodel_searchremote", + "community": 20, + "norm_label": ".searchremote()" + }, + { + "label": ".loadRecentSearches()", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/ViewModel/SearchViewModel.swift", + "source_location": "L144", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_viewmodel_searchviewmodel_searchviewmodel_loadrecentsearches", + "community": 20, + "norm_label": ".loadrecentsearches()" + }, + { + "label": ".saveRecentSearch()", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/ViewModel/SearchViewModel.swift", + "source_location": "L152", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_viewmodel_searchviewmodel_searchviewmodel_saverecentsearch", + "community": 20, + "norm_label": ".saverecentsearch()" + }, + { + "label": "RecentSearchesView.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/RecentSearchesView.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_views_recentsearchesview", + "community": 20, + "norm_label": "recentsearchesview.swift" + }, + { + "label": "RecentSearchesView", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/RecentSearchesView.swift", + "source_location": "L3", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_views_recentsearchesview_recentsearchesview", + "community": 20, + "norm_label": "recentsearchesview" + }, + { + "label": "Void", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_views_recentsearchesview_swift_void", + "community": 20, + "norm_label": "void" + }, + { + "label": "SearchResultsList.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchResultsList.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist", + "community": 36, + "norm_label": "searchresultslist.swift" + }, + { + "label": "VideosLibrary", + "file_type": "code", + "type": "module", + "source_file": "MacMagazine/MacMagazine/MainApp/Sizecalss/MainView+tabbar.swift", + "source_location": "L8", + "_origin": "ast", + "id": "videoslibrary", + "community": 36, + "norm_label": "videoslibrary" + }, + { + "label": "SearchResultsList", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchResultsList.swift", + "source_location": "L12", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist_searchresultslist", + "community": 69, + "norm_label": "searchresultslist" + }, + { + "label": "AnalyticsManager", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist_swift_analyticsmanager", + "community": 69, + "norm_label": "analyticsmanager" + }, + { + "label": "SearchResult", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist_swift_searchresult", + "community": 69, + "norm_label": "searchresult" + }, + { + "label": "FeedDB", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist_swift_feeddb", + "community": 69, + "norm_label": "feeddb" + }, + { + "label": "Void", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist_swift_void", + "community": 69, + "norm_label": "void" + }, + { + "label": "PodcastDB", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist_swift_podcastdb", + "community": 69, + "norm_label": "podcastdb" + }, + { + "label": "VideoDB", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist_swift_videodb", + "community": 69, + "norm_label": "videodb" + }, + { + "label": "String", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist_swift_string", + "community": 69, + "norm_label": "string" + }, + { + "label": ".resultCard()", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchResultsList.swift", + "source_location": "L33", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist_searchresultslist_resultcard", + "community": 69, + "norm_label": ".resultcard()" + }, + { + "label": ".newsCard()", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchResultsList.swift", + "source_location": "L50", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist_searchresultslist_newscard", + "community": 69, + "norm_label": ".newscard()" + }, + { + "label": ".podcastCard()", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchResultsList.swift", + "source_location": "L71", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist_searchresultslist_podcastcard", + "community": 69, + "norm_label": ".podcastcard()" + }, + { + "label": ".videoCard()", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchResultsList.swift", + "source_location": "L86", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist_searchresultslist_videocard", + "community": 69, + "norm_label": ".videocard()" + }, + { + "label": "SearchView.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchView.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchview", + "community": 2, + "norm_label": "searchview.swift" + }, + { + "label": "SearchView", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchView.swift", + "source_location": "L12", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchview_searchview", + "community": 27, + "norm_label": "searchview" + }, + { + "label": "AnalyticsManager", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchview_swift_analyticsmanager", + "community": 27, + "norm_label": "analyticsmanager" + }, + { + "label": "String", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchview_swift_string", + "community": 27, + "norm_label": "string" + }, + { + "label": "YouTubePlayerAction", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "youtubeplayeraction", + "community": 27, + "norm_label": "youtubeplayeraction" + }, + { + "label": "VideoDB", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchview_swift_videodb", + "community": 27, + "norm_label": "videodb" + }, + { + "label": "YouTubeAPI", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchview_swift_youtubeapi", + "community": 27, + "norm_label": "youtubeapi" + }, + { + "label": ".init()", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchView.swift", + "source_location": "L29", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchview_searchview_init", + "community": 27, + "norm_label": ".init()" + }, + { + "label": ".errorContent()", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchView.swift", + "source_location": "L185", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchview_searchview_errorcontent", + "community": 27, + "norm_label": ".errorcontent()" + }, + { + "label": "GridItem", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchview_swift_griditem", + "community": 27, + "norm_label": "griditem" + }, + { + "label": ".handleNewsSelection()", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchView.swift", + "source_location": "L209", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchview_searchview_handlenewsselection", + "community": 27, + "norm_label": ".handlenewsselection()" + }, + { + "label": "FeedDB", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchview_swift_feeddb", + "community": 27, + "norm_label": "feeddb" + }, + { + "label": ".handlePodcastSelection()", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchView.swift", + "source_location": "L220", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchview_searchview_handlepodcastselection", + "community": 27, + "norm_label": ".handlepodcastselection()" + }, + { + "label": "PodcastDB", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchview_swift_podcastdb", + "community": 27, + "norm_label": "podcastdb" + }, + { + "label": ".handleLinkSelection()", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchView.swift", + "source_location": "L230", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchview_searchview_handlelinkselection", + "community": 27, + "norm_label": ".handlelinkselection()" + }, + { + "label": ".trackSearchCompletion()", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchView.swift", + "source_location": "L243", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchview_searchview_tracksearchcompletion", + "community": 27, + "norm_label": ".tracksearchcompletion()" + }, + { + "label": ".announceSearchStatus()", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchView.swift", + "source_location": "L255", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchview_searchview_announcesearchstatus", + "community": 27, + "norm_label": ".announcesearchstatus()" + }, + { + "label": "Bool", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchview_swift_bool", + "community": 27, + "norm_label": "bool" + }, + { + "label": "QueryProcessorTests.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/QueryProcessorTests.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_tests_searchlibrarytests_queryprocessortests", + "community": 29, + "norm_label": "queryprocessortests.swift" + }, + { + "label": "SearchLibrary", + "file_type": "code", + "type": "module", + "source_file": "MacMagazine/MacMagazine/MainApp/Sizecalss/MainView+tabbar.swift", + "source_location": "L5", + "_origin": "ast", + "id": "searchlibrary", + "community": 36, + "norm_label": "searchlibrary" + }, + { + "label": "QueryProcessorTests", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/QueryProcessorTests.swift", + "source_location": "L4", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_tests_searchlibrarytests_queryprocessortests_queryprocessortests", + "community": 29, + "norm_label": "queryprocessortests" + }, + { + "label": ".emptyQuery()", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/QueryProcessorTests.swift", + "source_location": "L8", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_tests_searchlibrarytests_queryprocessortests_queryprocessortests_emptyquery", + "community": 29, + "norm_label": ".emptyquery()" + }, + { + "label": ".simpleQuery()", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/QueryProcessorTests.swift", + "source_location": "L16", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_tests_searchlibrarytests_queryprocessortests_queryprocessortests_simplequery", + "community": 29, + "norm_label": ".simplequery()" + }, + { + "label": ".tutorialCategory()", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/QueryProcessorTests.swift", + "source_location": "L23", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_tests_searchlibrarytests_queryprocessortests_queryprocessortests_tutorialcategory", + "community": 29, + "norm_label": ".tutorialcategory()" + }, + { + "label": ".rumorCategory()", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/QueryProcessorTests.swift", + "source_location": "L29", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_tests_searchlibrarytests_queryprocessortests_queryprocessortests_rumorcategory", + "community": 29, + "norm_label": ".rumorcategory()" + }, + { + "label": ".reviewCategory()", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/QueryProcessorTests.swift", + "source_location": "L35", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_tests_searchlibrarytests_queryprocessortests_queryprocessortests_reviewcategory", + "community": 29, + "norm_label": ".reviewcategory()" + }, + { + "label": ".videoContentType()", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/QueryProcessorTests.swift", + "source_location": "L41", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_tests_searchlibrarytests_queryprocessortests_queryprocessortests_videocontenttype", + "community": 29, + "norm_label": ".videocontenttype()" + }, + { + "label": ".podcastContentType()", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/QueryProcessorTests.swift", + "source_location": "L47", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_tests_searchlibrarytests_queryprocessortests_queryprocessortests_podcastcontenttype", + "community": 29, + "norm_label": ".podcastcontenttype()" + }, + { + "label": ".recencySortPreference()", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/QueryProcessorTests.swift", + "source_location": "L53", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_tests_searchlibrarytests_queryprocessortests_queryprocessortests_recencysortpreference", + "community": 29, + "norm_label": ".recencysortpreference()" + }, + { + "label": ".defaultSortPreference()", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/QueryProcessorTests.swift", + "source_location": "L59", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_tests_searchlibrarytests_queryprocessortests_queryprocessortests_defaultsortpreference", + "community": 29, + "norm_label": ".defaultsortpreference()" + }, + { + "label": ".comoFazerCategory()", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/QueryProcessorTests.swift", + "source_location": "L65", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_tests_searchlibrarytests_queryprocessortests_queryprocessortests_comofazercategory", + "community": 29, + "norm_label": ".comofazercategory()" + }, + { + "label": ".remoteSearchTermCleaned()", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/QueryProcessorTests.swift", + "source_location": "L71", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_tests_searchlibrarytests_queryprocessortests_queryprocessortests_remotesearchtermcleaned", + "community": 29, + "norm_label": ".remotesearchtermcleaned()" + }, + { + "label": "RelevanceScorerTests.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/RelevanceScorerTests.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_tests_searchlibrarytests_relevancescorertests", + "community": 9, + "norm_label": "relevancescorertests.swift" + }, + { + "label": "RelevanceScorerTests", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/RelevanceScorerTests.swift", + "source_location": "L6", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_tests_searchlibrarytests_relevancescorertests_relevancescorertests", + "community": 59, + "norm_label": "relevancescorertests" + }, + { + "label": ".makeResult()", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/RelevanceScorerTests.swift", + "source_location": "L13", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_tests_searchlibrarytests_relevancescorertests_relevancescorertests_makeresult", + "community": 59, + "norm_label": ".makeresult()" + }, + { + "label": "String", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_tests_searchlibrarytests_relevancescorertests_swift_string", + "community": 59, + "norm_label": "string" + }, + { + "label": "SearchResult", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_tests_searchlibrarytests_relevancescorertests_swift_searchresult", + "community": 59, + "norm_label": "searchresult" + }, + { + "label": ".titleHigherThanExcerpt()", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/RelevanceScorerTests.swift", + "source_location": "L37", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_tests_searchlibrarytests_relevancescorertests_relevancescorertests_titlehigherthanexcerpt", + "community": 59, + "norm_label": ".titlehigherthanexcerpt()" + }, + { + "label": ".recencyBoost()", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/RelevanceScorerTests.swift", + "source_location": "L49", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_tests_searchlibrarytests_relevancescorertests_relevancescorertests_recencyboost", + "community": 59, + "norm_label": ".recencyboost()" + }, + { + "label": ".noMatchMinimalScore()", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/RelevanceScorerTests.swift", + "source_location": "L61", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_tests_searchlibrarytests_relevancescorertests_relevancescorertests_nomatchminimalscore", + "community": 59, + "norm_label": ".nomatchminimalscore()" + }, + { + "label": "RemoteFeedSearchServiceTests.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/RemoteFeedSearchServiceTests.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_tests_searchlibrarytests_remotefeedsearchservicetests", + "community": 9, + "norm_label": "remotefeedsearchservicetests.swift" + }, + { + "label": "RemoteFeedSearchServiceTests", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/RemoteFeedSearchServiceTests.swift", + "source_location": "L6", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_tests_searchlibrarytests_remotefeedsearchservicetests_remotefeedsearchservicetests", + "community": 37, + "norm_label": "remotefeedsearchservicetests" + }, + { + "label": ".mmtvCategoryClassifiedAsVideo()", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/RemoteFeedSearchServiceTests.swift", + "source_location": "L11", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_tests_searchlibrarytests_remotefeedsearchservicetests_remotefeedsearchservicetests_mmtvcategoryclassifiedasvideo", + "community": 37, + "norm_label": ".mmtvcategoryclassifiedasvideo()" + }, + { + "label": ".youtubeRawValueClassifiedAsVideo()", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/RemoteFeedSearchServiceTests.swift", + "source_location": "L22", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_tests_searchlibrarytests_remotefeedsearchservicetests_remotefeedsearchservicetests_youtuberawvalueclassifiedasvideo", + "community": 37, + "norm_label": ".youtuberawvalueclassifiedasvideo()" + }, + { + "label": ".newsCategoriesClassifiedAsNews()", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/RemoteFeedSearchServiceTests.swift", + "source_location": "L33", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_tests_searchlibrarytests_remotefeedsearchservicetests_remotefeedsearchservicetests_newscategoriesclassifiedasnews", + "community": 37, + "norm_label": ".newscategoriesclassifiedasnews()" + }, + { + "label": ".emptyCategoriesClassifiedAsNews()", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/RemoteFeedSearchServiceTests.swift", + "source_location": "L44", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_tests_searchlibrarytests_remotefeedsearchservicetests_remotefeedsearchservicetests_emptycategoriesclassifiedasnews", + "community": 37, + "norm_label": ".emptycategoriesclassifiedasnews()" + }, + { + "label": ".podcastCategoryWithoutURLIsNews()", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/RemoteFeedSearchServiceTests.swift", + "source_location": "L55", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_tests_searchlibrarytests_remotefeedsearchservicetests_remotefeedsearchservicetests_podcastcategorywithouturlisnews", + "community": 37, + "norm_label": ".podcastcategorywithouturlisnews()" + }, + { + "label": ".mixedCategoriesWithMMTVIsVideo()", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/RemoteFeedSearchServiceTests.swift", + "source_location": "L66", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_tests_searchlibrarytests_remotefeedsearchservicetests_remotefeedsearchservicetests_mixedcategorieswithmmtvisvideo", + "community": 37, + "norm_label": ".mixedcategorieswithmmtvisvideo()" + }, + { + "label": ".podcastDBAlwaysClassifiedAsPodcast()", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/RemoteFeedSearchServiceTests.swift", + "source_location": "L79", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_tests_searchlibrarytests_remotefeedsearchservicetests_remotefeedsearchservicetests_podcastdbalwaysclassifiedaspodcast", + "community": 37, + "norm_label": ".podcastdbalwaysclassifiedaspodcast()" + }, + { + "label": ".podcastDBWithEmptyURLStillPodcast()", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/RemoteFeedSearchServiceTests.swift", + "source_location": "L90", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_tests_searchlibrarytests_remotefeedsearchservicetests_remotefeedsearchservicetests_podcastdbwithemptyurlstillpodcast", + "community": 37, + "norm_label": ".podcastdbwithemptyurlstillpodcast()" + }, + { + "label": ".feedResultPreservesPostId()", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/RemoteFeedSearchServiceTests.swift", + "source_location": "L102", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_tests_searchlibrarytests_remotefeedsearchservicetests_remotefeedsearchservicetests_feedresultpreservespostid", + "community": 37, + "norm_label": ".feedresultpreservespostid()" + }, + { + "label": ".feedResultPreservesPubDate()", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/RemoteFeedSearchServiceTests.swift", + "source_location": "L109", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_tests_searchlibrarytests_remotefeedsearchservicetests_remotefeedsearchservicetests_feedresultpreservespubdate", + "community": 37, + "norm_label": ".feedresultpreservespubdate()" + }, + { + "label": ".feedResultCarriesFeedDB()", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/RemoteFeedSearchServiceTests.swift", + "source_location": "L117", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_tests_searchlibrarytests_remotefeedsearchservicetests_remotefeedsearchservicetests_feedresultcarriesfeeddb", + "community": 37, + "norm_label": ".feedresultcarriesfeeddb()" + }, + { + "label": ".podcastResultCarriesPodcastDB()", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/RemoteFeedSearchServiceTests.swift", + "source_location": "L125", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_tests_searchlibrarytests_remotefeedsearchservicetests_remotefeedsearchservicetests_podcastresultcarriespodcastdb", + "community": 37, + "norm_label": ".podcastresultcarriespodcastdb()" + }, + { + "label": ".classifyFeed()", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/RemoteFeedSearchServiceTests.swift", + "source_location": "L137", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_tests_searchlibrarytests_remotefeedsearchservicetests_remotefeedsearchservicetests_classifyfeed", + "community": 37, + "norm_label": ".classifyfeed()" + }, + { + "label": "FeedDB", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_tests_searchlibrarytests_remotefeedsearchservicetests_swift_feeddb", + "community": 37, + "norm_label": "feeddb" + }, + { + "label": "SearchResult", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_tests_searchlibrarytests_remotefeedsearchservicetests_swift_searchresult", + "community": 37, + "norm_label": "searchresult" + }, + { + "label": ".classifyPodcast()", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/RemoteFeedSearchServiceTests.swift", + "source_location": "L148", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_tests_searchlibrarytests_remotefeedsearchservicetests_remotefeedsearchservicetests_classifypodcast", + "community": 37, + "norm_label": ".classifypodcast()" + }, + { + "label": "PodcastDB", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_tests_searchlibrarytests_remotefeedsearchservicetests_swift_podcastdb", + "community": 37, + "norm_label": "podcastdb" + }, + { + "label": ".resultType()", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/RemoteFeedSearchServiceTests.swift", + "source_location": "L158", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_tests_searchlibrarytests_remotefeedsearchservicetests_remotefeedsearchservicetests_resulttype", + "community": 37, + "norm_label": ".resulttype()" + }, + { + "label": "String", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_tests_searchlibrarytests_remotefeedsearchservicetests_swift_string", + "community": 37, + "norm_label": "string" + }, + { + "label": "SearchResultMergerTests.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchResultMergerTests.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchresultmergertests", + "community": 9, + "norm_label": "searchresultmergertests.swift" + }, + { + "label": "SearchResultMergerTests", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchResultMergerTests.swift", + "source_location": "L5", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchresultmergertests_searchresultmergertests", + "community": 40, + "norm_label": "searchresultmergertests" + }, + { + "label": ".makeResult()", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchResultMergerTests.swift", + "source_location": "L10", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchresultmergertests_searchresultmergertests_makeresult", + "community": 40, + "norm_label": ".makeresult()" + }, + { + "label": "String", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchresultmergertests_swift_string", + "community": 40, + "norm_label": "string" + }, + { + "label": "Bool", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchresultmergertests_swift_bool", + "community": 40, + "norm_label": "bool" + }, + { + "label": "SearchResult", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchresultmergertests_swift_searchresult", + "community": 40, + "norm_label": "searchresult" + }, + { + "label": ".deduplication()", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchResultMergerTests.swift", + "source_location": "L28", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchresultmergertests_searchresultmergertests_deduplication", + "community": 40, + "norm_label": ".deduplication()" + }, + { + "label": ".localPrecedence()", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchResultMergerTests.swift", + "source_location": "L38", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchresultmergertests_searchresultmergertests_localprecedence", + "community": 40, + "norm_label": ".localprecedence()" + }, + { + "label": ".mergesDifferentTypes()", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchResultMergerTests.swift", + "source_location": "L48", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchresultmergertests_searchresultmergertests_mergesdifferenttypes", + "community": 40, + "norm_label": ".mergesdifferenttypes()" + }, + { + "label": ".sortedByPubDate()", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchResultMergerTests.swift", + "source_location": "L58", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchresultmergertests_searchresultmergertests_sortedbypubdate", + "community": 40, + "norm_label": ".sortedbypubdate()" + }, + { + "label": ".relevanceSortPrioritizesScore()", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchResultMergerTests.swift", + "source_location": "L70", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchresultmergertests_searchresultmergertests_relevancesortprioritizesscore", + "community": 40, + "norm_label": ".relevancesortprioritizesscore()" + }, + { + "label": ".emptyMerge()", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchResultMergerTests.swift", + "source_location": "L82", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchresultmergertests_searchresultmergertests_emptymerge", + "community": 40, + "norm_label": ".emptymerge()" + }, + { + "label": "SearchViewModelTests.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchViewModelTests.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests", + "community": 18, + "norm_label": "searchviewmodeltests.swift" + }, + { + "label": "MockLocalSearchService", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchViewModelTests.swift", + "source_location": "L7", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_mocklocalsearchservice", + "community": 18, + "norm_label": "mocklocalsearchservice" + }, + { + "label": "SearchResult", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_swift_searchresult", + "community": 18, + "norm_label": "searchresult" + }, + { + "label": ".search()", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchViewModelTests.swift", + "source_location": "L11", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_mocklocalsearchservice_search", + "community": 18, + "norm_label": ".search()" + }, + { + "label": "ModelContext", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_swift_modelcontext", + "community": 18, + "norm_label": "modelcontext" + }, + { + "label": "MockRemoteSearchService", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchViewModelTests.swift", + "source_location": "L16", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_mockremotesearchservice", + "community": 18, + "norm_label": "mockremotesearchservice" + }, + { + "label": "Error", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_swift_error", + "community": 18, + "norm_label": "error" + }, + { + "label": ".search()", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchViewModelTests.swift", + "source_location": "L20", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_mockremotesearchservice_search", + "community": 18, + "norm_label": ".search()" + }, + { + "label": "String", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_swift_string", + "community": 18, + "norm_label": "string" + }, + { + "label": "Int", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_swift_int", + "community": 18, + "norm_label": "int" + }, + { + "label": "MockMerger", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchViewModelTests.swift", + "source_location": "L27", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_mockmerger", + "community": 18, + "norm_label": "mockmerger" + }, + { + "label": ".merge()", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchViewModelTests.swift", + "source_location": "L28", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_mockmerger_merge", + "community": 18, + "norm_label": ".merge()" + }, + { + "label": "makeResult()", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchViewModelTests.swift", + "source_location": "L33", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_makeresult", + "community": 18, + "norm_label": "makeresult()" + }, + { + "label": "SearchViewModelTests", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchViewModelTests.swift", + "source_location": "L50", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_searchviewmodeltests", + "community": 18, + "norm_label": "searchviewmodeltests" + }, + { + "label": ".makeViewModel()", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchViewModelTests.swift", + "source_location": "L54", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_searchviewmodeltests_makeviewmodel", + "community": 18, + "norm_label": ".makeviewmodel()" + }, + { + "label": ".waitForTask()", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchViewModelTests.swift", + "source_location": "L76", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_searchviewmodeltests_waitfortask", + "community": 18, + "norm_label": ".waitfortask()" + }, + { + "label": ".initialState()", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchViewModelTests.swift", + "source_location": "L82", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_searchviewmodeltests_initialstate", + "community": 18, + "norm_label": ".initialstate()" + }, + { + "label": ".emptySearchResetsToIdle()", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchViewModelTests.swift", + "source_location": "L90", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_searchviewmodeltests_emptysearchresetstoidle", + "community": 18, + "norm_label": ".emptysearchresetstoidle()" + }, + { + "label": ".clearSearchResetsState()", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchViewModelTests.swift", + "source_location": "L99", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_searchviewmodeltests_clearsearchresetsstate", + "community": 18, + "norm_label": ".clearsearchresetsstate()" + }, + { + "label": ".searchShowsLocalThenDone()", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchViewModelTests.swift", + "source_location": "L109", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_searchviewmodeltests_searchshowslocalthendone", + "community": 18, + "norm_label": ".searchshowslocalthendone()" + }, + { + "label": ".searchWithRemoteError()", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchViewModelTests.swift", + "source_location": "L123", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_searchviewmodeltests_searchwithremoteerror", + "community": 18, + "norm_label": ".searchwithremoteerror()" + }, + { + "label": ".searchMergesResults()", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchViewModelTests.swift", + "source_location": "L141", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_searchviewmodeltests_searchmergesresults", + "community": 18, + "norm_label": ".searchmergesresults()" + }, + { + "label": ".recentSearchesEmpty()", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchViewModelTests.swift", + "source_location": "L158", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_searchviewmodeltests_recentsearchesempty", + "community": 18, + "norm_label": ".recentsearchesempty()" + }, + { + "label": ".searchSavesToRecent()", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchViewModelTests.swift", + "source_location": "L164", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_searchviewmodeltests_searchsavestorecent", + "community": 18, + "norm_label": ".searchsavestorecent()" + }, + { + "label": ".clearRecentSearches()", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchViewModelTests.swift", + "source_location": "L176", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_searchviewmodeltests_clearrecentsearches", + "community": 18, + "norm_label": ".clearrecentsearches()" + }, + { + "label": ".removeSpecificRecentSearch()", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchViewModelTests.swift", + "source_location": "L189", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_searchviewmodeltests_removespecificrecentsearch", + "community": 18, + "norm_label": ".removespecificrecentsearch()" + }, + { + "label": ".rapidSearchesCancelPrevious()", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchViewModelTests.swift", + "source_location": "L214", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_searchviewmodeltests_rapidsearchescancelprevious", + "community": 18, + "norm_label": ".rapidsearchescancelprevious()" + }, + { + "label": ".searchTransitionsToTerminalStatus()", + "file_type": "code", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchViewModelTests.swift", + "source_location": "L230", + "_origin": "ast", + "id": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_searchviewmodeltests_searchtransitionstoterminalstatus", + "community": 18, + "norm_label": ".searchtransitionstoterminalstatus()" + }, + { + "label": "Package.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Package.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_package", + "community": 75, + "norm_label": "package.swift" + }, + { + "label": "Cache.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/Cache.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_cache", + "community": 64, + "norm_label": "cache.swift" + }, + { + "label": "Cache", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/Cache.swift", + "source_location": "L3", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_cache_cache", + "community": 64, + "norm_label": "cache" + }, + { + "label": "keepFavoritesAndStatus", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/Cache.swift", + "source_location": "L4", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_cache_cache_keepfavoritesandstatus", + "community": 64, + "norm_label": "keepfavoritesandstatus" + }, + { + "label": "cleanAll", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/Cache.swift", + "source_location": "L5", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_cache_cache_cleanall", + "community": 64, + "norm_label": "cleanall" + }, + { + "label": "ColorScheme.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/ColorScheme.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_colorscheme", + "community": 14, + "norm_label": "colorscheme.swift" + }, + { + "label": "ColorScheme", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/ColorScheme.swift", + "source_location": "L4", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_colorscheme_colorscheme", + "community": 5, + "norm_label": "colorscheme" + }, + { + "label": "Int", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "int", + "community": 5, + "norm_label": "int" + }, + { + "label": "light", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/ColorScheme.swift", + "source_location": "L5", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_colorscheme_colorscheme_light", + "community": 5, + "norm_label": "light" + }, + { + "label": "dark", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/ColorScheme.swift", + "source_location": "L6", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_colorscheme_colorscheme_dark", + "community": 5, + "norm_label": "dark" + }, + { + "label": "system", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/ColorScheme.swift", + "source_location": "L7", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_colorscheme_colorscheme_system", + "community": 5, + "norm_label": "system" + }, + { + "label": ".accessibilityText()", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/ColorScheme.swift", + "source_location": "L17", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_colorscheme_colorscheme_accessibilitytext", + "community": 5, + "norm_label": ".accessibilitytext()" + }, + { + "label": "Bool", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_colorscheme_swift_bool", + "community": 5, + "norm_label": "bool" + }, + { + "label": "String", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_colorscheme_swift_string", + "community": 5, + "norm_label": "string" + }, + { + "label": "CustomizationDB.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/Databases/CustomizationDB.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_databases_customizationdb", + "community": 14, + "norm_label": "customizationdb.swift" + }, + { + "label": "CustomizationDB", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/Databases/CustomizationDB.swift", + "source_location": "L5", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_databases_customizationdb_customizationdb", + "community": 44, + "norm_label": "customizationdb" + }, + { + "label": "UUID", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_databases_customizationdb_swift_uuid", + "community": 44, + "norm_label": "uuid" + }, + { + "label": "News", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_databases_customizationdb_swift_news", + "community": 44, + "norm_label": "news" + }, + { + "label": ".init()", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/Databases/CustomizationDB.swift", + "source_location": "L13", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_databases_customizationdb_customizationdb_init", + "community": 44, + "norm_label": ".init()" + }, + { + "label": "Bool", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_databases_customizationdb_swift_bool", + "community": 44, + "norm_label": "bool" + }, + { + "label": ".deduplicate()", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/Databases/CustomizationDB.swift", + "source_location": "L34", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_databases_customizationdb_customizationdb_deduplicate", + "community": 44, + "norm_label": ".deduplicate()" + }, + { + "label": "ModelContext", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_databases_customizationdb_swift_modelcontext", + "community": 44, + "norm_label": "modelcontext" + }, + { + "label": "SettingsDB.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/Databases/SettingsDB.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_databases_settingsdb", + "community": 14, + "norm_label": "settingsdb.swift" + }, + { + "label": "SettingsDB", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/Databases/SettingsDB.swift", + "source_location": "L5", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_databases_settingsdb_settingsdb", + "community": 0, + "norm_label": "settingsdb" + }, + { + "label": "UUID", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_databases_settingsdb_swift_uuid", + "community": 0, + "norm_label": "uuid" + }, + { + "label": "String", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_databases_settingsdb_swift_string", + "community": 0, + "norm_label": "string" + }, + { + "label": "Bool", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_databases_settingsdb_swift_bool", + "community": 0, + "norm_label": "bool" + }, + { + "label": ".init()", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/Databases/SettingsDB.swift", + "source_location": "L15", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_databases_settingsdb_settingsdb_init", + "community": 0, + "norm_label": ".init()" + }, + { + "label": ".deduplicate()", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/Databases/SettingsDB.swift", + "source_location": "L43", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_databases_settingsdb_settingsdb_deduplicate", + "community": 0, + "norm_label": ".deduplicate()" + }, + { + "label": "ModelContext", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_databases_settingsdb_swift_modelcontext", + "community": 0, + "norm_label": "modelcontext" + }, + { + "label": "IconType.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/IconType.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_icontype", + "community": 23, + "norm_label": "icontype.swift" + }, + { + "label": "IconType", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/IconType.swift", + "source_location": "L4", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_icontype_icontype", + "community": 23, + "norm_label": "icontype" + }, + { + "label": "normal", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/IconType.swift", + "source_location": "L5", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_icontype_icontype_normal", + "community": 23, + "norm_label": "normal" + }, + { + "label": "alternative", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/IconType.swift", + "source_location": "L6", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_icontype_icontype_alternative", + "community": 23, + "norm_label": "alternative" + }, + { + "label": ".accessibilityText()", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/IconType.swift", + "source_location": "L15", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_icontype_icontype_accessibilitytext", + "community": 23, + "norm_label": ".accessibilitytext()" + }, + { + "label": "Bool", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_icontype_swift_bool", + "community": 23, + "norm_label": "bool" + }, + { + "label": "PushPreferences.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/PushPreferences.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_pushpreferences", + "community": 70, + "norm_label": "pushpreferences.swift" + }, + { + "label": "PushPreferences", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/PushPreferences.swift", + "source_location": "L3", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_pushpreferences_pushpreferences", + "community": 70, + "norm_label": "pushpreferences" + }, + { + "label": "featured", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/PushPreferences.swift", + "source_location": "L4", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_pushpreferences_pushpreferences_featured", + "community": 70, + "norm_label": "featured" + }, + { + "label": "all", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/PushPreferences.swift", + "source_location": "L5", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_pushpreferences_pushpreferences_all", + "community": 70, + "norm_label": "all" + }, + { + "label": ".accessibilityText()", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/PushPreferences.swift", + "source_location": "L7", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_pushpreferences_pushpreferences_accessibilitytext", + "community": 70, + "norm_label": ".accessibilitytext()" + }, + { + "label": "Bool", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_pushpreferences_swift_bool", + "community": 70, + "norm_label": "bool" + }, + { + "label": "Subscription.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/Subscription.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_subscription", + "community": 0, + "norm_label": "subscription.swift" + }, + { + "label": "Subscription", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/Subscription.swift", + "source_location": "L3", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_subscription_subscription", + "community": 0, + "norm_label": "subscription" + }, + { + "label": "Bool", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_subscription_swift_bool", + "community": 0, + "norm_label": "bool" + }, + { + "label": "URLs.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/URLs.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_urls", + "community": 9, + "norm_label": "urls.swift" + }, + { + "label": "URLs", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/URLs.swift", + "source_location": "L3", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_urls_urls", + "community": 9, + "norm_label": "urls" + }, + { + "label": "AboutViewModel.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/AboutViewModel.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_aboutviewmodel", + "community": 48, + "norm_label": "aboutviewmodel.swift" + }, + { + "label": "MessageUI", + "file_type": "code", + "type": "module", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/AboutViewModel.swift", + "source_location": "L1", + "_origin": "ast", + "id": "messageui", + "community": 48, + "norm_label": "messageui" + }, + { + "label": "AboutViewModel", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/AboutViewModel.swift", + "source_location": "L3", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_aboutviewmodel_aboutviewmodel", + "community": 48, + "norm_label": "aboutviewmodel" + }, + { + "label": "ButtonAction", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/AboutViewModel.swift", + "source_location": "L4", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_aboutviewmodel_buttonaction", + "community": 48, + "norm_label": "buttonaction" + }, + { + "label": "terms", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/AboutViewModel.swift", + "source_location": "L5", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_aboutviewmodel_buttonaction_terms", + "community": 48, + "norm_label": "terms" + }, + { + "label": "privacy", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/AboutViewModel.swift", + "source_location": "L6", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_aboutviewmodel_buttonaction_privacy", + "community": 48, + "norm_label": "privacy" + }, + { + "label": "none", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/AboutViewModel.swift", + "source_location": "L7", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_aboutviewmodel_buttonaction_none", + "community": 48, + "norm_label": "none" + }, + { + "label": "String", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_aboutviewmodel_swift_string", + "community": 48, + "norm_label": "string" + }, + { + "label": ".composeMessage()", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/AboutViewModel.swift", + "source_location": "L30", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_aboutviewmodel_aboutviewmodel_composemessage", + "community": 48, + "norm_label": ".composemessage()" + }, + { + "label": "MailDelegate", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/AboutViewModel.swift", + "source_location": "L74", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_aboutviewmodel_maildelegate", + "community": 48, + "norm_label": "maildelegate" + }, + { + "label": "MFMailComposeViewControllerDelegate", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "mfmailcomposeviewcontrollerdelegate", + "community": 48, + "norm_label": "mfmailcomposeviewcontrollerdelegate" + }, + { + "label": ".mailComposeController()", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/AboutViewModel.swift", + "source_location": "L75", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_aboutviewmodel_maildelegate_mailcomposecontroller", + "community": 48, + "norm_label": ".mailcomposecontroller()" + }, + { + "label": "MFMailComposeViewController", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "mfmailcomposeviewcontroller", + "community": 48, + "norm_label": "mfmailcomposeviewcontroller" + }, + { + "label": "MFMailComposeResult", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "mfmailcomposeresult", + "community": 48, + "norm_label": "mfmailcomposeresult" + }, + { + "label": "Error", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_aboutviewmodel_swift_error", + "community": 48, + "norm_label": "error" + }, + { + "label": "AppearanceViewModel.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/AppearanceViewModel.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_appearanceviewmodel", + "community": 5, + "norm_label": "appearanceviewmodel.swift" + }, + { + "label": "AppearanceViewModel", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/AppearanceViewModel.swift", + "source_location": "L4", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_appearanceviewmodel_appearanceviewmodel", + "community": 5, + "norm_label": "appearanceviewmodel" + }, + { + "label": "Database", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_appearanceviewmodel_swift_database", + "community": 5, + "norm_label": "database" + }, + { + "label": ".get()", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/AppearanceViewModel.swift", + "source_location": "L11", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_appearanceviewmodel_appearanceviewmodel_get", + "community": 5, + "norm_label": ".get()" + }, + { + "label": ".change()", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/AppearanceViewModel.swift", + "source_location": "L16", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_appearanceviewmodel_appearanceviewmodel_change", + "community": 5, + "norm_label": ".change()" + }, + { + "label": "CustomizationViewModel.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/CustomizationViewModel.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_customizationviewmodel", + "community": 14, + "norm_label": "customizationviewmodel.swift" + }, + { + "label": "CustomizationViewModel", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/CustomizationViewModel.swift", + "source_location": "L5", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_customizationviewmodel_customizationviewmodel", + "community": 55, + "norm_label": "customizationviewmodel" + }, + { + "label": "Database", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_customizationviewmodel_swift_database", + "community": 55, + "norm_label": "database" + }, + { + "label": ".get()", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/CustomizationViewModel.swift", + "source_location": "L15", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_customizationviewmodel_customizationviewmodel_get", + "community": 55, + "norm_label": ".get()" + }, + { + "label": ".change()", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/CustomizationViewModel.swift", + "source_location": "L22", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_customizationviewmodel_customizationviewmodel_change", + "community": 55, + "norm_label": ".change()" + }, + { + "label": "News", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_customizationviewmodel_swift_news", + "community": 55, + "norm_label": "news" + }, + { + "label": "Database.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/Extensions/Database.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_extensions_database", + "community": 14, + "norm_label": "database.swift" + }, + { + "label": "Database", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/Extensions/Database.swift", + "source_location": "L8", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_extensions_database_database", + "community": 0, + "norm_label": "database" + }, + { + "label": ".update()", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/Extensions/Database.swift", + "source_location": "L20", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_extensions_database_database_update", + "community": 44, + "norm_label": ".update()" + }, + { + "label": "String", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_extensions_database_swift_string", + "community": 44, + "norm_label": "string" + }, + { + "label": "Bool", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_extensions_database_swift_bool", + "community": 44, + "norm_label": "bool" + }, + { + "label": "News", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_extensions_database_swift_news", + "community": 44, + "norm_label": "news" + }, + { + "label": "IconsViewModel.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/IconsViewModel.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_iconsviewmodel", + "community": 24, + "norm_label": "iconsviewmodel.swift" + }, + { + "label": "IconsViewModel", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/IconsViewModel.swift", + "source_location": "L4", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_iconsviewmodel_iconsviewmodel", + "community": 23, + "norm_label": "iconsviewmodel" + }, + { + "label": "Database", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_iconsviewmodel_swift_database", + "community": 23, + "norm_label": "database" + }, + { + "label": ".get()", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/IconsViewModel.swift", + "source_location": "L12", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_iconsviewmodel_iconsviewmodel_get", + "community": 23, + "norm_label": ".get()" + }, + { + "label": ".change()", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/IconsViewModel.swift", + "source_location": "L17", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_iconsviewmodel_iconsviewmodel_change", + "community": 23, + "norm_label": ".change()" + }, + { + "label": "PostsVisibilityViewModel.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/PostsVisibilityViewModel.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_postsvisibilityviewmodel", + "community": 14, + "norm_label": "postsvisibilityviewmodel.swift" + }, + { + "label": "PostsVisibilityViewModel", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/PostsVisibilityViewModel.swift", + "source_location": "L6", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_postsvisibilityviewmodel_postsvisibilityviewmodel", + "community": 64, + "norm_label": "postsvisibilityviewmodel" + }, + { + "label": "Database", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_postsvisibilityviewmodel_swift_database", + "community": 64, + "norm_label": "database" + }, + { + "label": "PersistentModel", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_postsvisibilityviewmodel_swift_persistentmodel", + "community": 64, + "norm_label": "persistentmodel" + }, + { + "label": ".set()", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/PostsVisibilityViewModel.swift", + "source_location": "L13", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_postsvisibilityviewmodel_postsvisibilityviewmodel_set", + "community": 64, + "norm_label": ".set()" + }, + { + "label": ".flush()", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/PostsVisibilityViewModel.swift", + "source_location": "L23", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_postsvisibilityviewmodel_postsvisibilityviewmodel_flush", + "community": 64, + "norm_label": ".flush()" + }, + { + "label": ".cleanAll()", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/PostsVisibilityViewModel.swift", + "source_location": "L33", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_postsvisibilityviewmodel_postsvisibilityviewmodel_cleanall", + "community": 64, + "norm_label": ".cleanall()" + }, + { + "label": ".keepFavoritesAndStatus()", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/PostsVisibilityViewModel.swift", + "source_location": "L42", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_postsvisibilityviewmodel_postsvisibilityviewmodel_keepfavoritesandstatus", + "community": 64, + "norm_label": ".keepfavoritesandstatus()" + }, + { + "label": "PushOptionsViewModel.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/PushOptionsViewModel.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_pushoptionsviewmodel", + "community": 14, + "norm_label": "pushoptionsviewmodel.swift" + }, + { + "label": "PushOptionsViewModel", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/PushOptionsViewModel.swift", + "source_location": "L5", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_pushoptionsviewmodel_pushoptionsviewmodel", + "community": 70, + "norm_label": "pushoptionsviewmodel" + }, + { + "label": "Database", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_pushoptionsviewmodel_swift_database", + "community": 70, + "norm_label": "database" + }, + { + "label": ".get()", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/PushOptionsViewModel.swift", + "source_location": "L12", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_pushoptionsviewmodel_pushoptionsviewmodel_get", + "community": 70, + "norm_label": ".get()" + }, + { + "label": ".change()", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/PushOptionsViewModel.swift", + "source_location": "L17", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_pushoptionsviewmodel_pushoptionsviewmodel_change", + "community": 70, + "norm_label": ".change()" + }, + { + "label": "ReadingPreferencesViewModel.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/ReadingPreferencesViewModel.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_readingpreferencesviewmodel", + "community": 14, + "norm_label": "readingpreferencesviewmodel.swift" + }, + { + "label": "ReadingPreferencesViewModel", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/ReadingPreferencesViewModel.swift", + "source_location": "L6", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_readingpreferencesviewmodel_readingpreferencesviewmodel", + "community": 96, + "norm_label": "readingpreferencesviewmodel" + }, + { + "label": "Bool", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_readingpreferencesviewmodel_swift_bool", + "community": 96, + "norm_label": "bool" + }, + { + "label": "Database", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_readingpreferencesviewmodel_swift_database", + "community": 96, + "norm_label": "database" + }, + { + "label": "PersistentModel", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_readingpreferencesviewmodel_swift_persistentmodel", + "community": 96, + "norm_label": "persistentmodel" + }, + { + "label": ".set()", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/ReadingPreferencesViewModel.swift", + "source_location": "L14", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_readingpreferencesviewmodel_readingpreferencesviewmodel_set", + "community": 96, + "norm_label": ".set()" + }, + { + "label": ".change()", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/ReadingPreferencesViewModel.swift", + "source_location": "L26", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_readingpreferencesviewmodel_readingpreferencesviewmodel_change", + "community": 96, + "norm_label": ".change()" + }, + { + "label": ".markAllAsRead()", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/ReadingPreferencesViewModel.swift", + "source_location": "L31", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_readingpreferencesviewmodel_readingpreferencesviewmodel_markallasread", + "community": 96, + "norm_label": ".markallasread()" + }, + { + "label": "SettingsViewModel.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/SettingsViewModel.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_settingsviewmodel", + "community": 14, + "norm_label": "settingsviewmodel.swift" + }, + { + "label": "SettingsViewModel", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/SettingsViewModel.swift", + "source_location": "L7", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_settingsviewmodel_settingsviewmodel", + "community": 0, + "norm_label": "settingsviewmodel" + }, + { + "label": "News", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_settingsviewmodel_swift_news", + "community": 0, + "norm_label": "news" + }, + { + "label": "Database", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_settingsviewmodel_swift_database", + "community": 0, + "norm_label": "database" + }, + { + "label": "PersistentModel", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_settingsviewmodel_swift_persistentmodel", + "community": 0, + "norm_label": "persistentmodel" + }, + { + "label": ".init()", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/SettingsViewModel.swift", + "source_location": "L31", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_settingsviewmodel_settingsviewmodel_init", + "community": 0, + "norm_label": ".init()" + }, + { + "label": ".updateTabs()", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/SettingsViewModel.swift", + "source_location": "L63", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_settingsviewmodel_settingsviewmodel_updatetabs", + "community": 0, + "norm_label": ".updatetabs()" + }, + { + "label": "Binding", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_settingsviewmodel_swift_binding", + "community": 0, + "norm_label": "binding" + }, + { + "label": ".updateSchema()", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/SettingsViewModel.swift", + "source_location": "L76", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_settingsviewmodel_settingsviewmodel_updateschema", + "community": 0, + "norm_label": ".updateschema()" + }, + { + "label": "SubscriptionViewModel.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/SubscriptionViewModel.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_subscriptionviewmodel", + "community": 24, + "norm_label": "subscriptionviewmodel.swift" + }, + { + "label": "InAppLibrary", + "file_type": "code", + "type": "module", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/SubscriptionViewModel.swift", + "source_location": "L3", + "_origin": "ast", + "id": "inapplibrary", + "community": 24, + "norm_label": "inapplibrary" + }, + { + "label": "os", + "file_type": "code", + "type": "module", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/SubscriptionViewModel.swift", + "source_location": "L5", + "_origin": "ast", + "id": "os", + "community": 24, + "norm_label": "os" + }, + { + "label": "SubscriptionViewModel", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/SubscriptionViewModel.swift", + "source_location": "L11", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_subscriptionviewmodel_subscriptionviewmodel", + "community": 12, + "norm_label": "subscriptionviewmodel" + }, + { + "label": "Status", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/SubscriptionViewModel.swift", + "source_location": "L14", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_subscriptionviewmodel_status", + "community": 12, + "norm_label": "status" + }, + { + "label": "idle", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/SubscriptionViewModel.swift", + "source_location": "L15", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_subscriptionviewmodel_status_idle", + "community": 12, + "norm_label": "idle" + }, + { + "label": "loading", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/SubscriptionViewModel.swift", + "source_location": "L16", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_subscriptionviewmodel_status_loading", + "community": 12, + "norm_label": "loading" + }, + { + "label": "purchasable", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/SubscriptionViewModel.swift", + "source_location": "L17", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_subscriptionviewmodel_status_purchasable", + "community": 12, + "norm_label": "purchasable" + }, + { + "label": "InAppProduct", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "inappproduct", + "community": 12, + "norm_label": "inappproduct" + }, + { + "label": "error", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/SubscriptionViewModel.swift", + "source_location": "L18", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_subscriptionviewmodel_status_error", + "community": 12, + "norm_label": "error" + }, + { + "label": "String", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_subscriptionviewmodel_swift_string", + "community": 12, + "norm_label": "string" + }, + { + "label": ".product()", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/SubscriptionViewModel.swift", + "source_location": "L20", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_subscriptionviewmodel_status_product", + "community": 12, + "norm_label": ".product()" + }, + { + "label": "Database", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_subscriptionviewmodel_swift_database", + "community": 12, + "norm_label": "database" + }, + { + "label": "AnalyticsManager", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_subscriptionviewmodel_swift_analyticsmanager", + "community": 12, + "norm_label": "analyticsmanager" + }, + { + "label": "InAppManager", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "inappmanager", + "community": 12, + "norm_label": "inappmanager" + }, + { + "label": "Task", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_subscriptionviewmodel_swift_task", + "community": 12, + "norm_label": "task" + }, + { + "label": "Void", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_subscriptionviewmodel_swift_void", + "community": 12, + "norm_label": "void" + }, + { + "label": "Never", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_subscriptionviewmodel_swift_never", + "community": 12, + "norm_label": "never" + }, + { + "label": ".init()", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/SubscriptionViewModel.swift", + "source_location": "L38", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_subscriptionviewmodel_subscriptionviewmodel_init", + "community": 12, + "norm_label": ".init()" + }, + { + "label": ".setupListeners()", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/SubscriptionViewModel.swift", + "source_location": "L43", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_subscriptionviewmodel_subscriptionviewmodel_setuplisteners", + "community": 12, + "norm_label": ".setuplisteners()" + }, + { + "label": ".get()", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/SubscriptionViewModel.swift", + "source_location": "L62", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_subscriptionviewmodel_subscriptionviewmodel_get", + "community": 12, + "norm_label": ".get()" + }, + { + "label": ".change()", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/SubscriptionViewModel.swift", + "source_location": "L71", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_subscriptionviewmodel_subscriptionviewmodel_change", + "community": 12, + "norm_label": ".change()" + }, + { + "label": "Bool", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_subscriptionviewmodel_swift_bool", + "community": 12, + "norm_label": "bool" + }, + { + "label": ".getPurchasableProducts()", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/SubscriptionViewModel.swift", + "source_location": "L81", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_subscriptionviewmodel_subscriptionviewmodel_getpurchasableproducts", + "community": 12, + "norm_label": ".getpurchasableproducts()" + }, + { + "label": ".restore()", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/SubscriptionViewModel.swift", + "source_location": "L93", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_subscriptionviewmodel_subscriptionviewmodel_restore", + "community": 12, + "norm_label": ".restore()" + }, + { + "label": ".purchase()", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/SubscriptionViewModel.swift", + "source_location": "L99", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_subscriptionviewmodel_subscriptionviewmodel_purchase", + "community": 12, + "norm_label": ".purchase()" + }, + { + "label": ".process()", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/SubscriptionViewModel.swift", + "source_location": "L117", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_subscriptionviewmodel_subscriptionviewmodel_process", + "community": 12, + "norm_label": ".process()" + }, + { + "label": "InAppStatus", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "inappstatus", + "community": 12, + "norm_label": "inappstatus" + }, + { + "label": "CustomProductViewStyle.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Extensions/CustomProductViewStyle.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_views_extensions_customproductviewstyle", + "community": 2, + "norm_label": "customproductviewstyle.swift" + }, + { + "label": "StoreKit", + "file_type": "code", + "type": "module", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/SubscriptionView.swift", + "source_location": "L3", + "_origin": "ast", + "id": "storekit", + "community": 2, + "norm_label": "storekit" + }, + { + "label": "CustomProductViewStyle", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Extensions/CustomProductViewStyle.swift", + "source_location": "L8", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_views_extensions_customproductviewstyle_customproductviewstyle", + "community": 12, + "norm_label": "customproductviewstyle" + }, + { + "label": "ProductViewStyle", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "productviewstyle", + "community": 12, + "norm_label": "productviewstyle" + }, + { + "label": "Themeable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_views_extensions_customproductviewstyle_swift_themeable", + "community": 12, + "norm_label": "themeable" + }, + { + "label": "Void", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_views_extensions_customproductviewstyle_swift_void", + "community": 12, + "norm_label": "void" + }, + { + "label": ".makeBody()", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Extensions/CustomProductViewStyle.swift", + "source_location": "L12", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_views_extensions_customproductviewstyle_customproductviewstyle_makebody", + "community": 12, + "norm_label": ".makebody()" + }, + { + "label": "Configuration", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "configuration", + "community": 12, + "norm_label": "configuration" + }, + { + "label": "View", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_views_extensions_customproductviewstyle_swift_view", + "community": 12, + "norm_label": "view" + }, + { + "label": ".content()", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Extensions/CustomProductViewStyle.swift", + "source_location": "L44", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_views_extensions_customproductviewstyle_customproductviewstyle_content", + "community": 12, + "norm_label": ".content()" + }, + { + "label": "String", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_views_extensions_customproductviewstyle_swift_string", + "community": 12, + "norm_label": "string" + }, + { + "label": "PlainButtonTextStyle.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Extensions/PlainButtonTextStyle.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_views_extensions_plainbuttontextstyle", + "community": 105, + "norm_label": "plainbuttontextstyle.swift" + }, + { + "label": "PlainButtonTextStyle", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Extensions/PlainButtonTextStyle.swift", + "source_location": "L3", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_views_extensions_plainbuttontextstyle_plainbuttontextstyle", + "community": 105, + "norm_label": "plainbuttontextstyle" + }, + { + "label": "Color", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_views_extensions_plainbuttontextstyle_swift_color", + "community": 105, + "norm_label": "color" + }, + { + "label": "Font", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_views_extensions_plainbuttontextstyle_swift_font", + "community": 105, + "norm_label": "font" + }, + { + "label": ".body()", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Extensions/PlainButtonTextStyle.swift", + "source_location": "L7", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_views_extensions_plainbuttontextstyle_plainbuttontextstyle_body", + "community": 105, + "norm_label": ".body()" + }, + { + "label": "Content", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_views_extensions_plainbuttontextstyle_swift_content", + "community": 105, + "norm_label": "content" + }, + { + "label": "View", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_views_extensions_plainbuttontextstyle_swift_view", + "community": 105, + "norm_label": "view" + }, + { + "label": "Text", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Extensions/PlainButtonTextStyle.swift", + "source_location": "L15", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_views_extensions_plainbuttontextstyle_text", + "community": 38, + "norm_label": "text" + }, + { + "label": ".plain()", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Extensions/PlainButtonTextStyle.swift", + "source_location": "L16", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_views_extensions_plainbuttontextstyle_text_plain", + "community": 105, + "norm_label": ".plain()" + }, + { + "label": "SettingsView.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/SettingsView.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_views_settingsview", + "community": 2, + "norm_label": "settingsview.swift" + }, + { + "label": "SettingsView", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/SettingsView.swift", + "source_location": "L7", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_views_settingsview_settingsview", + "community": 38, + "norm_label": "settingsview" + }, + { + "label": "AnalyticsManager", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_views_settingsview_swift_analyticsmanager", + "community": 114, + "norm_label": "analyticsmanager" + }, + { + "label": ".init()", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/SettingsView.swift", + "source_location": "L17", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_views_settingsview_settingsview_init", + "community": 38, + "norm_label": ".init()" + }, + { + "label": "ContentSheet", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/SettingsView.swift", + "source_location": "L113", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_views_settingsview_contentsheet", + "community": 114, + "norm_label": "contentsheet" + }, + { + "label": "WebPage", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_views_settingsview_swift_webpage", + "community": 114, + "norm_label": "webpage" + }, + { + "label": "String", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_views_settingsview_swift_string", + "community": 114, + "norm_label": "string" + }, + { + "label": "Void", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_views_settingsview_swift_void", + "community": 114, + "norm_label": "void" + }, + { + "label": "PatronLoginSheet", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/SettingsView.swift", + "source_location": "L161", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_views_settingsview_patronloginsheet", + "community": 114, + "norm_label": "patronloginsheet" + }, + { + "label": ".makeLoginPage()", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/SettingsView.swift", + "source_location": "L207", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_views_settingsview_patronloginsheet_makeloginpage", + "community": 114, + "norm_label": ".makeloginpage()" + }, + { + "label": "AboutView.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/AboutView.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_aboutview", + "community": 2, + "norm_label": "aboutview.swift" + }, + { + "label": "AboutView", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/AboutView.swift", + "source_location": "L6", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_aboutview_aboutview", + "community": 48, + "norm_label": "aboutview" + }, + { + "label": "AnalyticsManager", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_aboutview_swift_analyticsmanager", + "community": 48, + "norm_label": "analyticsmanager" + }, + { + "label": "AppearanceView.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/AppearanceView.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_appearanceview", + "community": 2, + "norm_label": "appearanceview.swift" + }, + { + "label": "AppearanceView", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/AppearanceView.swift", + "source_location": "L5", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_appearanceview_appearanceview", + "community": 5, + "norm_label": "appearanceview" + }, + { + "label": "AnalyticsManager", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_appearanceview_swift_analyticsmanager", + "community": 5, + "norm_label": "analyticsmanager" + }, + { + "label": "CustomSocialView.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/CustomSocialView.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_customsocialview", + "community": 2, + "norm_label": "customsocialview.swift" + }, + { + "label": "CustomSocialView", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/CustomSocialView.swift", + "source_location": "L5", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_customsocialview_customsocialview", + "community": 55, + "norm_label": "customsocialview" + }, + { + "label": "AnalyticsManager", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_customsocialview_swift_analyticsmanager", + "community": 55, + "norm_label": "analyticsmanager" + }, + { + "label": ".moveItems()", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/CustomSocialView.swift", + "source_location": "L47", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_customsocialview_customsocialview_moveitems", + "community": 55, + "norm_label": ".moveitems()" + }, + { + "label": "IndexSet", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_customsocialview_swift_indexset", + "community": 55, + "norm_label": "indexset" + }, + { + "label": "Int", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_customsocialview_swift_int", + "community": 55, + "norm_label": "int" + }, + { + "label": "CustomTabView.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/CustomTabView.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_customtabview", + "community": 2, + "norm_label": "customtabview.swift" + }, + { + "label": "CustomTabView", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/CustomTabView.swift", + "source_location": "L5", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_customtabview_customtabview", + "community": 55, + "norm_label": "customtabview" + }, + { + "label": "AnalyticsManager", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_customtabview_swift_analyticsmanager", + "community": 55, + "norm_label": "analyticsmanager" + }, + { + "label": ".moveItems()", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/CustomTabView.swift", + "source_location": "L49", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_customtabview_customtabview_moveitems", + "community": 55, + "norm_label": ".moveitems()" + }, + { + "label": "IndexSet", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_customtabview_swift_indexset", + "community": 55, + "norm_label": "indexset" + }, + { + "label": "Int", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_customtabview_swift_int", + "community": 55, + "norm_label": "int" + }, + { + "label": ".shouldDisableMove()", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/CustomTabView.swift", + "source_location": "L57", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_customtabview_customtabview_shoulddisablemove", + "community": 77, + "norm_label": ".shoulddisablemove()" + }, + { + "label": "Bool", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_customtabview_swift_bool", + "community": 77, + "norm_label": "bool" + }, + { + "label": "IconsView.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/IconsView.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_iconsview", + "community": 2, + "norm_label": "iconsview.swift" + }, + { + "label": "IconsView", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/IconsView.swift", + "source_location": "L5", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_iconsview_iconsview", + "community": 23, + "norm_label": "iconsview" + }, + { + "label": "AnalyticsManager", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_iconsview_swift_analyticsmanager", + "community": 23, + "norm_label": "analyticsmanager" + }, + { + "label": "PostsVisibilityView.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/PostsVisibilityView.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_postsvisibilityview", + "community": 2, + "norm_label": "postsvisibilityview.swift" + }, + { + "label": "PostsVisibilityView", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/PostsVisibilityView.swift", + "source_location": "L6", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_postsvisibilityview_postsvisibilityview", + "community": 64, + "norm_label": "postsvisibilityview" + }, + { + "label": "AnalyticsManager", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_postsvisibilityview_swift_analyticsmanager", + "community": 64, + "norm_label": "analyticsmanager" + }, + { + "label": "PushOptionsView.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/PushOptionsView.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_pushoptionsview", + "community": 2, + "norm_label": "pushoptionsview.swift" + }, + { + "label": "PushOptionsView", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/PushOptionsView.swift", + "source_location": "L6", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_pushoptionsview_pushoptionsview", + "community": 70, + "norm_label": "pushoptionsview" + }, + { + "label": "AnalyticsManager", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_pushoptionsview_swift_analyticsmanager", + "community": 70, + "norm_label": "analyticsmanager" + }, + { + "label": "ReadingPreferencesView.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/ReadingPreferencesView.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_readingpreferencesview", + "community": 2, + "norm_label": "readingpreferencesview.swift" + }, + { + "label": "ReadingPreferencesView", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/ReadingPreferencesView.swift", + "source_location": "L6", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_readingpreferencesview_readingpreferencesview", + "community": 96, + "norm_label": "readingpreferencesview" + }, + { + "label": "AnalyticsManager", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_readingpreferencesview_swift_analyticsmanager", + "community": 96, + "norm_label": "analyticsmanager" + }, + { + "label": "SubscriptionView.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/SubscriptionView.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_subscriptionview", + "community": 2, + "norm_label": "subscriptionview.swift" + }, + { + "label": "SubscriptionView", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/SubscriptionView.swift", + "source_location": "L8", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_subscriptionview_subscriptionview", + "community": 12, + "norm_label": "subscriptionview" + }, + { + "label": "AnalyticsManager", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_subscriptionview_swift_analyticsmanager", + "community": 12, + "norm_label": "analyticsmanager" + }, + { + "label": "String", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_subscriptionview_swift_string", + "community": 12, + "norm_label": "string" + }, + { + "label": "Bool", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_subscriptionview_swift_bool", + "community": 12, + "norm_label": "bool" + }, + { + "label": ".subscriptions()", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/SubscriptionView.swift", + "source_location": "L101", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_subscriptionview_subscriptionview_subscriptions", + "community": 12, + "norm_label": ".subscriptions()" + }, + { + "label": "DatabaseExtensionsTests.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/DatabaseExtensionsTests.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_tests_settingslibrarytests_databaseextensionstests", + "community": 9, + "norm_label": "databaseextensionstests.swift" + }, + { + "label": "SettingsLibrary", + "file_type": "code", + "type": "module", + "source_file": "MacMagazine/MacMagazine/MainApp/Sizecalss/MainView+tabbar.swift", + "source_location": "L6", + "_origin": "ast", + "id": "settingslibrary", + "community": 36, + "norm_label": "settingslibrary" + }, + { + "label": "DatabaseExtensionsTests", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/DatabaseExtensionsTests.swift", + "source_location": "L6", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_tests_settingslibrarytests_databaseextensionstests_databaseextensionstests", + "community": 0, + "norm_label": "databaseextensionstests" + }, + { + "label": ".settingsNilWhenEmpty()", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/DatabaseExtensionsTests.swift", + "source_location": "L12", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_tests_settingslibrarytests_databaseextensionstests_databaseextensionstests_settingsnilwhenempty", + "community": 0, + "norm_label": ".settingsnilwhenempty()" + }, + { + "label": ".settingsReturnFirstWhenSingle()", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/DatabaseExtensionsTests.swift", + "source_location": "L24", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_tests_settingslibrarytests_databaseextensionstests_databaseextensionstests_settingsreturnfirstwhensingle", + "community": 0, + "norm_label": ".settingsreturnfirstwhensingle()" + }, + { + "label": ".settingsDeleteDuplicates()", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/DatabaseExtensionsTests.swift", + "source_location": "L40", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_tests_settingslibrarytests_databaseextensionstests_databaseextensionstests_settingsdeleteduplicates", + "community": 0, + "norm_label": ".settingsdeleteduplicates()" + }, + { + "label": ".customizationNilWhenEmpty()", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/DatabaseExtensionsTests.swift", + "source_location": "L64", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_tests_settingslibrarytests_databaseextensionstests_databaseextensionstests_customizationnilwhenempty", + "community": 0, + "norm_label": ".customizationnilwhenempty()" + }, + { + "label": ".customizationReturnFirstWhenSingle()", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/DatabaseExtensionsTests.swift", + "source_location": "L76", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_tests_settingslibrarytests_databaseextensionstests_databaseextensionstests_customizationreturnfirstwhensingle", + "community": 0, + "norm_label": ".customizationreturnfirstwhensingle()" + }, + { + "label": ".customizationDeleteDuplicates()", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/DatabaseExtensionsTests.swift", + "source_location": "L92", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_tests_settingslibrarytests_databaseextensionstests_databaseextensionstests_customizationdeleteduplicates", + "community": 0, + "norm_label": ".customizationdeleteduplicates()" + }, + { + "label": ".updateIsPatraoTrueAdds30Days()", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/DatabaseExtensionsTests.swift", + "source_location": "L116", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_tests_settingslibrarytests_databaseextensionstests_databaseextensionstests_updateispatraotrueadds30days", + "community": 0, + "norm_label": ".updateispatraotrueadds30days()" + }, + { + "label": ".updateIsPatraoFalseSubtracts1Day()", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/DatabaseExtensionsTests.swift", + "source_location": "L139", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_tests_settingslibrarytests_databaseextensionstests_databaseextensionstests_updateispatraofalsesubtracts1day", + "community": 0, + "norm_label": ".updateispatraofalsesubtracts1day()" + }, + { + "label": ".updateIsPatraoUpdatesExisting()", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/DatabaseExtensionsTests.swift", + "source_location": "L162", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_tests_settingslibrarytests_databaseextensionstests_databaseextensionstests_updateispatraoupdatesexisting", + "community": 0, + "norm_label": ".updateispatraoupdatesexisting()" + }, + { + "label": ".updateModeInsertsWhenEmpty()", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/DatabaseExtensionsTests.swift", + "source_location": "L182", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_tests_settingslibrarytests_databaseextensionstests_databaseextensionstests_updatemodeinsertswhenempty", + "community": 0, + "norm_label": ".updatemodeinsertswhenempty()" + }, + { + "label": ".updateModeUpdatesExisting()", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/DatabaseExtensionsTests.swift", + "source_location": "L198", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_tests_settingslibrarytests_databaseextensionstests_databaseextensionstests_updatemodeupdatesexisting", + "community": 0, + "norm_label": ".updatemodeupdatesexisting()" + }, + { + "label": ".updateTabsInsertsWhenEmpty()", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/DatabaseExtensionsTests.swift", + "source_location": "L217", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_tests_settingslibrarytests_databaseextensionstests_databaseextensionstests_updatetabsinsertswhenempty", + "community": 0, + "norm_label": ".updatetabsinsertswhenempty()" + }, + { + "label": ".updateTabsUpdatesExisting()", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/DatabaseExtensionsTests.swift", + "source_location": "L233", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_tests_settingslibrarytests_databaseextensionstests_databaseextensionstests_updatetabsupdatesexisting", + "community": 0, + "norm_label": ".updatetabsupdatesexisting()" + }, + { + "label": ".updateAppIcon()", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/DatabaseExtensionsTests.swift", + "source_location": "L254", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_tests_settingslibrarytests_databaseextensionstests_databaseextensionstests_updateappicon", + "community": 0, + "norm_label": ".updateappicon()" + }, + { + "label": ".updateNotification()", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/DatabaseExtensionsTests.swift", + "source_location": "L267", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_tests_settingslibrarytests_databaseextensionstests_databaseextensionstests_updatenotification", + "community": 0, + "norm_label": ".updatenotification()" + }, + { + "label": ".updateExpirationDate()", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/DatabaseExtensionsTests.swift", + "source_location": "L280", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_tests_settingslibrarytests_databaseextensionstests_databaseextensionstests_updateexpirationdate", + "community": 0, + "norm_label": ".updateexpirationdate()" + }, + { + "label": ".updateSocial()", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/DatabaseExtensionsTests.swift", + "source_location": "L297", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_tests_settingslibrarytests_databaseextensionstests_databaseextensionstests_updatesocial", + "community": 0, + "norm_label": ".updatesocial()" + }, + { + "label": ".updateNews()", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/DatabaseExtensionsTests.swift", + "source_location": "L310", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_tests_settingslibrarytests_databaseextensionstests_databaseextensionstests_updatenews", + "community": 0, + "norm_label": ".updatenews()" + }, + { + "label": ".updateWithEmptyArrays()", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/DatabaseExtensionsTests.swift", + "source_location": "L325", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_tests_settingslibrarytests_databaseextensionstests_databaseextensionstests_updatewithemptyarrays", + "community": 0, + "norm_label": ".updatewithemptyarrays()" + }, + { + "label": ".multipleRapidUpdates()", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/DatabaseExtensionsTests.swift", + "source_location": "L342", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_tests_settingslibrarytests_databaseextensionstests_databaseextensionstests_multiplerapidupdates", + "community": 0, + "norm_label": ".multiplerapidupdates()" + }, + { + "label": ".preserveOtherFieldsOnUpdate()", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/DatabaseExtensionsTests.swift", + "source_location": "L358", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_tests_settingslibrarytests_databaseextensionstests_databaseextensionstests_preserveotherfieldsonupdate", + "community": 0, + "norm_label": ".preserveotherfieldsonupdate()" + }, + { + "label": "SettingsViewModelTests.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SettingsViewModelTests.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_tests_settingslibrarytests_settingsviewmodeltests", + "community": 9, + "norm_label": "settingsviewmodeltests.swift" + }, + { + "label": "SettingsViewModelTests", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SettingsViewModelTests.swift", + "source_location": "L7", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_tests_settingslibrarytests_settingsviewmodeltests_settingsviewmodeltests", + "community": 0, + "norm_label": "settingsviewmodeltests" + }, + { + "label": ".initialColorSchemaIsNil()", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SettingsViewModelTests.swift", + "source_location": "L13", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_tests_settingslibrarytests_settingsviewmodeltests_settingsviewmodeltests_initialcolorschemaisnil", + "community": 0, + "norm_label": ".initialcolorschemaisnil()" + }, + { + "label": ".initialSocialOptionsAreAll()", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SettingsViewModelTests.swift", + "source_location": "L24", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_tests_settingslibrarytests_settingsviewmodeltests_settingsviewmodeltests_initialsocialoptionsareall", + "community": 0, + "norm_label": ".initialsocialoptionsareall()" + }, + { + "label": ".initialNewsOptionsAreAll()", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SettingsViewModelTests.swift", + "source_location": "L35", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_tests_settingslibrarytests_settingsviewmodeltests_settingsviewmodeltests_initialnewsoptionsareall", + "community": 0, + "norm_label": ".initialnewsoptionsareall()" + }, + { + "label": ".initialIsLiveIsFalse()", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SettingsViewModelTests.swift", + "source_location": "L46", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_tests_settingslibrarytests_settingsviewmodeltests_settingsviewmodeltests_initialisliveisfalse", + "community": 0, + "norm_label": ".initialisliveisfalse()" + }, + { + "label": ".initialRemoveAdsIsFalse()", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SettingsViewModelTests.swift", + "source_location": "L57", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_tests_settingslibrarytests_settingsviewmodeltests_settingsviewmodeltests_initialremoveadsisfalse", + "community": 0, + "norm_label": ".initialremoveadsisfalse()" + }, + { + "label": ".tabsFilterLiveWhenNotLive()", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SettingsViewModelTests.swift", + "source_location": "L70", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_tests_settingslibrarytests_settingsviewmodeltests_settingsviewmodeltests_tabsfilterlivewhennotlive", + "community": 0, + "norm_label": ".tabsfilterlivewhennotlive()" + }, + { + "label": ".tabsIncludeLiveWhenLive()", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SettingsViewModelTests.swift", + "source_location": "L83", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_tests_settingslibrarytests_settingsviewmodeltests_settingsviewmodeltests_tabsincludelivewhenlive", + "community": 0, + "norm_label": ".tabsincludelivewhenlive()" + }, + { + "label": ".tabsAlwaysIncludeNonLive()", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SettingsViewModelTests.swift", + "source_location": "L96", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_tests_settingslibrarytests_settingsviewmodeltests_settingsviewmodeltests_tabsalwaysincludenonlive", + "community": 0, + "norm_label": ".tabsalwaysincludenonlive()" + }, + { + "label": ".tabsCountNotLive()", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SettingsViewModelTests.swift", + "source_location": "L117", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_tests_settingslibrarytests_settingsviewmodeltests_settingsviewmodeltests_tabscountnotlive", + "community": 0, + "norm_label": ".tabscountnotlive()" + }, + { + "label": ".tabsCountLive()", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SettingsViewModelTests.swift", + "source_location": "L130", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_tests_settingslibrarytests_settingsviewmodeltests_settingsviewmodeltests_tabscountlive", + "community": 0, + "norm_label": ".tabscountlive()" + }, + { + "label": ".lightColorSchema()", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SettingsViewModelTests.swift", + "source_location": "L145", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_tests_settingslibrarytests_settingsviewmodeltests_settingsviewmodeltests_lightcolorschema", + "community": 0, + "norm_label": ".lightcolorschema()" + }, + { + "label": ".darkColorSchema()", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SettingsViewModelTests.swift", + "source_location": "L158", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_tests_settingslibrarytests_settingsviewmodeltests_settingsviewmodeltests_darkcolorschema", + "community": 0, + "norm_label": ".darkcolorschema()" + }, + { + "label": ".systemColorSchema()", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SettingsViewModelTests.swift", + "source_location": "L171", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_tests_settingslibrarytests_settingsviewmodeltests_settingsviewmodeltests_systemcolorschema", + "community": 0, + "norm_label": ".systemcolorschema()" + }, + { + "label": ".updateSocialOptions()", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SettingsViewModelTests.swift", + "source_location": "L186", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_tests_settingslibrarytests_settingsviewmodeltests_settingsviewmodeltests_updatesocialoptions", + "community": 0, + "norm_label": ".updatesocialoptions()" + }, + { + "label": ".emptySocialOptions()", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SettingsViewModelTests.swift", + "source_location": "L200", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_tests_settingslibrarytests_settingsviewmodeltests_settingsviewmodeltests_emptysocialoptions", + "community": 0, + "norm_label": ".emptysocialoptions()" + }, + { + "label": ".updateNewsOptions()", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SettingsViewModelTests.swift", + "source_location": "L215", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_tests_settingslibrarytests_settingsviewmodeltests_settingsviewmodeltests_updatenewsoptions", + "community": 0, + "norm_label": ".updatenewsoptions()" + }, + { + "label": ".emptyNewsOptions()", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SettingsViewModelTests.swift", + "source_location": "L229", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_tests_settingslibrarytests_settingsviewmodeltests_settingsviewmodeltests_emptynewsoptions", + "community": 0, + "norm_label": ".emptynewsoptions()" + }, + { + "label": ".updateRemoveAds()", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SettingsViewModelTests.swift", + "source_location": "L244", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_tests_settingslibrarytests_settingsviewmodeltests_settingsviewmodeltests_updateremoveads", + "community": 0, + "norm_label": ".updateremoveads()" + }, + { + "label": ".updateIsLive()", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SettingsViewModelTests.swift", + "source_location": "L259", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_tests_settingslibrarytests_settingsviewmodeltests_settingsviewmodeltests_updateislive", + "community": 0, + "norm_label": ".updateislive()" + }, + { + "label": ".liveStatusAffectsTabs()", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SettingsViewModelTests.swift", + "source_location": "L272", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_tests_settingslibrarytests_settingsviewmodeltests_settingsviewmodeltests_livestatusaffectstabs", + "community": 0, + "norm_label": ".livestatusaffectstabs()" + }, + { + "label": "SubscriptionTests.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SubscriptionTests.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_tests_settingslibrarytests_subscriptiontests", + "community": 9, + "norm_label": "subscriptiontests.swift" + }, + { + "label": "SubscriptionTests", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SubscriptionTests.swift", + "source_location": "L5", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_tests_settingslibrarytests_subscriptiontests_subscriptiontests", + "community": 0, + "norm_label": "subscriptiontests" + }, + { + "label": ".validWhenFutureDate()", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SubscriptionTests.swift", + "source_location": "L10", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_tests_settingslibrarytests_subscriptiontests_subscriptiontests_validwhenfuturedate", + "community": 0, + "norm_label": ".validwhenfuturedate()" + }, + { + "label": ".invalidWhenPastDate()", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SubscriptionTests.swift", + "source_location": "L20", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_tests_settingslibrarytests_subscriptiontests_subscriptiontests_invalidwhenpastdate", + "community": 0, + "norm_label": ".invalidwhenpastdate()" + }, + { + "label": ".invalidAtExactExpirationTime()", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SubscriptionTests.swift", + "source_location": "L30", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_tests_settingslibrarytests_subscriptiontests_subscriptiontests_invalidatexactexpirationtime", + "community": 0, + "norm_label": ".invalidatexactexpirationtime()" + }, + { + "label": ".validOneSecondBeforeExpiration()", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SubscriptionTests.swift", + "source_location": "L41", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_tests_settingslibrarytests_subscriptiontests_subscriptiontests_validonesecondbeforeexpiration", + "community": 0, + "norm_label": ".validonesecondbeforeexpiration()" + }, + { + "label": ".invalidOneSecondAfterExpiration()", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SubscriptionTests.swift", + "source_location": "L51", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_tests_settingslibrarytests_subscriptiontests_subscriptiontests_invalidonesecondafterexpiration", + "community": 0, + "norm_label": ".invalidonesecondafterexpiration()" + }, + { + "label": ".validWithDistantFuture()", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SubscriptionTests.swift", + "source_location": "L61", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_tests_settingslibrarytests_subscriptiontests_subscriptiontests_validwithdistantfuture", + "community": 0, + "norm_label": ".validwithdistantfuture()" + }, + { + "label": ".invalidWithDistantPast()", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SubscriptionTests.swift", + "source_location": "L71", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_tests_settingslibrarytests_subscriptiontests_subscriptiontests_invalidwithdistantpast", + "community": 0, + "norm_label": ".invalidwithdistantpast()" + }, + { + "label": ".removeAdsWhenPatraoTrue()", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SubscriptionTests.swift", + "source_location": "L83", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_tests_settingslibrarytests_subscriptiontests_subscriptiontests_removeadswhenpatraotrue", + "community": 0, + "norm_label": ".removeadswhenpatraotrue()" + }, + { + "label": ".removeAdsWhenValidSubscription()", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SubscriptionTests.swift", + "source_location": "L93", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_tests_settingslibrarytests_subscriptiontests_subscriptiontests_removeadswhenvalidsubscription", + "community": 0, + "norm_label": ".removeadswhenvalidsubscription()" + }, + { + "label": ".removeAdsWhenBothTrue()", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SubscriptionTests.swift", + "source_location": "L103", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_tests_settingslibrarytests_subscriptiontests_subscriptiontests_removeadswhenbothtrue", + "community": 0, + "norm_label": ".removeadswhenbothtrue()" + }, + { + "label": ".noRemoveAdsWhenBothFalse()", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SubscriptionTests.swift", + "source_location": "L113", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_tests_settingslibrarytests_subscriptiontests_subscriptiontests_noremoveadswhenbothfalse", + "community": 0, + "norm_label": ".noremoveadswhenbothfalse()" + }, + { + "label": ".removeAdsPatraoWithExpired()", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SubscriptionTests.swift", + "source_location": "L123", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_tests_settingslibrarytests_subscriptiontests_subscriptiontests_removeadspatraowithexpired", + "community": 0, + "norm_label": ".removeadspatraowithexpired()" + }, + { + "label": ".removeAdsValidWithoutPatrao()", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SubscriptionTests.swift", + "source_location": "L133", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_tests_settingslibrarytests_subscriptiontests_subscriptiontests_removeadsvalidwithoutpatrao", + "community": 0, + "norm_label": ".removeadsvalidwithoutpatrao()" + }, + { + "label": ".codableConformance()", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SubscriptionTests.swift", + "source_location": "L145", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_tests_settingslibrarytests_subscriptiontests_subscriptiontests_codableconformance", + "community": 0, + "norm_label": ".codableconformance()" + }, + { + "label": ".handleMaximumDate()", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SubscriptionTests.swift", + "source_location": "L166", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_tests_settingslibrarytests_subscriptiontests_subscriptiontests_handlemaximumdate", + "community": 0, + "norm_label": ".handlemaximumdate()" + }, + { + "label": ".handleMinimumDate()", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SubscriptionTests.swift", + "source_location": "L177", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_tests_settingslibrarytests_subscriptiontests_subscriptiontests_handleminimumdate", + "community": 0, + "norm_label": ".handleminimumdate()" + }, + { + "label": ".typicalMonthlySubscription()", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SubscriptionTests.swift", + "source_location": "L188", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_tests_settingslibrarytests_subscriptiontests_subscriptiontests_typicalmonthlysubscription", + "community": 0, + "norm_label": ".typicalmonthlysubscription()" + }, + { + "label": ".typicalYearlySubscription()", + "file_type": "code", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SubscriptionTests.swift", + "source_location": "L199", + "_origin": "ast", + "id": "macmagazine_features_settingslibrary_tests_settingslibrarytests_subscriptiontests_subscriptiontests_typicalyearlysubscription", + "community": 0, + "norm_label": ".typicalyearlysubscription()" + }, + { + "label": "Package.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/VideosLibrary/Package.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_videoslibrary_package", + "community": 75, + "norm_label": "package.swift" + }, + { + "label": "AdaptiveVideoCard.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/Card/AdaptiveVideoCard.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_videoslibrary_sources_videos_card_adaptivevideocard", + "community": 2, + "norm_label": "adaptivevideocard.swift" + }, + { + "label": "AdaptiveVideoCard", + "file_type": "code", + "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/Card/AdaptiveVideoCard.swift", + "source_location": "L8", + "_origin": "ast", + "id": "macmagazine_features_videoslibrary_sources_videos_card_adaptivevideocard_adaptivevideocard", + "community": 66, + "norm_label": "adaptivevideocard" + }, + { + "label": "VideoCard", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "videocard", + "community": 66, + "norm_label": "videocard" + }, + { + "label": "CardLabel", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "cardlabel", + "community": 66, + "norm_label": "cardlabel" + }, + { + "label": "CardButton", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "cardbutton", + "community": 66, + "norm_label": "cardbutton" + }, + { + "label": "ModelContext", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_videoslibrary_sources_videos_card_adaptivevideocard_swift_modelcontext", + "community": 66, + "norm_label": "modelcontext" + }, + { + "label": "AnalyticsManager", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_videoslibrary_sources_videos_card_adaptivevideocard_swift_analyticsmanager", + "community": 66, + "norm_label": "analyticsmanager" + }, + { + "label": ".init()", + "file_type": "code", + "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/Card/AdaptiveVideoCard.swift", + "source_location": "L16", + "_origin": "ast", + "id": "macmagazine_features_videoslibrary_sources_videos_card_adaptivevideocard_adaptivevideocard_init", + "community": 66, + "norm_label": ".init()" + }, + { + "label": ".makeBody()", + "file_type": "code", + "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/Card/AdaptiveVideoCard.swift", + "source_location": "L26", + "_origin": "ast", + "id": "macmagazine_features_videoslibrary_sources_videos_card_adaptivevideocard_adaptivevideocard_makebody", + "community": 66, + "norm_label": ".makebody()" + }, + { + "label": "VideoDB", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_videoslibrary_sources_videos_card_adaptivevideocard_swift_videodb", + "community": 66, + "norm_label": "videodb" + }, + { + "label": "View", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_videoslibrary_sources_videos_card_adaptivevideocard_swift_view", + "community": 66, + "norm_label": "view" + }, + { + "label": "AdaptiveBody", + "file_type": "code", + "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/Card/AdaptiveVideoCard.swift", + "source_location": "L30", + "_origin": "ast", + "id": "macmagazine_features_videoslibrary_sources_videos_card_adaptivevideocard_adaptivebody", + "community": 66, + "norm_label": "adaptivebody" + }, + { + "label": "MMVideoDBPreview", + "file_type": "code", + "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/Card/AdaptiveVideoCard.swift", + "source_location": "L53", + "_origin": "ast", + "id": "macmagazine_features_videoslibrary_sources_videos_card_adaptivevideocard_mmvideodbpreview", + "community": 66, + "norm_label": "mmvideodbpreview" + }, + { + "label": "VideoDBExtensions.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/Model/VideoDBExtensions.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_videoslibrary_sources_videos_model_videodbextensions", + "community": 2, + "norm_label": "videodbextensions.swift" + }, + { + "label": "VideoDB", + "file_type": "code", + "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/Model/VideoDBExtensions.swift", + "source_location": "L8", + "_origin": "ast", + "id": "macmagazine_features_videoslibrary_sources_videos_model_videodbextensions_videodb", + "community": 115, + "norm_label": "videodb" + }, + { + "label": "String", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_videoslibrary_sources_videos_model_videodbextensions_swift_string", + "community": 115, + "norm_label": "string" + }, + { + "label": ".toCardContent()", + "file_type": "code", + "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/Model/VideoDBExtensions.swift", + "source_location": "L13", + "_origin": "ast", + "id": "macmagazine_features_videoslibrary_sources_videos_model_videodbextensions_videodb_tocardcontent", + "community": 115, + "norm_label": ".tocardcontent()" + }, + { + "label": "ModelContext", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_videoslibrary_sources_videos_model_videodbextensions_swift_modelcontext", + "community": 115, + "norm_label": "modelcontext" + }, + { + "label": "AnalyticsManager", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_videoslibrary_sources_videos_model_videodbextensions_swift_analyticsmanager", + "community": 115, + "norm_label": "analyticsmanager" + }, + { + "label": ".deleteNonFavorites()", + "file_type": "code", + "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/Model/VideoDBExtensions.swift", + "source_location": "L45", + "_origin": "ast", + "id": "macmagazine_features_videoslibrary_sources_videos_model_videodbextensions_videodb_deletenonfavorites", + "community": 115, + "norm_label": ".deletenonfavorites()" + }, + { + "label": ".deduplicate()", + "file_type": "code", + "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/Model/VideoDBExtensions.swift", + "source_location": "L55", + "_origin": "ast", + "id": "macmagazine_features_videoslibrary_sources_videos_model_videodbextensions_videodb_deduplicate", + "community": 115, + "norm_label": ".deduplicate()" + }, + { + "label": "VideosView.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/VideosView.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_videoslibrary_sources_videos_videosview", + "community": 2, + "norm_label": "videosview.swift" + }, + { + "label": "VideosView", + "file_type": "code", + "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/VideosView.swift", + "source_location": "L8", + "_origin": "ast", + "id": "macmagazine_features_videoslibrary_sources_videos_videosview_videosview", + "community": 106, + "norm_label": "videosview" + }, + { + "label": "AnalyticsManager", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_videoslibrary_sources_videos_videosview_swift_analyticsmanager", + "community": 106, + "norm_label": "analyticsmanager" + }, + { + "label": "String", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_videoslibrary_sources_videos_videosview_swift_string", + "community": 106, + "norm_label": "string" + }, + { + "label": "Bool", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_videoslibrary_sources_videos_videosview_swift_bool", + "community": 106, + "norm_label": "bool" + }, + { + "label": "ScrollPosition", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_videoslibrary_sources_videos_videosview_swift_scrollposition", + "community": 106, + "norm_label": "scrollposition" + }, + { + "label": ".init()", + "file_type": "code", + "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/VideosView.swift", + "source_location": "L16", + "_origin": "ast", + "id": "macmagazine_features_videoslibrary_sources_videos_videosview_videosview_init", + "community": 106, + "norm_label": ".init()" + }, + { + "label": "Database", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_videoslibrary_sources_videos_videosview_swift_database", + "community": 106, + "norm_label": "database" + }, + { + "label": "Binding", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_videoslibrary_sources_videos_videosview_swift_binding", + "community": 106, + "norm_label": "binding" + }, + { + "label": "VideosViewModel.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/VideosViewModel.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_videoslibrary_sources_videos_videosviewmodel", + "community": 14, + "norm_label": "videosviewmodel.swift" + }, + { + "label": "VideosViewModel", + "file_type": "code", + "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/VideosViewModel.swift", + "source_location": "L8", + "_origin": "ast", + "id": "macmagazine_features_videoslibrary_sources_videos_videosviewmodel_videosviewmodel", + "community": 31, + "norm_label": "videosviewmodel" + }, + { + "label": "Options", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_videoslibrary_sources_videos_videosviewmodel_swift_options", + "community": 31, + "norm_label": "options" + }, + { + "label": "APIStatus", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_videoslibrary_sources_videos_videosviewmodel_swift_apistatus", + "community": 31, + "norm_label": "apistatus" + }, + { + "label": "Options", + "file_type": "code", + "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/VideosViewModel.swift", + "source_location": "L13", + "_origin": "ast", + "id": "macmagazine_features_videoslibrary_sources_videos_videosviewmodel_options", + "community": 28, + "norm_label": "options" + }, + { + "label": "home", + "file_type": "code", + "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/VideosViewModel.swift", + "source_location": "L14", + "_origin": "ast", + "id": "macmagazine_features_videoslibrary_sources_videos_videosviewmodel_options_home", + "community": 28, + "norm_label": "home" + }, + { + "label": "search", + "file_type": "code", + "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/VideosViewModel.swift", + "source_location": "L15", + "_origin": "ast", + "id": "macmagazine_features_videoslibrary_sources_videos_videosviewmodel_options_search", + "community": 28, + "norm_label": "search" + }, + { + "label": "String", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_videoslibrary_sources_videos_videosviewmodel_swift_string", + "community": 28, + "norm_label": "string" + }, + { + "label": "Database", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_videoslibrary_sources_videos_videosviewmodel_swift_database", + "community": 31, + "norm_label": "database" + }, + { + "label": "NetworkMockData", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_videoslibrary_sources_videos_videosviewmodel_swift_networkmockdata", + "community": 31, + "norm_label": "networkmockdata" + }, + { + "label": "YouTubeAPI", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_videoslibrary_sources_videos_videosviewmodel_swift_youtubeapi", + "community": 31, + "norm_label": "youtubeapi" + }, + { + "label": "ModelContext", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_features_videoslibrary_sources_videos_videosviewmodel_swift_modelcontext", + "community": 31, + "norm_label": "modelcontext" + }, + { + "label": ".init()", + "file_type": "code", + "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/VideosViewModel.swift", + "source_location": "L33", + "_origin": "ast", + "id": "macmagazine_features_videoslibrary_sources_videos_videosviewmodel_videosviewmodel_init", + "community": 31, + "norm_label": ".init()" + }, + { + "label": "VideosViewModelTests.swift", + "file_type": "code", + "source_file": "MacMagazine/Features/VideosLibrary/Tests/VideosLibraryTests/VideosViewModelTests.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_features_videoslibrary_tests_videoslibrarytests_videosviewmodeltests", + "community": 36, + "norm_label": "videosviewmodeltests.swift" + }, + { + "label": "VideosViewModelTests", + "file_type": "code", + "source_file": "MacMagazine/Features/VideosLibrary/Tests/VideosLibraryTests/VideosViewModelTests.swift", + "source_location": "L7", + "_origin": "ast", + "id": "macmagazine_features_videoslibrary_tests_videoslibrarytests_videosviewmodeltests_videosviewmodeltests", + "community": 31, + "norm_label": "videosviewmodeltests" + }, + { + "label": ".initialOptionIsHome()", + "file_type": "code", + "source_file": "MacMagazine/Features/VideosLibrary/Tests/VideosLibraryTests/VideosViewModelTests.swift", + "source_location": "L13", + "_origin": "ast", + "id": "macmagazine_features_videoslibrary_tests_videoslibrarytests_videosviewmodeltests_videosviewmodeltests_initialoptionishome", + "community": 31, + "norm_label": ".initialoptionishome()" + }, + { + "label": ".initialStatusIsLoading()", + "file_type": "code", + "source_file": "MacMagazine/Features/VideosLibrary/Tests/VideosLibraryTests/VideosViewModelTests.swift", + "source_location": "L21", + "_origin": "ast", + "id": "macmagazine_features_videoslibrary_tests_videoslibrarytests_videosviewmodeltests_videosviewmodeltests_initialstatusisloading", + "community": 31, + "norm_label": ".initialstatusisloading()" + }, + { + "label": ".supportsSearchOption()", + "file_type": "code", + "source_file": "MacMagazine/Features/VideosLibrary/Tests/VideosLibraryTests/VideosViewModelTests.swift", + "source_location": "L31", + "_origin": "ast", + "id": "macmagazine_features_videoslibrary_tests_videoslibrarytests_videosviewmodeltests_videosviewmodeltests_supportssearchoption", + "community": 31, + "norm_label": ".supportssearchoption()" + }, + { + "label": ".supportsEmptySearchText()", + "file_type": "code", + "source_file": "MacMagazine/Features/VideosLibrary/Tests/VideosLibraryTests/VideosViewModelTests.swift", + "source_location": "L45", + "_origin": "ast", + "id": "macmagazine_features_videoslibrary_tests_videoslibrarytests_videosviewmodeltests_videosviewmodeltests_supportsemptysearchtext", + "community": 31, + "norm_label": ".supportsemptysearchtext()" + }, + { + "label": ".transitionBetweenOptions()", + "file_type": "code", + "source_file": "MacMagazine/Features/VideosLibrary/Tests/VideosLibraryTests/VideosViewModelTests.swift", + "source_location": "L59", + "_origin": "ast", + "id": "macmagazine_features_videoslibrary_tests_videoslibrarytests_videosviewmodeltests_videosviewmodeltests_transitionbetweenoptions", + "community": 31, + "norm_label": ".transitionbetweenoptions()" + }, + { + "label": ".optionsEquatable()", + "file_type": "code", + "source_file": "MacMagazine/Features/VideosLibrary/Tests/VideosLibraryTests/VideosViewModelTests.swift", + "source_location": "L77", + "_origin": "ast", + "id": "macmagazine_features_videoslibrary_tests_videoslibrarytests_videosviewmodeltests_videosviewmodeltests_optionsequatable", + "community": 31, + "norm_label": ".optionsequatable()" + }, + { + "label": ".updateStatus()", + "file_type": "code", + "source_file": "MacMagazine/Features/VideosLibrary/Tests/VideosLibraryTests/VideosViewModelTests.swift", + "source_location": "L87", + "_origin": "ast", + "id": "macmagazine_features_videoslibrary_tests_videoslibrarytests_videosviewmodeltests_videosviewmodeltests_updatestatus", + "community": 31, + "norm_label": ".updatestatus()" + }, + { + "label": ".supportsIdleStatus()", + "file_type": "code", + "source_file": "MacMagazine/Features/VideosLibrary/Tests/VideosLibraryTests/VideosViewModelTests.swift", + "source_location": "L97", + "_origin": "ast", + "id": "macmagazine_features_videoslibrary_tests_videoslibrarytests_videosviewmodeltests_videosviewmodeltests_supportsidlestatus", + "community": 31, + "norm_label": ".supportsidlestatus()" + }, + { + "label": ".supportsErrorStatus()", + "file_type": "code", + "source_file": "MacMagazine/Features/VideosLibrary/Tests/VideosLibraryTests/VideosViewModelTests.swift", + "source_location": "L107", + "_origin": "ast", + "id": "macmagazine_features_videoslibrary_tests_videoslibrarytests_videosviewmodeltests_videosviewmodeltests_supportserrorstatus", + "community": 31, + "norm_label": ".supportserrorstatus()" + }, + { + "label": ".specialCharactersInSearch()", + "file_type": "code", + "source_file": "MacMagazine/Features/VideosLibrary/Tests/VideosLibraryTests/VideosViewModelTests.swift", + "source_location": "L123", + "_origin": "ast", + "id": "macmagazine_features_videoslibrary_tests_videoslibrarytests_videosviewmodeltests_videosviewmodeltests_specialcharactersinsearch", + "community": 31, + "norm_label": ".specialcharactersinsearch()" + }, + { + "label": ".unicodeInSearch()", + "file_type": "code", + "source_file": "MacMagazine/Features/VideosLibrary/Tests/VideosLibraryTests/VideosViewModelTests.swift", + "source_location": "L137", + "_origin": "ast", + "id": "macmagazine_features_videoslibrary_tests_videoslibrarytests_videosviewmodeltests_videosviewmodeltests_unicodeinsearch", + "community": 31, + "norm_label": ".unicodeinsearch()" + }, + { + "label": ".longSearchText()", + "file_type": "code", + "source_file": "MacMagazine/Features/VideosLibrary/Tests/VideosLibraryTests/VideosViewModelTests.swift", + "source_location": "L151", + "_origin": "ast", + "id": "macmagazine_features_videoslibrary_tests_videoslibrarytests_videosviewmodeltests_videosviewmodeltests_longsearchtext", + "community": 31, + "norm_label": ".longsearchtext()" + }, + { + "label": "DeepLinkNewsDetailView.swift", + "file_type": "code", + "source_file": "MacMagazine/MacMagazine/Features/News/DeepLinkNewsDetailView.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_macmagazine_features_news_deeplinknewsdetailview", + "community": 2, + "norm_label": "deeplinknewsdetailview.swift" + }, + { + "label": "DeepLinkNewsDetailView", + "file_type": "code", + "source_file": "MacMagazine/MacMagazine/Features/News/DeepLinkNewsDetailView.swift", + "source_location": "L8", + "_origin": "ast", + "id": "macmagazine_macmagazine_features_news_deeplinknewsdetailview_deeplinknewsdetailview", + "community": 136, + "norm_label": "deeplinknewsdetailview" + }, + { + "label": "AnalyticsManager", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_macmagazine_features_news_deeplinknewsdetailview_swift_analyticsmanager", + "community": 136, + "norm_label": "analyticsmanager" + }, + { + "label": "FeedDB", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_macmagazine_features_news_deeplinknewsdetailview_swift_feeddb", + "community": 136, + "norm_label": "feeddb" + }, + { + "label": "String", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_macmagazine_features_news_deeplinknewsdetailview_swift_string", + "community": 136, + "norm_label": "string" + }, + { + "label": "Void", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_macmagazine_features_news_deeplinknewsdetailview_swift_void", + "community": 136, + "norm_label": "void" + }, + { + "label": "NewsView.swift", + "file_type": "code", + "source_file": "MacMagazine/MacMagazine/Features/News/NewsView.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_macmagazine_features_news_newsview", + "community": 2, + "norm_label": "newsview.swift" + }, + { + "label": "NewsView", + "file_type": "code", + "source_file": "MacMagazine/MacMagazine/Features/News/NewsView.swift", + "source_location": "L10", + "_origin": "ast", + "id": "macmagazine_macmagazine_features_news_newsview_newsview", + "community": 38, + "norm_label": "newsview" + }, + { + "label": "ToolbarModifier.swift", + "file_type": "code", + "source_file": "MacMagazine/MacMagazine/Features/News/ToolbarModifier.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_macmagazine_features_news_toolbarmodifier", + "community": 81, + "norm_label": "toolbarmodifier.swift" + }, + { + "label": "ToolbarType", + "file_type": "code", + "source_file": "MacMagazine/MacMagazine/Features/News/ToolbarModifier.swift", + "source_location": "L3", + "_origin": "ast", + "id": "macmagazine_macmagazine_features_news_toolbarmodifier_toolbartype", + "community": 81, + "norm_label": "toolbartype" + }, + { + "label": "compact", + "file_type": "code", + "source_file": "MacMagazine/MacMagazine/Features/News/ToolbarModifier.swift", + "source_location": "L4", + "_origin": "ast", + "id": "macmagazine_macmagazine_features_news_toolbarmodifier_toolbartype_compact", + "community": 81, + "norm_label": "compact" + }, + { + "label": "normal", + "file_type": "code", + "source_file": "MacMagazine/MacMagazine/Features/News/ToolbarModifier.swift", + "source_location": "L5", + "_origin": "ast", + "id": "macmagazine_macmagazine_features_news_toolbarmodifier_toolbartype_normal", + "community": 81, + "norm_label": "normal" + }, + { + "label": "View", + "file_type": "code", + "source_file": "MacMagazine/MacMagazine/Features/News/ToolbarModifier.swift", + "source_location": "L8", + "_origin": "ast", + "id": "macmagazine_macmagazine_features_news_toolbarmodifier_view", + "community": 81, + "norm_label": "view" + }, + { + "label": ".toolbar()", + "file_type": "code", + "source_file": "MacMagazine/MacMagazine/Features/News/ToolbarModifier.swift", + "source_location": "L9", + "_origin": "ast", + "id": "macmagazine_macmagazine_features_news_toolbarmodifier_view_toolbar", + "community": 81, + "norm_label": ".toolbar()" + }, + { + "label": "Menu", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "menu", + "community": 81, + "norm_label": "menu" + }, + { + "label": "Options", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_macmagazine_features_news_toolbarmodifier_swift_options", + "community": 81, + "norm_label": "options" + }, + { + "label": "ToolbarModifier", + "file_type": "code", + "source_file": "MacMagazine/MacMagazine/Features/News/ToolbarModifier.swift", + "source_location": "L22", + "_origin": "ast", + "id": "macmagazine_macmagazine_features_news_toolbarmodifier_toolbarmodifier", + "community": 81, + "norm_label": "toolbarmodifier" + }, + { + "label": ".body()", + "file_type": "code", + "source_file": "MacMagazine/MacMagazine/Features/News/ToolbarModifier.swift", + "source_location": "L27", + "_origin": "ast", + "id": "macmagazine_macmagazine_features_news_toolbarmodifier_toolbarmodifier_body", + "community": 81, + "norm_label": ".body()" + }, + { + "label": "Content", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_macmagazine_features_news_toolbarmodifier_swift_content", + "community": 81, + "norm_label": "content" + }, + { + "label": "ShortcutActions.swift", + "file_type": "code", + "source_file": "MacMagazine/MacMagazine/Features/Shortcuts/ShortcutActions.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_macmagazine_features_shortcuts_shortcutactions", + "community": 126, + "norm_label": "shortcutactions.swift" + }, + { + "label": "ShortcutActions", + "file_type": "code", + "source_file": "MacMagazine/MacMagazine/Features/Shortcuts/ShortcutActions.swift", + "source_location": "L3", + "_origin": "ast", + "id": "macmagazine_macmagazine_features_shortcuts_shortcutactions_shortcutactions", + "community": 126, + "norm_label": "shortcutactions" + }, + { + "label": "openLastSeenPost", + "file_type": "code", + "source_file": "MacMagazine/MacMagazine/Features/Shortcuts/ShortcutActions.swift", + "source_location": "L4", + "_origin": "ast", + "id": "macmagazine_macmagazine_features_shortcuts_shortcutactions_shortcutactions_openlastseenpost", + "community": 126, + "norm_label": "openlastseenpost" + }, + { + "label": "openMostRecentPost", + "file_type": "code", + "source_file": "MacMagazine/MacMagazine/Features/Shortcuts/ShortcutActions.swift", + "source_location": "L5", + "_origin": "ast", + "id": "macmagazine_macmagazine_features_shortcuts_shortcutactions_shortcutactions_openmostrecentpost", + "community": 126, + "norm_label": "openmostrecentpost" + }, + { + "label": "openSearchPost", + "file_type": "code", + "source_file": "MacMagazine/MacMagazine/Features/Shortcuts/ShortcutActions.swift", + "source_location": "L6", + "_origin": "ast", + "id": "macmagazine_macmagazine_features_shortcuts_shortcutactions_shortcutactions_opensearchpost", + "community": 126, + "norm_label": "opensearchpost" + }, + { + "label": "none", + "file_type": "code", + "source_file": "MacMagazine/MacMagazine/Features/Shortcuts/ShortcutActions.swift", + "source_location": "L7", + "_origin": "ast", + "id": "macmagazine_macmagazine_features_shortcuts_shortcutactions_shortcutactions_none", + "community": 126, + "norm_label": "none" + }, + { + "label": "ShortcutManager.swift", + "file_type": "code", + "source_file": "MacMagazine/MacMagazine/Features/Shortcuts/ShortcutManager.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_macmagazine_features_shortcuts_shortcutmanager", + "community": 14, + "norm_label": "shortcutmanager.swift" + }, + { + "label": "ShortcutManager", + "file_type": "code", + "source_file": "MacMagazine/MacMagazine/Features/Shortcuts/ShortcutManager.swift", + "source_location": "L6", + "_origin": "ast", + "id": "macmagazine_macmagazine_features_shortcuts_shortcutmanager_shortcutmanager", + "community": 82, + "norm_label": "shortcutmanager" + }, + { + "label": "ModelContext", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_macmagazine_features_shortcuts_shortcutmanager_swift_modelcontext", + "community": 82, + "norm_label": "modelcontext" + }, + { + "label": "String", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_macmagazine_features_shortcuts_shortcutmanager_swift_string", + "community": 82, + "norm_label": "string" + }, + { + "label": "UIApplicationShortcutItem", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_macmagazine_features_shortcuts_shortcutmanager_swift_uiapplicationshortcutitem", + "community": 82, + "norm_label": "uiapplicationshortcutitem" + }, + { + "label": ".process()", + "file_type": "code", + "source_file": "MacMagazine/MacMagazine/Features/Shortcuts/ShortcutManager.swift", + "source_location": "L17", + "_origin": "ast", + "id": "macmagazine_macmagazine_features_shortcuts_shortcutmanager_shortcutmanager_process", + "community": 82, + "norm_label": ".process()" + }, + { + "label": ".processPendingShortcut()", + "file_type": "code", + "source_file": "MacMagazine/MacMagazine/Features/Shortcuts/ShortcutManager.swift", + "source_location": "L39", + "_origin": "ast", + "id": "macmagazine_macmagazine_features_shortcuts_shortcutmanager_shortcutmanager_processpendingshortcut", + "community": 82, + "norm_label": ".processpendingshortcut()" + }, + { + "label": "SocialView.swift", + "file_type": "code", + "source_file": "MacMagazine/MacMagazine/Features/Social/SocialView.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_macmagazine_features_social_socialview", + "community": 36, + "norm_label": "socialview.swift" + }, + { + "label": "SocialView", + "file_type": "code", + "source_file": "MacMagazine/MacMagazine/Features/Social/SocialView.swift", + "source_location": "L11", + "_origin": "ast", + "id": "macmagazine_macmagazine_features_social_socialview_socialview", + "community": 38, + "norm_label": "socialview" + }, + { + "label": "AppDelegate.swift", + "file_type": "code", + "source_file": "MacMagazine/MacMagazine/MainApp/AppDelegate.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_macmagazine_mainapp_appdelegate", + "community": 24, + "norm_label": "appdelegate.swift" + }, + { + "label": "FirebaseCore", + "file_type": "code", + "type": "module", + "source_file": "MacMagazine/MacMagazine/MainApp/AppDelegate.swift", + "source_location": "L1", + "_origin": "ast", + "id": "firebasecore", + "community": 24, + "norm_label": "firebasecore" + }, + { + "label": "AppDelegate", + "file_type": "code", + "source_file": "MacMagazine/MacMagazine/MainApp/AppDelegate.swift", + "source_location": "L7", + "_origin": "ast", + "id": "macmagazine_macmagazine_mainapp_appdelegate_appdelegate", + "community": 41, + "norm_label": "appdelegate" + }, + { + "label": "UIApplicationDelegate", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "uiapplicationdelegate", + "community": 41, + "norm_label": "uiapplicationdelegate" + }, + { + "label": "PushNotification", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_macmagazine_mainapp_appdelegate_swift_pushnotification", + "community": 41, + "norm_label": "pushnotification" + }, + { + "label": "LoggerProtocol", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_macmagazine_mainapp_appdelegate_swift_loggerprotocol", + "community": 41, + "norm_label": "loggerprotocol" + }, + { + "label": ".application()", + "file_type": "code", + "source_file": "MacMagazine/MacMagazine/MainApp/AppDelegate.swift", + "source_location": "L11", + "_origin": "ast", + "id": "macmagazine_macmagazine_mainapp_appdelegate_appdelegate_application", + "community": 41, + "norm_label": ".application()" + }, + { + "label": "UIApplication", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_macmagazine_mainapp_appdelegate_swift_uiapplication", + "community": 41, + "norm_label": "uiapplication" + }, + { + "label": "Any", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_macmagazine_mainapp_appdelegate_swift_any", + "community": 41, + "norm_label": "any" + }, + { + "label": "Bool", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_macmagazine_mainapp_appdelegate_swift_bool", + "community": 41, + "norm_label": "bool" + }, + { + "label": "UISceneSession", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_macmagazine_mainapp_appdelegate_swift_uiscenesession", + "community": 41, + "norm_label": "uiscenesession" + }, + { + "label": "UIScene", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_macmagazine_mainapp_appdelegate_swift_uiscene", + "community": 41, + "norm_label": "uiscene" + }, + { + "label": "UISceneConfiguration", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "uisceneconfiguration", + "community": 41, + "norm_label": "uisceneconfiguration" + }, + { + "label": ".applicationDidBecomeActive()", + "file_type": "code", + "source_file": "MacMagazine/MacMagazine/MainApp/AppDelegate.swift", + "source_location": "L32", + "_origin": "ast", + "id": "macmagazine_macmagazine_mainapp_appdelegate_appdelegate_applicationdidbecomeactive", + "community": 41, + "norm_label": ".applicationdidbecomeactive()" + }, + { + "label": "Notification", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "notification", + "community": 41, + "norm_label": "notification" + }, + { + "label": ".configureFirebaseIfAvailable()", + "file_type": "code", + "source_file": "MacMagazine/MacMagazine/MainApp/AppDelegate.swift", + "source_location": "L40", + "_origin": "ast", + "id": "macmagazine_macmagazine_mainapp_appdelegate_appdelegate_configurefirebaseifavailable", + "community": 41, + "norm_label": ".configurefirebaseifavailable()" + }, + { + "label": "Data", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_macmagazine_mainapp_appdelegate_swift_data", + "community": 41, + "norm_label": "data" + }, + { + "label": "Error", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_macmagazine_mainapp_appdelegate_swift_error", + "community": 41, + "norm_label": "error" + }, + { + "label": "AnyHashable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_macmagazine_mainapp_appdelegate_swift_anyhashable", + "community": 41, + "norm_label": "anyhashable" + }, + { + "label": "UIBackgroundFetchResult", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "uibackgroundfetchresult", + "community": 41, + "norm_label": "uibackgroundfetchresult" + }, + { + "label": "Void", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_macmagazine_mainapp_appdelegate_swift_void", + "community": 41, + "norm_label": "void" + }, + { + "label": "MacMagazineApp.swift", + "file_type": "code", + "source_file": "MacMagazine/MacMagazine/MainApp/MacMagazineApp.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_macmagazine_mainapp_macmagazineapp", + "community": 36, + "norm_label": "macmagazineapp.swift" + }, + { + "label": "MacMagazineApp", + "file_type": "code", + "source_file": "MacMagazine/MacMagazine/MainApp/MacMagazineApp.swift", + "source_location": "L12", + "_origin": "ast", + "id": "macmagazine_macmagazine_mainapp_macmagazineapp_macmagazineapp", + "community": 98, + "norm_label": "macmagazineapp" + }, + { + "label": "App", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "app", + "community": 98, + "norm_label": "app" + }, + { + "label": "Scene", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_macmagazine_mainapp_macmagazineapp_swift_scene", + "community": 98, + "norm_label": "scene" + }, + { + "label": "SceneView", + "file_type": "code", + "source_file": "MacMagazine/MacMagazine/MainApp/MacMagazineApp.swift", + "source_location": "L23", + "_origin": "ast", + "id": "macmagazine_macmagazine_mainapp_macmagazineapp_sceneview", + "community": 56, + "norm_label": "sceneview" + }, + { + "label": "PushNotification", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_macmagazine_mainapp_macmagazineapp_swift_pushnotification", + "community": 56, + "norm_label": "pushnotification" + }, + { + "label": ".init()", + "file_type": "code", + "source_file": "MacMagazine/MacMagazine/MainApp/MacMagazineApp.swift", + "source_location": "L29", + "_origin": "ast", + "id": "macmagazine_macmagazine_mainapp_macmagazineapp_sceneview_init", + "community": 56, + "norm_label": ".init()" + }, + { + "label": "MainView.swift", + "file_type": "code", + "source_file": "MacMagazine/MacMagazine/MainApp/MainView.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_macmagazine_mainapp_mainview", + "community": 2, + "norm_label": "mainview.swift" + }, + { + "label": "MainView", + "file_type": "code", + "source_file": "MacMagazine/MacMagazine/MainApp/MainView.swift", + "source_location": "L6", + "_origin": "ast", + "id": "macmagazine_macmagazine_mainapp_mainview_mainview", + "community": 97, + "norm_label": "mainview" + }, + { + "label": "LayoutType", + "file_type": "code", + "source_file": "MacMagazine/MacMagazine/MainApp/MainView.swift", + "source_location": "L7", + "_origin": "ast", + "id": "macmagazine_macmagazine_mainapp_mainview_layouttype", + "community": 97, + "norm_label": "layouttype" + }, + { + "label": "sidebar", + "file_type": "code", + "source_file": "MacMagazine/MacMagazine/MainApp/MainView.swift", + "source_location": "L8", + "_origin": "ast", + "id": "macmagazine_macmagazine_mainapp_mainview_layouttype_sidebar", + "community": 97, + "norm_label": "sidebar" + }, + { + "label": "tabbar", + "file_type": "code", + "source_file": "MacMagazine/MacMagazine/MainApp/MainView.swift", + "source_location": "L9", + "_origin": "ast", + "id": "macmagazine_macmagazine_mainapp_mainview_layouttype_tabbar", + "community": 97, + "norm_label": "tabbar" + }, + { + "label": "NavigationSplitViewVisibility", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "navigationsplitviewvisibility", + "community": 97, + "norm_label": "navigationsplitviewvisibility" + }, + { + "label": "MainViewModel.swift", + "file_type": "code", + "source_file": "MacMagazine/MacMagazine/MainApp/MainViewModel.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_macmagazine_mainapp_mainviewmodel", + "community": 36, + "norm_label": "mainviewmodel.swift" + }, + { + "label": "MainViewModel", + "file_type": "code", + "source_file": "MacMagazine/MacMagazine/MainApp/MainViewModel.swift", + "source_location": "L14", + "_origin": "ast", + "id": "macmagazine_macmagazine_mainapp_mainviewmodel_mainviewmodel", + "community": 56, + "norm_label": "mainviewmodel" + }, + { + "label": "News", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_macmagazine_mainapp_mainviewmodel_swift_news", + "community": 56, + "norm_label": "news" + }, + { + "label": "String", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_macmagazine_mainapp_mainviewmodel_swift_string", + "community": 56, + "norm_label": "string" + }, + { + "label": "PushNotification", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_macmagazine_mainapp_mainviewmodel_swift_pushnotification", + "community": 56, + "norm_label": "pushnotification" + }, + { + "label": "Database", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_macmagazine_mainapp_mainviewmodel_swift_database", + "community": 56, + "norm_label": "database" + }, + { + "label": "LoggerProtocol", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_macmagazine_mainapp_mainviewmodel_swift_loggerprotocol", + "community": 56, + "norm_label": "loggerprotocol" + }, + { + "label": "PersistentModel", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_macmagazine_mainapp_mainviewmodel_swift_persistentmodel", + "community": 56, + "norm_label": "persistentmodel" + }, + { + "label": ".init()", + "file_type": "code", + "source_file": "MacMagazine/MacMagazine/MainApp/MainViewModel.swift", + "source_location": "L48", + "_origin": "ast", + "id": "macmagazine_macmagazine_mainapp_mainviewmodel_mainviewmodel_init", + "community": 56, + "norm_label": ".init()" + }, + { + "label": "Bool", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_macmagazine_mainapp_mainviewmodel_swift_bool", + "community": 56, + "norm_label": "bool" + }, + { + "label": ".initializeOnboarding()", + "file_type": "code", + "source_file": "MacMagazine/MacMagazine/MainApp/MainViewModel.swift", + "source_location": "L93", + "_origin": "ast", + "id": "macmagazine_macmagazine_mainapp_mainviewmodel_mainviewmodel_initializeonboarding", + "community": 56, + "norm_label": ".initializeonboarding()" + }, + { + "label": ".observeStorageStatus()", + "file_type": "code", + "source_file": "MacMagazine/MacMagazine/MainApp/MainViewModel.swift", + "source_location": "L111", + "_origin": "ast", + "id": "macmagazine_macmagazine_mainapp_mainviewmodel_mainviewmodel_observestoragestatus", + "community": 56, + "norm_label": ".observestoragestatus()" + }, + { + "label": ".deduplicate()", + "file_type": "code", + "source_file": "MacMagazine/MacMagazine/MainApp/MainViewModel.swift", + "source_location": "L131", + "_origin": "ast", + "id": "macmagazine_macmagazine_mainapp_mainviewmodel_mainviewmodel_deduplicate", + "community": 56, + "norm_label": ".deduplicate()" + }, + { + "label": "News", + "file_type": "code", + "source_file": "MacMagazine/MacMagazine/MainApp/MainViewModel.swift", + "source_location": "L138", + "_origin": "ast", + "id": "macmagazine_macmagazine_mainapp_mainviewmodel_news", + "community": 36, + "norm_label": "news" + }, + { + "label": "NewsCategory", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_macmagazine_mainapp_mainviewmodel_swift_newscategory", + "community": 36, + "norm_label": "newscategory" + }, + { + "label": "NavigationState.swift", + "file_type": "code", + "source_file": "MacMagazine/MacMagazine/MainApp/NavigationState.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_macmagazine_mainapp_navigationstate", + "community": 2, + "norm_label": "navigationstate.swift" + }, + { + "label": "NavigationState", + "file_type": "code", + "source_file": "MacMagazine/MacMagazine/MainApp/NavigationState.swift", + "source_location": "L5", + "_origin": "ast", + "id": "macmagazine_macmagazine_mainapp_navigationstate_navigationstate", + "community": 97, + "norm_label": "navigationstate" + }, + { + "label": "CaseIterable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_macmagazine_mainapp_navigationstate_swift_caseiterable", + "community": 97, + "norm_label": "caseiterable" + }, + { + "label": ".navigate()", + "file_type": "code", + "source_file": "MacMagazine/MacMagazine/MainApp/NavigationState.swift", + "source_location": "L11", + "_origin": "ast", + "id": "macmagazine_macmagazine_mainapp_navigationstate_navigationstate_navigate", + "community": 97, + "norm_label": ".navigate()" + }, + { + "label": "UserInterfaceSizeClass", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "userinterfacesizeclass", + "community": 97, + "norm_label": "userinterfacesizeclass" + }, + { + "label": "SceneDelegate.swift", + "file_type": "code", + "source_file": "MacMagazine/MacMagazine/MainApp/SceneDelegate.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_macmagazine_mainapp_scenedelegate", + "community": 24, + "norm_label": "scenedelegate.swift" + }, + { + "label": "SceneDelegate", + "file_type": "code", + "source_file": "MacMagazine/MacMagazine/MainApp/SceneDelegate.swift", + "source_location": "L6", + "_origin": "ast", + "id": "macmagazine_macmagazine_mainapp_scenedelegate_scenedelegate", + "community": 107, + "norm_label": "scenedelegate" + }, + { + "label": "UIResponder", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "uiresponder", + "community": 107, + "norm_label": "uiresponder" + }, + { + "label": "UIWindowSceneDelegate", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "uiwindowscenedelegate", + "community": 107, + "norm_label": "uiwindowscenedelegate" + }, + { + "label": "UIWindow", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "uiwindow", + "community": 107, + "norm_label": "uiwindow" + }, + { + "label": ".scene()", + "file_type": "code", + "source_file": "MacMagazine/MacMagazine/MainApp/SceneDelegate.swift", + "source_location": "L10", + "_origin": "ast", + "id": "macmagazine_macmagazine_mainapp_scenedelegate_scenedelegate_scene", + "community": 107, + "norm_label": ".scene()" + }, + { + "label": "UIScene", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_macmagazine_mainapp_scenedelegate_swift_uiscene", + "community": 107, + "norm_label": "uiscene" + }, + { + "label": "UISceneSession", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_macmagazine_mainapp_scenedelegate_swift_uiscenesession", + "community": 107, + "norm_label": "uiscenesession" + }, + { + "label": ".windowScene()", + "file_type": "code", + "source_file": "MacMagazine/MacMagazine/MainApp/SceneDelegate.swift", + "source_location": "L29", + "_origin": "ast", + "id": "macmagazine_macmagazine_mainapp_scenedelegate_scenedelegate_windowscene", + "community": 82, + "norm_label": ".windowscene()" + }, + { + "label": "UIWindowScene", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "uiwindowscene", + "community": 82, + "norm_label": "uiwindowscene" + }, + { + "label": "UIApplicationShortcutItem", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_macmagazine_mainapp_scenedelegate_swift_uiapplicationshortcutitem", + "community": 82, + "norm_label": "uiapplicationshortcutitem" + }, + { + "label": "Bool", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_macmagazine_mainapp_scenedelegate_swift_bool", + "community": 82, + "norm_label": "bool" + }, + { + "label": "Void", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_macmagazine_mainapp_scenedelegate_swift_void", + "community": 82, + "norm_label": "void" + }, + { + "label": ".sceneDidBecomeActive()", + "file_type": "code", + "source_file": "MacMagazine/MacMagazine/MainApp/SceneDelegate.swift", + "source_location": "L36", + "_origin": "ast", + "id": "macmagazine_macmagazine_mainapp_scenedelegate_scenedelegate_scenedidbecomeactive", + "community": 107, + "norm_label": ".scenedidbecomeactive()" + }, + { + "label": "MainView+sidebar.swift", + "file_type": "code", + "source_file": "MacMagazine/MacMagazine/MainApp/Sizecalss/MainView+sidebar.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_macmagazine_mainapp_sizecalss_mainview_sidebar", + "community": 36, + "norm_label": "mainview+sidebar.swift" + }, + { + "label": "MainView", + "file_type": "code", + "source_file": "MacMagazine/MacMagazine/MainApp/Sizecalss/MainView+sidebar.swift", + "source_location": "L10", + "_origin": "ast", + "id": "macmagazine_macmagazine_mainapp_sizecalss_mainview_sidebar_mainview", + "community": 38, + "norm_label": "mainview" + }, + { + "label": "View", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_macmagazine_mainapp_sizecalss_mainview_sidebar_swift_view", + "community": 38, + "norm_label": "view" + }, + { + "label": ".social()", + "file_type": "code", + "source_file": "MacMagazine/MacMagazine/MainApp/Sizecalss/MainView+sidebar.swift", + "source_location": "L85", + "_origin": "ast", + "id": "macmagazine_macmagazine_mainapp_sizecalss_mainview_sidebar_mainview_social", + "community": 38, + "norm_label": ".social()" + }, + { + "label": ".news()", + "file_type": "code", + "source_file": "MacMagazine/MacMagazine/MainApp/Sizecalss/MainView+sidebar.swift", + "source_location": "L98", + "_origin": "ast", + "id": "macmagazine_macmagazine_mainapp_sizecalss_mainview_sidebar_mainview_news", + "community": 38, + "norm_label": ".news()" + }, + { + "label": ".show()", + "file_type": "code", + "source_file": "MacMagazine/MacMagazine/MainApp/Sizecalss/MainView+sidebar.swift", + "source_location": "L111", + "_origin": "ast", + "id": "macmagazine_macmagazine_mainapp_sizecalss_mainview_sidebar_mainview_show", + "community": 38, + "norm_label": ".show()" + }, + { + "label": "CaseIterable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_macmagazine_mainapp_sizecalss_mainview_sidebar_swift_caseiterable", + "community": 38, + "norm_label": "caseiterable" + }, + { + "label": "String", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_macmagazine_mainapp_sizecalss_mainview_sidebar_swift_string", + "community": 38, + "norm_label": "string" + }, + { + "label": ".animateContentStackView()", + "file_type": "code", + "source_file": "MacMagazine/MacMagazine/MainApp/Sizecalss/MainView+sidebar.swift", + "source_location": "L129", + "_origin": "ast", + "id": "macmagazine_macmagazine_mainapp_sizecalss_mainview_sidebar_mainview_animatecontentstackview", + "community": 38, + "norm_label": ".animatecontentstackview()" + }, + { + "label": ".contentView()", + "file_type": "code", + "source_file": "MacMagazine/MacMagazine/MainApp/Sizecalss/MainView+sidebar.swift", + "source_location": "L143", + "_origin": "ast", + "id": "macmagazine_macmagazine_mainapp_sizecalss_mainview_sidebar_mainview_contentview", + "community": 38, + "norm_label": ".contentview()" + }, + { + "label": ".navigateToSearch()", + "file_type": "code", + "source_file": "MacMagazine/MacMagazine/MainApp/Sizecalss/MainView+sidebar.swift", + "source_location": "L172", + "_origin": "ast", + "id": "macmagazine_macmagazine_mainapp_sizecalss_mainview_sidebar_mainview_navigatetosearch", + "community": 38, + "norm_label": ".navigatetosearch()" + }, + { + "label": ".navigateBackFromSearch()", + "file_type": "code", + "source_file": "MacMagazine/MacMagazine/MainApp/Sizecalss/MainView+sidebar.swift", + "source_location": "L178", + "_origin": "ast", + "id": "macmagazine_macmagazine_mainapp_sizecalss_mainview_sidebar_mainview_navigatebackfromsearch", + "community": 28, + "norm_label": ".navigatebackfromsearch()" + }, + { + "label": ".process()", + "file_type": "code", + "source_file": "MacMagazine/MacMagazine/MainApp/Sizecalss/MainView+sidebar.swift", + "source_location": "L185", + "_origin": "ast", + "id": "macmagazine_macmagazine_mainapp_sizecalss_mainview_sidebar_mainview_process", + "community": 38, + "norm_label": ".process()" + }, + { + "label": ".id()", + "file_type": "code", + "source_file": "MacMagazine/MacMagazine/MainApp/Sizecalss/MainView+sidebar.swift", + "source_location": "L206", + "_origin": "ast", + "id": "macmagazine_macmagazine_mainapp_sizecalss_mainview_sidebar_mainview_id", + "community": 38, + "norm_label": ".id()" + }, + { + "label": "MainView+tabbar.swift", + "file_type": "code", + "source_file": "MacMagazine/MacMagazine/MainApp/Sizecalss/MainView+tabbar.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_macmagazine_mainapp_sizecalss_mainview_tabbar", + "community": 36, + "norm_label": "mainview+tabbar.swift" + }, + { + "label": "MainView", + "file_type": "code", + "source_file": "MacMagazine/MacMagazine/MainApp/Sizecalss/MainView+tabbar.swift", + "source_location": "L10", + "_origin": "ast", + "id": "macmagazine_macmagazine_mainapp_sizecalss_mainview_tabbar_mainview", + "community": 38, + "norm_label": "mainview" + }, + { + "label": "View", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_macmagazine_mainapp_sizecalss_mainview_tabbar_swift_view", + "community": 38, + "norm_label": "view" + }, + { + "label": ".contentView()", + "file_type": "code", + "source_file": "MacMagazine/MacMagazine/MainApp/Sizecalss/MainView+tabbar.swift", + "source_location": "L43", + "_origin": "ast", + "id": "macmagazine_macmagazine_mainapp_sizecalss_mainview_tabbar_mainview_contentview", + "community": 38, + "norm_label": ".contentview()" + }, + { + "label": "NavigationModifier.swift", + "file_type": "code", + "source_file": "MacMagazine/MacMagazine/Modifiers/NavigationModifier.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_macmagazine_modifiers_navigationmodifier", + "community": 2, + "norm_label": "navigationmodifier.swift" + }, + { + "label": "View", + "file_type": "code", + "source_file": "MacMagazine/MacMagazine/Modifiers/NavigationModifier.swift", + "source_location": "L4", + "_origin": "ast", + "id": "macmagazine_macmagazine_modifiers_navigationmodifier_view", + "community": 116, + "norm_label": "view" + }, + { + "label": ".navigation()", + "file_type": "code", + "source_file": "MacMagazine/MacMagazine/Modifiers/NavigationModifier.swift", + "source_location": "L5", + "_origin": "ast", + "id": "macmagazine_macmagazine_modifiers_navigationmodifier_view_navigation", + "community": 116, + "norm_label": ".navigation()" + }, + { + "label": "Bool", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_macmagazine_modifiers_navigationmodifier_swift_bool", + "community": 116, + "norm_label": "bool" + }, + { + "label": "String", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_macmagazine_modifiers_navigationmodifier_swift_string", + "community": 116, + "norm_label": "string" + }, + { + "label": "NavigationModifier", + "file_type": "code", + "source_file": "MacMagazine/MacMagazine/Modifiers/NavigationModifier.swift", + "source_location": "L16", + "_origin": "ast", + "id": "macmagazine_macmagazine_modifiers_navigationmodifier_navigationmodifier", + "community": 116, + "norm_label": "navigationmodifier" + }, + { + "label": ".body()", + "file_type": "code", + "source_file": "MacMagazine/MacMagazine/Modifiers/NavigationModifier.swift", + "source_location": "L22", + "_origin": "ast", + "id": "macmagazine_macmagazine_modifiers_navigationmodifier_navigationmodifier_body", + "community": 116, + "norm_label": ".body()" + }, + { + "label": "Content", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_macmagazine_modifiers_navigationmodifier_swift_content", + "community": 116, + "norm_label": "content" + }, + { + "label": "NotificationService.swift", + "file_type": "code", + "source_file": "MacMagazine/MacMagazineNotificationServiceExtension/NotificationService.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_macmagazinenotificationserviceextension_notificationservice", + "community": 24, + "norm_label": "notificationservice.swift" + }, + { + "label": "OneSignalExtension", + "file_type": "code", + "type": "module", + "source_file": "MacMagazine/MacMagazineNotificationServiceExtension/NotificationService.swift", + "source_location": "L1", + "_origin": "ast", + "id": "onesignalextension", + "community": 24, + "norm_label": "onesignalextension" + }, + { + "label": "NotificationService", + "file_type": "code", + "source_file": "MacMagazine/MacMagazineNotificationServiceExtension/NotificationService.swift", + "source_location": "L5", + "_origin": "ast", + "id": "macmagazine_macmagazinenotificationserviceextension_notificationservice_notificationservice", + "community": 1, + "norm_label": "notificationservice" + }, + { + "label": "UNNotificationServiceExtension", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "unnotificationserviceextension", + "community": 1, + "norm_label": "unnotificationserviceextension" + }, + { + "label": "UNNotificationContent", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "unnotificationcontent", + "community": 1, + "norm_label": "unnotificationcontent" + }, + { + "label": "Void", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_macmagazinenotificationserviceextension_notificationservice_swift_void", + "community": 1, + "norm_label": "void" + }, + { + "label": "UNNotificationRequest", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "unnotificationrequest", + "community": 1, + "norm_label": "unnotificationrequest" + }, + { + "label": "UNMutableNotificationContent", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "unmutablenotificationcontent", + "community": 1, + "norm_label": "unmutablenotificationcontent" + }, + { + "label": ".didReceive()", + "file_type": "code", + "source_file": "MacMagazine/MacMagazineNotificationServiceExtension/NotificationService.swift", + "source_location": "L11", + "_origin": "ast", + "id": "macmagazine_macmagazinenotificationserviceextension_notificationservice_notificationservice_didreceive", + "community": 1, + "norm_label": ".didreceive()" + }, + { + "label": ".serviceExtensionTimeWillExpire()", + "file_type": "code", + "source_file": "MacMagazine/MacMagazineNotificationServiceExtension/NotificationService.swift", + "source_location": "L24", + "_origin": "ast", + "id": "macmagazine_macmagazinenotificationserviceextension_notificationservice_notificationservice_serviceextensiontimewillexpire", + "community": 1, + "norm_label": ".serviceextensiontimewillexpire()" + }, + { + "label": "FeedDB.swift", + "file_type": "code", + "source_file": "MacMagazine/WatchApp/Extension/FeedDB.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_watchapp_extension_feeddb", + "community": 9, + "norm_label": "feeddb.swift" + }, + { + "label": "FeedDB", + "file_type": "code", + "source_file": "MacMagazine/WatchApp/Extension/FeedDB.swift", + "source_location": "L6", + "_origin": "ast", + "id": "macmagazine_watchapp_extension_feeddb_feeddb", + "community": 65, + "norm_label": "feeddb" + }, + { + "label": "String", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_watchapp_extension_feeddb_swift_string", + "community": 65, + "norm_label": "string" + }, + { + "label": "FeedDotsIndicatorView.swift", + "file_type": "code", + "source_file": "MacMagazine/WatchApp/Helper/FeedDotsIndicatorView.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_watchapp_helper_feeddotsindicatorview", + "community": 117, + "norm_label": "feeddotsindicatorview.swift" + }, + { + "label": "FeedDotsIndicatorView", + "file_type": "code", + "source_file": "MacMagazine/WatchApp/Helper/FeedDotsIndicatorView.swift", + "source_location": "L5", + "_origin": "ast", + "id": "macmagazine_watchapp_helper_feeddotsindicatorview_feeddotsindicatorview", + "community": 117, + "norm_label": "feeddotsindicatorview" + }, + { + "label": "Int", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_watchapp_helper_feeddotsindicatorview_swift_int", + "community": 117, + "norm_label": "int" + }, + { + "label": ".dotColor()", + "file_type": "code", + "source_file": "MacMagazine/WatchApp/Helper/FeedDotsIndicatorView.swift", + "source_location": "L28", + "_origin": "ast", + "id": "macmagazine_watchapp_helper_feeddotsindicatorview_feeddotsindicatorview_dotcolor", + "community": 117, + "norm_label": ".dotcolor()" + }, + { + "label": "Color", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_watchapp_helper_feeddotsindicatorview_swift_color", + "community": 117, + "norm_label": "color" + }, + { + "label": ".dotSize()", + "file_type": "code", + "source_file": "MacMagazine/WatchApp/Helper/FeedDotsIndicatorView.swift", + "source_location": "L32", + "_origin": "ast", + "id": "macmagazine_watchapp_helper_feeddotsindicatorview_feeddotsindicatorview_dotsize", + "community": 117, + "norm_label": ".dotsize()" + }, + { + "label": "CGFloat", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_watchapp_helper_feeddotsindicatorview_swift_cgfloat", + "community": 117, + "norm_label": "cgfloat" + }, + { + "label": "WatchApp.swift", + "file_type": "code", + "source_file": "MacMagazine/WatchApp/MainApp/WatchApp.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_watchapp_mainapp_watchapp", + "community": 14, + "norm_label": "watchapp.swift" + }, + { + "label": "WatchKit", + "file_type": "code", + "type": "module", + "source_file": "MacMagazine/WatchApp/Views/FeedMainView.swift", + "source_location": "L5", + "_origin": "ast", + "id": "watchkit", + "community": 14, + "norm_label": "watchkit" + }, + { + "label": "WatchApp", + "file_type": "code", + "source_file": "MacMagazine/WatchApp/MainApp/WatchApp.swift", + "source_location": "L7", + "_origin": "ast", + "id": "macmagazine_watchapp_mainapp_watchapp_watchapp", + "community": 98, + "norm_label": "watchapp" + }, + { + "label": "Database", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_watchapp_mainapp_watchapp_swift_database", + "community": 98, + "norm_label": "database" + }, + { + "label": "FeedMainViewModel", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_watchapp_mainapp_watchapp_swift_feedmainviewmodel", + "community": 98, + "norm_label": "feedmainviewmodel" + }, + { + "label": ".init()", + "file_type": "code", + "source_file": "MacMagazine/WatchApp/MainApp/WatchApp.swift", + "source_location": "L16", + "_origin": "ast", + "id": "macmagazine_watchapp_mainapp_watchapp_watchapp_init", + "community": 98, + "norm_label": ".init()" + }, + { + "label": "Scene", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_watchapp_mainapp_watchapp_swift_scene", + "community": 98, + "norm_label": "scene" + }, + { + "label": "WatchNotificationsDelegate.swift", + "file_type": "code", + "source_file": "MacMagazine/WatchApp/MainApp/WatchNotificationsDelegate.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_watchapp_mainapp_watchnotificationsdelegate", + "community": 24, + "norm_label": "watchnotificationsdelegate.swift" + }, + { + "label": "WatchNotificationsDelegate", + "file_type": "code", + "source_file": "MacMagazine/WatchApp/MainApp/WatchNotificationsDelegate.swift", + "source_location": "L8", + "_origin": "ast", + "id": "macmagazine_watchapp_mainapp_watchnotificationsdelegate_watchnotificationsdelegate", + "community": 57, + "norm_label": "watchnotificationsdelegate" + }, + { + "label": "WKApplicationDelegate", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "wkapplicationdelegate", + "community": 57, + "norm_label": "wkapplicationdelegate" + }, + { + "label": "FeedMainViewModel", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_watchapp_mainapp_watchnotificationsdelegate_swift_feedmainviewmodel", + "community": 57, + "norm_label": "feedmainviewmodel" + }, + { + "label": "String", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_watchapp_mainapp_watchnotificationsdelegate_swift_string", + "community": 57, + "norm_label": "string" + }, + { + "label": ".applicationDidFinishLaunching()", + "file_type": "code", + "source_file": "MacMagazine/WatchApp/MainApp/WatchNotificationsDelegate.swift", + "source_location": "L15", + "_origin": "ast", + "id": "macmagazine_watchapp_mainapp_watchnotificationsdelegate_watchnotificationsdelegate_applicationdidfinishlaunching", + "community": 57, + "norm_label": ".applicationdidfinishlaunching()" + }, + { + "label": ".didRegisterForRemoteNotifications()", + "file_type": "code", + "source_file": "MacMagazine/WatchApp/MainApp/WatchNotificationsDelegate.swift", + "source_location": "L29", + "_origin": "ast", + "id": "macmagazine_watchapp_mainapp_watchnotificationsdelegate_watchnotificationsdelegate_didregisterforremotenotifications", + "community": 57, + "norm_label": ".didregisterforremotenotifications()" + }, + { + "label": "Data", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_watchapp_mainapp_watchnotificationsdelegate_swift_data", + "community": 57, + "norm_label": "data" + }, + { + "label": ".userNotificationCenter()", + "file_type": "code", + "source_file": "MacMagazine/WatchApp/MainApp/WatchNotificationsDelegate.swift", + "source_location": "L36", + "_origin": "ast", + "id": "macmagazine_watchapp_mainapp_watchnotificationsdelegate_watchnotificationsdelegate_usernotificationcenter", + "community": 57, + "norm_label": ".usernotificationcenter()" + }, + { + "label": "UNUserNotificationCenter", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_watchapp_mainapp_watchnotificationsdelegate_swift_unusernotificationcenter", + "community": 57, + "norm_label": "unusernotificationcenter" + }, + { + "label": "UNNotificationResponse", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_watchapp_mainapp_watchnotificationsdelegate_swift_unnotificationresponse", + "community": 57, + "norm_label": "unnotificationresponse" + }, + { + "label": ".handlePush()", + "file_type": "code", + "source_file": "MacMagazine/WatchApp/MainApp/WatchNotificationsDelegate.swift", + "source_location": "L44", + "_origin": "ast", + "id": "macmagazine_watchapp_mainapp_watchnotificationsdelegate_watchnotificationsdelegate_handlepush", + "community": 57, + "norm_label": ".handlepush()" + }, + { + "label": "AnyHashable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_watchapp_mainapp_watchnotificationsdelegate_swift_anyhashable", + "community": 57, + "norm_label": "anyhashable" + }, + { + "label": "Any", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_watchapp_mainapp_watchnotificationsdelegate_swift_any", + "community": 57, + "norm_label": "any" + }, + { + "label": ".deliverPendingLink()", + "file_type": "code", + "source_file": "MacMagazine/WatchApp/MainApp/WatchNotificationsDelegate.swift", + "source_location": "L62", + "_origin": "ast", + "id": "macmagazine_watchapp_mainapp_watchnotificationsdelegate_watchnotificationsdelegate_deliverpendinglink", + "community": 57, + "norm_label": ".deliverpendinglink()" + }, + { + "label": "FeedMainViewModel.swift", + "file_type": "code", + "source_file": "MacMagazine/WatchApp/ViewModel/FeedMainViewModel.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_watchapp_viewmodel_feedmainviewmodel", + "community": 14, + "norm_label": "feedmainviewmodel.swift" + }, + { + "label": "FeedMainViewModel", + "file_type": "code", + "source_file": "MacMagazine/WatchApp/ViewModel/FeedMainViewModel.swift", + "source_location": "L8", + "_origin": "ast", + "id": "macmagazine_watchapp_viewmodel_feedmainviewmodel_feedmainviewmodel", + "community": 60, + "norm_label": "feedmainviewmodel" + }, + { + "label": "Int", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_watchapp_viewmodel_feedmainviewmodel_swift_int", + "community": 60, + "norm_label": "int" + }, + { + "label": "Bool", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_watchapp_viewmodel_feedmainviewmodel_swift_bool", + "community": 60, + "norm_label": "bool" + }, + { + "label": "FeedDB", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_watchapp_viewmodel_feedmainviewmodel_swift_feeddb", + "community": 60, + "norm_label": "feeddb" + }, + { + "label": "String", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_watchapp_viewmodel_feedmainviewmodel_swift_string", + "community": 60, + "norm_label": "string" + }, + { + "label": ".init()", + "file_type": "code", + "source_file": "MacMagazine/WatchApp/ViewModel/FeedMainViewModel.swift", + "source_location": "L28", + "_origin": "ast", + "id": "macmagazine_watchapp_viewmodel_feedmainviewmodel_feedmainviewmodel_init", + "community": 60, + "norm_label": ".init()" + }, + { + "label": ".refresh()", + "file_type": "code", + "source_file": "MacMagazine/WatchApp/ViewModel/FeedMainViewModel.swift", + "source_location": "L35", + "_origin": "ast", + "id": "macmagazine_watchapp_viewmodel_feedmainviewmodel_feedmainviewmodel_refresh", + "community": 60, + "norm_label": ".refresh()" + }, + { + "label": "ModelContext", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_watchapp_viewmodel_feedmainviewmodel_swift_modelcontext", + "community": 60, + "norm_label": "modelcontext" + }, + { + "label": ".computeSelectedIndexByMidY()", + "file_type": "code", + "source_file": "MacMagazine/WatchApp/ViewModel/FeedMainViewModel.swift", + "source_location": "L50", + "_origin": "ast", + "id": "macmagazine_watchapp_viewmodel_feedmainviewmodel_feedmainviewmodel_computeselectedindexbymidy", + "community": 60, + "norm_label": ".computeselectedindexbymidy()" + }, + { + "label": "CGPoint", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_watchapp_viewmodel_feedmainviewmodel_swift_cgpoint", + "community": 60, + "norm_label": "cgpoint" + }, + { + "label": ".clampIndex()", + "file_type": "code", + "source_file": "MacMagazine/WatchApp/ViewModel/FeedMainViewModel.swift", + "source_location": "L71", + "_origin": "ast", + "id": "macmagazine_watchapp_viewmodel_feedmainviewmodel_feedmainviewmodel_clampindex", + "community": 60, + "norm_label": ".clampindex()" + }, + { + "label": ".openPost()", + "file_type": "code", + "source_file": "MacMagazine/WatchApp/ViewModel/FeedMainViewModel.swift", + "source_location": "L76", + "_origin": "ast", + "id": "macmagazine_watchapp_viewmodel_feedmainviewmodel_feedmainviewmodel_openpost", + "community": 60, + "norm_label": ".openpost()" + }, + { + "label": ".resolvePendingDeepLinks()", + "file_type": "code", + "source_file": "MacMagazine/WatchApp/ViewModel/FeedMainViewModel.swift", + "source_location": "L102", + "_origin": "ast", + "id": "macmagazine_watchapp_viewmodel_feedmainviewmodel_feedmainviewmodel_resolvependingdeeplinks", + "community": 60, + "norm_label": ".resolvependingdeeplinks()" + }, + { + "label": ".setStatusForPreview()", + "file_type": "code", + "source_file": "MacMagazine/WatchApp/ViewModel/FeedMainViewModel.swift", + "source_location": "L114", + "_origin": "ast", + "id": "macmagazine_watchapp_viewmodel_feedmainviewmodel_feedmainviewmodel_setstatusforpreview", + "community": 60, + "norm_label": ".setstatusforpreview()" + }, + { + "label": "FeedScrollPositionKey.swift", + "file_type": "code", + "source_file": "MacMagazine/WatchApp/ViewModel/FeedScrollPositionKey.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_watchapp_viewmodel_feedscrollpositionkey", + "community": 71, + "norm_label": "feedscrollpositionkey.swift" + }, + { + "label": "FeedScrollPositionKey", + "file_type": "code", + "source_file": "MacMagazine/WatchApp/ViewModel/FeedScrollPositionKey.swift", + "source_location": "L4", + "_origin": "ast", + "id": "macmagazine_watchapp_viewmodel_feedscrollpositionkey_feedscrollpositionkey", + "community": 71, + "norm_label": "feedscrollpositionkey" + }, + { + "label": "PreferenceKey", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "preferencekey", + "community": 71, + "norm_label": "preferencekey" + }, + { + "label": "String", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_watchapp_viewmodel_feedscrollpositionkey_swift_string", + "community": 71, + "norm_label": "string" + }, + { + "label": "CGPoint", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_watchapp_viewmodel_feedscrollpositionkey_swift_cgpoint", + "community": 71, + "norm_label": "cgpoint" + }, + { + "label": ".reduce()", + "file_type": "code", + "source_file": "MacMagazine/WatchApp/ViewModel/FeedScrollPositionKey.swift", + "source_location": "L7", + "_origin": "ast", + "id": "macmagazine_watchapp_viewmodel_feedscrollpositionkey_feedscrollpositionkey_reduce", + "community": 71, + "norm_label": ".reduce()" + }, + { + "label": "FeedRowPositionReporter", + "file_type": "code", + "source_file": "MacMagazine/WatchApp/ViewModel/FeedScrollPositionKey.swift", + "source_location": "L12", + "_origin": "ast", + "id": "macmagazine_watchapp_viewmodel_feedscrollpositionkey_feedrowpositionreporter", + "community": 71, + "norm_label": "feedrowpositionreporter" + }, + { + "label": ".body()", + "file_type": "code", + "source_file": "MacMagazine/WatchApp/ViewModel/FeedScrollPositionKey.swift", + "source_location": "L15", + "_origin": "ast", + "id": "macmagazine_watchapp_viewmodel_feedscrollpositionkey_feedrowpositionreporter_body", + "community": 71, + "norm_label": ".body()" + }, + { + "label": "Content", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_watchapp_viewmodel_feedscrollpositionkey_swift_content", + "community": 71, + "norm_label": "content" + }, + { + "label": "View", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_watchapp_viewmodel_feedscrollpositionkey_swift_view", + "community": 71, + "norm_label": "view" + }, + { + "label": "View", + "file_type": "code", + "source_file": "MacMagazine/WatchApp/ViewModel/FeedScrollPositionKey.swift", + "source_location": "L32", + "_origin": "ast", + "id": "macmagazine_watchapp_viewmodel_feedscrollpositionkey_view", + "community": 71, + "norm_label": "view" + }, + { + "label": ".reportFeedRowPosition()", + "file_type": "code", + "source_file": "MacMagazine/WatchApp/ViewModel/FeedScrollPositionKey.swift", + "source_location": "L33", + "_origin": "ast", + "id": "macmagazine_watchapp_viewmodel_feedscrollpositionkey_view_reportfeedrowposition", + "community": 71, + "norm_label": ".reportfeedrowposition()" + }, + { + "label": "FeedDetailView.swift", + "file_type": "code", + "source_file": "MacMagazine/WatchApp/Views/FeedDetailView.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_watchapp_views_feeddetailview", + "community": 14, + "norm_label": "feeddetailview.swift" + }, + { + "label": "FeedDetailView", + "file_type": "code", + "source_file": "MacMagazine/WatchApp/Views/FeedDetailView.swift", + "source_location": "L5", + "_origin": "ast", + "id": "macmagazine_watchapp_views_feeddetailview_feeddetailview", + "community": 143, + "norm_label": "feeddetailview" + }, + { + "label": "FeedDB", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_watchapp_views_feeddetailview_swift_feeddb", + "community": 143, + "norm_label": "feeddb" + }, + { + "label": "FeedMainViewModel", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_watchapp_views_feeddetailview_swift_feedmainviewmodel", + "community": 143, + "norm_label": "feedmainviewmodel" + }, + { + "label": ".init()", + "file_type": "code", + "source_file": "MacMagazine/WatchApp/Views/FeedDetailView.swift", + "source_location": "L17", + "_origin": "ast", + "id": "macmagazine_watchapp_views_feeddetailview_feeddetailview_init", + "community": 143, + "norm_label": ".init()" + }, + { + "label": "FeedMainView.swift", + "file_type": "code", + "source_file": "MacMagazine/WatchApp/Views/FeedMainView.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_watchapp_views_feedmainview", + "community": 14, + "norm_label": "feedmainview.swift" + }, + { + "label": "FeedMainView", + "file_type": "code", + "source_file": "MacMagazine/WatchApp/Views/FeedMainView.swift", + "source_location": "L7", + "_origin": "ast", + "id": "macmagazine_watchapp_views_feedmainview_feedmainview", + "community": 72, + "norm_label": "feedmainview" + }, + { + "label": "FeedDB", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_watchapp_views_feedmainview_swift_feeddb", + "community": 72, + "norm_label": "feeddb" + }, + { + "label": "FeedMainViewModel", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_watchapp_views_feedmainview_swift_feedmainviewmodel", + "community": 72, + "norm_label": "feedmainviewmodel" + }, + { + "label": ".init()", + "file_type": "code", + "source_file": "MacMagazine/WatchApp/Views/FeedMainView.swift", + "source_location": "L21", + "_origin": "ast", + "id": "macmagazine_watchapp_views_feedmainview_feedmainview_init", + "community": 72, + "norm_label": ".init()" + }, + { + "label": ".navigationTitle()", + "file_type": "code", + "source_file": "MacMagazine/WatchApp/Views/FeedMainView.swift", + "source_location": "L91", + "_origin": "ast", + "id": "macmagazine_watchapp_views_feedmainview_feedmainview_navigationtitle", + "community": 72, + "norm_label": ".navigationtitle()" + }, + { + "label": "String", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_watchapp_views_feedmainview_swift_string", + "community": 72, + "norm_label": "string" + }, + { + "label": ".errorScreen()", + "file_type": "code", + "source_file": "MacMagazine/WatchApp/Views/FeedMainView.swift", + "source_location": "L114", + "_origin": "ast", + "id": "macmagazine_watchapp_views_feedmainview_feedmainview_errorscreen", + "community": 72, + "norm_label": ".errorscreen()" + }, + { + "label": ".statusScreen()", + "file_type": "code", + "source_file": "MacMagazine/WatchApp/Views/FeedMainView.swift", + "source_location": "L142", + "_origin": "ast", + "id": "macmagazine_watchapp_views_feedmainview_feedmainview_statusscreen", + "community": 72, + "norm_label": ".statusscreen()" + }, + { + "label": "Void", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_watchapp_views_feedmainview_swift_void", + "community": 72, + "norm_label": "void" + }, + { + "label": ".carouselRowScreen()", + "file_type": "code", + "source_file": "MacMagazine/WatchApp/Views/FeedMainView.swift", + "source_location": "L185", + "_origin": "ast", + "id": "macmagazine_watchapp_views_feedmainview_feedmainview_carouselrowscreen", + "community": 72, + "norm_label": ".carouselrowscreen()" + }, + { + "label": ".contextMenuSheet()", + "file_type": "code", + "source_file": "MacMagazine/WatchApp/Views/FeedMainView.swift", + "source_location": "L237", + "_origin": "ast", + "id": "macmagazine_watchapp_views_feedmainview_feedmainview_contextmenusheet", + "community": 72, + "norm_label": ".contextmenusheet()" + }, + { + "label": ".currentPost()", + "file_type": "code", + "source_file": "MacMagazine/WatchApp/Views/FeedMainView.swift", + "source_location": "L265", + "_origin": "ast", + "id": "macmagazine_watchapp_views_feedmainview_feedmainview_currentpost", + "community": 72, + "norm_label": ".currentpost()" + }, + { + "label": "FeedMainViewModel", + "file_type": "code", + "source_file": "MacMagazine/WatchApp/Views/FeedMainView.swift", + "source_location": "L275", + "_origin": "ast", + "id": "macmagazine_watchapp_views_feedmainview_feedmainviewmodel", + "community": 127, + "norm_label": "feedmainviewmodel" + }, + { + "label": ".preview()", + "file_type": "code", + "source_file": "MacMagazine/WatchApp/Views/FeedMainView.swift", + "source_location": "L276", + "_origin": "ast", + "id": "macmagazine_watchapp_views_feedmainview_feedmainviewmodel_preview", + "community": 127, + "norm_label": ".preview()" + }, + { + "label": "FeedPreviewHost", + "file_type": "code", + "source_file": "MacMagazine/WatchApp/Views/FeedMainView.swift", + "source_location": "L287", + "_origin": "ast", + "id": "macmagazine_watchapp_views_feedmainview_feedpreviewhost", + "community": 127, + "norm_label": "feedpreviewhost" + }, + { + "label": "ModelContainer", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "modelcontainer", + "community": 127, + "norm_label": "modelcontainer" + }, + { + "label": ".init()", + "file_type": "code", + "source_file": "MacMagazine/WatchApp/Views/FeedMainView.swift", + "source_location": "L291", + "_origin": "ast", + "id": "macmagazine_watchapp_views_feedmainview_feedpreviewhost_init", + "community": 127, + "norm_label": ".init()" + }, + { + "label": "Bool", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_watchapp_views_feedmainview_swift_bool", + "community": 127, + "norm_label": "bool" + }, + { + "label": "FeedRowView.swift", + "file_type": "code", + "source_file": "MacMagazine/WatchApp/Views/Row/FeedRowView.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_watchapp_views_row_feedrowview", + "community": 2, + "norm_label": "feedrowview.swift" + }, + { + "label": "FeedRowView", + "file_type": "code", + "source_file": "MacMagazine/WatchApp/Views/Row/FeedRowView.swift", + "source_location": "L6", + "_origin": "ast", + "id": "macmagazine_watchapp_views_row_feedrowview_feedrowview", + "community": 61, + "norm_label": "feedrowview" + }, + { + "label": "FeedDB", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_watchapp_views_row_feedrowview_swift_feeddb", + "community": 61, + "norm_label": "feeddb" + }, + { + "label": ".background()", + "file_type": "code", + "source_file": "MacMagazine/WatchApp/Views/Row/FeedRowView.swift", + "source_location": "L20", + "_origin": "ast", + "id": "macmagazine_watchapp_views_row_feedrowview_feedrowview_background", + "community": 61, + "norm_label": ".background()" + }, + { + "label": "CGSize", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "cgsize", + "community": 61, + "norm_label": "cgsize" + }, + { + "label": "WidgetAccessibility+View.swift", + "file_type": "code", + "source_file": "MacMagazine/WatchWidget/Extensions/WidgetAccessibility+View.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_watchwidget_extensions_widgetaccessibility_view", + "community": 53, + "norm_label": "widgetaccessibility+view.swift" + }, + { + "label": "WidgetAccessibility", + "file_type": "code", + "source_file": "MacMagazine/WatchWidget/Extensions/WidgetAccessibility+View.swift", + "source_location": "L4", + "_origin": "ast", + "id": "macmagazine_watchwidget_extensions_widgetaccessibility_view_widgetaccessibility", + "community": 53, + "norm_label": "widgetaccessibility" + }, + { + "label": "View", + "file_type": "code", + "source_file": "MacMagazine/WatchWidget/Extensions/WidgetAccessibility+View.swift", + "source_location": "L11", + "_origin": "ast", + "id": "macmagazine_watchwidget_extensions_widgetaccessibility_view_view", + "community": 65, + "norm_label": "view" + }, + { + "label": ".widgetAccessibility()", + "file_type": "code", + "source_file": "MacMagazine/WatchWidget/Extensions/WidgetAccessibility+View.swift", + "source_location": "L13", + "_origin": "ast", + "id": "macmagazine_watchwidget_extensions_widgetaccessibility_view_view_widgetaccessibility", + "community": 65, + "norm_label": ".widgetaccessibility()" + }, + { + "label": "String", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_watchwidget_extensions_widgetaccessibility_view_swift_string", + "community": 65, + "norm_label": "string" + }, + { + "label": "AccessibilityChildBehavior", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_watchwidget_extensions_widgetaccessibility_view_swift_accessibilitychildbehavior", + "community": 65, + "norm_label": "accessibilitychildbehavior" + }, + { + "label": ".widgetCircularAccessibility()", + "file_type": "code", + "source_file": "MacMagazine/WatchWidget/Extensions/WidgetAccessibility+View.swift", + "source_location": "L37", + "_origin": "ast", + "id": "macmagazine_watchwidget_extensions_widgetaccessibility_view_view_widgetcircularaccessibility", + "community": 65, + "norm_label": ".widgetcircularaccessibility()" + }, + { + "label": ".widgetRectangularAccessibility()", + "file_type": "code", + "source_file": "MacMagazine/WatchWidget/Extensions/WidgetAccessibility+View.swift", + "source_location": "L50", + "_origin": "ast", + "id": "macmagazine_watchwidget_extensions_widgetaccessibility_view_view_widgetrectangularaccessibility", + "community": 65, + "norm_label": ".widgetrectangularaccessibility()" + }, + { + "label": "WidgetEntry.swift", + "file_type": "code", + "source_file": "MacMagazine/WatchWidget/Model/WidgetEntry.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_watchwidget_model_widgetentry", + "community": 9, + "norm_label": "widgetentry.swift" + }, + { + "label": "WidgetEntry", + "file_type": "code", + "source_file": "MacMagazine/WatchWidget/Model/WidgetEntry.swift", + "source_location": "L5", + "_origin": "ast", + "id": "macmagazine_watchwidget_model_widgetentry_widgetentry", + "community": 1, + "norm_label": "widgetentry" + }, + { + "label": "TimelineEntry", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "timelineentry", + "community": 1, + "norm_label": "timelineentry" + }, + { + "label": "WidgetData", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_watchwidget_model_widgetentry_swift_widgetdata", + "community": 1, + "norm_label": "widgetdata" + }, + { + "label": "WidgetData", + "file_type": "code", + "source_file": "MacMagazine/WatchWidget/Model/WidgetEntry.swift", + "source_location": "L10", + "_origin": "ast", + "id": "macmagazine_watchwidget_model_widgetentry_widgetdata", + "community": 1, + "norm_label": "widgetdata" + }, + { + "label": ".init()", + "file_type": "code", + "source_file": "MacMagazine/WatchWidget/Model/WidgetEntry.swift", + "source_location": "L11", + "_origin": "ast", + "id": "macmagazine_watchwidget_model_widgetentry_widgetdata_init", + "community": 1, + "norm_label": ".init()" + }, + { + "label": "String", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_watchwidget_model_widgetentry_swift_string", + "community": 1, + "norm_label": "string" + }, + { + "label": "WatchWidgetEntryView.swift", + "file_type": "code", + "source_file": "MacMagazine/WatchWidget/Views/WatchWidgetEntryView.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_watchwidget_views_watchwidgetentryview", + "community": 2, + "norm_label": "watchwidgetentryview.swift" + }, + { + "label": "WatchWidgetEntryView", + "file_type": "code", + "source_file": "MacMagazine/WatchWidget/Views/WatchWidgetEntryView.swift", + "source_location": "L7", + "_origin": "ast", + "id": "macmagazine_watchwidget_views_watchwidgetentryview_watchwidgetentryview", + "community": 137, + "norm_label": "watchwidgetentryview" + }, + { + "label": "WidgetEntry", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_watchwidget_views_watchwidgetentryview_swift_widgetentry", + "community": 137, + "norm_label": "widgetentry" + }, + { + "label": ".widgetPostURL()", + "file_type": "code", + "source_file": "MacMagazine/WatchWidget/Views/WatchWidgetEntryView.swift", + "source_location": "L113", + "_origin": "ast", + "id": "macmagazine_watchwidget_views_watchwidgetentryview_watchwidgetentryview_widgetposturl", + "community": 137, + "norm_label": ".widgetposturl()" + }, + { + "label": ".accessibilityValueForRectangular()", + "file_type": "code", + "source_file": "MacMagazine/WatchWidget/Views/WatchWidgetEntryView.swift", + "source_location": "L121", + "_origin": "ast", + "id": "macmagazine_watchwidget_views_watchwidgetentryview_watchwidgetentryview_accessibilityvalueforrectangular", + "community": 137, + "norm_label": ".accessibilityvalueforrectangular()" + }, + { + "label": "String", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_watchwidget_views_watchwidgetentryview_swift_string", + "community": 137, + "norm_label": "string" + }, + { + "label": "WatchWidget.swift", + "file_type": "code", + "source_file": "MacMagazine/WatchWidget/Widget/WatchWidget.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_watchwidget_widget_watchwidget", + "community": 53, + "norm_label": "watchwidget.swift" + }, + { + "label": "WatchWidget", + "file_type": "code", + "source_file": "MacMagazine/WatchWidget/Widget/WatchWidget.swift", + "source_location": "L5", + "_origin": "ast", + "id": "macmagazine_watchwidget_widget_watchwidget_watchwidget", + "community": 83, + "norm_label": "watchwidget" + }, + { + "label": "Widget", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "widget", + "community": 83, + "norm_label": "widget" + }, + { + "label": "String", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_watchwidget_widget_watchwidget_swift_string", + "community": 83, + "norm_label": "string" + }, + { + "label": "WidgetConfiguration", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_watchwidget_widget_watchwidget_swift_widgetconfiguration", + "community": 83, + "norm_label": "widgetconfiguration" + }, + { + "label": "WatchWidgetBundle.swift", + "file_type": "code", + "source_file": "MacMagazine/WatchWidget/Widget/WatchWidgetBundle.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_watchwidget_widget_watchwidgetbundle", + "community": 53, + "norm_label": "watchwidgetbundle.swift" + }, + { + "label": "WatchWidgetBundle", + "file_type": "code", + "source_file": "MacMagazine/WatchWidget/Widget/WatchWidgetBundle.swift", + "source_location": "L4", + "_origin": "ast", + "id": "macmagazine_watchwidget_widget_watchwidgetbundle_watchwidgetbundle", + "community": 53, + "norm_label": "watchwidgetbundle" + }, + { + "label": "WidgetBundle", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "widgetbundle", + "community": 53, + "norm_label": "widgetbundle" + }, + { + "label": "Widget", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_watchwidget_widget_watchwidgetbundle_swift_widget", + "community": 53, + "norm_label": "widget" + }, + { + "label": "WatchWidgetProvider.swift", + "file_type": "code", + "source_file": "MacMagazine/WatchWidget/Widget/WatchWidgetProvider.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_watchwidget_widget_watchwidgetprovider", + "community": 53, + "norm_label": "watchwidgetprovider.swift" + }, + { + "label": "WatchWidgetProvider", + "file_type": "code", + "source_file": "MacMagazine/WatchWidget/Widget/WatchWidgetProvider.swift", + "source_location": "L6", + "_origin": "ast", + "id": "macmagazine_watchwidget_widget_watchwidgetprovider_watchwidgetprovider", + "community": 39, + "norm_label": "watchwidgetprovider" + }, + { + "label": "TimelineProvider", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "timelineprovider", + "community": 39, + "norm_label": "timelineprovider" + }, + { + "label": ".placeholder()", + "file_type": "code", + "source_file": "MacMagazine/WatchWidget/Widget/WatchWidgetProvider.swift", + "source_location": "L10", + "_origin": "ast", + "id": "macmagazine_watchwidget_widget_watchwidgetprovider_watchwidgetprovider_placeholder", + "community": 39, + "norm_label": ".placeholder()" + }, + { + "label": "Context", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_watchwidget_widget_watchwidgetprovider_swift_context", + "community": 39, + "norm_label": "context" + }, + { + "label": "WidgetEntry", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_watchwidget_widget_watchwidgetprovider_swift_widgetentry", + "community": 39, + "norm_label": "widgetentry" + }, + { + "label": ".getSnapshot()", + "file_type": "code", + "source_file": "MacMagazine/WatchWidget/Widget/WatchWidgetProvider.swift", + "source_location": "L14", + "_origin": "ast", + "id": "macmagazine_watchwidget_widget_watchwidgetprovider_watchwidgetprovider_getsnapshot", + "community": 39, + "norm_label": ".getsnapshot()" + }, + { + "label": "Sendable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_watchwidget_widget_watchwidgetprovider_swift_sendable", + "community": 39, + "norm_label": "sendable" + }, + { + "label": ".getTimeline()", + "file_type": "code", + "source_file": "MacMagazine/WatchWidget/Widget/WatchWidgetProvider.swift", + "source_location": "L22", + "_origin": "ast", + "id": "macmagazine_watchwidget_widget_watchwidgetprovider_watchwidgetprovider_gettimeline", + "community": 39, + "norm_label": ".gettimeline()" + }, + { + "label": ".getWidgetContent()", + "file_type": "code", + "source_file": "MacMagazine/WatchWidget/Widget/WatchWidgetProvider.swift", + "source_location": "L38", + "_origin": "ast", + "id": "macmagazine_watchwidget_widget_watchwidgetprovider_watchwidgetprovider_getwidgetcontent", + "community": 39, + "norm_label": ".getwidgetcontent()" + }, + { + "label": "WidgetData", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_watchwidget_widget_watchwidgetprovider_swift_widgetdata", + "community": 39, + "norm_label": "widgetdata" + }, + { + "label": "WidgetAccessibility+View.swift", + "file_type": "code", + "source_file": "MacMagazine/Widget/Extensions/WidgetAccessibility+View.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_widget_extensions_widgetaccessibility_view", + "community": 118, + "norm_label": "widgetaccessibility+view.swift" + }, + { + "label": "WidgetAccessibility", + "file_type": "code", + "source_file": "MacMagazine/Widget/Extensions/WidgetAccessibility+View.swift", + "source_location": "L4", + "_origin": "ast", + "id": "macmagazine_widget_extensions_widgetaccessibility_view_widgetaccessibility", + "community": 118, + "norm_label": "widgetaccessibility" + }, + { + "label": "View", + "file_type": "code", + "source_file": "MacMagazine/Widget/Extensions/WidgetAccessibility+View.swift", + "source_location": "L11", + "_origin": "ast", + "id": "macmagazine_widget_extensions_widgetaccessibility_view_view", + "community": 118, + "norm_label": "view" + }, + { + "label": ".widgetAccessibility()", + "file_type": "code", + "source_file": "MacMagazine/Widget/Extensions/WidgetAccessibility+View.swift", + "source_location": "L13", + "_origin": "ast", + "id": "macmagazine_widget_extensions_widgetaccessibility_view_view_widgetaccessibility", + "community": 118, + "norm_label": ".widgetaccessibility()" + }, + { + "label": "String", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_widget_extensions_widgetaccessibility_view_swift_string", + "community": 118, + "norm_label": "string" + }, + { + "label": "AccessibilityChildBehavior", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_widget_extensions_widgetaccessibility_view_swift_accessibilitychildbehavior", + "community": 118, + "norm_label": "accessibilitychildbehavior" + }, + { + "label": ".widgetRectangularAccessibility()", + "file_type": "code", + "source_file": "MacMagazine/Widget/Extensions/WidgetAccessibility+View.swift", + "source_location": "L37", + "_origin": "ast", + "id": "macmagazine_widget_extensions_widgetaccessibility_view_view_widgetrectangularaccessibility", + "community": 118, + "norm_label": ".widgetrectangularaccessibility()" + }, + { + "label": "MacMagazineWidget.swift", + "file_type": "code", + "source_file": "MacMagazine/Widget/MacMagazineWidget.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_widget_macmagazinewidget", + "community": 53, + "norm_label": "macmagazinewidget.swift" + }, + { + "label": "MacMagazineWidget", + "file_type": "code", + "source_file": "MacMagazine/Widget/MacMagazineWidget.swift", + "source_location": "L5", + "_origin": "ast", + "id": "macmagazine_widget_macmagazinewidget_macmagazinewidget", + "community": 83, + "norm_label": "macmagazinewidget" + }, + { + "label": "String", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_widget_macmagazinewidget_swift_string", + "community": 83, + "norm_label": "string" + }, + { + "label": "WidgetConfiguration", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_widget_macmagazinewidget_swift_widgetconfiguration", + "community": 83, + "norm_label": "widgetconfiguration" + }, + { + "label": "MacMagazineWidgetBundle.swift", + "file_type": "code", + "source_file": "MacMagazine/Widget/MacMagazineWidgetBundle.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_widget_macmagazinewidgetbundle", + "community": 53, + "norm_label": "macmagazinewidgetbundle.swift" + }, + { + "label": "MacMagazineWidgetBundle", + "file_type": "code", + "source_file": "MacMagazine/Widget/MacMagazineWidgetBundle.swift", + "source_location": "L4", + "_origin": "ast", + "id": "macmagazine_widget_macmagazinewidgetbundle_macmagazinewidgetbundle", + "community": 53, + "norm_label": "macmagazinewidgetbundle" + }, + { + "label": "Widget", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_widget_macmagazinewidgetbundle_swift_widget", + "community": 53, + "norm_label": "widget" + }, + { + "label": "MacMagazineWidgetLiveActivity.swift", + "file_type": "code", + "source_file": "MacMagazine/Widget/MacMagazineWidgetLiveActivity.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_widget_macmagazinewidgetliveactivity", + "community": 51, + "norm_label": "macmagazinewidgetliveactivity.swift" + }, + { + "label": "ActivityKit", + "file_type": "code", + "type": "module", + "source_file": "MacMagazine/Widget/MacMagazineWidgetLiveActivity.swift", + "source_location": "L1", + "_origin": "ast", + "id": "activitykit", + "community": 51, + "norm_label": "activitykit" + }, + { + "label": "WidgetAttributes", + "file_type": "code", + "source_file": "MacMagazine/Widget/MacMagazineWidgetLiveActivity.swift", + "source_location": "L5", + "_origin": "ast", + "id": "macmagazine_widget_macmagazinewidgetliveactivity_widgetattributes", + "community": 51, + "norm_label": "widgetattributes" + }, + { + "label": "ActivityAttributes", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "activityattributes", + "community": 51, + "norm_label": "activityattributes" + }, + { + "label": "ContentState", + "file_type": "code", + "source_file": "MacMagazine/Widget/MacMagazineWidgetLiveActivity.swift", + "source_location": "L6", + "_origin": "ast", + "id": "macmagazine_widget_macmagazinewidgetliveactivity_contentstate", + "community": 51, + "norm_label": "contentstate" + }, + { + "label": "String", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_widget_macmagazinewidgetliveactivity_swift_string", + "community": 51, + "norm_label": "string" + }, + { + "label": "MacMagazineWidgetLiveActivity", + "file_type": "code", + "source_file": "MacMagazine/Widget/MacMagazineWidgetLiveActivity.swift", + "source_location": "L15", + "_origin": "ast", + "id": "macmagazine_widget_macmagazinewidgetliveactivity_macmagazinewidgetliveactivity", + "community": 83, + "norm_label": "macmagazinewidgetliveactivity" + }, + { + "label": "WidgetConfiguration", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_widget_macmagazinewidgetliveactivity_swift_widgetconfiguration", + "community": 83, + "norm_label": "widgetconfiguration" + }, + { + "label": "WidgetAttributes.ContentState", + "file_type": "code", + "source_file": "MacMagazine/Widget/MacMagazineWidgetLiveActivity.swift", + "source_location": "L58", + "_origin": "ast", + "id": "macmagazine_widget_macmagazinewidgetliveactivity_widgetattributes_contentstate", + "community": 51, + "norm_label": "widgetattributes.contentstate" + }, + { + "label": "WidgetData.swift", + "file_type": "code", + "source_file": "MacMagazine/Widget/Models/WidgetData.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_widget_models_widgetdata", + "community": 65, + "norm_label": "widgetdata.swift" + }, + { + "label": "WidgetData", + "file_type": "code", + "source_file": "MacMagazine/Widget/Models/WidgetData.swift", + "source_location": "L4", + "_origin": "ast", + "id": "macmagazine_widget_models_widgetdata_widgetdata", + "community": 65, + "norm_label": "widgetdata" + }, + { + "label": "URL", + "file_type": "code", + "source_file": "MacMagazine/Widget/Models/WidgetData.swift", + "source_location": "L19", + "_origin": "ast", + "id": "macmagazine_widget_models_widgetdata_url", + "community": 65, + "norm_label": "url" + }, + { + "label": ".init()", + "file_type": "code", + "source_file": "MacMagazine/Widget/Models/WidgetData.swift", + "source_location": "L20", + "_origin": "ast", + "id": "macmagazine_widget_models_widgetdata_url_init", + "community": 65, + "norm_label": ".init()" + }, + { + "label": "String", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_widget_models_widgetdata_swift_string", + "community": 65, + "norm_label": "string" + }, + { + "label": "MacMagazineTimelineProvider.swift", + "file_type": "code", + "source_file": "MacMagazine/Widget/Timeline/MacMagazineTimelineProvider.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_widget_timeline_macmagazinetimelineprovider", + "community": 53, + "norm_label": "macmagazinetimelineprovider.swift" + }, + { + "label": "MacMagazineTimelineProvider", + "file_type": "code", + "source_file": "MacMagazine/Widget/Timeline/MacMagazineTimelineProvider.swift", + "source_location": "L6", + "_origin": "ast", + "id": "macmagazine_widget_timeline_macmagazinetimelineprovider_macmagazinetimelineprovider", + "community": 39, + "norm_label": "macmagazinetimelineprovider" + }, + { + "label": ".placeholder()", + "file_type": "code", + "source_file": "MacMagazine/Widget/Timeline/MacMagazineTimelineProvider.swift", + "source_location": "L12", + "_origin": "ast", + "id": "macmagazine_widget_timeline_macmagazinetimelineprovider_macmagazinetimelineprovider_placeholder", + "community": 39, + "norm_label": ".placeholder()" + }, + { + "label": "Context", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_widget_timeline_macmagazinetimelineprovider_swift_context", + "community": 39, + "norm_label": "context" + }, + { + "label": "WidgetEntry", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_widget_timeline_macmagazinetimelineprovider_swift_widgetentry", + "community": 39, + "norm_label": "widgetentry" + }, + { + "label": ".getSnapshot()", + "file_type": "code", + "source_file": "MacMagazine/Widget/Timeline/MacMagazineTimelineProvider.swift", + "source_location": "L16", + "_origin": "ast", + "id": "macmagazine_widget_timeline_macmagazinetimelineprovider_macmagazinetimelineprovider_getsnapshot", + "community": 39, + "norm_label": ".getsnapshot()" + }, + { + "label": "Void", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_widget_timeline_macmagazinetimelineprovider_swift_void", + "community": 39, + "norm_label": "void" + }, + { + "label": ".getTimeline()", + "file_type": "code", + "source_file": "MacMagazine/Widget/Timeline/MacMagazineTimelineProvider.swift", + "source_location": "L23", + "_origin": "ast", + "id": "macmagazine_widget_timeline_macmagazinetimelineprovider_macmagazinetimelineprovider_gettimeline", + "community": 39, + "norm_label": ".gettimeline()" + }, + { + "label": "Timeline", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "timeline", + "community": 39, + "norm_label": "timeline" + }, + { + "label": ".getWidgetContent()", + "file_type": "code", + "source_file": "MacMagazine/Widget/Timeline/MacMagazineTimelineProvider.swift", + "source_location": "L33", + "_origin": "ast", + "id": "macmagazine_widget_timeline_macmagazinetimelineprovider_macmagazinetimelineprovider_getwidgetcontent", + "community": 39, + "norm_label": ".getwidgetcontent()" + }, + { + "label": "WidgetData", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_widget_timeline_macmagazinetimelineprovider_swift_widgetdata", + "community": 39, + "norm_label": "widgetdata" + }, + { + "label": "WidgetEntry.swift", + "file_type": "code", + "source_file": "MacMagazine/Widget/Timeline/WidgetEntry.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_widget_timeline_widgetentry", + "community": 9, + "norm_label": "widgetentry.swift" + }, + { + "label": "WidgetEntry", + "file_type": "code", + "source_file": "MacMagazine/Widget/Timeline/WidgetEntry.swift", + "source_location": "L5", + "_origin": "ast", + "id": "macmagazine_widget_timeline_widgetentry_widgetentry", + "community": 1, + "norm_label": "widgetentry" + }, + { + "label": "WidgetData", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_widget_timeline_widgetentry_swift_widgetdata", + "community": 1, + "norm_label": "widgetdata" + }, + { + "label": "HeaderWidgetModifier.swift", + "file_type": "code", + "source_file": "MacMagazine/Widget/Views/Modifiers/HeaderWidgetModifier.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_widget_views_modifiers_headerwidgetmodifier", + "community": 84, + "norm_label": "headerwidgetmodifier.swift" + }, + { + "label": "View", + "file_type": "code", + "source_file": "MacMagazine/Widget/Views/Modifiers/HeaderWidgetModifier.swift", + "source_location": "L4", + "_origin": "ast", + "id": "macmagazine_widget_views_modifiers_headerwidgetmodifier_view", + "community": 84, + "norm_label": "view" + }, + { + "label": ".overlayHeader()", + "file_type": "code", + "source_file": "MacMagazine/Widget/Views/Modifiers/HeaderWidgetModifier.swift", + "source_location": "L5", + "_origin": "ast", + "id": "macmagazine_widget_views_modifiers_headerwidgetmodifier_view_overlayheader", + "community": 84, + "norm_label": ".overlayheader()" + }, + { + "label": ".header()", + "file_type": "code", + "source_file": "MacMagazine/Widget/Views/Modifiers/HeaderWidgetModifier.swift", + "source_location": "L9", + "_origin": "ast", + "id": "macmagazine_widget_views_modifiers_headerwidgetmodifier_view_header", + "community": 84, + "norm_label": ".header()" + }, + { + "label": "String", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_widget_views_modifiers_headerwidgetmodifier_swift_string", + "community": 84, + "norm_label": "string" + }, + { + "label": "CGFloat", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_widget_views_modifiers_headerwidgetmodifier_swift_cgfloat", + "community": 84, + "norm_label": "cgfloat" + }, + { + "label": "HeaderWidgetModifier", + "file_type": "code", + "source_file": "MacMagazine/Widget/Views/Modifiers/HeaderWidgetModifier.swift", + "source_location": "L14", + "_origin": "ast", + "id": "macmagazine_widget_views_modifiers_headerwidgetmodifier_headerwidgetmodifier", + "community": 84, + "norm_label": "headerwidgetmodifier" + }, + { + "label": ".body()", + "file_type": "code", + "source_file": "MacMagazine/Widget/Views/Modifiers/HeaderWidgetModifier.swift", + "source_location": "L27", + "_origin": "ast", + "id": "macmagazine_widget_views_modifiers_headerwidgetmodifier_headerwidgetmodifier_body", + "community": 84, + "norm_label": ".body()" + }, + { + "label": "Content", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_widget_views_modifiers_headerwidgetmodifier_swift_content", + "community": 84, + "norm_label": "content" + }, + { + "label": "OverlayHeaderWidgetModifier", + "file_type": "code", + "source_file": "MacMagazine/Widget/Views/Modifiers/HeaderWidgetModifier.swift", + "source_location": "L43", + "_origin": "ast", + "id": "macmagazine_widget_views_modifiers_headerwidgetmodifier_overlayheaderwidgetmodifier", + "community": 84, + "norm_label": "overlayheaderwidgetmodifier" + }, + { + "label": ".body()", + "file_type": "code", + "source_file": "MacMagazine/Widget/Views/Modifiers/HeaderWidgetModifier.swift", + "source_location": "L54", + "_origin": "ast", + "id": "macmagazine_widget_views_modifiers_headerwidgetmodifier_overlayheaderwidgetmodifier_body", + "community": 84, + "norm_label": ".body()" + }, + { + "label": "SmallWidgetStyleModifier.swift", + "file_type": "code", + "source_file": "MacMagazine/Widget/Views/Modifiers/SmallWidgetStyleModifier.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_widget_views_modifiers_smallwidgetstylemodifier", + "community": 119, + "norm_label": "smallwidgetstylemodifier.swift" + }, + { + "label": "View", + "file_type": "code", + "source_file": "MacMagazine/Widget/Views/Modifiers/SmallWidgetStyleModifier.swift", + "source_location": "L4", + "_origin": "ast", + "id": "macmagazine_widget_views_modifiers_smallwidgetstylemodifier_view", + "community": 119, + "norm_label": "view" + }, + { + "label": ".smallWidgetStyle()", + "file_type": "code", + "source_file": "MacMagazine/Widget/Views/Modifiers/SmallWidgetStyleModifier.swift", + "source_location": "L5", + "_origin": "ast", + "id": "macmagazine_widget_views_modifiers_smallwidgetstylemodifier_view_smallwidgetstyle", + "community": 119, + "norm_label": ".smallwidgetstyle()" + }, + { + "label": "Image", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_widget_views_modifiers_smallwidgetstylemodifier_swift_image", + "community": 119, + "norm_label": "image" + }, + { + "label": "SmallWidgetStyleModifier", + "file_type": "code", + "source_file": "MacMagazine/Widget/Views/Modifiers/SmallWidgetStyleModifier.swift", + "source_location": "L10", + "_origin": "ast", + "id": "macmagazine_widget_views_modifiers_smallwidgetstylemodifier_smallwidgetstylemodifier", + "community": 119, + "norm_label": "smallwidgetstylemodifier" + }, + { + "label": ".body()", + "file_type": "code", + "source_file": "MacMagazine/Widget/Views/Modifiers/SmallWidgetStyleModifier.swift", + "source_location": "L25", + "_origin": "ast", + "id": "macmagazine_widget_views_modifiers_smallwidgetstylemodifier_smallwidgetstylemodifier_body", + "community": 119, + "norm_label": ".body()" + }, + { + "label": "Content", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_widget_views_modifiers_smallwidgetstylemodifier_swift_content", + "community": 119, + "norm_label": "content" + }, + { + "label": "WidgetElementView.swift", + "file_type": "code", + "source_file": "MacMagazine/Widget/Views/WidgetElementView.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_widget_views_widgetelementview", + "community": 2, + "norm_label": "widgetelementview.swift" + }, + { + "label": "WidgetElementView", + "file_type": "code", + "source_file": "MacMagazine/Widget/Views/WidgetElementView.swift", + "source_location": "L9", + "_origin": "ast", + "id": "macmagazine_widget_views_widgetelementview_widgetelementview", + "community": 90, + "norm_label": "widgetelementview" + }, + { + "label": "WidgetData", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_widget_views_widgetelementview_swift_widgetdata", + "community": 90, + "norm_label": "widgetdata" + }, + { + "label": "Image", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_widget_views_widgetelementview_swift_image", + "community": 90, + "norm_label": "image" + }, + { + "label": "CGFloat", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_widget_views_widgetelementview_swift_cgfloat", + "community": 90, + "norm_label": "cgfloat" + }, + { + "label": "WidgetView.swift", + "file_type": "code", + "source_file": "MacMagazine/Widget/Views/WidgetView.swift", + "source_location": "L1", + "_origin": "ast", + "id": "macmagazine_widget_views_widgetview", + "community": 2, + "norm_label": "widgetview.swift" + }, + { + "label": "WidgetView", + "file_type": "code", + "source_file": "MacMagazine/Widget/Views/WidgetView.swift", + "source_location": "L7", + "_origin": "ast", + "id": "macmagazine_widget_views_widgetview_widgetview", + "community": 90, + "norm_label": "widgetview" + }, + { + "label": "AnalyticsManager", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_widget_views_widgetview_swift_analyticsmanager", + "community": 90, + "norm_label": "analyticsmanager" + }, + { + "label": "WidgetEntry", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_widget_views_widgetview_swift_widgetentry", + "community": 90, + "norm_label": "widgetentry" + }, + { + "label": "WidgetData", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_widget_views_widgetview_swift_widgetdata", + "community": 90, + "norm_label": "widgetdata" + }, + { + "label": ".content()", + "file_type": "code", + "source_file": "MacMagazine/Widget/Views/WidgetView.swift", + "source_location": "L38", + "_origin": "ast", + "id": "macmagazine_widget_views_widgetview_widgetview_content", + "community": 90, + "norm_label": ".content()" + }, + { + "label": "Int", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_widget_views_widgetview_swift_int", + "community": 90, + "norm_label": "int" + }, + { + "label": "WidgetFamily", + "file_type": "code", + "source_file": "MacMagazine/Widget/Views/WidgetView.swift", + "source_location": "L51", + "_origin": "ast", + "id": "macmagazine_widget_views_widgetview_widgetfamily", + "community": 83, + "norm_label": "widgetfamily" + }, + { + "label": "CGFloat", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "macmagazine_widget_views_widgetview_swift_cgfloat", + "community": 83, + "norm_label": "cgfloat" + }, + { + "label": "ci_post_clone.sh", + "file_type": "code", + "source_file": "MacMagazine/ci_scripts/ci_post_clone.sh", + "source_location": "L1", + "metadata": { + "language": "bash", + "kind": "file" + }, + "_origin": "ast", + "id": "macmagazine_ci_scripts_ci_post_clone", + "community": 155, + "norm_label": "ci_post_clone.sh" + }, + { + "label": "ci_post_clone.sh script", + "file_type": "code", + "source_file": "MacMagazine/ci_scripts/ci_post_clone.sh", + "source_location": "L1", + "metadata": { + "language": "bash", + "kind": "bash_entrypoint" + }, + "_origin": "ast", + "id": "macmagazine_ci_scripts_ci_post_clone_sh__entry", + "community": 155, + "norm_label": "ci_post_clone.sh script" + }, + { + "label": "clean-build-folders.sh", + "file_type": "code", + "source_file": "Support/Scripts/clean-build-folders.sh", + "source_location": "L1", + "metadata": { + "language": "bash", + "kind": "file" + }, + "_origin": "ast", + "id": "support_scripts_clean_build_folders", + "community": 156, + "norm_label": "clean-build-folders.sh" + }, + { + "label": "clean-build-folders.sh script", + "file_type": "code", + "source_file": "Support/Scripts/clean-build-folders.sh", + "source_location": "L1", + "metadata": { + "language": "bash", + "kind": "bash_entrypoint" + }, + "_origin": "ast", + "id": "support_scripts_clean_build_folders_sh__entry", + "community": 156, + "norm_label": "clean-build-folders.sh script" + }, + { + "label": "generate-firebase-config.sh", + "file_type": "code", + "source_file": "Support/Scripts/generate-firebase-config.sh", + "source_location": "L1", + "metadata": { + "language": "bash", + "kind": "file" + }, + "_origin": "ast", + "id": "support_scripts_generate_firebase_config", + "community": 157, + "norm_label": "generate-firebase-config.sh" + }, + { + "label": "generate-firebase-config.sh script", + "file_type": "code", + "source_file": "Support/Scripts/generate-firebase-config.sh", + "source_location": "L1", + "metadata": { + "language": "bash", + "kind": "bash_entrypoint" + }, + "_origin": "ast", + "id": "support_scripts_generate_firebase_config_sh__entry", + "community": 157, + "norm_label": "generate-firebase-config.sh script" + }, + { + "label": "setup-firebase.sh", + "file_type": "code", + "source_file": "Support/Scripts/setup-firebase.sh", + "source_location": "L1", + "metadata": { + "language": "bash", + "kind": "file" + }, + "_origin": "ast", + "id": "support_scripts_setup_firebase", + "community": 158, + "norm_label": "setup-firebase.sh" + }, + { + "label": "setup-firebase.sh script", + "file_type": "code", + "source_file": "Support/Scripts/setup-firebase.sh", + "source_location": "L1", + "metadata": { + "language": "bash", + "kind": "bash_entrypoint" + }, + "_origin": "ast", + "id": "support_scripts_setup_firebase_sh__entry", + "community": 158, + "norm_label": "setup-firebase.sh script" + }, + { + "label": "updateBuildVersion.sh", + "file_type": "code", + "source_file": "Support/Scripts/updateBuildVersion.sh", + "source_location": "L1", + "metadata": { + "language": "bash", + "kind": "file" + }, + "_origin": "ast", + "id": "support_scripts_updatebuildversion", + "community": 159, + "norm_label": "updatebuildversion.sh" + }, + { + "label": "updateBuildVersion.sh script", + "file_type": "code", + "source_file": "Support/Scripts/updateBuildVersion.sh", + "source_location": "L1", + "metadata": { + "language": "bash", + "kind": "bash_entrypoint" + }, + "_origin": "ast", + "id": "support_scripts_updatebuildversion_sh__entry", + "community": 159, + "norm_label": "updatebuildversion.sh script" + } + ], + "links": [ + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/hooks/post-tool-use.sh", + "source_location": "L1", + "weight": 1.0, + "source": "claude_hooks_post_tool_use", + "target": "claude_hooks_post_tool_use_sh__entry", + "confidence_score": 1.0 + }, + { + "relation": "defines", + "confidence": "EXTRACTED", + "source_file": ".claude/hooks/pre-tool-use.sh", + "source_location": "L19", + "weight": 1.0, + "source": "claude_hooks_pre_tool_use", + "target": "claude_hooks_pre_tool_use_block", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/hooks/pre-tool-use.sh", + "source_location": "L1", + "weight": 1.0, + "source": "claude_hooks_pre_tool_use", + "target": "claude_hooks_pre_tool_use_sh__entry", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "confidence": "EXTRACTED", + "source_file": ".claude/hooks/pre-tool-use.sh", + "source_location": "L22", + "weight": 1.0, + "context": "call", + "source": "claude_hooks_pre_tool_use_sh__entry", + "target": "claude_hooks_pre_tool_use_block", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/hooks/stop.sh", + "source_location": "L1", + "weight": 1.0, + "source": "claude_hooks_stop", + "target": "claude_hooks_stop_sh__entry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/settings.json", + "source_location": "L51", + "weight": 1.0, + "source": "claude_settings", + "target": "claude_settings_hooks", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/settings.json", + "source_location": "L3", + "weight": 1.0, + "source": "claude_settings", + "target": "claude_settings_permissions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/settings.json", + "source_location": "L2", + "weight": 1.0, + "source": "claude_settings", + "target": "claude_settings_schema", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/settings.json", + "source_location": "L4", + "weight": 1.0, + "source": "claude_settings_permissions", + "target": "claude_settings_permissions_allow", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/settings.json", + "source_location": "L31", + "weight": 1.0, + "source": "claude_settings_permissions", + "target": "claude_settings_permissions_ask", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/settings.json", + "source_location": "L35", + "weight": 1.0, + "source": "claude_settings_permissions", + "target": "claude_settings_permissions_deny", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": ".claude/settings.json", + "source_location": "L4", + "weight": 1.0, + "context": "import", + "source": "claude_settings_permissions_allow", + "target": "ref_bash_find", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": ".claude/settings.json", + "source_location": "L4", + "weight": 1.0, + "context": "import", + "source": "claude_settings_permissions_allow", + "target": "ref_bash_gh_api", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": ".claude/settings.json", + "source_location": "L4", + "weight": 1.0, + "context": "import", + "source": "claude_settings_permissions_allow", + "target": "ref_bash_gh_issue", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": ".claude/settings.json", + "source_location": "L4", + "weight": 1.0, + "context": "import", + "source": "claude_settings_permissions_allow", + "target": "ref_bash_gh_pr", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": ".claude/settings.json", + "source_location": "L4", + "weight": 1.0, + "context": "import", + "source": "claude_settings_permissions_allow", + "target": "ref_bash_gh_repo", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": ".claude/settings.json", + "source_location": "L4", + "weight": 1.0, + "context": "import", + "source": "claude_settings_permissions_allow", + "target": "ref_bash_git_add", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": ".claude/settings.json", + "source_location": "L4", + "weight": 1.0, + "context": "import", + "source": "claude_settings_permissions_allow", + "target": "ref_bash_git_checkout", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": ".claude/settings.json", + "source_location": "L4", + "weight": 1.0, + "context": "import", + "source": "claude_settings_permissions_allow", + "target": "ref_bash_git_commit", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": ".claude/settings.json", + "source_location": "L4", + "weight": 1.0, + "context": "import", + "source": "claude_settings_permissions_allow", + "target": "ref_bash_git_diff", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": ".claude/settings.json", + "source_location": "L4", + "weight": 1.0, + "context": "import", + "source": "claude_settings_permissions_allow", + "target": "ref_bash_git_log", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": ".claude/settings.json", + "source_location": "L4", + "weight": 1.0, + "context": "import", + "source": "claude_settings_permissions_allow", + "target": "ref_bash_git_push", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": ".claude/settings.json", + "source_location": "L4", + "weight": 1.0, + "context": "import", + "source": "claude_settings_permissions_allow", + "target": "ref_bash_git_status", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": ".claude/settings.json", + "source_location": "L4", + "weight": 1.0, + "context": "import", + "source": "claude_settings_permissions_allow", + "target": "ref_bash_git_switch", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": ".claude/settings.json", + "source_location": "L4", + "weight": 1.0, + "context": "import", + "source": "claude_settings_permissions_allow", + "target": "ref_bash_support_scripts", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": ".claude/settings.json", + "source_location": "L4", + "weight": 1.0, + "context": "import", + "source": "claude_settings_permissions_allow", + "target": "ref_bash_swift_build", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": ".claude/settings.json", + "source_location": "L4", + "weight": 1.0, + "context": "import", + "source": "claude_settings_permissions_allow", + "target": "ref_bash_swift_package", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": ".claude/settings.json", + "source_location": "L4", + "weight": 1.0, + "context": "import", + "source": "claude_settings_permissions_allow", + "target": "ref_bash_swift_test", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": ".claude/settings.json", + "source_location": "L4", + "weight": 1.0, + "context": "import", + "source": "claude_settings_permissions_allow", + "target": "ref_bash_swiftlint", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": ".claude/settings.json", + "source_location": "L4", + "weight": 1.0, + "context": "import", + "source": "claude_settings_permissions_allow", + "target": "ref_bash_xcodebuild", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": ".claude/settings.json", + "source_location": "L4", + "weight": 1.0, + "context": "import", + "source": "claude_settings_permissions_allow", + "target": "ref_bash_xcrun_simctl", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": ".claude/settings.json", + "source_location": "L4", + "weight": 1.0, + "context": "import", + "source": "claude_settings_permissions_allow", + "target": "ref_edit", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": ".claude/settings.json", + "source_location": "L4", + "weight": 1.0, + "context": "import", + "source": "claude_settings_permissions_allow", + "target": "ref_glob", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": ".claude/settings.json", + "source_location": "L4", + "weight": 1.0, + "context": "import", + "source": "claude_settings_permissions_allow", + "target": "ref_grep", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": ".claude/settings.json", + "source_location": "L4", + "weight": 1.0, + "context": "import", + "source": "claude_settings_permissions_allow", + "target": "ref_read", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": ".claude/settings.json", + "source_location": "L4", + "weight": 1.0, + "context": "import", + "source": "claude_settings_permissions_allow", + "target": "ref_write", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": ".claude/settings.json", + "source_location": "L31", + "weight": 1.0, + "context": "import", + "source": "claude_settings_permissions_ask", + "target": "ref_edit_xcodeproj", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": ".claude/settings.json", + "source_location": "L31", + "weight": 1.0, + "context": "import", + "source": "claude_settings_permissions_ask", + "target": "ref_write_xcodeproj", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": ".claude/settings.json", + "source_location": "L35", + "weight": 1.0, + "context": "import", + "source": "claude_settings_permissions_deny", + "target": "ref_bash_git_push_f", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": ".claude/settings.json", + "source_location": "L35", + "weight": 1.0, + "context": "import", + "source": "claude_settings_permissions_deny", + "target": "ref_bash_git_push_force", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": ".claude/settings.json", + "source_location": "L35", + "weight": 1.0, + "context": "import", + "source": "claude_settings_permissions_deny", + "target": "ref_bash_git_reset_hard", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": ".claude/settings.json", + "source_location": "L35", + "weight": 1.0, + "context": "import", + "source": "claude_settings_permissions_deny", + "target": "ref_bash_rm_rf", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": ".claude/settings.json", + "source_location": "L35", + "weight": 1.0, + "context": "import", + "source": "claude_settings_permissions_deny", + "target": "ref_bash_sudo", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": ".claude/settings.json", + "source_location": "L35", + "weight": 1.0, + "context": "import", + "source": "claude_settings_permissions_deny", + "target": "ref_read_env", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": ".claude/settings.json", + "source_location": "L35", + "weight": 1.0, + "context": "import", + "source": "claude_settings_permissions_deny", + "target": "ref_read_git", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": ".claude/settings.json", + "source_location": "L35", + "weight": 1.0, + "context": "import", + "source": "claude_settings_permissions_deny", + "target": "ref_read_googleservice_info_plist", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": ".claude/settings.json", + "source_location": "L35", + "weight": 1.0, + "context": "import", + "source": "claude_settings_permissions_deny", + "target": "ref_read_mobileprovision", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": ".claude/settings.json", + "source_location": "L35", + "weight": 1.0, + "context": "import", + "source": "claude_settings_permissions_deny", + "target": "ref_read_p12", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": ".claude/settings.json", + "source_location": "L35", + "weight": 1.0, + "context": "import", + "source": "claude_settings_permissions_deny", + "target": "ref_read_p8", + "confidence_score": 1.0 + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": ".claude/settings.json", + "source_location": "L35", + "weight": 1.0, + "context": "import", + "source": "claude_settings_permissions_deny", + "target": "ref_read_xcconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/settings.json", + "source_location": "L81", + "weight": 1.0, + "source": "claude_settings_hooks", + "target": "claude_settings_hooks_posttooluse", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/settings.json", + "source_location": "L52", + "weight": 1.0, + "source": "claude_settings_hooks", + "target": "claude_settings_hooks_pretooluse", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/settings.json", + "source_location": "L92", + "weight": 1.0, + "source": "claude_settings_hooks", + "target": "claude_settings_hooks_stop", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Package.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_package", + "target": "packagedescription", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Package.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_package", + "target": "packagedescription", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Package.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_package", + "target": "packagedescription", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MMLiveLibrary/Package.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_features_mmlivelibrary_package", + "target": "packagedescription", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Package.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_package", + "target": "packagedescription", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Package.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_package", + "target": "packagedescription", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Package.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_package", + "target": "packagedescription", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Package.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_package", + "target": "packagedescription", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Package.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_package", + "target": "packagedescription", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/VideosLibrary/Package.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_features_videoslibrary_package", + "target": "packagedescription", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Database/FeedDB.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_database_feeddb", + "target": "foundation", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Database/FeedDB.swift", + "source_location": "L93", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_database_feeddb", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_database_feeddb_feeddb", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Database/FeedDB.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_database_feeddb", + "target": "macmagazinelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Database/FeedDB.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_database_feeddb", + "target": "swiftdata", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Database/FeedDB.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_database_feeddb", + "target": "widgetkit", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Database/PodcastDB.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_database_podcastdb", + "target": "foundation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Extensions/StringExtensions.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_extensions_stringextensions", + "target": "foundation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Models/NewsCategoryExtensions.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_models_newscategoryextensions", + "target": "foundation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Models/WidgetData.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_models_widgetdata", + "target": "foundation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/FeedEndpoint.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_services_feedendpoint", + "target": "foundation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/NetworkService.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_services_networkservice", + "target": "foundation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/Parser/APIXMLParser.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_apixmlparser", + "target": "foundation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/Parser/DateParser.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_dateparser", + "target": "foundation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/Parser/XMLPost.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_xmlpost", + "target": "foundation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/StorageService.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice", + "target": "foundation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel", + "target": "foundation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/DateParserTests.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_dateparsertests", + "target": "foundation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedDBTests.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests", + "target": "foundation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedEndpointTests.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedendpointtests", + "target": "foundation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedViewModelTests.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedviewmodeltests", + "target": "foundation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/PodcastDBTests.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests", + "target": "foundation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests", + "target": "foundation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StringExtensionsTests.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_stringextensionstests", + "target": "foundation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/WidgetDataTests.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_widgetdatatests", + "target": "foundation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/XMLParserTests.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_xmlparsertests", + "target": "foundation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/XMLPostTests.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_xmlposttests", + "target": "foundation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants", + "target": "foundation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AppDefinitions.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions", + "target": "foundation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/DateExtensions.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_dateextensions", + "target": "foundation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/ModelProtocols.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_modelprotocols", + "target": "foundation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/NewsCategory.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_newscategory", + "target": "foundation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/PushNotification/PushNotification.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_pushnotification", + "target": "foundation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/PushNotification/UserModel.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_usermodel", + "target": "foundation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/SessionState.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_sessionstate", + "target": "foundation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/ThemeColor.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_themecolor", + "target": "foundation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/URLClassifier.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_urlclassifier", + "target": "foundation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/Utils.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_utils", + "target": "foundation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Tests/MacMagazineLibraryTests/AppDefinitionsTests.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_appdefinitionstests", + "target": "foundation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Tests/MacMagazineLibraryTests/URLClassifierTests.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_urlclassifiertests", + "target": "foundation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/ArrayExtensions.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_arrayextensions", + "target": "foundation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Model/CardContent.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardcontent", + "target": "foundation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Model/CardStyle.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardstyle", + "target": "foundation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/PreviewData/ContentPreview.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_previewdata_contentpreview", + "target": "foundation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/Cookies.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_cookies", + "target": "foundation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/Disqus/DisqusDataStore.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_disqus_disqusdatastore", + "target": "foundation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/Disqus/DisqusNewWindowHandler.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_disqus_disqusnewwindowhandler", + "target": "foundation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview", + "target": "foundation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebViewUserScripts.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebviewuserscripts", + "target": "foundation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CookiesTests.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cookiestests", + "target": "foundation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MMLiveLibrary/Sources/MMLiveLibrary/Models/MMLive.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_models_mmlive", + "target": "foundation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MMLiveLibrary/Sources/MMLiveLibrary/Services/MMLiveEndpoint.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_services_mmliveendpoint", + "target": "foundation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MMLiveLibrary/Sources/MMLiveLibrary/Services/NetworkService.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_services_networkservice", + "target": "foundation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MMLiveLibrary/Sources/MMLiveLibrary/Services/PushNotification.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_services_pushnotification", + "target": "foundation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MMLiveLibrary/Sources/MMLiveLibrary/Services/StorageService.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_services_storageservice", + "target": "foundation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MMLiveLibrary/Sources/MMLiveLibrary/ViewModel/MMLiveViewModel.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_viewmodel_mmliveviewmodel", + "target": "foundation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MMLiveLibrary/Tests/MMLiveLibraryTests/MMLiveViewModelTests.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_mmlivelibrary_tests_mmlivelibrarytests_mmliveviewmodeltests", + "target": "foundation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Extensions/ArrayExtensions.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_sources_newslibrary_extensions_arrayextensions", + "target": "foundation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Extensions/FeedDBExtensions.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_sources_newslibrary_extensions_feeddbextensions", + "target": "foundation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/ViewModel/NewsViewModel.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_sources_newslibrary_viewmodel_newsviewmodel", + "target": "foundation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Mock/PreviewData.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_sources_newslibrary_views_mock_previewdata", + "target": "foundation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Tests/NewsLibraryTests/NewsViewModelTests.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests", + "target": "foundation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/ViewModels/OnboardingCoordinator.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_onboardingcoordinator", + "target": "foundation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/ViewModels/PermissionManager.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_permissionmanager", + "target": "foundation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Tests/OnboardingLibraryTests/OnboardingCoordinatorTests.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_tests_onboardinglibrarytests_onboardingcoordinatortests", + "target": "foundation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Extensions/PodcastDBExtensions.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_extensions_podcastdbextensions", + "target": "foundation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/PodcastChapter.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastchapter", + "target": "foundation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/PodcastPlayerManager.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager", + "target": "foundation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/ViewModel/PodcastViewModel.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_viewmodel_podcastviewmodel", + "target": "foundation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/Background/BackgroundViewModel.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_background_backgroundviewmodel", + "target": "foundation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastChapterTests.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests", + "target": "foundation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastPlayerManagerTests.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastplayermanagertests", + "target": "foundation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastViewModelTests.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests", + "target": "foundation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Models/RecentSearchDB.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_models_recentsearchdb", + "target": "foundation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Models/SearchResult.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_models_searchresult", + "target": "foundation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/NLP/QueryIntent.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryintent", + "target": "foundation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/NLP/QueryProcessor.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryprocessor", + "target": "foundation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Services/LocalSearchService.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_services_localsearchservice", + "target": "foundation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Services/RelevanceScorer.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_services_relevancescorer", + "target": "foundation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Services/RemoteFeedSearchService.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_services_remotefeedsearchservice", + "target": "foundation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Services/SearchResultMerger.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_services_searchresultmerger", + "target": "foundation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/ViewModel/SearchViewModel.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_viewmodel_searchviewmodel", + "target": "foundation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/RelevanceScorerTests.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_relevancescorertests", + "target": "foundation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/RemoteFeedSearchServiceTests.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_remotefeedsearchservicetests", + "target": "foundation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchResultMergerTests.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchresultmergertests", + "target": "foundation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchViewModelTests.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests", + "target": "foundation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/Cache.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_cache", + "target": "foundation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/Databases/CustomizationDB.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_databases_customizationdb", + "target": "foundation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/Databases/SettingsDB.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_databases_settingsdb", + "target": "foundation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/IconType.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_icontype", + "target": "foundation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/PushPreferences.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_pushpreferences", + "target": "foundation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/Subscription.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_subscription", + "target": "foundation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/URLs.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_urls", + "target": "foundation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/AppearanceViewModel.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_appearanceviewmodel", + "target": "foundation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/CustomizationViewModel.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_customizationviewmodel", + "target": "foundation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/Extensions/Database.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_extensions_database", + "target": "foundation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/PostsVisibilityViewModel.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_postsvisibilityviewmodel", + "target": "foundation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/PushOptionsViewModel.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_pushoptionsviewmodel", + "target": "foundation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/ReadingPreferencesViewModel.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_readingpreferencesviewmodel", + "target": "foundation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/SubscriptionViewModel.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_subscriptionviewmodel", + "target": "foundation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/DatabaseExtensionsTests.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_databaseextensionstests", + "target": "foundation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SettingsViewModelTests.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_settingsviewmodeltests", + "target": "foundation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SubscriptionTests.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_subscriptiontests", + "target": "foundation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/Model/VideoDBExtensions.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_videoslibrary_sources_videos_model_videodbextensions", + "target": "foundation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/VideosViewModel.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_videoslibrary_sources_videos_videosviewmodel", + "target": "foundation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/VideosLibrary/Tests/VideosLibraryTests/VideosViewModelTests.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_videoslibrary_tests_videoslibrarytests_videosviewmodeltests", + "target": "foundation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/Features/Shortcuts/ShortcutActions.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_macmagazine_features_shortcuts_shortcutactions", + "target": "foundation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/Extension/FeedDB.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_watchapp_extension_feeddb", + "target": "foundation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/MainApp/WatchNotificationsDelegate.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_watchapp_mainapp_watchnotificationsdelegate", + "target": "foundation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/ViewModel/FeedMainViewModel.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_watchapp_viewmodel_feedmainviewmodel", + "target": "foundation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchWidget/Model/WidgetEntry.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_watchwidget_model_widgetentry", + "target": "foundation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/Models/WidgetData.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_widget_models_widgetdata", + "target": "foundation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/Timeline/WidgetEntry.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_widget_timeline_widgetentry", + "target": "foundation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Database/PodcastDB.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_database_podcastdb", + "target": "macmagazinelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Models/NewsCategoryExtensions.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_models_newscategoryextensions", + "target": "macmagazinelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/NetworkService.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_services_networkservice", + "target": "macmagazinelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/StorageService.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice", + "target": "macmagazinelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel", + "target": "macmagazinelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/CategoryTests.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_categorytests", + "target": "macmagazinelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Tests/MacMagazineLibraryTests/AppDefinitionsTests.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_appdefinitionstests", + "target": "macmagazinelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Tests/MacMagazineLibraryTests/URLClassifierTests.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_urlclassifiertests", + "target": "macmagazinelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/ArrayExtensions.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_arrayextensions", + "target": "macmagazinelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Model/CardContent.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardcontent", + "target": "macmagazinelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Model/CardStyle.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardstyle", + "target": "macmagazinelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/GlassCardView.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_glasscardview", + "target": "macmagazinelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/LeadingImageCard.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_leadingimagecard", + "target": "macmagazinelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/NewsCard.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_newscard", + "target": "macmagazinelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/MenuView.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_menuview", + "target": "macmagazinelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMNavigationDecider.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmnavigationdecider", + "target": "macmagazinelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview", + "target": "macmagazinelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CardSystemTests.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cardsystemtests", + "target": "macmagazinelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MMLiveLibrary/Sources/MMLiveLibrary/Services/PushNotification.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_services_pushnotification", + "target": "macmagazinelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MMLiveLibrary/Sources/MMLiveLibrary/ViewModel/MMLiveViewModel.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_viewmodel_mmliveviewmodel", + "target": "macmagazinelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Extensions/ArrayExtensions.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_sources_newslibrary_extensions_arrayextensions", + "target": "macmagazinelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Extensions/FeedDBExtensions.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_sources_newslibrary_extensions_feeddbextensions", + "target": "macmagazinelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/FeedHighlightCardView.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_sources_newslibrary_views_components_feedhighlightcardview", + "target": "macmagazinelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/FeedHighlightsCarouselView.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_sources_newslibrary_views_components_feedhighlightscarouselview", + "target": "macmagazinelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/NewsView.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_sources_newslibrary_views_newsview", + "target": "macmagazinelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/ViewModels/OnboardingCoordinator.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_onboardingcoordinator", + "target": "macmagazinelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/ViewModels/PermissionManager.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_permissionmanager", + "target": "macmagazinelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Components/OnboardingCTAButton.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_onboardingctabutton", + "target": "macmagazinelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Components/OnboardingSkipButton.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_onboardingskipbutton", + "target": "macmagazinelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Components/OnboardingTitleView.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_onboardingtitleview", + "target": "macmagazinelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/OnboardingContainerView.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_onboardingcontainerview", + "target": "macmagazinelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Screen1_WelcomeView.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_screen1_welcomeview", + "target": "macmagazinelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Screen2_FeaturesView.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_screen2_featuresview", + "target": "macmagazinelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Screen3_PermissionsView.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_screen3_permissionsview", + "target": "macmagazinelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Tests/OnboardingLibraryTests/OnboardingCoordinatorTests.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_tests_onboardinglibrarytests_onboardingcoordinatortests", + "target": "macmagazinelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Extensions/PodcastDBExtensions.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_extensions_podcastdbextensions", + "target": "macmagazinelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/PodcastPlayerManager.swift", + "source_location": "L5", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager", + "target": "macmagazinelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Modifiers/PodcastMiniPlayerModifier.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_modifiers_podcastminiplayermodifier", + "target": "macmagazinelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Card/AdaptivePodcastCardView.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_card_adaptivepodcastcardview", + "target": "macmagazinelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Card/GlassPodcastCardView.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_card_glasspodcastcardview", + "target": "macmagazinelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Card/PodcastCardView.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_card_podcastcardview", + "target": "macmagazinelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/ChaptersView.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_chaptersview", + "target": "macmagazinelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/FullPlayerView.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_fullplayerview", + "target": "macmagazinelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/MiniPlayerView.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_miniplayerview", + "target": "macmagazinelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/PodcastView.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_podcastview", + "target": "macmagazinelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/NLP/PortugueseLexicon.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_portugueselexicon", + "target": "macmagazinelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/NLP/QueryIntent.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryintent", + "target": "macmagazinelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Services/RemoteFeedSearchService.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_services_remotefeedsearchservice", + "target": "macmagazinelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchResultsList.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist", + "target": "macmagazinelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchView.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchview", + "target": "macmagazinelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/Databases/CustomizationDB.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_databases_customizationdb", + "target": "macmagazinelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/Databases/SettingsDB.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_databases_settingsdb", + "target": "macmagazinelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/CustomizationViewModel.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_customizationviewmodel", + "target": "macmagazinelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/Extensions/Database.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_extensions_database", + "target": "macmagazinelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/PostsVisibilityViewModel.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_postsvisibilityviewmodel", + "target": "macmagazinelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/PushOptionsViewModel.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_pushoptionsviewmodel", + "target": "macmagazinelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/ReadingPreferencesViewModel.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_readingpreferencesviewmodel", + "target": "macmagazinelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/SettingsViewModel.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_settingsviewmodel", + "target": "macmagazinelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/SubscriptionViewModel.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_subscriptionviewmodel", + "target": "macmagazinelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Extensions/CustomProductViewStyle.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_extensions_customproductviewstyle", + "target": "macmagazinelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/SettingsView.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_settingsview", + "target": "macmagazinelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/AboutView.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_aboutview", + "target": "macmagazinelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/AppearanceView.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_appearanceview", + "target": "macmagazinelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/CustomSocialView.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_customsocialview", + "target": "macmagazinelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/CustomTabView.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_customtabview", + "target": "macmagazinelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/IconsView.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_iconsview", + "target": "macmagazinelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/PostsVisibilityView.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_postsvisibilityview", + "target": "macmagazinelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/PushOptionsView.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_pushoptionsview", + "target": "macmagazinelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/ReadingPreferencesView.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_readingpreferencesview", + "target": "macmagazinelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/SubscriptionView.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_subscriptionview", + "target": "macmagazinelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SettingsViewModelTests.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_settingsviewmodeltests", + "target": "macmagazinelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/Card/AdaptiveVideoCard.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_videoslibrary_sources_videos_card_adaptivevideocard", + "target": "macmagazinelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/Model/VideoDBExtensions.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_videoslibrary_sources_videos_model_videodbextensions", + "target": "macmagazinelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/VideosView.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_videoslibrary_sources_videos_videosview", + "target": "macmagazinelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/Features/News/DeepLinkNewsDetailView.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_macmagazine_features_news_deeplinknewsdetailview", + "target": "macmagazinelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/Features/News/NewsView.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_macmagazine_features_news_newsview", + "target": "macmagazinelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/Features/Shortcuts/ShortcutManager.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_macmagazine_features_shortcuts_shortcutmanager", + "target": "macmagazinelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/Features/Social/SocialView.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_macmagazine_features_social_socialview", + "target": "macmagazinelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/AppDelegate.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_appdelegate", + "target": "macmagazinelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/MacMagazineApp.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_macmagazineapp", + "target": "macmagazinelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/MainView.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_mainview", + "target": "macmagazinelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/MainViewModel.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_mainviewmodel", + "target": "macmagazinelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/NavigationState.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_navigationstate", + "target": "macmagazinelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/SceneDelegate.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_scenedelegate", + "target": "macmagazinelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/Sizecalss/MainView+sidebar.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_sizecalss_mainview_sidebar", + "target": "macmagazinelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/Sizecalss/MainView+tabbar.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_sizecalss_mainview_tabbar", + "target": "macmagazinelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/Modifiers/NavigationModifier.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_macmagazine_modifiers_navigationmodifier", + "target": "macmagazinelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/Extension/FeedDB.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_watchapp_extension_feeddb", + "target": "macmagazinelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/MainApp/WatchNotificationsDelegate.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_watchapp_mainapp_watchnotificationsdelegate", + "target": "macmagazinelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchWidget/Views/WatchWidgetEntryView.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_watchwidget_views_watchwidgetentryview", + "target": "macmagazinelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/Views/WidgetElementView.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_widget_views_widgetelementview", + "target": "macmagazinelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/Views/WidgetView.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_widget_views_widgetview", + "target": "macmagazinelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Database/PodcastDB.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_database_podcastdb", + "target": "swiftdata", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/StorageService.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice", + "target": "swiftdata", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", + "source_location": "L5", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel", + "target": "swiftdata", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedDBTests.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests", + "target": "swiftdata", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/PodcastDBTests.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests", + "target": "swiftdata", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/ModelProtocols.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_modelprotocols", + "target": "swiftdata", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MMLiveLibrary/Sources/MMLiveLibrary/Services/StorageService.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_services_storageservice", + "target": "swiftdata", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Extensions/FeedDBExtensions.swift", + "source_location": "L6", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_sources_newslibrary_extensions_feeddbextensions", + "target": "swiftdata", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/ViewModel/NewsViewModel.swift", + "source_location": "L5", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_sources_newslibrary_viewmodel_newsviewmodel", + "target": "swiftdata", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/FeedHighlightCardView.swift", + "source_location": "L5", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_sources_newslibrary_views_components_feedhighlightcardview", + "target": "swiftdata", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/NewsView.swift", + "source_location": "L7", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_sources_newslibrary_views_newsview", + "target": "swiftdata", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Extensions/PodcastDBExtensions.swift", + "source_location": "L6", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_extensions_podcastdbextensions", + "target": "swiftdata", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/ViewModel/PodcastViewModel.swift", + "source_location": "L5", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_viewmodel_podcastviewmodel", + "target": "swiftdata", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Card/GlassPodcastCardView.swift", + "source_location": "L5", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_card_glasspodcastcardview", + "target": "swiftdata", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/PodcastView.swift", + "source_location": "L6", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_podcastview", + "target": "swiftdata", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Models/RecentSearchDB.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_models_recentsearchdb", + "target": "swiftdata", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Services/LocalSearchService.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_services_localsearchservice", + "target": "swiftdata", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/ViewModel/SearchViewModel.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_viewmodel_searchviewmodel", + "target": "swiftdata", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchResultsList.swift", + "source_location": "L7", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist", + "target": "swiftdata", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchViewModelTests.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests", + "target": "swiftdata", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/ColorScheme.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_colorscheme", + "target": "swiftdata", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/Databases/CustomizationDB.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_databases_customizationdb", + "target": "swiftdata", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/Databases/SettingsDB.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_databases_settingsdb", + "target": "swiftdata", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/IconType.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_icontype", + "target": "swiftdata", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/Extensions/Database.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_extensions_database", + "target": "swiftdata", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/PostsVisibilityViewModel.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_postsvisibilityviewmodel", + "target": "swiftdata", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/ReadingPreferencesViewModel.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_readingpreferencesviewmodel", + "target": "swiftdata", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/SettingsViewModel.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_settingsviewmodel", + "target": "swiftdata", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/Card/AdaptiveVideoCard.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_features_videoslibrary_sources_videos_card_adaptivevideocard", + "target": "swiftdata", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/Model/VideoDBExtensions.swift", + "source_location": "L5", + "weight": 1.0, + "source": "macmagazine_features_videoslibrary_sources_videos_model_videodbextensions", + "target": "swiftdata", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/VideosViewModel.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_features_videoslibrary_sources_videos_videosviewmodel", + "target": "swiftdata", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/Features/News/DeepLinkNewsDetailView.swift", + "source_location": "L5", + "weight": 1.0, + "source": "macmagazine_macmagazine_features_news_deeplinknewsdetailview", + "target": "swiftdata", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/Features/Shortcuts/ShortcutManager.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_macmagazine_features_shortcuts_shortcutmanager", + "target": "swiftdata", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/MacMagazineApp.swift", + "source_location": "L9", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_macmagazineapp", + "target": "swiftdata", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/MainViewModel.swift", + "source_location": "L9", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_mainviewmodel", + "target": "swiftdata", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/MainApp/WatchApp.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_watchapp_mainapp_watchapp", + "target": "swiftdata", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/ViewModel/FeedMainViewModel.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_watchapp_viewmodel_feedmainviewmodel", + "target": "swiftdata", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/Views/FeedDetailView.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_watchapp_views_feeddetailview", + "target": "swiftdata", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/Views/FeedMainView.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_watchapp_views_feedmainview", + "target": "swiftdata", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazineNotificationServiceExtension/NotificationService.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_macmagazinenotificationserviceextension_notificationservice", + "target": "widgetkit", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/MainApp/WatchNotificationsDelegate.swift", + "source_location": "L6", + "weight": 1.0, + "source": "macmagazine_watchapp_mainapp_watchnotificationsdelegate", + "target": "widgetkit", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/ViewModel/FeedMainViewModel.swift", + "source_location": "L6", + "weight": 1.0, + "source": "macmagazine_watchapp_viewmodel_feedmainviewmodel", + "target": "widgetkit", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchWidget/Extensions/WidgetAccessibility+View.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_watchwidget_extensions_widgetaccessibility_view", + "target": "widgetkit", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchWidget/Model/WidgetEntry.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_watchwidget_model_widgetentry", + "target": "widgetkit", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchWidget/Views/WatchWidgetEntryView.swift", + "source_location": "L5", + "weight": 1.0, + "source": "macmagazine_watchwidget_views_watchwidgetentryview", + "target": "widgetkit", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchWidget/Widget/WatchWidget.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_watchwidget_widget_watchwidget", + "target": "widgetkit", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchWidget/Widget/WatchWidgetBundle.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_watchwidget_widget_watchwidgetbundle", + "target": "widgetkit", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchWidget/Widget/WatchWidgetProvider.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_watchwidget_widget_watchwidgetprovider", + "target": "widgetkit", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/Extensions/WidgetAccessibility+View.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_widget_extensions_widgetaccessibility_view", + "target": "widgetkit", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/MacMagazineWidget.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_widget_macmagazinewidget", + "target": "widgetkit", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/MacMagazineWidgetBundle.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_widget_macmagazinewidgetbundle", + "target": "widgetkit", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/MacMagazineWidgetLiveActivity.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_widget_macmagazinewidgetliveactivity", + "target": "widgetkit", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/Timeline/MacMagazineTimelineProvider.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_widget_timeline_macmagazinetimelineprovider", + "target": "widgetkit", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/Timeline/WidgetEntry.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_widget_timeline_widgetentry", + "target": "widgetkit", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/Views/Modifiers/HeaderWidgetModifier.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_widget_views_modifiers_headerwidgetmodifier", + "target": "widgetkit", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/Views/Modifiers/SmallWidgetStyleModifier.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_widget_views_modifiers_smallwidgetstylemodifier", + "target": "widgetkit", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/Views/WidgetElementView.swift", + "source_location": "L7", + "weight": 1.0, + "source": "macmagazine_widget_views_widgetelementview", + "target": "widgetkit", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/Views/WidgetView.swift", + "source_location": "L5", + "weight": 1.0, + "source": "macmagazine_widget_views_widgetview", + "target": "widgetkit", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Database/FeedDB.swift", + "source_location": "L94", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_database_feeddb_feeddb", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_database_feeddb_feeddb_deduplicate", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Database/FeedDB.swift", + "source_location": "L71", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_database_feeddb_feeddb", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_database_feeddb_feeddb_deletenonfavorites", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Database/FeedDB.swift", + "source_location": "L22", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_database_feeddb_feeddb", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_database_feeddb_feeddb_init", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Database/FeedDB.swift", + "source_location": "L54", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_database_feeddb_feeddb_lastseen", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_database_feeddb_feeddb", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Database/FeedDB.swift", + "source_location": "L81", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_database_feeddb_feeddb", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_database_feeddb_feeddb_markallasread", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Database/FeedDB.swift", + "source_location": "L62", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_database_feeddb_feeddb_mostrecent", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_database_feeddb_feeddb", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Database/FeedDB.swift", + "source_location": "L19", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_database_feeddb_feeddb", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_database_feeddb_swift_bool", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Database/FeedDB.swift", + "source_location": "L17", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_database_feeddb_feeddb", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_database_feeddb_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Database/FeedDB.swift", + "source_location": "L20", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_database_feeddb_feeddb", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_dateextensions_date", + "confidence_score": 1.0 + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Database/FeedDB.swift", + "source_location": "L93", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_database_feeddb_feeddb", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_modelprotocols_modelduplicable", + "confidence_score": 1.0 + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Database/FeedDB.swift", + "source_location": "L70", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_database_feeddb_feeddb", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_modelprotocols_modelfavoritable", + "confidence_score": 1.0 + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Database/FeedDB.swift", + "source_location": "L80", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_database_feeddb_feeddb", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_modelprotocols_modelreadable", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedDBTests.swift", + "source_location": "L424", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests_deduplicatehandlesmultiplegroups", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_database_feeddb_feeddb" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedDBTests.swift", + "source_location": "L391", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests_deduplicatekeepsmostrecentlymodified", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_database_feeddb_feeddb" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedDBTests.swift", + "source_location": "L408", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests_deduplicatepreservesdistinctpostids", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_database_feeddb_feeddb" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedDBTests.swift", + "source_location": "L289", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests_deletenonfavoriteshandlesallfavorites", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_database_feeddb_feeddb" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedDBTests.swift", + "source_location": "L309", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests_deletenonfavoriteshandlesallnonfavorites", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_database_feeddb_feeddb" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedDBTests.swift", + "source_location": "L249", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests_deletenonfavoritespreservesfavorites", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_database_feeddb_feeddb" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedDBTests.swift", + "source_location": "L222", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests_deletenonfavoritesremovesnonfavorites", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_database_feeddb_feeddb" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedDBTests.swift", + "source_location": "L140", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests_handlesspecialcharacters", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_database_feeddb_feeddb" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedDBTests.swift", + "source_location": "L152", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests_handlesunicodecharacters", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_database_feeddb_feeddb" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedDBTests.swift", + "source_location": "L28", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests_initializationwithallproperties", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_database_feeddb_feeddb" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedDBTests.swift", + "source_location": "L57", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests_initializationwithdefaults", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_database_feeddb_feeddb" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedDBTests.swift", + "source_location": "L97", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests_initializationwithemptycategories", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_database_feeddb_feeddb" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedDBTests.swift", + "source_location": "L74", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests_initializationwithemptystrings", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_database_feeddb_feeddb" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedDBTests.swift", + "source_location": "L109", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests_initializationwithmultiplecategories", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_database_feeddb_feeddb" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedDBTests.swift", + "source_location": "L164", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests_ispersistableinswiftdata", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_database_feeddb_feeddb" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedDBTests.swift", + "source_location": "L329", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests_markallasreadmarksunreadposts", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_database_feeddb_feeddb" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedDBTests.swift", + "source_location": "L345", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests_markallasreadpreservesalreadyread", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_database_feeddb_feeddb" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedDBTests.swift", + "source_location": "L375", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests_markallasreadupdatesmodifiedat", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_database_feeddb_feeddb" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedDBTests.swift", + "source_location": "L186", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests_persistsallpropertiescorrectly", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_database_feeddb_feeddb" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedDBTests.swift", + "source_location": "L121", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests_propertiesaremutable", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_database_feeddb_feeddb" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedDBTests.swift", + "source_location": "L493", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests_supportsqueryingbycategories", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_database_feeddb_feeddb" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedDBTests.swift", + "source_location": "L475", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests_supportsqueryingbypostid", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_database_feeddb_feeddb" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedDBTests.swift", + "source_location": "L457", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests_workswithfetchpredicates", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_database_feeddb_feeddb" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", + "source_location": "L16", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_saveinsertsnewfeeditem", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_database_feeddb_feeddb" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", + "source_location": "L369", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savemergescategoriesforfeed", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_database_feeddb_feeddb" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", + "source_location": "L335", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savepreservesfavoritestatusforfeed", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_database_feeddb_feeddb" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", + "source_location": "L349", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savepreservesreadstatusforfeed", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_database_feeddb_feeddb" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", + "source_location": "L111", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savesarrayoffeeditems", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_database_feeddb_feeddb" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", + "source_location": "L146", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savesduplicatefeeditemsinarray", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_database_feeddb_feeddb" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", + "source_location": "L318", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savesmultiplemodeltypes", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_database_feeddb_feeddb" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", + "source_location": "L76", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_saveupdatesallfeedproperties", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_database_feeddb_feeddb" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", + "source_location": "L43", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_saveupdatesexistingfeeditem", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_database_feeddb_feeddb" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Database/FeedDB.swift", + "source_location": "L22", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_database_feeddb_feeddb_init", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_database_feeddb_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Database/FeedDB.swift", + "source_location": "L22", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_database_feeddb_feeddb_init", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_database_feeddb_swift_bool", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Database/FeedDB.swift", + "source_location": "L22", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_database_feeddb_feeddb_init", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_dateextensions_date", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Database/FeedDB.swift", + "source_location": "L54", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_database_feeddb_feeddb_lastseen", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_database_feeddb_swift_modelcontext", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Database/FeedDB.swift", + "source_location": "L94", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_database_feeddb_feeddb_deduplicate", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_database_feeddb_swift_modelcontext", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Database/FeedDB.swift", + "source_location": "L71", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_database_feeddb_feeddb_deletenonfavorites", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_database_feeddb_swift_modelcontext", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Database/FeedDB.swift", + "source_location": "L81", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_database_feeddb_feeddb_markallasread", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_database_feeddb_swift_modelcontext", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Database/FeedDB.swift", + "source_location": "L62", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_database_feeddb_feeddb_mostrecent", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_database_feeddb_swift_modelcontext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Database/PodcastDB.swift", + "source_location": "L65", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_database_podcastdb", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_database_podcastdb_podcastdb", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Database/PodcastDB.swift", + "source_location": "L66", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_database_podcastdb_podcastdb", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_database_podcastdb_podcastdb_deduplicate", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Database/PodcastDB.swift", + "source_location": "L56", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_database_podcastdb_podcastdb", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_database_podcastdb_podcastdb_deletenonfavorites", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Database/PodcastDB.swift", + "source_location": "L22", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_database_podcastdb_podcastdb", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_database_podcastdb_podcastdb_init", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Database/PodcastDB.swift", + "source_location": "L18", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_database_podcastdb_podcastdb", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_database_podcastdb_swift_bool", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Database/PodcastDB.swift", + "source_location": "L19", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_database_podcastdb_podcastdb", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_database_podcastdb_swift_double", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Database/PodcastDB.swift", + "source_location": "L16", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_database_podcastdb_podcastdb", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_database_podcastdb_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Database/PodcastDB.swift", + "source_location": "L20", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_database_podcastdb_podcastdb", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_dateextensions_date", + "confidence_score": 1.0 + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Database/PodcastDB.swift", + "source_location": "L65", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_database_podcastdb_podcastdb", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_modelprotocols_modelduplicable", + "confidence_score": 1.0 + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Database/PodcastDB.swift", + "source_location": "L55", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_database_podcastdb_podcastdb", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_modelprotocols_modelfavoritable", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/PodcastDBTests.swift", + "source_location": "L403", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests_podcastdbtests_deduplicatehandlestripleduplicates", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_database_podcastdb_podcastdb" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/PodcastDBTests.swift", + "source_location": "L369", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests_podcastdbtests_deduplicatekeepsmostrecentlymodified", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_database_podcastdb_podcastdb" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/PodcastDBTests.swift", + "source_location": "L386", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests_podcastdbtests_deduplicatepreservesdistinctpubdates", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_database_podcastdb_podcastdb" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/PodcastDBTests.swift", + "source_location": "L328", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests_podcastdbtests_deletenonfavoriteshandlesallfavorites", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_database_podcastdb_podcastdb" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/PodcastDBTests.swift", + "source_location": "L348", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests_podcastdbtests_deletenonfavoriteshandlesallnonfavorites", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_database_podcastdb_podcastdb" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/PodcastDBTests.swift", + "source_location": "L288", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests_podcastdbtests_deletenonfavoritespreservesfavorites", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_database_podcastdb_podcastdb" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/PodcastDBTests.swift", + "source_location": "L261", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests_podcastdbtests_deletenonfavoritesremovesnonfavorites", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_database_podcastdb_podcastdb" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/PodcastDBTests.swift", + "source_location": "L504", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests_podcastdbtests_handlesmultiplepodcastswithdifferentstates", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_database_podcastdb_podcastdb" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/PodcastDBTests.swift", + "source_location": "L159", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests_podcastdbtests_handlesspecialcharacters", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_database_podcastdb_podcastdb" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/PodcastDBTests.swift", + "source_location": "L171", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests_podcastdbtests_handlesunicodecharacters", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_database_podcastdb_podcastdb" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/PodcastDBTests.swift", + "source_location": "L180", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests_podcastdbtests_handlesvariousdurationformats", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_database_podcastdb_podcastdb" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/PodcastDBTests.swift", + "source_location": "L31", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests_podcastdbtests_initializationwithallproperties", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_database_podcastdb_podcastdb" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/PodcastDBTests.swift", + "source_location": "L66", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests_podcastdbtests_initializationwithdefaults", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_database_podcastdb_podcastdb" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/PodcastDBTests.swift", + "source_location": "L86", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests_podcastdbtests_initializationwithemptystrings", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_database_podcastdb_podcastdb" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/PodcastDBTests.swift", + "source_location": "L125", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests_podcastdbtests_initializationwithlargesizes", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_database_podcastdb_podcastdb" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/PodcastDBTests.swift", + "source_location": "L111", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests_podcastdbtests_initializationwithzeroandnegativesizes", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_database_podcastdb_podcastdb" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/PodcastDBTests.swift", + "source_location": "L196", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests_podcastdbtests_ispersistableinswiftdata", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_database_podcastdb_podcastdb" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/PodcastDBTests.swift", + "source_location": "L219", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests_podcastdbtests_persistsallpropertiescorrectly", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_database_podcastdb_podcastdb" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/PodcastDBTests.swift", + "source_location": "L136", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests_podcastdbtests_propertiesaremutable", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_database_podcastdb_podcastdb" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/PodcastDBTests.swift", + "source_location": "L469", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests_podcastdbtests_supportsqueryingbyplayablestatus", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_database_podcastdb_podcastdb" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/PodcastDBTests.swift", + "source_location": "L451", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests_podcastdbtests_supportsqueryingbypostid", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_database_podcastdb_podcastdb" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/PodcastDBTests.swift", + "source_location": "L487", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests_podcastdbtests_tracksplaybackprogress", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_database_podcastdb_podcastdb" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/PodcastDBTests.swift", + "source_location": "L433", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests_podcastdbtests_workswithfetchpredicates", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_database_podcastdb_podcastdb" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", + "source_location": "L165", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_saveinsertsnewpodcastitem", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_database_podcastdb_podcastdb" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", + "source_location": "L385", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savepreservesfavoritestatusforpodcast", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_database_podcastdb_podcastdb" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", + "source_location": "L399", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savepreservesplaybackpositionforpodcast", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_database_podcastdb_podcastdb" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", + "source_location": "L264", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savesarrayofpodcastitems", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_database_podcastdb_podcastdb" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", + "source_location": "L299", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savesduplicatepodcastitemsinarray", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_database_podcastdb_podcastdb" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", + "source_location": "L319", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savesmultiplemodeltypes", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_database_podcastdb_podcastdb" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", + "source_location": "L225", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_saveupdatesallpodcastproperties", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_database_podcastdb_podcastdb" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", + "source_location": "L195", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_saveupdatesexistingpodcastitem", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_database_podcastdb_podcastdb" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Database/PodcastDB.swift", + "source_location": "L22", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_database_podcastdb_podcastdb_init", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_database_podcastdb_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Database/PodcastDB.swift", + "source_location": "L22", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_database_podcastdb_podcastdb_init", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_database_podcastdb_swift_double", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Database/PodcastDB.swift", + "source_location": "L22", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_database_podcastdb_podcastdb_init", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_database_podcastdb_swift_bool", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Database/PodcastDB.swift", + "source_location": "L22", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_database_podcastdb_podcastdb_init", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_dateextensions_date", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Database/PodcastDB.swift", + "source_location": "L56", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_database_podcastdb_podcastdb_deletenonfavorites", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_database_podcastdb_swift_modelcontext", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Database/PodcastDB.swift", + "source_location": "L66", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_database_podcastdb_podcastdb_deduplicate", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_database_podcastdb_swift_modelcontext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Extensions/StringExtensions.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_extensions_stringextensions", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_extensions_stringextensions_string", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Models/NewsCategoryExtensions.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_models_newscategoryextensions", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_models_newscategoryextensions_newscategory", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Models/NewsCategoryExtensions.swift", + "source_location": "L5", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_models_newscategoryextensions_newscategory", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_models_newscategoryextensions_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Models/WidgetData.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_models_widgetdata", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_models_widgetdata_widgetdata", + "confidence_score": 1.0 + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Models/WidgetData.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_models_widgetdata_widgetdata", + "target": "codable", + "confidence_score": 1.0 + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Models/WidgetData.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_models_widgetdata_widgetdata", + "target": "hashable", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Models/WidgetData.swift", + "source_location": "L9", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_models_widgetdata_widgetdata", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_models_widgetdata_swift_data", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Models/WidgetData.swift", + "source_location": "L8", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_models_widgetdata_widgetdata", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_models_widgetdata_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Models/WidgetData.swift", + "source_location": "L11", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_models_widgetdata_widgetdata", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_models_widgetdata_widgetdata_init", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Models/WidgetData.swift", + "source_location": "L7", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_models_widgetdata_widgetdata", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_dateextensions_date", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/WidgetDataTests.swift", + "source_location": "L67", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_widgetdatatests_widgetdatatests_encodestojson", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_models_widgetdata_widgetdata" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/WidgetDataTests.swift", + "source_location": "L117", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_widgetdatatests_widgetdatatests_encodingdecodingroundtrip", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_models_widgetdata_widgetdata" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/WidgetDataTests.swift", + "source_location": "L145", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_widgetdatatests_widgetdatatests_equalitywithsamevalues", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_models_widgetdata_widgetdata" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/WidgetDataTests.swift", + "source_location": "L274", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_widgetdatatests_widgetdatatests_handlesspecialcharacters", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_models_widgetdata_widgetdata" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/WidgetDataTests.swift", + "source_location": "L290", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_widgetdatatests_widgetdatatests_handlesunicodecharacters", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_models_widgetdata_widgetdata" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/WidgetDataTests.swift", + "source_location": "L191", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_widgetdatatests_widgetdatatests_hashingbehavior", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_models_widgetdata_widgetdata" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/WidgetDataTests.swift", + "source_location": "L168", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_widgetdatatests_widgetdatatests_inequalitywithdifferentvalues", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_models_widgetdata_widgetdata" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/WidgetDataTests.swift", + "source_location": "L20", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_widgetdatatests_widgetdatatests_initializationwithallproperties", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_models_widgetdata_widgetdata" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/WidgetDataTests.swift", + "source_location": "L46", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_widgetdatatests_widgetdatatests_initializationwithemptystrings", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_models_widgetdata_widgetdata" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/WidgetDataTests.swift", + "source_location": "L252", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_widgetdatatests_widgetdatatests_worksasdictionarykey", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_models_widgetdata_widgetdata" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/WidgetDataTests.swift", + "source_location": "L214", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_widgetdatatests_widgetdatatests_worksinset", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_models_widgetdata_widgetdata" + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/Parser/XMLPost.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_xmlpost_xmlpost", + "target": "codable", + "confidence_score": 1.0 + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AppDefinitions.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_apptabs", + "target": "codable", + "confidence_score": 1.0 + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AppDefinitions.swift", + "source_location": "L32", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_news", + "target": "codable", + "confidence_score": 1.0 + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AppDefinitions.swift", + "source_location": "L54", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_social", + "target": "codable", + "confidence_score": 1.0 + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MMLiveLibrary/Sources/MMLiveLibrary/Models/MMLive.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_models_mmlive_mmlive", + "target": "codable", + "confidence_score": 1.0 + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/ColorScheme.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_colorscheme_colorscheme", + "target": "codable", + "confidence_score": 1.0 + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/IconType.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_icontype_icontype", + "target": "codable", + "confidence_score": 1.0 + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/Subscription.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_subscription_subscription", + "target": "codable", + "confidence_score": 1.0 + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/MacMagazineWidgetLiveActivity.swift", + "source_location": "L6", + "weight": 1.0, + "source": "macmagazine_widget_macmagazinewidgetliveactivity_contentstate", + "target": "codable", + "confidence_score": 1.0 + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/ViewModels/OnboardingCoordinator.swift", + "source_location": "L122", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_onboardingcoordinator_onboardingscreen", + "target": "hashable", + "confidence_score": 1.0 + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/PodcastChapter.swift", + "source_location": "L5", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastchapter_podcastchapter", + "target": "hashable", + "confidence_score": 1.0 + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/MacMagazineWidgetLiveActivity.swift", + "source_location": "L6", + "weight": 1.0, + "source": "macmagazine_widget_macmagazinewidgetliveactivity_contentstate", + "target": "hashable", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Models/WidgetData.swift", + "source_location": "L11", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_models_widgetdata_widgetdata_init", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_models_widgetdata_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Models/WidgetData.swift", + "source_location": "L11", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_models_widgetdata_widgetdata_init", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_models_widgetdata_swift_data", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Models/WidgetData.swift", + "source_location": "L11", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_models_widgetdata_widgetdata_init", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_dateextensions_date", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/FeedEndpoint.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_services_feedendpoint", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_feedendpoint_apidefinitions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/FeedEndpoint.swift", + "source_location": "L21", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_services_feedendpoint", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_feedendpoint_endpoint", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/FeedEndpoint.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_services_feedendpoint", + "target": "networklibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/NetworkService.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_services_networkservice", + "target": "networklibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel", + "target": "networklibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedEndpointTests.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedendpointtests", + "target": "networklibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedViewModelTests.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedviewmodeltests", + "target": "networklibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MMLiveLibrary/Sources/MMLiveLibrary/Services/MMLiveEndpoint.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_services_mmliveendpoint", + "target": "networklibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MMLiveLibrary/Sources/MMLiveLibrary/Services/NetworkService.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_services_networkservice", + "target": "networklibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MMLiveLibrary/Sources/MMLiveLibrary/ViewModel/MMLiveViewModel.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_viewmodel_mmliveviewmodel", + "target": "networklibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MMLiveLibrary/Tests/MMLiveLibraryTests/MMLiveViewModelTests.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_mmlivelibrary_tests_mmlivelibrarytests_mmliveviewmodeltests", + "target": "networklibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/ViewModel/NewsViewModel.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_sources_newslibrary_viewmodel_newsviewmodel", + "target": "networklibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Tests/NewsLibraryTests/NewsViewModelTests.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests", + "target": "networklibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/ViewModel/PodcastViewModel.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_viewmodel_podcastviewmodel", + "target": "networklibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastViewModelTests.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests", + "target": "networklibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/VideosViewModel.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_videoslibrary_sources_videos_videosviewmodel", + "target": "networklibrary", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/FeedEndpoint.swift", + "source_location": "L30", + "weight": 1.0, + "context": "call", + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_services_feedendpoint_endpoint_posts", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_feedendpoint_endpoint", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/FeedEndpoint.swift", + "source_location": "L22", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_services_feedendpoint_endpoint_posts", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_feedendpoint_swift_int", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/FeedEndpoint.swift", + "source_location": "L22", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_services_feedendpoint_endpoint_posts", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_feedendpoint_swift_self", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/FeedEndpoint.swift", + "source_location": "L22", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_services_feedendpoint_endpoint_posts", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_feedendpoint_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/NetworkService.swift", + "source_location": "L13", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_services_networkservice", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_networkservice_networkservice", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/NetworkService.swift", + "source_location": "L14", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_services_networkservice_networkservice", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_networkservice_networkservice_fetch", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/NetworkService.swift", + "source_location": "L8", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_services_networkservice_networkservice", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_networkservice_networkservice_init", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/NetworkService.swift", + "source_location": "L23", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_services_networkservice_networkservice", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_networkservice_networkservice_search", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/NetworkService.swift", + "source_location": "L6", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_services_networkservice_networkservice", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_networkservice_swift_network", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/NetworkService.swift", + "source_location": "L5", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_services_networkservice_networkservice", + "target": "sendable", + "confidence_score": 1.0 + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/NewsCategory.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_newscategory_newscategory", + "target": "sendable", + "confidence_score": 1.0 + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/PushNotification/PushNotification.swift", + "source_location": "L13", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_pushnotification_pushnotification", + "target": "sendable", + "confidence_score": 1.0 + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/URLClassifier.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_urlclassifier_urlclassification", + "target": "sendable", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MMLiveLibrary/Sources/MMLiveLibrary/Services/NetworkService.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_services_networkservice_networkservice", + "target": "sendable", + "confidence_score": 1.0 + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Models/SearchResult.swift", + "source_location": "L5", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_models_searchresult_searchresulttype", + "target": "sendable", + "confidence_score": 1.0 + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/NLP/QueryIntent.swift", + "source_location": "L9", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryintent_contenttype", + "target": "sendable", + "confidence_score": 1.0 + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/NLP/QueryIntent.swift", + "source_location": "L15", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryintent_queryintent", + "target": "sendable", + "confidence_score": 1.0 + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/NLP/QueryIntent.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryintent_sortpreference", + "target": "sendable", + "confidence_score": 1.0 + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/NLP/QueryProcessor.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryprocessor_queryprocessor", + "target": "sendable", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/NetworkService.swift", + "source_location": "L8", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_services_networkservice_networkservice_init", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_networkservice_swift_network", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/NetworkService.swift", + "source_location": "L14", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_services_networkservice_networkservice_fetch", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_networkservice_swift_data", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/NetworkService.swift", + "source_location": "L14", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_services_networkservice_networkservice_fetch", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_networkservice_swift_int", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/NetworkService.swift", + "source_location": "L14", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_services_networkservice_networkservice_fetch", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_networkservice_swift_newscategory", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/NetworkService.swift", + "source_location": "L23", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_services_networkservice_networkservice_search", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_networkservice_swift_int", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/NetworkService.swift", + "source_location": "L23", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_services_networkservice_networkservice_search", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_networkservice_swift_data", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/NetworkService.swift", + "source_location": "L23", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_services_networkservice_networkservice_search", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_networkservice_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/Parser/APIXMLParser.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_apixmlparser", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_apixmlparser_apixmlparser", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/Parser/APIXMLParser.swift", + "source_location": "L23", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_apixmlparser_apixmlparser", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_apixmlparser_apixmlparser_init", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/Parser/APIXMLParser.swift", + "source_location": "L119", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_apixmlparser_apixmlparser", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_apixmlparser_apixmlparser_parser", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/Parser/APIXMLParser.swift", + "source_location": "L127", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_apixmlparser_apixmlparser", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_apixmlparser_apixmlparser_parserdidenddocument", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/Parser/APIXMLParser.swift", + "source_location": "L9", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_apixmlparser_apixmlparser", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_apixmlparser_swift_bool", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/Parser/APIXMLParser.swift", + "source_location": "L10", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_apixmlparser_apixmlparser", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_apixmlparser_swift_checkedcontinuation", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/Parser/APIXMLParser.swift", + "source_location": "L10", + "weight": 1.0, + "context": "generic_arg", + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_apixmlparser_apixmlparser", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_apixmlparser_swift_error", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/Parser/APIXMLParser.swift", + "source_location": "L7", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_apixmlparser_apixmlparser", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_apixmlparser_swift_int", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/Parser/APIXMLParser.swift", + "source_location": "L18", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_apixmlparser_apixmlparser", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_apixmlparser_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/Parser/APIXMLParser.swift", + "source_location": "L11", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_apixmlparser_apixmlparser", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_dateparser_dateparser" + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/Parser/APIXMLParser.swift", + "source_location": "L10", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_apixmlparser_apixmlparser", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_xmlpost_xmlpost", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/Parser/APIXMLParser.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_apixmlparser_apixmlparser", + "target": "nsobject", + "confidence_score": 1.0 + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/Parser/APIXMLParser.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_apixmlparser_apixmlparser", + "target": "xmlparserdelegate", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", + "source_location": "L151", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_parse", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_apixmlparser_apixmlparser" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/XMLParserTests.swift", + "source_location": "L208", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_xmlparsertests_xmlparsertests_parseemptydatareturnsemptyarray", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_apixmlparser_apixmlparser" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/XMLParserTests.swift", + "source_location": "L74", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_xmlparsertests_xmlparsertests_parsefeedxmlextractsmediacontent", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_apixmlparser_apixmlparser" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/XMLParserTests.swift", + "source_location": "L19", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_xmlparsertests_xmlparsertests_parsefeedxmlsuccessfully", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_apixmlparser_apixmlparser" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/XMLParserTests.swift", + "source_location": "L98", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_xmlparsertests_xmlparsertests_parsefeedxmlwithfullcontent", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_apixmlparser_apixmlparser" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/XMLParserTests.swift", + "source_location": "L51", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_xmlparsertests_xmlparsertests_parsefeedxmlwithlimitedposts", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_apixmlparser_apixmlparser" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/XMLParserTests.swift", + "source_location": "L188", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_xmlparsertests_xmlparsertests_parseinvalidxmlthrowserror", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_apixmlparser_apixmlparser" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/XMLParserTests.swift", + "source_location": "L152", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_xmlparsertests_xmlparsertests_parsepodcastxmlextractspodcastfields", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_apixmlparser_apixmlparser" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/XMLParserTests.swift", + "source_location": "L124", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_xmlparsertests_xmlparsertests_parsepodcastxmlsuccessfully", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_apixmlparser_apixmlparser" + }, + { + "relation": "inherits", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/PushNotification/PushNotification.swift", + "source_location": "L13", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_pushnotification_pushnotification", + "target": "nsobject", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/Disqus/DisqusNewWindowHandler.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_disqus_disqusnewwindowhandler_disqusnewwindowhandler", + "target": "nsobject", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/GalleryStateMessageHandler.swift", + "source_location": "L5", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_gallerystatemessagehandler_gallerystatemessagehandler", + "target": "nsobject", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/AboutViewModel.swift", + "source_location": "L74", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_aboutviewmodel_maildelegate", + "target": "nsobject", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/AppDelegate.swift", + "source_location": "L7", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_appdelegate_appdelegate", + "target": "nsobject", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/MainApp/WatchNotificationsDelegate.swift", + "source_location": "L8", + "weight": 1.0, + "source": "macmagazine_watchapp_mainapp_watchnotificationsdelegate_watchnotificationsdelegate", + "target": "nsobject", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/Parser/APIXMLParser.swift", + "source_location": "L23", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_apixmlparser_apixmlparser_init", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_apixmlparser_swift_int", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/Parser/APIXMLParser.swift", + "source_location": "L23", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_apixmlparser_apixmlparser_init", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_apixmlparser_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/Parser/APIXMLParser.swift", + "source_location": "L60", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_apixmlparser_apixmlparser_parser", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_apixmlparser_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/Parser/APIXMLParser.swift", + "source_location": "L23", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_apixmlparser_apixmlparser_init", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_apixmlparser_swift_bool", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/Parser/APIXMLParser.swift", + "source_location": "L23", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_apixmlparser_apixmlparser_init", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_apixmlparser_swift_checkedcontinuation", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/Parser/APIXMLParser.swift", + "source_location": "L23", + "weight": 1.0, + "context": "generic_arg", + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_apixmlparser_apixmlparser_init", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_apixmlparser_swift_error", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/Parser/APIXMLParser.swift", + "source_location": "L119", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_apixmlparser_apixmlparser_parser", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_apixmlparser_swift_error", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/Parser/APIXMLParser.swift", + "source_location": "L23", + "weight": 1.0, + "context": "generic_arg", + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_apixmlparser_apixmlparser_init", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_xmlpost_xmlpost", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/Parser/APIXMLParser.swift", + "source_location": "L72", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_apixmlparser_apixmlparser_parser", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_dateparser_dateparser_parse" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/Parser/APIXMLParser.swift", + "source_location": "L44", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_apixmlparser_apixmlparser_parser", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_xmlpost_xmlpost", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/Parser/APIXMLParser.swift", + "source_location": "L119", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_apixmlparser_apixmlparser_parser", + "target": "xmlparser", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/Parser/APIXMLParser.swift", + "source_location": "L127", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_apixmlparser_apixmlparser_parserdidenddocument", + "target": "xmlparser", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", + "source_location": "L150", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_parse", + "target": "xmlparser" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/XMLParserTests.swift", + "source_location": "L207", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_xmlparsertests_xmlparsertests_parseemptydatareturnsemptyarray", + "target": "xmlparser" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/XMLParserTests.swift", + "source_location": "L73", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_xmlparsertests_xmlparsertests_parsefeedxmlextractsmediacontent", + "target": "xmlparser" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/XMLParserTests.swift", + "source_location": "L18", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_xmlparsertests_xmlparsertests_parsefeedxmlsuccessfully", + "target": "xmlparser" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/XMLParserTests.swift", + "source_location": "L97", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_xmlparsertests_xmlparsertests_parsefeedxmlwithfullcontent", + "target": "xmlparser" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/XMLParserTests.swift", + "source_location": "L50", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_xmlparsertests_xmlparsertests_parsefeedxmlwithlimitedposts", + "target": "xmlparser" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/XMLParserTests.swift", + "source_location": "L187", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_xmlparsertests_xmlparsertests_parseinvalidxmlthrowserror", + "target": "xmlparser" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/XMLParserTests.swift", + "source_location": "L151", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_xmlparsertests_xmlparsertests_parsepodcastxmlextractspodcastfields", + "target": "xmlparser" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/XMLParserTests.swift", + "source_location": "L123", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_xmlparsertests_xmlparsertests_parsepodcastxmlsuccessfully", + "target": "xmlparser" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/Parser/DateParser.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_dateparser", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_dateparser_dateparser", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/Parser/DateParser.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_dateparser_dateparser", + "target": "dateformatter", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/Parser/DateParser.swift", + "source_location": "L12", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_dateparser_dateparser", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_dateparser_dateparser_parse", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/DateParserTests.swift", + "source_location": "L8", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_dateparsertests_dateparsertests", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_dateparser_dateparser" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/Parser/DateParser.swift", + "source_location": "L12", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_dateparser_dateparser_parse", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_dateparser_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/Parser/DateParser.swift", + "source_location": "L12", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_dateparser_dateparser_parse", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_dateextensions_date", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/DateParserTests.swift", + "source_location": "L204", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_dateparsertests_dateparsertests_consistentparsing", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_dateparser_dateparser_parse" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/DateParserTests.swift", + "source_location": "L44", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_dateparsertests_dateparsertests_parsedifferentdays", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_dateparser_dateparser_parse" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/DateParserTests.swift", + "source_location": "L71", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_dateparsertests_dateparsertests_parsedifferentmonths", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_dateparser_dateparser_parse" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/DateParserTests.swift", + "source_location": "L179", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_dateparsertests_dateparsertests_parsedifferentyears", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_dateparser_dateparser_parse" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/DateParserTests.swift", + "source_location": "L124", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_dateparsertests_dateparsertests_parsedoubledigitday", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_dateparser_dateparser_parse" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/DateParserTests.swift", + "source_location": "L96", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_dateparsertests_dateparsertests_parseendofday", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_dateparser_dateparser_parse" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/DateParserTests.swift", + "source_location": "L229", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_dateparsertests_dateparsertests_parsefarfuturedate", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_dateparser_dateparser_parse" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/DateParserTests.swift", + "source_location": "L216", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_dateparsertests_dateparsertests_parsefarpastdate", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_dateparser_dateparser_parse" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/DateParserTests.swift", + "source_location": "L189", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_dateparsertests_dateparsertests_parseleapyeardate", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_dateparser_dateparser_parse" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/DateParserTests.swift", + "source_location": "L81", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_dateparsertests_dateparsertests_parsemidnight", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_dateparser_dateparser_parse" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/DateParserTests.swift", + "source_location": "L111", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_dateparsertests_dateparsertests_parsesingledigitday", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_dateparser_dateparser_parse" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/DateParserTests.swift", + "source_location": "L14", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_dateparsertests_dateparsertests_parsevalidrssdate", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_dateparser_dateparser_parse" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/DateParserTests.swift", + "source_location": "L150", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_dateparsertests_dateparsertests_returncurrentdateforemptystring", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_dateparser_dateparser_parse" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/DateParserTests.swift", + "source_location": "L138", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_dateparsertests_dateparsertests_returncurrentdateforinvalidformat", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_dateparser_dateparser_parse" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/DateParserTests.swift", + "source_location": "L162", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_dateparsertests_dateparsertests_returncurrentdateforpartialstring", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_dateparser_dateparser_parse" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/Parser/XMLPost.swift", + "source_location": "L23", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_xmlpost", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_xmlpost_array", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/Parser/XMLPost.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_xmlpost", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_xmlpost_xmlpost", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/Parser/XMLPost.swift", + "source_location": "L18", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_xmlpost_xmlpost", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_xmlpost_swift_bool", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/Parser/XMLPost.swift", + "source_location": "L11", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_xmlpost_xmlpost", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_xmlpost_swift_double", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/Parser/XMLPost.swift", + "source_location": "L20", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_xmlpost_xmlpost", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_xmlpost_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/Parser/XMLPost.swift", + "source_location": "L6", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_xmlpost_xmlpost", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_dateextensions_date", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", + "source_location": "L120", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_fetch", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_xmlpost_xmlpost", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", + "source_location": "L143", + "weight": 1.0, + "context": "generic_arg", + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_parse", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_xmlpost_xmlpost", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/XMLPostTests.swift", + "source_location": "L66", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_xmlposttests_xmlposttests_xmlpostarraytopodcastdbconversion", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_xmlpost_xmlpost" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/XMLPostTests.swift", + "source_location": "L37", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_xmlposttests_xmlposttests_xmlpostcodable", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_xmlpost_xmlpost" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/XMLPostTests.swift", + "source_location": "L13", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_xmlposttests_xmlposttests_xmlpostdefaultvalues", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_xmlpost_xmlpost" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/XMLPostTests.swift", + "source_location": "L181", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_xmlposttests_xmlposttests_xmlpostfavoriteflag", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_xmlpost_xmlpost" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/XMLPostTests.swift", + "source_location": "L171", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_xmlposttests_xmlposttests_xmlpostplayableflag", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_xmlpost_xmlpost" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/XMLPostTests.swift", + "source_location": "L121", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_xmlposttests_xmlposttests_xmlposttopodcastdbpreservesdates", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_xmlpost_xmlpost" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/XMLPostTests.swift", + "source_location": "L157", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_xmlposttests_xmlposttests_xmlpostwithmultiplecategories", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_xmlpost_xmlpost" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/XMLPostTests.swift", + "source_location": "L139", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_xmlposttests_xmlposttests_xmlpostwithpodcastfields", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_xmlpost_xmlpost" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/Parser/XMLPost.swift", + "source_location": "L24", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_xmlpost_array", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_xmlpost_swift_feeddb", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/Parser/XMLPost.swift", + "source_location": "L41", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_xmlpost_array", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_xmlpost_swift_podcastdb", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/Parser/XMLPost.swift", + "source_location": "L58", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_xmlpost_array", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_parser_xmlpost_swift_widgetdata", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/StorageService.swift", + "source_location": "L51", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/StorageService.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice", + "target": "storagelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel", + "target": "storagelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedDBTests.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests", + "target": "storagelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedViewModelTests.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedviewmodeltests", + "target": "storagelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/PodcastDBTests.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests", + "target": "storagelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests", + "target": "storagelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MMLiveLibrary/Sources/MMLiveLibrary/Services/PushNotification.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_services_pushnotification", + "target": "storagelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MMLiveLibrary/Sources/MMLiveLibrary/Services/StorageService.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_services_storageservice", + "target": "storagelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MMLiveLibrary/Sources/MMLiveLibrary/ViewModel/MMLiveViewModel.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_viewmodel_mmliveviewmodel", + "target": "storagelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MMLiveLibrary/Tests/MMLiveLibraryTests/MMLiveViewModelTests.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_features_mmlivelibrary_tests_mmlivelibrarytests_mmliveviewmodeltests", + "target": "storagelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/ViewModel/NewsViewModel.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_sources_newslibrary_viewmodel_newsviewmodel", + "target": "storagelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/NewsView.swift", + "source_location": "L6", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_sources_newslibrary_views_newsview", + "target": "storagelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Tests/NewsLibraryTests/NewsViewModelTests.swift", + "source_location": "L5", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests", + "target": "storagelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/ViewModel/PodcastViewModel.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_viewmodel_podcastviewmodel", + "target": "storagelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Card/GlassPodcastCardView.swift", + "source_location": "L32", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_card_glasspodcastcardview", + "target": "storagelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/PodcastView.swift", + "source_location": "L5", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_podcastview", + "target": "storagelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastViewModelTests.swift", + "source_location": "L5", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests", + "target": "storagelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Services/RemoteFeedSearchService.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_services_remotefeedsearchservice", + "target": "storagelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/ViewModel/SearchViewModel.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_viewmodel_searchviewmodel", + "target": "storagelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchView.swift", + "source_location": "L6", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchview", + "target": "storagelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchViewModelTests.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests", + "target": "storagelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/AppearanceViewModel.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_appearanceviewmodel", + "target": "storagelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/CustomizationViewModel.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_customizationviewmodel", + "target": "storagelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/Extensions/Database.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_extensions_database", + "target": "storagelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/IconsViewModel.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_iconsviewmodel", + "target": "storagelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/PostsVisibilityViewModel.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_postsvisibilityviewmodel", + "target": "storagelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/PushOptionsViewModel.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_pushoptionsviewmodel", + "target": "storagelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/ReadingPreferencesViewModel.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_readingpreferencesviewmodel", + "target": "storagelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/SettingsViewModel.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_settingsviewmodel", + "target": "storagelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/SubscriptionViewModel.swift", + "source_location": "L6", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_subscriptionviewmodel", + "target": "storagelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/SettingsView.swift", + "source_location": "L217", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_settingsview", + "target": "storagelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/AppearanceView.swift", + "source_location": "L62", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_appearanceview", + "target": "storagelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/IconsView.swift", + "source_location": "L96", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_iconsview", + "target": "storagelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/PostsVisibilityView.swift", + "source_location": "L69", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_postsvisibilityview", + "target": "storagelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/ReadingPreferencesView.swift", + "source_location": "L56", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_readingpreferencesview", + "target": "storagelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/DatabaseExtensionsTests.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_databaseextensionstests", + "target": "storagelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SettingsViewModelTests.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_settingsviewmodeltests", + "target": "storagelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/VideosView.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_videoslibrary_sources_videos_videosview", + "target": "storagelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/VideosViewModel.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_videoslibrary_sources_videos_videosviewmodel", + "target": "storagelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/VideosLibrary/Tests/VideosLibraryTests/VideosViewModelTests.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_videoslibrary_tests_videoslibrarytests_videosviewmodeltests", + "target": "storagelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/Features/News/NewsView.swift", + "source_location": "L6", + "weight": 1.0, + "source": "macmagazine_macmagazine_features_news_newsview", + "target": "storagelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/Features/Social/SocialView.swift", + "source_location": "L6", + "weight": 1.0, + "source": "macmagazine_macmagazine_features_social_socialview", + "target": "storagelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/MacMagazineApp.swift", + "source_location": "L8", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_macmagazineapp", + "target": "storagelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/MainViewModel.swift", + "source_location": "L8", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_mainviewmodel", + "target": "storagelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/MainApp/WatchApp.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_watchapp_mainapp_watchapp", + "target": "storagelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/ViewModel/FeedMainViewModel.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_watchapp_viewmodel_feedmainviewmodel", + "target": "storagelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/Views/FeedMainView.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_watchapp_views_feedmainview", + "target": "storagelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchWidget/Widget/WatchWidgetProvider.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_watchwidget_widget_watchwidgetprovider", + "target": "storagelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/Timeline/MacMagazineTimelineProvider.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_widget_timeline_macmagazinetimelineprovider", + "target": "storagelibrary", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/StorageService.swift", + "source_location": "L67", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database_save", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedDBTests.swift", + "source_location": "L421", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests_deduplicatehandlesmultiplegroups", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedDBTests.swift", + "source_location": "L390", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests_deduplicatekeepsmostrecentlymodified", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedDBTests.swift", + "source_location": "L407", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests_deduplicatepreservesdistinctpostids", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedDBTests.swift", + "source_location": "L441", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests_deduplicatesafeonempty", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedDBTests.swift", + "source_location": "L287", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests_deletenonfavoriteshandlesallfavorites", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedDBTests.swift", + "source_location": "L307", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests_deletenonfavoriteshandlesallnonfavorites", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedDBTests.swift", + "source_location": "L274", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests_deletenonfavoriteshandlesemptydatabase", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedDBTests.swift", + "source_location": "L247", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests_deletenonfavoritespreservesfavorites", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedDBTests.swift", + "source_location": "L221", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests_deletenonfavoritesremovesnonfavorites", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedDBTests.swift", + "source_location": "L163", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests_ispersistableinswiftdata", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedDBTests.swift", + "source_location": "L361", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests_markallasreadhandlesemptydatabase", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedDBTests.swift", + "source_location": "L328", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests_markallasreadmarksunreadposts", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedDBTests.swift", + "source_location": "L343", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests_markallasreadpreservesalreadyread", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedDBTests.swift", + "source_location": "L373", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests_markallasreadupdatesmodifiedat", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedDBTests.swift", + "source_location": "L184", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests_persistsallpropertiescorrectly", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedDBTests.swift", + "source_location": "L492", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests_supportsqueryingbycategories", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedDBTests.swift", + "source_location": "L474", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests_supportsqueryingbypostid", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedDBTests.swift", + "source_location": "L456", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests_workswithfetchpredicates", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedViewModelTests.swift", + "source_location": "L37", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedviewmodeltests_feedviewmodeltests_getnewsnetworkfailure", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedViewModelTests.swift", + "source_location": "L61", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedviewmodeltests_feedviewmodeltests_getnewsstatustransitions", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedViewModelTests.swift", + "source_location": "L22", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedviewmodeltests_feedviewmodeltests_getnewssuccess", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedViewModelTests.swift", + "source_location": "L127", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedviewmodeltests_feedviewmodeltests_getpodcastnetworkfailure", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedViewModelTests.swift", + "source_location": "L108", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedviewmodeltests_feedviewmodeltests_getpodcastsavestodatabase", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedViewModelTests.swift", + "source_location": "L85", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedviewmodeltests_feedviewmodeltests_getpodcastsuccess", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedViewModelTests.swift", + "source_location": "L259", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedviewmodeltests_feedviewmodeltests_getwatchfeedlimitstoten", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedViewModelTests.swift", + "source_location": "L299", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedviewmodeltests_feedviewmodeltests_getwatchfeedparsesfullcontent", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedViewModelTests.swift", + "source_location": "L360", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedviewmodeltests_feedviewmodeltests_getwatchfeedreturnscorrecttype", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedViewModelTests.swift", + "source_location": "L319", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedviewmodeltests_feedviewmodeltests_getwatchfeedreturnsemptyonfailure", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedViewModelTests.swift", + "source_location": "L278", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedviewmodeltests_feedviewmodeltests_getwatchfeedsavestodatabase", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedViewModelTests.swift", + "source_location": "L341", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedviewmodeltests_feedviewmodeltests_getwatchfeedupdatesstatus", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedViewModelTests.swift", + "source_location": "L232", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedviewmodeltests_feedviewmodeltests_getwidgetdatadoesnotsave", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedViewModelTests.swift", + "source_location": "L174", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedviewmodeltests_feedviewmodeltests_getwidgetdatalimitstothree", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedViewModelTests.swift", + "source_location": "L193", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedviewmodeltests_feedviewmodeltests_getwidgetdatareturnscorrecttype", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedViewModelTests.swift", + "source_location": "L210", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedviewmodeltests_feedviewmodeltests_getwidgetdatareturnsemptyonfailure", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/PodcastDBTests.swift", + "source_location": "L399", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests_podcastdbtests_deduplicatehandlestripleduplicates", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/PodcastDBTests.swift", + "source_location": "L367", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests_podcastdbtests_deduplicatekeepsmostrecentlymodified", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/PodcastDBTests.swift", + "source_location": "L385", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests_podcastdbtests_deduplicatepreservesdistinctpubdates", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/PodcastDBTests.swift", + "source_location": "L417", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests_podcastdbtests_deduplicatesafeonempty", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/PodcastDBTests.swift", + "source_location": "L326", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests_podcastdbtests_deletenonfavoriteshandlesallfavorites", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/PodcastDBTests.swift", + "source_location": "L346", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests_podcastdbtests_deletenonfavoriteshandlesallnonfavorites", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/PodcastDBTests.swift", + "source_location": "L313", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests_podcastdbtests_deletenonfavoriteshandlesemptydatabase", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/PodcastDBTests.swift", + "source_location": "L286", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests_podcastdbtests_deletenonfavoritespreservesfavorites", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/PodcastDBTests.swift", + "source_location": "L260", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests_podcastdbtests_deletenonfavoritesremovesnonfavorites", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/PodcastDBTests.swift", + "source_location": "L503", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests_podcastdbtests_handlesmultiplepodcastswithdifferentstates", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/PodcastDBTests.swift", + "source_location": "L195", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests_podcastdbtests_ispersistableinswiftdata", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/PodcastDBTests.swift", + "source_location": "L217", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests_podcastdbtests_persistsallpropertiescorrectly", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/PodcastDBTests.swift", + "source_location": "L468", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests_podcastdbtests_supportsqueryingbyplayablestatus", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/PodcastDBTests.swift", + "source_location": "L450", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests_podcastdbtests_supportsqueryingbypostid", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/PodcastDBTests.swift", + "source_location": "L486", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests_podcastdbtests_tracksplaybackprogress", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/PodcastDBTests.swift", + "source_location": "L432", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests_podcastdbtests_workswithfetchpredicates", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", + "source_location": "L15", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_saveinsertsnewfeeditem", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", + "source_location": "L164", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_saveinsertsnewpodcastitem", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", + "source_location": "L368", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savemergescategoriesforfeed", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", + "source_location": "L334", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savepreservesfavoritestatusforfeed", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", + "source_location": "L384", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savepreservesfavoritestatusforpodcast", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", + "source_location": "L398", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savepreservesplaybackpositionforpodcast", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", + "source_location": "L348", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savepreservesreadstatusforfeed", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", + "source_location": "L109", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savesarrayoffeeditems", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", + "source_location": "L262", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savesarrayofpodcastitems", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", + "source_location": "L144", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savesduplicatefeeditemsinarray", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", + "source_location": "L297", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savesduplicatepodcastitemsinarray", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", + "source_location": "L130", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savesemptyarrayoffeeditems", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", + "source_location": "L283", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savesemptyarrayofpodcastitems", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", + "source_location": "L317", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savesmultiplemodeltypes", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", + "source_location": "L75", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_saveupdatesallfeedproperties", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", + "source_location": "L224", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_saveupdatesallpodcastproperties", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", + "source_location": "L42", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_saveupdatesexistingfeeditem", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", + "source_location": "L194", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_saveupdatesexistingpodcastitem", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/StorageService.swift", + "source_location": "L24", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database_save", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_swift_feeddb", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/StorageService.swift", + "source_location": "L67", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database_save", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_swift_modelcontext", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/StorageService.swift", + "source_location": "L67", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database_save", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_swift_podcastdb", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", + "source_location": "L142", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", + "source_location": "L11", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_status", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", + "source_location": "L120", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_fetch", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", + "source_location": "L40", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_getfeed", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", + "source_location": "L71", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_getpodcast", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", + "source_location": "L83", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_getwatchfeed", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", + "source_location": "L61", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_getwidgetdata", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", + "source_location": "L32", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_init", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", + "source_location": "L143", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_parse", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", + "source_location": "L102", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_search", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", + "source_location": "L27", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_swift_database", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", + "source_location": "L30", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_swift_modelcontext", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", + "source_location": "L28", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_swift_networkservice", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", + "source_location": "L9", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel", + "target": "status", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedViewModelTests.swift", + "source_location": "L38", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedviewmodeltests_feedviewmodeltests_getnewsnetworkfailure", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedViewModelTests.swift", + "source_location": "L62", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedviewmodeltests_feedviewmodeltests_getnewsstatustransitions", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedViewModelTests.swift", + "source_location": "L23", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedviewmodeltests_feedviewmodeltests_getnewssuccess", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedViewModelTests.swift", + "source_location": "L128", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedviewmodeltests_feedviewmodeltests_getpodcastnetworkfailure", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedViewModelTests.swift", + "source_location": "L109", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedviewmodeltests_feedviewmodeltests_getpodcastsavestodatabase", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedViewModelTests.swift", + "source_location": "L86", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedviewmodeltests_feedviewmodeltests_getpodcastsuccess", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedViewModelTests.swift", + "source_location": "L260", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedviewmodeltests_feedviewmodeltests_getwatchfeedlimitstoten", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedViewModelTests.swift", + "source_location": "L300", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedviewmodeltests_feedviewmodeltests_getwatchfeedparsesfullcontent", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedViewModelTests.swift", + "source_location": "L361", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedviewmodeltests_feedviewmodeltests_getwatchfeedreturnscorrecttype", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedViewModelTests.swift", + "source_location": "L320", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedviewmodeltests_feedviewmodeltests_getwatchfeedreturnsemptyonfailure", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedViewModelTests.swift", + "source_location": "L279", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedviewmodeltests_feedviewmodeltests_getwatchfeedsavestodatabase", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedViewModelTests.swift", + "source_location": "L342", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedviewmodeltests_feedviewmodeltests_getwatchfeedupdatesstatus", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedViewModelTests.swift", + "source_location": "L233", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedviewmodeltests_feedviewmodeltests_getwidgetdatadoesnotsave", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedViewModelTests.swift", + "source_location": "L175", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedviewmodeltests_feedviewmodeltests_getwidgetdatalimitstothree", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedViewModelTests.swift", + "source_location": "L194", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedviewmodeltests_feedviewmodeltests_getwidgetdatareturnscorrecttype", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedViewModelTests.swift", + "source_location": "L211", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedviewmodeltests_feedviewmodeltests_getwidgetdatareturnsemptyonfailure", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedViewModelTests.swift", + "source_location": "L159", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedviewmodeltests_feedviewmodeltests_statusequality", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedViewModelTests.swift", + "source_location": "L151", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedviewmodeltests_feedviewmodeltests_statusreasonreturnserrormessage", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/ViewModel/NewsViewModel.swift", + "source_location": "L19", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_newslibrary_sources_newslibrary_viewmodel_newsviewmodel_newsviewmodel", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/ViewModel/PodcastViewModel.swift", + "source_location": "L18", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_podcastlibrary_sources_podcast_viewmodel_podcastviewmodel_podcastviewmodel", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Services/RemoteFeedSearchService.swift", + "source_location": "L11", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_services_remotefeedsearchservice_remotefeedsearchservice", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Services/RemoteFeedSearchService.swift", + "source_location": "L13", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_services_remotefeedsearchservice_remotefeedsearchservice_init", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/WatchApp/MainApp/WatchApp.swift", + "source_location": "L20", + "weight": 1.0, + "source": "macmagazine_watchapp_mainapp_watchapp_watchapp_init", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/ViewModel/FeedMainViewModel.swift", + "source_location": "L22", + "weight": 1.0, + "context": "field", + "source": "macmagazine_watchapp_viewmodel_feedmainviewmodel_feedmainviewmodel", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/ViewModel/FeedMainViewModel.swift", + "source_location": "L28", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_watchapp_viewmodel_feedmainviewmodel_feedmainviewmodel_init", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/ViewModel/FeedMainViewModel.swift", + "source_location": "L114", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_watchapp_viewmodel_feedmainviewmodel_feedmainviewmodel_setstatusforpreview", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/Views/FeedMainView.swift", + "source_location": "L276", + "weight": 1.0, + "source": "macmagazine_watchapp_views_feedmainview_feedmainviewmodel_preview", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/Views/FeedMainView.swift", + "source_location": "L291", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_watchapp_views_feedmainview_feedpreviewhost_init", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/WatchWidget/Widget/WatchWidgetProvider.swift", + "source_location": "L39", + "weight": 1.0, + "source": "macmagazine_watchwidget_widget_watchwidgetprovider_watchwidgetprovider_getwidgetcontent", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Widget/Timeline/MacMagazineTimelineProvider.swift", + "source_location": "L8", + "weight": 1.0, + "source": "macmagazine_widget_timeline_macmagazinetimelineprovider_macmagazinetimelineprovider", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel" + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", + "source_location": "L14", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_status", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_status_done", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", + "source_location": "L15", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_status", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_status_error", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", + "source_location": "L12", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_status", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_status_idle", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", + "source_location": "L13", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_status", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_status_loading", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", + "source_location": "L17", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_status", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", + "source_location": "L11", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_status", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_equatable", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", + "source_location": "L143", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_parse", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", + "source_location": "L102", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_search", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", + "source_location": "L32", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_init", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_swift_database", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", + "source_location": "L37", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_init", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_swift_networkservice", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", + "source_location": "L32", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_init", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_swift_network", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", + "source_location": "L45", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_getfeed", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_fetch", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", + "source_location": "L40", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_getfeed", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_swift_int", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedViewModelTests.swift", + "source_location": "L41", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedviewmodeltests_feedviewmodeltests_getnewsnetworkfailure", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_getfeed" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedViewModelTests.swift", + "source_location": "L68", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedviewmodeltests_feedviewmodeltests_getnewsstatustransitions", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_getfeed" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedViewModelTests.swift", + "source_location": "L26", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedviewmodeltests_feedviewmodeltests_getnewssuccess", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_getfeed" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/ViewModel/NewsViewModel.swift", + "source_location": "L38", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_sources_newslibrary_viewmodel_newsviewmodel_newsviewmodel_getnews", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_getfeed" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", + "source_location": "L120", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_fetch", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_swift_int", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", + "source_location": "L71", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_getpodcast", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_swift_int", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", + "source_location": "L61", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_getwidgetdata", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_swift_int", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", + "source_location": "L143", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_parse", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_swift_int", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", + "source_location": "L102", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_search", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_swift_int", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", + "source_location": "L63", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_getwidgetdata", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_fetch", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", + "source_location": "L61", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_getwidgetdata", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_swift_widgetdata", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedViewModelTests.swift", + "source_location": "L239", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedviewmodeltests_feedviewmodeltests_getwidgetdatadoesnotsave", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_getwidgetdata" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedViewModelTests.swift", + "source_location": "L178", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedviewmodeltests_feedviewmodeltests_getwidgetdatalimitstothree", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_getwidgetdata" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedViewModelTests.swift", + "source_location": "L197", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedviewmodeltests_feedviewmodeltests_getwidgetdatareturnscorrecttype", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_getwidgetdata" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedViewModelTests.swift", + "source_location": "L214", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedviewmodeltests_feedviewmodeltests_getwidgetdatareturnsemptyonfailure", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_getwidgetdata" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/WatchWidget/Widget/WatchWidgetProvider.swift", + "source_location": "L40", + "weight": 1.0, + "source": "macmagazine_watchwidget_widget_watchwidgetprovider_watchwidgetprovider_getwidgetcontent", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_getwidgetdata" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Widget/Timeline/MacMagazineTimelineProvider.swift", + "source_location": "L37", + "weight": 1.0, + "source": "macmagazine_widget_timeline_macmagazinetimelineprovider_macmagazinetimelineprovider_getwidgetcontent", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_getwidgetdata" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", + "source_location": "L75", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_getpodcast", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_fetch", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedViewModelTests.swift", + "source_location": "L131", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedviewmodeltests_feedviewmodeltests_getpodcastnetworkfailure", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_getpodcast" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedViewModelTests.swift", + "source_location": "L112", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedviewmodeltests_feedviewmodeltests_getpodcastsavestodatabase", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_getpodcast" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedViewModelTests.swift", + "source_location": "L89", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedviewmodeltests_feedviewmodeltests_getpodcastsuccess", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_getpodcast" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/ViewModel/PodcastViewModel.swift", + "source_location": "L37", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_viewmodel_podcastviewmodel_podcastviewmodel_getpodcasts", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_getpodcast" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", + "source_location": "L87", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_getwatchfeed", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_fetch", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", + "source_location": "L83", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_getwatchfeed", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_swift_feeddb", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedViewModelTests.swift", + "source_location": "L263", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedviewmodeltests_feedviewmodeltests_getwatchfeedlimitstoten", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_getwatchfeed" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedViewModelTests.swift", + "source_location": "L303", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedviewmodeltests_feedviewmodeltests_getwatchfeedparsesfullcontent", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_getwatchfeed" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedViewModelTests.swift", + "source_location": "L364", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedviewmodeltests_feedviewmodeltests_getwatchfeedreturnscorrecttype", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_getwatchfeed" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedViewModelTests.swift", + "source_location": "L323", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedviewmodeltests_feedviewmodeltests_getwatchfeedreturnsemptyonfailure", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_getwatchfeed" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedViewModelTests.swift", + "source_location": "L282", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedviewmodeltests_feedviewmodeltests_getwatchfeedsavestodatabase", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_getwatchfeed" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedViewModelTests.swift", + "source_location": "L345", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedviewmodeltests_feedviewmodeltests_getwatchfeedupdatesstatus", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_getwatchfeed" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/WatchApp/ViewModel/FeedMainViewModel.swift", + "source_location": "L40", + "weight": 1.0, + "source": "macmagazine_watchapp_viewmodel_feedmainviewmodel_feedmainviewmodel_refresh", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_getwatchfeed" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", + "source_location": "L102", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_search", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_swift_feeddb", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", + "source_location": "L105", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_search", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_parse", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", + "source_location": "L102", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_search", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_swift_podcastdb", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", + "source_location": "L128", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_fetch", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_parse", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", + "source_location": "L120", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_fetch", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_swift_bool", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", + "source_location": "L120", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_fetch", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_swift_newscategory", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", + "source_location": "L143", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_parse", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_swift_bool", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", + "source_location": "L143", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_parse", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_swift_checkedcontinuation", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", + "source_location": "L143", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_parse", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_swift_data", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", + "source_location": "L143", + "weight": 1.0, + "context": "generic_arg", + "source": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_parse", + "target": "macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_swift_error", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/CategoryTests.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_categorytests", + "target": "feedlibrary", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/CategoryTests.swift", + "source_location": "L5", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_categorytests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_categorytests_categorytests", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/CategoryTests.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_categorytests", + "target": "testing", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/DateParserTests.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_dateparsertests", + "target": "feedlibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedDBTests.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests", + "target": "feedlibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedEndpointTests.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedendpointtests", + "target": "feedlibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedViewModelTests.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedviewmodeltests", + "target": "feedlibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/PodcastDBTests.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests", + "target": "feedlibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests", + "target": "feedlibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StringExtensionsTests.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_stringextensionstests", + "target": "feedlibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/WidgetDataTests.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_widgetdatatests", + "target": "feedlibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/XMLParserTests.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_xmlparsertests", + "target": "feedlibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/XMLPostTests.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_xmlposttests", + "target": "feedlibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Extensions/FeedDBExtensions.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_sources_newslibrary_extensions_feeddbextensions", + "target": "feedlibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Modifiers/CardAccessibilityModifier.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_sources_newslibrary_modifiers_cardaccessibilitymodifier", + "target": "feedlibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/ViewModel/NewsViewModel.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_sources_newslibrary_viewmodel_newsviewmodel", + "target": "feedlibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/FeedHighlightCardView.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_sources_newslibrary_views_components_feedhighlightcardview", + "target": "feedlibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/FeedHighlightsCarouselView.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_sources_newslibrary_views_components_feedhighlightscarouselview", + "target": "feedlibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Mock/PreviewData.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_sources_newslibrary_views_mock_previewdata", + "target": "feedlibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/NewsView.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_sources_newslibrary_views_newsview", + "target": "feedlibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Tests/NewsLibraryTests/NewsViewModelTests.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests", + "target": "feedlibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Extensions/PodcastDBExtensions.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_extensions_podcastdbextensions", + "target": "feedlibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/PodcastPlayerManager.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager", + "target": "feedlibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Modifiers/CardAccessibilityModifier.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_modifiers_cardaccessibilitymodifier", + "target": "feedlibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Modifiers/PodcastMiniPlayerModifier.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_modifiers_podcastminiplayermodifier", + "target": "feedlibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/ViewModel/PodcastViewModel.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_viewmodel_podcastviewmodel", + "target": "feedlibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Card/AdaptivePodcastCardView.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_card_adaptivepodcastcardview", + "target": "feedlibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Card/GlassPodcastCardView.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_card_glasspodcastcardview", + "target": "feedlibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Card/PodcastCardView.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_card_podcastcardview", + "target": "feedlibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/FullPlayerView.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_fullplayerview", + "target": "feedlibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/MiniPlayerView.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_miniplayerview", + "target": "feedlibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/PodcastView.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_podcastview", + "target": "feedlibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastPlayerManagerTests.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastplayermanagertests", + "target": "feedlibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastViewModelTests.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests", + "target": "feedlibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Models/SearchResult.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_models_searchresult", + "target": "feedlibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Services/LocalSearchService.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_services_localsearchservice", + "target": "feedlibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Services/RemoteFeedSearchService.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_services_remotefeedsearchservice", + "target": "feedlibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchResultsList.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist", + "target": "feedlibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchView.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchview", + "target": "feedlibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/RelevanceScorerTests.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_relevancescorertests", + "target": "feedlibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/RemoteFeedSearchServiceTests.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_remotefeedsearchservicetests", + "target": "feedlibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/Features/News/DeepLinkNewsDetailView.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_macmagazine_features_news_deeplinknewsdetailview", + "target": "feedlibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/Features/Shortcuts/ShortcutManager.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_macmagazine_features_shortcuts_shortcutmanager", + "target": "feedlibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/MainViewModel.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_mainviewmodel", + "target": "feedlibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/Extension/FeedDB.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_watchapp_extension_feeddb", + "target": "feedlibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/MainApp/WatchApp.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_watchapp_mainapp_watchapp", + "target": "feedlibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/ViewModel/FeedMainViewModel.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_watchapp_viewmodel_feedmainviewmodel", + "target": "feedlibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/Views/FeedDetailView.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_watchapp_views_feeddetailview", + "target": "feedlibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/Views/FeedMainView.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_watchapp_views_feedmainview", + "target": "feedlibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/Views/Row/FeedRowView.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_watchapp_views_row_feedrowview", + "target": "feedlibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchWidget/Model/WidgetEntry.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_watchwidget_model_widgetentry", + "target": "feedlibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchWidget/Views/WatchWidgetEntryView.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_watchwidget_views_watchwidgetentryview", + "target": "feedlibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchWidget/Widget/WatchWidget.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_watchwidget_widget_watchwidget", + "target": "feedlibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchWidget/Widget/WatchWidgetProvider.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_watchwidget_widget_watchwidgetprovider", + "target": "feedlibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/Models/WidgetData.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_widget_models_widgetdata", + "target": "feedlibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/Timeline/MacMagazineTimelineProvider.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_widget_timeline_macmagazinetimelineprovider", + "target": "feedlibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/Timeline/WidgetEntry.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_widget_timeline_widgetentry", + "target": "feedlibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/Views/WidgetElementView.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_widget_views_widgetelementview", + "target": "feedlibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/Views/WidgetView.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_widget_views_widgetview", + "target": "feedlibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/DateParserTests.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_dateparsertests", + "target": "testing", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedDBTests.swift", + "source_location": "L5", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests", + "target": "testing", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedEndpointTests.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedendpointtests", + "target": "testing", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedViewModelTests.swift", + "source_location": "L5", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedviewmodeltests", + "target": "testing", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/PodcastDBTests.swift", + "source_location": "L5", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests", + "target": "testing", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests", + "target": "testing", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StringExtensionsTests.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_stringextensionstests", + "target": "testing", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/WidgetDataTests.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_widgetdatatests", + "target": "testing", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/XMLParserTests.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_xmlparsertests", + "target": "testing", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/XMLPostTests.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_xmlposttests", + "target": "testing", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Tests/MacMagazineLibraryTests/AppDefinitionsTests.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_appdefinitionstests", + "target": "testing", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Tests/MacMagazineLibraryTests/URLClassifierTests.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_urlclassifiertests", + "target": "testing", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CardSystemTests.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cardsystemtests", + "target": "testing", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CookiesTests.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cookiestests", + "target": "testing", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MMLiveLibrary/Tests/MMLiveLibraryTests/MMLiveViewModelTests.swift", + "source_location": "L5", + "weight": 1.0, + "source": "macmagazine_features_mmlivelibrary_tests_mmlivelibrarytests_mmliveviewmodeltests", + "target": "testing", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Tests/NewsLibraryTests/NewsViewModelTests.swift", + "source_location": "L6", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests", + "target": "testing", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Tests/OnboardingLibraryTests/OnboardingCoordinatorTests.swift", + "source_location": "L5", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_tests_onboardinglibrarytests_onboardingcoordinatortests", + "target": "testing", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastChapterTests.swift", + "source_location": "L5", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests", + "target": "testing", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastPlayerManagerTests.swift", + "source_location": "L5", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastplayermanagertests", + "target": "testing", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastViewModelTests.swift", + "source_location": "L6", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests", + "target": "testing", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/QueryProcessorTests.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_queryprocessortests", + "target": "testing", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/RelevanceScorerTests.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_relevancescorertests", + "target": "testing", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/RemoteFeedSearchServiceTests.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_remotefeedsearchservicetests", + "target": "testing", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchResultMergerTests.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchresultmergertests", + "target": "testing", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchViewModelTests.swift", + "source_location": "L5", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests", + "target": "testing", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/DatabaseExtensionsTests.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_databaseextensionstests", + "target": "testing", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SettingsViewModelTests.swift", + "source_location": "L5", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_settingsviewmodeltests", + "target": "testing", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SubscriptionTests.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_subscriptiontests", + "target": "testing", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/VideosLibrary/Tests/VideosLibraryTests/VideosViewModelTests.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_videoslibrary_tests_videoslibrarytests_videosviewmodeltests", + "target": "testing", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/CategoryTests.swift", + "source_location": "L36", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_categorytests_categorytests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_categorytests_categorytests_allcategoryquery", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/CategoryTests.swift", + "source_location": "L76", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_categorytests_categorytests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_categorytests_categorytests_appletvcategoryquery", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/CategoryTests.swift", + "source_location": "L149", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_categorytests_categorytests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_categorytests_categorytests_categoryallcases", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/CategoryTests.swift", + "source_location": "L166", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_categorytests_categorytests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_categorytests_categorytests_categoryissendable", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/CategoryTests.swift", + "source_location": "L134", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_categorytests_categorytests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_categorytests_categorytests_categoryrawvalues", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/CategoryTests.swift", + "source_location": "L10", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_categorytests_categorytests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_categorytests_categorytests_highlightscategoryquery", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/CategoryTests.swift", + "source_location": "L24", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_categorytests_categorytests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_categorytests_categorytests_newscategoryquery", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/CategoryTests.swift", + "source_location": "L48", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_categorytests_categorytests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_categorytests_categorytests_podcastcategoryquery", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/CategoryTests.swift", + "source_location": "L90", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_categorytests_categorytests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_categorytests_categorytests_reviewscategoryquery", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/CategoryTests.swift", + "source_location": "L118", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_categorytests_categorytests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_categorytests_categorytests_rumorscategoryquery", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/CategoryTests.swift", + "source_location": "L173", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_categorytests_categorytests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_categorytests_categorytests_sendcategory", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/CategoryTests.swift", + "source_location": "L104", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_categorytests_categorytests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_categorytests_categorytests_tutoriaiscategoryquery", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/CategoryTests.swift", + "source_location": "L62", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_categorytests_categorytests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_categorytests_categorytests_youtubecategoryquery", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/CategoryTests.swift", + "source_location": "L170", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_categorytests_categorytests_categoryissendable", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_categorytests_categorytests_sendcategory", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/CategoryTests.swift", + "source_location": "L173", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_categorytests_categorytests_sendcategory", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_categorytests_swift_newscategory", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/DateParserTests.swift", + "source_location": "L5", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_dateparsertests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_dateparsertests_dateparsertests", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/DateParserTests.swift", + "source_location": "L200", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_dateparsertests_dateparsertests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_dateparsertests_dateparsertests_consistentparsing", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/DateParserTests.swift", + "source_location": "L28", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_dateparsertests_dateparsertests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_dateparsertests_dateparsertests_parsedifferentdays", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/DateParserTests.swift", + "source_location": "L50", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_dateparsertests_dateparsertests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_dateparsertests_dateparsertests_parsedifferentmonths", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/DateParserTests.swift", + "source_location": "L170", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_dateparsertests_dateparsertests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_dateparsertests_dateparsertests_parsedifferentyears", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/DateParserTests.swift", + "source_location": "L120", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_dateparsertests_dateparsertests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_dateparsertests_dateparsertests_parsedoubledigitday", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/DateParserTests.swift", + "source_location": "L92", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_dateparsertests_dateparsertests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_dateparsertests_dateparsertests_parseendofday", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/DateParserTests.swift", + "source_location": "L225", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_dateparsertests_dateparsertests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_dateparsertests_dateparsertests_parsefarfuturedate", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/DateParserTests.swift", + "source_location": "L212", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_dateparsertests_dateparsertests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_dateparsertests_dateparsertests_parsefarpastdate", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/DateParserTests.swift", + "source_location": "L185", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_dateparsertests_dateparsertests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_dateparsertests_dateparsertests_parseleapyeardate", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/DateParserTests.swift", + "source_location": "L77", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_dateparsertests_dateparsertests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_dateparsertests_dateparsertests_parsemidnight", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/DateParserTests.swift", + "source_location": "L107", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_dateparsertests_dateparsertests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_dateparsertests_dateparsertests_parsesingledigitday", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/DateParserTests.swift", + "source_location": "L10", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_dateparsertests_dateparsertests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_dateparsertests_dateparsertests_parsevalidrssdate", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/DateParserTests.swift", + "source_location": "L146", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_dateparsertests_dateparsertests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_dateparsertests_dateparsertests_returncurrentdateforemptystring", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/DateParserTests.swift", + "source_location": "L133", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_dateparsertests_dateparsertests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_dateparsertests_dateparsertests_returncurrentdateforinvalidformat", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/DateParserTests.swift", + "source_location": "L158", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_dateparsertests_dateparsertests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_dateparsertests_dateparsertests_returncurrentdateforpartialstring", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedDBTests.swift", + "source_location": "L7", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedDBTests.swift", + "source_location": "L419", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests_deduplicatehandlesmultiplegroups", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedDBTests.swift", + "source_location": "L388", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests_deduplicatekeepsmostrecentlymodified", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedDBTests.swift", + "source_location": "L446", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests_deduplicatenilcontext", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedDBTests.swift", + "source_location": "L405", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests_deduplicatepreservesdistinctpostids", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedDBTests.swift", + "source_location": "L439", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests_deduplicatesafeonempty", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedDBTests.swift", + "source_location": "L284", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests_deletenonfavoriteshandlesallfavorites", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedDBTests.swift", + "source_location": "L304", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests_deletenonfavoriteshandlesallnonfavorites", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedDBTests.swift", + "source_location": "L271", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests_deletenonfavoriteshandlesemptydatabase", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedDBTests.swift", + "source_location": "L244", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests_deletenonfavoritespreservesfavorites", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedDBTests.swift", + "source_location": "L218", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests_deletenonfavoritesremovesnonfavorites", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedDBTests.swift", + "source_location": "L134", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests_handlesspecialcharacters", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedDBTests.swift", + "source_location": "L146", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests_handlesunicodecharacters", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedDBTests.swift", + "source_location": "L13", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests_initializationwithallproperties", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedDBTests.swift", + "source_location": "L54", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests_initializationwithdefaults", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedDBTests.swift", + "source_location": "L94", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests_initializationwithemptycategories", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedDBTests.swift", + "source_location": "L71", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests_initializationwithemptystrings", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedDBTests.swift", + "source_location": "L103", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests_initializationwithmultiplecategories", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedDBTests.swift", + "source_location": "L160", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests_ispersistableinswiftdata", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedDBTests.swift", + "source_location": "L359", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests_markallasreadhandlesemptydatabase", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedDBTests.swift", + "source_location": "L326", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests_markallasreadmarksunreadposts", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedDBTests.swift", + "source_location": "L366", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests_markallasreadnilcontext", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedDBTests.swift", + "source_location": "L341", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests_markallasreadpreservesalreadyread", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedDBTests.swift", + "source_location": "L371", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests_markallasreadupdatesmodifiedat", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedDBTests.swift", + "source_location": "L181", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests_persistsallpropertiescorrectly", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedDBTests.swift", + "source_location": "L118", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests_propertiesaremutable", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedDBTests.swift", + "source_location": "L489", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests_supportsqueryingbycategories", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedDBTests.swift", + "source_location": "L471", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests_supportsqueryingbypostid", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedDBTests.swift", + "source_location": "L453", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests_workswithfetchpredicates", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedDBTests.swift", + "source_location": "L424", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feeddbtests_feeddbtests_deduplicatehandlesmultiplegroups", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_dateextensions_date" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedEndpointTests.swift", + "source_location": "L6", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedendpointtests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedendpointtests_feedendpointtests", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedEndpointTests.swift", + "source_location": "L33", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedendpointtests_feedendpointtests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedendpointtests_feedendpointtests_apidefinitionsapipaths", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedEndpointTests.swift", + "source_location": "L21", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedendpointtests_feedendpointtests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedendpointtests_feedendpointtests_apidefinitionsloginurls", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedEndpointTests.swift", + "source_location": "L11", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedendpointtests_feedendpointtests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedendpointtests_feedendpointtests_apidefinitionsmaindomain", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedEndpointTests.swift", + "source_location": "L16", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedendpointtests_feedendpointtests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedendpointtests_feedendpointtests_apidefinitionsmainurl", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedEndpointTests.swift", + "source_location": "L27", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedendpointtests_feedendpointtests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedendpointtests_feedendpointtests_apidefinitionspolicyurls", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedEndpointTests.swift", + "source_location": "L213", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedendpointtests_feedendpointtests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedendpointtests_feedendpointtests_postsforappletvtag", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedEndpointTests.swift", + "source_location": "L175", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedendpointtests_feedendpointtests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedendpointtests_feedendpointtests_postsforhighlightscategory", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedEndpointTests.swift", + "source_location": "L189", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedendpointtests_feedendpointtests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedendpointtests_feedendpointtests_postsforpodcastcategory", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedEndpointTests.swift", + "source_location": "L201", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedendpointtests_feedendpointtests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedendpointtests_feedendpointtests_postsforyoutubecategory", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedEndpointTests.swift", + "source_location": "L164", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedendpointtests_feedendpointtests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedendpointtests_feedendpointtests_postsusescorrectapipath", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedEndpointTests.swift", + "source_location": "L155", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedendpointtests_feedendpointtests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedendpointtests_feedendpointtests_postsusescorrectcustomhost", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedEndpointTests.swift", + "source_location": "L81", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedendpointtests_feedendpointtests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedendpointtests_feedendpointtests_postswithcategoryquery", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedEndpointTests.swift", + "source_location": "L44", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedendpointtests_feedendpointtests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedendpointtests_feedendpointtests_postswithdefaults", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedEndpointTests.swift", + "source_location": "L225", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedendpointtests_feedendpointtests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedendpointtests_feedendpointtests_postswithemptyqueryvalue", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedEndpointTests.swift", + "source_location": "L72", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedendpointtests_feedendpointtests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedendpointtests_feedendpointtests_postswithlargepagenumber", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedEndpointTests.swift", + "source_location": "L144", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedendpointtests_feedendpointtests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedendpointtests_feedendpointtests_postswithoutquery", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedEndpointTests.swift", + "source_location": "L117", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedendpointtests_feedendpointtests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedendpointtests_feedendpointtests_postswithpagedandcategory", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedEndpointTests.swift", + "source_location": "L131", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedendpointtests_feedendpointtests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedendpointtests_feedendpointtests_postswithpagedandtag", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedEndpointTests.swift", + "source_location": "L54", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedendpointtests_feedendpointtests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedendpointtests_feedendpointtests_postswithpagedparameter", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedEndpointTests.swift", + "source_location": "L105", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedendpointtests_feedendpointtests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedendpointtests_feedendpointtests_postswithsearchquery", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedEndpointTests.swift", + "source_location": "L93", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedendpointtests_feedendpointtests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedendpointtests_feedendpointtests_postswithtagquery", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedEndpointTests.swift", + "source_location": "L63", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedendpointtests_feedendpointtests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedendpointtests_feedendpointtests_postswithzeropage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedViewModelTests.swift", + "source_location": "L7", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedviewmodeltests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedviewmodeltests_feedviewmodeltests", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedViewModelTests.swift", + "source_location": "L33", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedviewmodeltests_feedviewmodeltests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedviewmodeltests_feedviewmodeltests_getnewsnetworkfailure", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedViewModelTests.swift", + "source_location": "L52", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedviewmodeltests_feedviewmodeltests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedviewmodeltests_feedviewmodeltests_getnewsstatustransitions", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedViewModelTests.swift", + "source_location": "L13", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedviewmodeltests_feedviewmodeltests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedviewmodeltests_feedviewmodeltests_getnewssuccess", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedViewModelTests.swift", + "source_location": "L123", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedviewmodeltests_feedviewmodeltests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedviewmodeltests_feedviewmodeltests_getpodcastnetworkfailure", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedViewModelTests.swift", + "source_location": "L99", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedviewmodeltests_feedviewmodeltests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedviewmodeltests_feedviewmodeltests_getpodcastsavestodatabase", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedViewModelTests.swift", + "source_location": "L76", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedviewmodeltests_feedviewmodeltests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedviewmodeltests_feedviewmodeltests_getpodcastsuccess", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedViewModelTests.swift", + "source_location": "L250", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedviewmodeltests_feedviewmodeltests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedviewmodeltests_feedviewmodeltests_getwatchfeedlimitstoten", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedViewModelTests.swift", + "source_location": "L290", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedviewmodeltests_feedviewmodeltests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedviewmodeltests_feedviewmodeltests_getwatchfeedparsesfullcontent", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedViewModelTests.swift", + "source_location": "L351", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedviewmodeltests_feedviewmodeltests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedviewmodeltests_feedviewmodeltests_getwatchfeedreturnscorrecttype", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedViewModelTests.swift", + "source_location": "L315", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedviewmodeltests_feedviewmodeltests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedviewmodeltests_feedviewmodeltests_getwatchfeedreturnsemptyonfailure", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedViewModelTests.swift", + "source_location": "L269", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedviewmodeltests_feedviewmodeltests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedviewmodeltests_feedviewmodeltests_getwatchfeedsavestodatabase", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedViewModelTests.swift", + "source_location": "L332", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedviewmodeltests_feedviewmodeltests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedviewmodeltests_feedviewmodeltests_getwatchfeedupdatesstatus", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedViewModelTests.swift", + "source_location": "L223", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedviewmodeltests_feedviewmodeltests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedviewmodeltests_feedviewmodeltests_getwidgetdatadoesnotsave", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedViewModelTests.swift", + "source_location": "L165", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedviewmodeltests_feedviewmodeltests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedviewmodeltests_feedviewmodeltests_getwidgetdatalimitstothree", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedViewModelTests.swift", + "source_location": "L184", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedviewmodeltests_feedviewmodeltests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedviewmodeltests_feedviewmodeltests_getwidgetdatareturnscorrecttype", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedViewModelTests.swift", + "source_location": "L206", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedviewmodeltests_feedviewmodeltests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedviewmodeltests_feedviewmodeltests_getwidgetdatareturnsemptyonfailure", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedViewModelTests.swift", + "source_location": "L155", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedviewmodeltests_feedviewmodeltests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedviewmodeltests_feedviewmodeltests_statusequality", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedViewModelTests.swift", + "source_location": "L148", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedviewmodeltests_feedviewmodeltests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedviewmodeltests_feedviewmodeltests_statusreasonreturnserrormessage", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedViewModelTests.swift", + "source_location": "L142", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedviewmodeltests_feedviewmodeltests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_feedviewmodeltests_feedviewmodeltests_statusreasonreturnsnilforloadinganddone", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/PodcastDBTests.swift", + "source_location": "L7", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests_podcastdbtests", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/PodcastDBTests.swift", + "source_location": "L397", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests_podcastdbtests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests_podcastdbtests_deduplicatehandlestripleduplicates", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/PodcastDBTests.swift", + "source_location": "L365", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests_podcastdbtests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests_podcastdbtests_deduplicatekeepsmostrecentlymodified", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/PodcastDBTests.swift", + "source_location": "L422", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests_podcastdbtests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests_podcastdbtests_deduplicatenilcontext", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/PodcastDBTests.swift", + "source_location": "L383", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests_podcastdbtests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests_podcastdbtests_deduplicatepreservesdistinctpubdates", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/PodcastDBTests.swift", + "source_location": "L415", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests_podcastdbtests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests_podcastdbtests_deduplicatesafeonempty", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/PodcastDBTests.swift", + "source_location": "L323", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests_podcastdbtests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests_podcastdbtests_deletenonfavoriteshandlesallfavorites", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/PodcastDBTests.swift", + "source_location": "L343", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests_podcastdbtests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests_podcastdbtests_deletenonfavoriteshandlesallnonfavorites", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/PodcastDBTests.swift", + "source_location": "L310", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests_podcastdbtests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests_podcastdbtests_deletenonfavoriteshandlesemptydatabase", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/PodcastDBTests.swift", + "source_location": "L283", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests_podcastdbtests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests_podcastdbtests_deletenonfavoritespreservesfavorites", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/PodcastDBTests.swift", + "source_location": "L257", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests_podcastdbtests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests_podcastdbtests_deletenonfavoritesremovesnonfavorites", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/PodcastDBTests.swift", + "source_location": "L500", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests_podcastdbtests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests_podcastdbtests_handlesmultiplepodcastswithdifferentstates", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/PodcastDBTests.swift", + "source_location": "L153", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests_podcastdbtests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests_podcastdbtests_handlesspecialcharacters", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/PodcastDBTests.swift", + "source_location": "L165", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests_podcastdbtests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests_podcastdbtests_handlesunicodecharacters", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/PodcastDBTests.swift", + "source_location": "L177", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests_podcastdbtests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests_podcastdbtests_handlesvariousdurationformats", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/PodcastDBTests.swift", + "source_location": "L13", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests_podcastdbtests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests_podcastdbtests_initializationwithallproperties", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/PodcastDBTests.swift", + "source_location": "L63", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests_podcastdbtests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests_podcastdbtests_initializationwithdefaults", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/PodcastDBTests.swift", + "source_location": "L83", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests_podcastdbtests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests_podcastdbtests_initializationwithemptystrings", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/PodcastDBTests.swift", + "source_location": "L119", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests_podcastdbtests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests_podcastdbtests_initializationwithlargesizes", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/PodcastDBTests.swift", + "source_location": "L108", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests_podcastdbtests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests_podcastdbtests_initializationwithzeroandnegativesizes", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/PodcastDBTests.swift", + "source_location": "L192", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests_podcastdbtests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests_podcastdbtests_ispersistableinswiftdata", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/PodcastDBTests.swift", + "source_location": "L214", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests_podcastdbtests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests_podcastdbtests_persistsallpropertiescorrectly", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/PodcastDBTests.swift", + "source_location": "L133", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests_podcastdbtests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests_podcastdbtests_propertiesaremutable", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/PodcastDBTests.swift", + "source_location": "L465", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests_podcastdbtests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests_podcastdbtests_supportsqueryingbyplayablestatus", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/PodcastDBTests.swift", + "source_location": "L447", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests_podcastdbtests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests_podcastdbtests_supportsqueryingbypostid", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/PodcastDBTests.swift", + "source_location": "L483", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests_podcastdbtests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests_podcastdbtests_tracksplaybackprogress", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/PodcastDBTests.swift", + "source_location": "L429", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests_podcastdbtests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests_podcastdbtests_workswithfetchpredicates", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/PodcastDBTests.swift", + "source_location": "L403", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_podcastdbtests_podcastdbtests_deduplicatehandlestripleduplicates", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_dateextensions_date" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", + "source_location": "L6", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", + "source_location": "L12", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_saveinsertsnewfeeditem", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", + "source_location": "L161", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_saveinsertsnewpodcastitem", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", + "source_location": "L366", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savemergescategoriesforfeed", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", + "source_location": "L332", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savepreservesfavoritestatusforfeed", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", + "source_location": "L382", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savepreservesfavoritestatusforpodcast", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", + "source_location": "L396", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savepreservesplaybackpositionforpodcast", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", + "source_location": "L346", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savepreservesreadstatusforfeed", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", + "source_location": "L106", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savesarrayoffeeditems", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", + "source_location": "L259", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savesarrayofpodcastitems", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", + "source_location": "L141", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savesduplicatefeeditemsinarray", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", + "source_location": "L294", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savesduplicatepodcastitemsinarray", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", + "source_location": "L127", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savesemptyarrayoffeeditems", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", + "source_location": "L280", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savesemptyarrayofpodcastitems", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", + "source_location": "L314", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savesmultiplemodeltypes", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", + "source_location": "L72", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_saveupdatesallfeedproperties", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", + "source_location": "L221", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_saveupdatesallpodcastproperties", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", + "source_location": "L39", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_saveupdatesexistingfeeditem", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", + "source_location": "L191", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_saveupdatesexistingpodcastitem", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StringExtensionsTests.swift", + "source_location": "L5", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_stringextensionstests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_stringextensionstests_stringextensionstests", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StringExtensionsTests.swift", + "source_location": "L123", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_stringextensionstests_stringextensionstests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_stringextensionstests_stringextensionstests_chaininghtmldecodedandclean", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StringExtensionsTests.swift", + "source_location": "L97", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_stringextensionstests_stringextensionstests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_stringextensionstests_stringextensionstests_cleanhandlesemptystring", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StringExtensionsTests.swift", + "source_location": "L109", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_stringextensionstests_stringextensionstests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_stringextensionstests_stringextensionstests_cleanhandlesonlynewlines", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StringExtensionsTests.swift", + "source_location": "L85", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_stringextensionstests_stringextensionstests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_stringextensionstests_stringextensionstests_cleanpreservessinglenewlines", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StringExtensionsTests.swift", + "source_location": "L61", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_stringextensionstests_stringextensionstests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_stringextensionstests_stringextensionstests_cleanremovesconsecutivenewlines", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StringExtensionsTests.swift", + "source_location": "L73", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_stringextensionstests_stringextensionstests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_stringextensionstests_stringextensionstests_cleanremovesmultipleconsecutivenewlines", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StringExtensionsTests.swift", + "source_location": "L10", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_stringextensionstests_stringextensionstests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_stringextensionstests_stringextensionstests_htmldecodeddecodeshtmlentities", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StringExtensionsTests.swift", + "source_location": "L35", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_stringextensionstests_stringextensionstests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_stringextensionstests_stringextensionstests_htmldecodedhandlesplaintext", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StringExtensionsTests.swift", + "source_location": "L23", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_stringextensionstests_stringextensionstests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_stringextensionstests_stringextensionstests_htmldecodedreplacesellipsis", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StringExtensionsTests.swift", + "source_location": "L47", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_stringextensionstests_stringextensionstests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_stringextensionstests_stringextensionstests_htmldecodedreturnsoriginalonfailure", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/WidgetDataTests.swift", + "source_location": "L5", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_widgetdatatests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_widgetdatatests_widgetdatatests", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/WidgetDataTests.swift", + "source_location": "L89", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_widgetdatatests_widgetdatatests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_widgetdatatests_widgetdatatests_decodesfromjson", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/WidgetDataTests.swift", + "source_location": "L63", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_widgetdatatests_widgetdatatests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_widgetdatatests_widgetdatatests_encodestojson", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/WidgetDataTests.swift", + "source_location": "L114", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_widgetdatatests_widgetdatatests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_widgetdatatests_widgetdatatests_encodingdecodingroundtrip", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/WidgetDataTests.swift", + "source_location": "L141", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_widgetdatatests_widgetdatatests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_widgetdatatests_widgetdatatests_equalitywithsamevalues", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/WidgetDataTests.swift", + "source_location": "L270", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_widgetdatatests_widgetdatatests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_widgetdatatests_widgetdatatests_handlesspecialcharacters", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/WidgetDataTests.swift", + "source_location": "L286", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_widgetdatatests_widgetdatatests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_widgetdatatests_widgetdatatests_handlesunicodecharacters", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/WidgetDataTests.swift", + "source_location": "L187", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_widgetdatatests_widgetdatatests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_widgetdatatests_widgetdatatests_hashingbehavior", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/WidgetDataTests.swift", + "source_location": "L164", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_widgetdatatests_widgetdatatests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_widgetdatatests_widgetdatatests_inequalitywithdifferentvalues", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/WidgetDataTests.swift", + "source_location": "L10", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_widgetdatatests_widgetdatatests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_widgetdatatests_widgetdatatests_initializationwithallproperties", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/WidgetDataTests.swift", + "source_location": "L36", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_widgetdatatests_widgetdatatests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_widgetdatatests_widgetdatatests_initializationwithemptystrings", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/WidgetDataTests.swift", + "source_location": "L248", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_widgetdatatests_widgetdatatests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_widgetdatatests_widgetdatatests_worksasdictionarykey", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/WidgetDataTests.swift", + "source_location": "L210", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_widgetdatatests_widgetdatatests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_widgetdatatests_widgetdatatests_worksinset", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/XMLParserTests.swift", + "source_location": "L5", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_xmlparsertests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_xmlparsertests_xmlparsertests", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/XMLParserTests.swift", + "source_location": "L200", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_xmlparsertests_xmlparsertests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_xmlparsertests_xmlparsertests_parseemptydatareturnsemptyarray", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/XMLParserTests.swift", + "source_location": "L65", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_xmlparsertests_xmlparsertests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_xmlparsertests_xmlparsertests_parsefeedxmlextractsmediacontent", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/XMLParserTests.swift", + "source_location": "L10", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_xmlparsertests_xmlparsertests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_xmlparsertests_xmlparsertests_parsefeedxmlsuccessfully", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/XMLParserTests.swift", + "source_location": "L89", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_xmlparsertests_xmlparsertests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_xmlparsertests_xmlparsertests_parsefeedxmlwithfullcontent", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/XMLParserTests.swift", + "source_location": "L41", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_xmlparsertests_xmlparsertests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_xmlparsertests_xmlparsertests_parsefeedxmlwithlimitedposts", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/XMLParserTests.swift", + "source_location": "L179", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_xmlparsertests_xmlparsertests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_xmlparsertests_xmlparsertests_parseinvalidxmlthrowserror", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/XMLParserTests.swift", + "source_location": "L143", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_xmlparsertests_xmlparsertests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_xmlparsertests_xmlparsertests_parsepodcastxmlextractspodcastfields", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/XMLParserTests.swift", + "source_location": "L115", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_xmlparsertests_xmlparsertests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_xmlparsertests_xmlparsertests_parsepodcastxmlsuccessfully", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/XMLPostTests.swift", + "source_location": "L5", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_xmlposttests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_xmlposttests_xmlposttests", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/XMLPostTests.swift", + "source_location": "L63", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_xmlposttests_xmlposttests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_xmlposttests_xmlposttests_xmlpostarraytopodcastdbconversion", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/XMLPostTests.swift", + "source_location": "L106", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_xmlposttests_xmlposttests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_xmlposttests_xmlposttests_xmlpostarraytopodcastdbemptyarray", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/XMLPostTests.swift", + "source_location": "L34", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_xmlposttests_xmlposttests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_xmlposttests_xmlposttests_xmlpostcodable", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/XMLPostTests.swift", + "source_location": "L10", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_xmlposttests_xmlposttests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_xmlposttests_xmlposttests_xmlpostdefaultvalues", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/XMLPostTests.swift", + "source_location": "L178", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_xmlposttests_xmlposttests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_xmlposttests_xmlposttests_xmlpostfavoriteflag", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/XMLPostTests.swift", + "source_location": "L168", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_xmlposttests_xmlposttests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_xmlposttests_xmlposttests_xmlpostplayableflag", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/XMLPostTests.swift", + "source_location": "L118", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_xmlposttests_xmlposttests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_xmlposttests_xmlposttests_xmlposttopodcastdbpreservesdates", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/XMLPostTests.swift", + "source_location": "L154", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_xmlposttests_xmlposttests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_xmlposttests_xmlposttests_xmlpostwithmultiplecategories", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/XMLPostTests.swift", + "source_location": "L136", + "weight": 1.0, + "source": "macmagazine_features_feedlibrary_tests_feedlibrarytests_xmlposttests_xmlposttests", + "target": "macmagazine_features_feedlibrary_tests_feedlibrarytests_xmlposttests_xmlposttests_xmlpostwithpodcastfields", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MMLiveLibrary/Sources/MMLiveLibrary/Models/MMLive.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_models_mmlive", + "target": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_models_mmlive_mmlive", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MMLiveLibrary/Sources/MMLiveLibrary/Models/MMLive.swift", + "source_location": "L6", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_models_mmlive_mmlive", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_dateextensions_date", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MMLiveLibrary/Sources/MMLiveLibrary/Services/PushNotification.swift", + "source_location": "L51", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_services_pushnotification_pushnotification_endinterval", + "target": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_models_mmlive_mmlive", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MMLiveLibrary/Sources/MMLiveLibrary/Services/PushNotification.swift", + "source_location": "L26", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_services_pushnotification_pushnotification_process", + "target": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_models_mmlive_mmlive", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MMLiveLibrary/Sources/MMLiveLibrary/Services/PushNotification.swift", + "source_location": "L12", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_services_pushnotification_pushnotification_setlocalnotification", + "target": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_models_mmlive_mmlive", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MMLiveLibrary/Sources/MMLiveLibrary/Services/PushNotification.swift", + "source_location": "L31", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_services_pushnotification_pushnotification_startinterval", + "target": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_models_mmlive_mmlive", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MMLiveLibrary/Sources/MMLiveLibrary/Services/StorageService.swift", + "source_location": "L13", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_services_storageservice_storage_get", + "target": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_models_mmlive_mmlive", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MMLiveLibrary/Sources/MMLiveLibrary/Services/StorageService.swift", + "source_location": "L6", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_services_storageservice_storage_save", + "target": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_models_mmlive_mmlive", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MMLiveLibrary/Sources/MMLiveLibrary/ViewModel/MMLiveViewModel.swift", + "source_location": "L49", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_viewmodel_mmliveviewmodel_mmliveviewmodel_fetch", + "target": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_models_mmlive_mmlive", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MMLiveLibrary/Sources/MMLiveLibrary/ViewModel/MMLiveViewModel.swift", + "source_location": "L40", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_viewmodel_mmliveviewmodel_mmliveviewmodel_islive", + "target": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_models_mmlive_mmlive", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MMLiveLibrary/Tests/MMLiveLibraryTests/MMLiveViewModelTests.swift", + "source_location": "L51", + "weight": 1.0, + "source": "macmagazine_features_mmlivelibrary_tests_mmlivelibrarytests_mmliveviewmodeltests_mmliveviewmodeltests_islivewhenbetweenstartandend", + "target": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_models_mmlive_mmlive", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MMLiveLibrary/Tests/MMLiveLibraryTests/MMLiveViewModelTests.swift", + "source_location": "L264", + "weight": 1.0, + "source": "macmagazine_features_mmlivelibrary_tests_mmlivelibrarytests_mmliveviewmodeltests_mmliveviewmodeltests_liveatexactstarttime", + "target": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_models_mmlive_mmlive", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MMLiveLibrary/Tests/MMLiveLibraryTests/MMLiveViewModelTests.swift", + "source_location": "L286", + "weight": 1.0, + "source": "macmagazine_features_mmlivelibrary_tests_mmlivelibrarytests_mmliveviewmodeltests_mmliveviewmodeltests_notliveatexactendtime", + "target": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_models_mmlive_mmlive", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MMLiveLibrary/Tests/MMLiveLibraryTests/MMLiveViewModelTests.swift", + "source_location": "L97", + "weight": 1.0, + "source": "macmagazine_features_mmlivelibrary_tests_mmlivelibrarytests_mmliveviewmodeltests_mmliveviewmodeltests_notlivewhenafterend", + "target": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_models_mmlive_mmlive", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MMLiveLibrary/Tests/MMLiveLibraryTests/MMLiveViewModelTests.swift", + "source_location": "L74", + "weight": 1.0, + "source": "macmagazine_features_mmlivelibrary_tests_mmlivelibrarytests_mmliveviewmodeltests_mmliveviewmodeltests_notlivewhenbeforestart", + "target": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_models_mmlive_mmlive", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MMLiveLibrary/Tests/MMLiveLibraryTests/MMLiveViewModelTests.swift", + "source_location": "L150", + "weight": 1.0, + "source": "macmagazine_features_mmlivelibrary_tests_mmlivelibrarytests_mmliveviewmodeltests_mmliveviewmodeltests_refetchafter24hours", + "target": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_models_mmlive_mmlive", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MMLiveLibrary/Tests/MMLiveLibraryTests/MMLiveViewModelTests.swift", + "source_location": "L214", + "weight": 1.0, + "source": "macmagazine_features_mmlivelibrary_tests_mmlivelibrarytests_mmliveviewmodeltests_mmliveviewmodeltests_refetchwhennolastchecked", + "target": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_models_mmlive_mmlive", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MMLiveLibrary/Tests/MMLiveLibraryTests/MMLiveViewModelTests.swift", + "source_location": "L123", + "weight": 1.0, + "source": "macmagazine_features_mmlivelibrary_tests_mmlivelibrarytests_mmliveviewmodeltests_mmliveviewmodeltests_usecachewithin24hours", + "target": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_models_mmlive_mmlive", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MMLiveLibrary/Tests/MMLiveLibraryTests/MMLiveViewModelTests.swift", + "source_location": "L307", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_mmlivelibrary_tests_mmlivelibrarytests_mmliveviewmodeltests_mockpushnotification", + "target": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_models_mmlive_mmlive", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MMLiveLibrary/Tests/MMLiveLibraryTests/MMLiveViewModelTests.swift", + "source_location": "L309", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_mmlivelibrary_tests_mmlivelibrarytests_mmliveviewmodeltests_mockpushnotification_setlocalnotification", + "target": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_models_mmlive_mmlive", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MMLiveLibrary/Sources/MMLiveLibrary/Services/MMLiveEndpoint.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_services_mmliveendpoint", + "target": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_services_mmliveendpoint_apidefinitions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MMLiveLibrary/Sources/MMLiveLibrary/Services/MMLiveEndpoint.swift", + "source_location": "L9", + "weight": 1.0, + "source": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_services_mmliveendpoint", + "target": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_services_mmliveendpoint_endpoint", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MMLiveLibrary/Sources/MMLiveLibrary/Services/MMLiveEndpoint.swift", + "source_location": "L11", + "weight": 1.0, + "context": "call", + "source": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_services_mmliveendpoint_endpoint_mmlive", + "target": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_services_mmliveendpoint_endpoint", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MMLiveLibrary/Sources/MMLiveLibrary/Services/MMLiveEndpoint.swift", + "source_location": "L10", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_services_mmliveendpoint_endpoint_mmlive", + "target": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_services_mmliveendpoint_swift_self", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MMLiveLibrary/Sources/MMLiveLibrary/Services/NetworkService.swift", + "source_location": "L12", + "weight": 1.0, + "source": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_services_networkservice", + "target": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_services_networkservice_networkservice", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MMLiveLibrary/Sources/MMLiveLibrary/Services/NetworkService.swift", + "source_location": "L13", + "weight": 1.0, + "source": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_services_networkservice_networkservice", + "target": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_services_networkservice_networkservice_fetch", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MMLiveLibrary/Sources/MMLiveLibrary/Services/NetworkService.swift", + "source_location": "L7", + "weight": 1.0, + "source": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_services_networkservice_networkservice", + "target": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_services_networkservice_networkservice_init", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MMLiveLibrary/Sources/MMLiveLibrary/Services/NetworkService.swift", + "source_location": "L5", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_services_networkservice_networkservice", + "target": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_services_networkservice_swift_network", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MMLiveLibrary/Sources/MMLiveLibrary/Services/NetworkService.swift", + "source_location": "L7", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_services_networkservice_networkservice_init", + "target": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_services_networkservice_swift_network", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MMLiveLibrary/Sources/MMLiveLibrary/Services/NetworkService.swift", + "source_location": "L13", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_services_networkservice_networkservice_fetch", + "target": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_services_networkservice_swift_data", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MMLiveLibrary/Sources/MMLiveLibrary/Services/PushNotification.swift", + "source_location": "L25", + "weight": 1.0, + "source": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_services_pushnotification", + "target": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_services_pushnotification_pushnotification", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MMLiveLibrary/Sources/MMLiveLibrary/Services/PushNotification.swift", + "source_location": "L6", + "weight": 1.0, + "source": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_services_pushnotification", + "target": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_services_pushnotification_pushnotificationprotocol", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MMLiveLibrary/Sources/MMLiveLibrary/Services/PushNotification.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_services_pushnotification", + "target": "usernotifications", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/PushNotification/PushNotification.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_pushnotification", + "target": "usernotifications", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazineNotificationServiceExtension/NotificationService.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_macmagazinenotificationserviceextension_notificationservice", + "target": "usernotifications", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/MainApp/WatchNotificationsDelegate.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_watchapp_mainapp_watchnotificationsdelegate", + "target": "usernotifications", + "confidence_score": 1.0 + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MMLiveLibrary/Sources/MMLiveLibrary/Services/PushNotification.swift", + "source_location": "L11", + "weight": 1.0, + "source": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_services_pushnotification_pushnotification", + "target": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_services_pushnotification_pushnotificationprotocol", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MMLiveLibrary/Sources/MMLiveLibrary/ViewModel/MMLiveViewModel.swift", + "source_location": "L12", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_viewmodel_mmliveviewmodel_mmliveviewmodel", + "target": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_services_pushnotification_pushnotificationprotocol", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/MMLiveLibrary/Sources/MMLiveLibrary/ViewModel/MMLiveViewModel.swift", + "source_location": "L28", + "weight": 1.0, + "source": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_viewmodel_mmliveviewmodel_mmliveviewmodel_islive", + "target": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_services_pushnotification_pushnotificationprotocol" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MMLiveLibrary/Sources/MMLiveLibrary/ViewModel/MMLiveViewModel.swift", + "source_location": "L34", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_viewmodel_mmliveviewmodel_mmliveviewmodel_set", + "target": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_services_pushnotification_pushnotificationprotocol", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MMLiveLibrary/Tests/MMLiveLibraryTests/MMLiveViewModelTests.swift", + "source_location": "L305", + "weight": 1.0, + "source": "macmagazine_features_mmlivelibrary_tests_mmlivelibrarytests_mmliveviewmodeltests_mockpushnotification", + "target": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_services_pushnotification_pushnotificationprotocol", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MMLiveLibrary/Sources/MMLiveLibrary/Services/PushNotification.swift", + "source_location": "L51", + "weight": 1.0, + "source": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_services_pushnotification_pushnotification", + "target": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_services_pushnotification_pushnotification_endinterval", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MMLiveLibrary/Sources/MMLiveLibrary/Services/PushNotification.swift", + "source_location": "L26", + "weight": 1.0, + "source": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_services_pushnotification_pushnotification", + "target": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_services_pushnotification_pushnotification_process", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MMLiveLibrary/Sources/MMLiveLibrary/Services/PushNotification.swift", + "source_location": "L12", + "weight": 1.0, + "source": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_services_pushnotification_pushnotification", + "target": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_services_pushnotification_pushnotification_setlocalnotification", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MMLiveLibrary/Sources/MMLiveLibrary/Services/PushNotification.swift", + "source_location": "L31", + "weight": 1.0, + "source": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_services_pushnotification_pushnotification", + "target": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_services_pushnotification_pushnotification_startinterval", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/MMLiveLibrary/Sources/MMLiveLibrary/ViewModel/MMLiveViewModel.swift", + "source_location": "L20", + "weight": 1.0, + "source": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_viewmodel_mmliveviewmodel_mmliveviewmodel_init", + "target": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_services_pushnotification_pushnotification" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MMLiveLibrary/Sources/MMLiveLibrary/Services/PushNotification.swift", + "source_location": "L19", + "weight": 1.0, + "source": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_services_pushnotification_pushnotification_setlocalnotification", + "target": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_services_pushnotification_pushnotification_process", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MMLiveLibrary/Sources/MMLiveLibrary/Services/PushNotification.swift", + "source_location": "L28", + "weight": 1.0, + "source": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_services_pushnotification_pushnotification_process", + "target": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_services_pushnotification_pushnotification_endinterval", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MMLiveLibrary/Sources/MMLiveLibrary/Services/PushNotification.swift", + "source_location": "L27", + "weight": 1.0, + "source": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_services_pushnotification_pushnotification_process", + "target": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_services_pushnotification_pushnotification_startinterval", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/MMLiveLibrary/Sources/MMLiveLibrary/Services/PushNotification.swift", + "source_location": "L34", + "weight": 1.0, + "source": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_services_pushnotification_pushnotification_startinterval", + "target": "unmutablenotificationcontent" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/MMLiveLibrary/Sources/MMLiveLibrary/Services/PushNotification.swift", + "source_location": "L43", + "weight": 1.0, + "source": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_services_pushnotification_pushnotification_startinterval", + "target": "unnotificationrequest" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/MMLiveLibrary/Sources/MMLiveLibrary/Services/PushNotification.swift", + "source_location": "L54", + "weight": 1.0, + "source": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_services_pushnotification_pushnotification_endinterval", + "target": "unmutablenotificationcontent" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/MMLiveLibrary/Sources/MMLiveLibrary/Services/PushNotification.swift", + "source_location": "L63", + "weight": 1.0, + "source": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_services_pushnotification_pushnotification_endinterval", + "target": "unnotificationrequest" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MMLiveLibrary/Sources/MMLiveLibrary/Services/StorageService.swift", + "source_location": "L5", + "weight": 1.0, + "source": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_services_storageservice", + "target": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_services_storageservice_storage", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MMLiveLibrary/Sources/MMLiveLibrary/Services/StorageService.swift", + "source_location": "L13", + "weight": 1.0, + "source": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_services_storageservice_storage", + "target": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_services_storageservice_storage_get", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MMLiveLibrary/Sources/MMLiveLibrary/Services/StorageService.swift", + "source_location": "L6", + "weight": 1.0, + "source": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_services_storageservice_storage", + "target": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_services_storageservice_storage_save", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MMLiveLibrary/Sources/MMLiveLibrary/ViewModel/MMLiveViewModel.swift", + "source_location": "L8", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_viewmodel_mmliveviewmodel_mmliveviewmodel", + "target": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_services_storageservice_storage", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MMLiveLibrary/Sources/MMLiveLibrary/ViewModel/MMLiveViewModel.swift", + "source_location": "L14", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_viewmodel_mmliveviewmodel_mmliveviewmodel_init", + "target": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_services_storageservice_storage", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/MMLiveLibrary/Sources/MMLiveLibrary/ViewModel/MMLiveViewModel.swift", + "source_location": "L43", + "weight": 1.0, + "source": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_viewmodel_mmliveviewmodel_mmliveviewmodel_islive", + "target": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_services_storageservice_storage_save" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/MMLiveLibrary/Sources/MMLiveLibrary/ViewModel/MMLiveViewModel.swift", + "source_location": "L24", + "weight": 1.0, + "source": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_viewmodel_mmliveviewmodel_mmliveviewmodel_islive", + "target": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_services_storageservice_storage_get" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MMLiveLibrary/Sources/MMLiveLibrary/ViewModel/MMLiveViewModel.swift", + "source_location": "L48", + "weight": 1.0, + "source": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_viewmodel_mmliveviewmodel", + "target": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_viewmodel_mmliveviewmodel_mmliveviewmodel", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MMLiveLibrary/Sources/MMLiveLibrary/ViewModel/MMLiveViewModel.swift", + "source_location": "L49", + "weight": 1.0, + "source": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_viewmodel_mmliveviewmodel_mmliveviewmodel", + "target": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_viewmodel_mmliveviewmodel_mmliveviewmodel_fetch", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MMLiveLibrary/Sources/MMLiveLibrary/ViewModel/MMLiveViewModel.swift", + "source_location": "L14", + "weight": 1.0, + "source": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_viewmodel_mmliveviewmodel_mmliveviewmodel", + "target": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_viewmodel_mmliveviewmodel_mmliveviewmodel_init", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MMLiveLibrary/Sources/MMLiveLibrary/ViewModel/MMLiveViewModel.swift", + "source_location": "L40", + "weight": 1.0, + "source": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_viewmodel_mmliveviewmodel_mmliveviewmodel", + "target": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_viewmodel_mmliveviewmodel_mmliveviewmodel_islive", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MMLiveLibrary/Sources/MMLiveLibrary/ViewModel/MMLiveViewModel.swift", + "source_location": "L34", + "weight": 1.0, + "source": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_viewmodel_mmliveviewmodel_mmliveviewmodel", + "target": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_viewmodel_mmliveviewmodel_mmliveviewmodel_set", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MMLiveLibrary/Sources/MMLiveLibrary/ViewModel/MMLiveViewModel.swift", + "source_location": "L9", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_viewmodel_mmliveviewmodel_mmliveviewmodel", + "target": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_viewmodel_mmliveviewmodel_swift_networkservice", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MMLiveLibrary/Sources/MMLiveLibrary/ViewModel/MMLiveViewModel.swift", + "source_location": "L10", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_viewmodel_mmliveviewmodel_mmliveviewmodel", + "target": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_viewmodel_mmliveviewmodel_swift_timeinterval", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/MMLiveLibrary/Tests/MMLiveLibraryTests/MMLiveViewModelTests.swift", + "source_location": "L24", + "weight": 1.0, + "source": "macmagazine_features_mmlivelibrary_tests_mmlivelibrarytests_mmliveviewmodeltests_mmliveviewmodeltests_fetcheventonfirstcheck", + "target": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_viewmodel_mmliveviewmodel_mmliveviewmodel" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/MMLiveLibrary/Tests/MMLiveLibraryTests/MMLiveViewModelTests.swift", + "source_location": "L57", + "weight": 1.0, + "source": "macmagazine_features_mmlivelibrary_tests_mmlivelibrarytests_mmliveviewmodeltests_mmliveviewmodeltests_islivewhenbetweenstartandend", + "target": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_viewmodel_mmliveviewmodel_mmliveviewmodel" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/MMLiveLibrary/Tests/MMLiveLibraryTests/MMLiveViewModelTests.swift", + "source_location": "L270", + "weight": 1.0, + "source": "macmagazine_features_mmlivelibrary_tests_mmlivelibrarytests_mmliveviewmodeltests_mmliveviewmodeltests_liveatexactstarttime", + "target": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_viewmodel_mmliveviewmodel_mmliveviewmodel" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/MMLiveLibrary/Tests/MMLiveLibraryTests/MMLiveViewModelTests.swift", + "source_location": "L292", + "weight": 1.0, + "source": "macmagazine_features_mmlivelibrary_tests_mmlivelibrarytests_mmliveviewmodeltests_mmliveviewmodeltests_notliveatexactendtime", + "target": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_viewmodel_mmliveviewmodel_mmliveviewmodel" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/MMLiveLibrary/Tests/MMLiveLibraryTests/MMLiveViewModelTests.swift", + "source_location": "L103", + "weight": 1.0, + "source": "macmagazine_features_mmlivelibrary_tests_mmlivelibrarytests_mmliveviewmodeltests_mmliveviewmodeltests_notlivewhenafterend", + "target": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_viewmodel_mmliveviewmodel_mmliveviewmodel" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/MMLiveLibrary/Tests/MMLiveLibraryTests/MMLiveViewModelTests.swift", + "source_location": "L80", + "weight": 1.0, + "source": "macmagazine_features_mmlivelibrary_tests_mmlivelibrarytests_mmliveviewmodeltests_mmliveviewmodeltests_notlivewhenbeforestart", + "target": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_viewmodel_mmliveviewmodel_mmliveviewmodel" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/MMLiveLibrary/Tests/MMLiveLibraryTests/MMLiveViewModelTests.swift", + "source_location": "L162", + "weight": 1.0, + "source": "macmagazine_features_mmlivelibrary_tests_mmlivelibrarytests_mmliveviewmodeltests_mmliveviewmodeltests_refetchafter24hours", + "target": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_viewmodel_mmliveviewmodel_mmliveviewmodel" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/MMLiveLibrary/Tests/MMLiveLibraryTests/MMLiveViewModelTests.swift", + "source_location": "L193", + "weight": 1.0, + "source": "macmagazine_features_mmlivelibrary_tests_mmlivelibrarytests_mmliveviewmodeltests_mmliveviewmodeltests_refetchwhennocache", + "target": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_viewmodel_mmliveviewmodel_mmliveviewmodel" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/MMLiveLibrary/Tests/MMLiveLibraryTests/MMLiveViewModelTests.swift", + "source_location": "L226", + "weight": 1.0, + "source": "macmagazine_features_mmlivelibrary_tests_mmlivelibrarytests_mmliveviewmodeltests_mmliveviewmodeltests_refetchwhennolastchecked", + "target": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_viewmodel_mmliveviewmodel_mmliveviewmodel" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/MMLiveLibrary/Tests/MMLiveLibraryTests/MMLiveViewModelTests.swift", + "source_location": "L245", + "weight": 1.0, + "source": "macmagazine_features_mmlivelibrary_tests_mmlivelibrarytests_mmliveviewmodeltests_mmliveviewmodeltests_returnfalseonnetworkerror", + "target": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_viewmodel_mmliveviewmodel_mmliveviewmodel" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/MMLiveLibrary/Tests/MMLiveLibraryTests/MMLiveViewModelTests.swift", + "source_location": "L131", + "weight": 1.0, + "source": "macmagazine_features_mmlivelibrary_tests_mmlivelibrarytests_mmliveviewmodeltests_mmliveviewmodeltests_usecachewithin24hours", + "target": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_viewmodel_mmliveviewmodel_mmliveviewmodel" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/SettingsViewModel.swift", + "source_location": "L29", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_settingsviewmodel_settingsviewmodel", + "target": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_viewmodel_mmliveviewmodel_mmliveviewmodel", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/SettingsViewModel.swift", + "source_location": "L31", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_settingsviewmodel_settingsviewmodel_init", + "target": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_viewmodel_mmliveviewmodel_mmliveviewmodel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MMLiveLibrary/Sources/MMLiveLibrary/ViewModel/MMLiveViewModel.swift", + "source_location": "L19", + "weight": 1.0, + "source": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_viewmodel_mmliveviewmodel_mmliveviewmodel_init", + "target": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_viewmodel_mmliveviewmodel_swift_networkservice", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MMLiveLibrary/Sources/MMLiveLibrary/ViewModel/MMLiveViewModel.swift", + "source_location": "L14", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_viewmodel_mmliveviewmodel_mmliveviewmodel_init", + "target": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_viewmodel_mmliveviewmodel_swift_network", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MMLiveLibrary/Sources/MMLiveLibrary/ViewModel/MMLiveViewModel.swift", + "source_location": "L27", + "weight": 1.0, + "source": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_viewmodel_mmliveviewmodel_mmliveviewmodel_islive", + "target": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_viewmodel_mmliveviewmodel_mmliveviewmodel_fetch", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MMLiveLibrary/Sources/MMLiveLibrary/ViewModel/MMLiveViewModel.swift", + "source_location": "L40", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_viewmodel_mmliveviewmodel_mmliveviewmodel_islive", + "target": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_viewmodel_mmliveviewmodel_swift_bool", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/MMLiveLibrary/Tests/MMLiveLibraryTests/MMLiveViewModelTests.swift", + "source_location": "L28", + "weight": 1.0, + "source": "macmagazine_features_mmlivelibrary_tests_mmlivelibrarytests_mmliveviewmodeltests_mmliveviewmodeltests_fetcheventonfirstcheck", + "target": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_viewmodel_mmliveviewmodel_mmliveviewmodel_islive" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/MMLiveLibrary/Tests/MMLiveLibraryTests/MMLiveViewModelTests.swift", + "source_location": "L61", + "weight": 1.0, + "source": "macmagazine_features_mmlivelibrary_tests_mmlivelibrarytests_mmliveviewmodeltests_mmliveviewmodeltests_islivewhenbetweenstartandend", + "target": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_viewmodel_mmliveviewmodel_mmliveviewmodel_islive" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/MMLiveLibrary/Tests/MMLiveLibraryTests/MMLiveViewModelTests.swift", + "source_location": "L274", + "weight": 1.0, + "source": "macmagazine_features_mmlivelibrary_tests_mmlivelibrarytests_mmliveviewmodeltests_mmliveviewmodeltests_liveatexactstarttime", + "target": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_viewmodel_mmliveviewmodel_mmliveviewmodel_islive" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/MMLiveLibrary/Tests/MMLiveLibraryTests/MMLiveViewModelTests.swift", + "source_location": "L296", + "weight": 1.0, + "source": "macmagazine_features_mmlivelibrary_tests_mmlivelibrarytests_mmliveviewmodeltests_mmliveviewmodeltests_notliveatexactendtime", + "target": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_viewmodel_mmliveviewmodel_mmliveviewmodel_islive" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/MMLiveLibrary/Tests/MMLiveLibraryTests/MMLiveViewModelTests.swift", + "source_location": "L107", + "weight": 1.0, + "source": "macmagazine_features_mmlivelibrary_tests_mmlivelibrarytests_mmliveviewmodeltests_mmliveviewmodeltests_notlivewhenafterend", + "target": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_viewmodel_mmliveviewmodel_mmliveviewmodel_islive" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/MMLiveLibrary/Tests/MMLiveLibraryTests/MMLiveViewModelTests.swift", + "source_location": "L84", + "weight": 1.0, + "source": "macmagazine_features_mmlivelibrary_tests_mmlivelibrarytests_mmliveviewmodeltests_mmliveviewmodeltests_notlivewhenbeforestart", + "target": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_viewmodel_mmliveviewmodel_mmliveviewmodel_islive" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/MMLiveLibrary/Tests/MMLiveLibraryTests/MMLiveViewModelTests.swift", + "source_location": "L166", + "weight": 1.0, + "source": "macmagazine_features_mmlivelibrary_tests_mmlivelibrarytests_mmliveviewmodeltests_mmliveviewmodeltests_refetchafter24hours", + "target": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_viewmodel_mmliveviewmodel_mmliveviewmodel_islive" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/MMLiveLibrary/Tests/MMLiveLibraryTests/MMLiveViewModelTests.swift", + "source_location": "L197", + "weight": 1.0, + "source": "macmagazine_features_mmlivelibrary_tests_mmlivelibrarytests_mmliveviewmodeltests_mmliveviewmodeltests_refetchwhennocache", + "target": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_viewmodel_mmliveviewmodel_mmliveviewmodel_islive" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/MMLiveLibrary/Tests/MMLiveLibraryTests/MMLiveViewModelTests.swift", + "source_location": "L230", + "weight": 1.0, + "source": "macmagazine_features_mmlivelibrary_tests_mmlivelibrarytests_mmliveviewmodeltests_mmliveviewmodeltests_refetchwhennolastchecked", + "target": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_viewmodel_mmliveviewmodel_mmliveviewmodel_islive" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/MMLiveLibrary/Tests/MMLiveLibraryTests/MMLiveViewModelTests.swift", + "source_location": "L249", + "weight": 1.0, + "source": "macmagazine_features_mmlivelibrary_tests_mmlivelibrarytests_mmliveviewmodeltests_mmliveviewmodeltests_returnfalseonnetworkerror", + "target": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_viewmodel_mmliveviewmodel_mmliveviewmodel_islive" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/MMLiveLibrary/Tests/MMLiveLibraryTests/MMLiveViewModelTests.swift", + "source_location": "L135", + "weight": 1.0, + "source": "macmagazine_features_mmlivelibrary_tests_mmlivelibrarytests_mmliveviewmodeltests_mmliveviewmodeltests_usecachewithin24hours", + "target": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_viewmodel_mmliveviewmodel_mmliveviewmodel_islive" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/SettingsViewModel.swift", + "source_location": "L65", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_settingsviewmodel_settingsviewmodel_updatetabs", + "target": "macmagazine_features_mmlivelibrary_sources_mmlivelibrary_viewmodel_mmliveviewmodel_mmliveviewmodel_islive" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MMLiveLibrary/Tests/MMLiveLibraryTests/MMLiveViewModelTests.swift", + "source_location": "L7", + "weight": 1.0, + "source": "macmagazine_features_mmlivelibrary_tests_mmlivelibrarytests_mmliveviewmodeltests", + "target": "macmagazine_features_mmlivelibrary_tests_mmlivelibrarytests_mmliveviewmodeltests_mmliveviewmodeltests", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MMLiveLibrary/Tests/MMLiveLibraryTests/MMLiveViewModelTests.swift", + "source_location": "L305", + "weight": 1.0, + "source": "macmagazine_features_mmlivelibrary_tests_mmlivelibrarytests_mmliveviewmodeltests", + "target": "macmagazine_features_mmlivelibrary_tests_mmlivelibrarytests_mmliveviewmodeltests_mockpushnotification", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MMLiveLibrary/Tests/MMLiveLibraryTests/MMLiveViewModelTests.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_mmlivelibrary_tests_mmlivelibrarytests_mmliveviewmodeltests", + "target": "mmlivelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/SettingsViewModel.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_settingsviewmodel", + "target": "mmlivelibrary", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MMLiveLibrary/Tests/MMLiveLibraryTests/MMLiveViewModelTests.swift", + "source_location": "L13", + "weight": 1.0, + "source": "macmagazine_features_mmlivelibrary_tests_mmlivelibrarytests_mmliveviewmodeltests_mmliveviewmodeltests", + "target": "macmagazine_features_mmlivelibrary_tests_mmlivelibrarytests_mmliveviewmodeltests_mmliveviewmodeltests_fetcheventonfirstcheck", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MMLiveLibrary/Tests/MMLiveLibraryTests/MMLiveViewModelTests.swift", + "source_location": "L44", + "weight": 1.0, + "source": "macmagazine_features_mmlivelibrary_tests_mmlivelibrarytests_mmliveviewmodeltests_mmliveviewmodeltests", + "target": "macmagazine_features_mmlivelibrary_tests_mmlivelibrarytests_mmliveviewmodeltests_mmliveviewmodeltests_islivewhenbetweenstartandend", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MMLiveLibrary/Tests/MMLiveLibraryTests/MMLiveViewModelTests.swift", + "source_location": "L258", + "weight": 1.0, + "source": "macmagazine_features_mmlivelibrary_tests_mmlivelibrarytests_mmliveviewmodeltests_mmliveviewmodeltests", + "target": "macmagazine_features_mmlivelibrary_tests_mmlivelibrarytests_mmliveviewmodeltests_mmliveviewmodeltests_liveatexactstarttime", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MMLiveLibrary/Tests/MMLiveLibraryTests/MMLiveViewModelTests.swift", + "source_location": "L280", + "weight": 1.0, + "source": "macmagazine_features_mmlivelibrary_tests_mmlivelibrarytests_mmliveviewmodeltests_mmliveviewmodeltests", + "target": "macmagazine_features_mmlivelibrary_tests_mmlivelibrarytests_mmliveviewmodeltests_mmliveviewmodeltests_notliveatexactendtime", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MMLiveLibrary/Tests/MMLiveLibraryTests/MMLiveViewModelTests.swift", + "source_location": "L90", + "weight": 1.0, + "source": "macmagazine_features_mmlivelibrary_tests_mmlivelibrarytests_mmliveviewmodeltests_mmliveviewmodeltests", + "target": "macmagazine_features_mmlivelibrary_tests_mmlivelibrarytests_mmliveviewmodeltests_mmliveviewmodeltests_notlivewhenafterend", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MMLiveLibrary/Tests/MMLiveLibraryTests/MMLiveViewModelTests.swift", + "source_location": "L67", + "weight": 1.0, + "source": "macmagazine_features_mmlivelibrary_tests_mmlivelibrarytests_mmliveviewmodeltests_mmliveviewmodeltests", + "target": "macmagazine_features_mmlivelibrary_tests_mmlivelibrarytests_mmliveviewmodeltests_mmliveviewmodeltests_notlivewhenbeforestart", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MMLiveLibrary/Tests/MMLiveLibraryTests/MMLiveViewModelTests.swift", + "source_location": "L142", + "weight": 1.0, + "source": "macmagazine_features_mmlivelibrary_tests_mmlivelibrarytests_mmliveviewmodeltests_mmliveviewmodeltests", + "target": "macmagazine_features_mmlivelibrary_tests_mmlivelibrarytests_mmliveviewmodeltests_mmliveviewmodeltests_refetchafter24hours", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MMLiveLibrary/Tests/MMLiveLibraryTests/MMLiveViewModelTests.swift", + "source_location": "L180", + "weight": 1.0, + "source": "macmagazine_features_mmlivelibrary_tests_mmlivelibrarytests_mmliveviewmodeltests_mmliveviewmodeltests", + "target": "macmagazine_features_mmlivelibrary_tests_mmlivelibrarytests_mmliveviewmodeltests_mmliveviewmodeltests_refetchwhennocache", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MMLiveLibrary/Tests/MMLiveLibraryTests/MMLiveViewModelTests.swift", + "source_location": "L207", + "weight": 1.0, + "source": "macmagazine_features_mmlivelibrary_tests_mmlivelibrarytests_mmliveviewmodeltests_mmliveviewmodeltests", + "target": "macmagazine_features_mmlivelibrary_tests_mmlivelibrarytests_mmliveviewmodeltests_mmliveviewmodeltests_refetchwhennolastchecked", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MMLiveLibrary/Tests/MMLiveLibraryTests/MMLiveViewModelTests.swift", + "source_location": "L239", + "weight": 1.0, + "source": "macmagazine_features_mmlivelibrary_tests_mmlivelibrarytests_mmliveviewmodeltests_mmliveviewmodeltests", + "target": "macmagazine_features_mmlivelibrary_tests_mmlivelibrarytests_mmliveviewmodeltests_mmliveviewmodeltests_returnfalseonnetworkerror", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MMLiveLibrary/Tests/MMLiveLibraryTests/MMLiveViewModelTests.swift", + "source_location": "L115", + "weight": 1.0, + "source": "macmagazine_features_mmlivelibrary_tests_mmlivelibrarytests_mmliveviewmodeltests_mmliveviewmodeltests", + "target": "macmagazine_features_mmlivelibrary_tests_mmlivelibrarytests_mmliveviewmodeltests_mmliveviewmodeltests_usecachewithin24hours", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MMLiveLibrary/Tests/MMLiveLibraryTests/MMLiveViewModelTests.swift", + "source_location": "L23", + "weight": 1.0, + "source": "macmagazine_features_mmlivelibrary_tests_mmlivelibrarytests_mmliveviewmodeltests_mmliveviewmodeltests_fetcheventonfirstcheck", + "target": "macmagazine_features_mmlivelibrary_tests_mmlivelibrarytests_mmliveviewmodeltests_mockpushnotification", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/MMLiveLibrary/Tests/MMLiveLibraryTests/MMLiveViewModelTests.swift", + "source_location": "L48", + "weight": 1.0, + "source": "macmagazine_features_mmlivelibrary_tests_mmlivelibrarytests_mmliveviewmodeltests_mmliveviewmodeltests_islivewhenbetweenstartandend", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_dateextensions_date" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MMLiveLibrary/Tests/MMLiveLibraryTests/MMLiveViewModelTests.swift", + "source_location": "L58", + "weight": 1.0, + "source": "macmagazine_features_mmlivelibrary_tests_mmlivelibrarytests_mmliveviewmodeltests_mmliveviewmodeltests_islivewhenbetweenstartandend", + "target": "macmagazine_features_mmlivelibrary_tests_mmlivelibrarytests_mmliveviewmodeltests_mockpushnotification", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/MMLiveLibrary/Tests/MMLiveLibraryTests/MMLiveViewModelTests.swift", + "source_location": "L71", + "weight": 1.0, + "source": "macmagazine_features_mmlivelibrary_tests_mmlivelibrarytests_mmliveviewmodeltests_mmliveviewmodeltests_notlivewhenbeforestart", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_dateextensions_date" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MMLiveLibrary/Tests/MMLiveLibraryTests/MMLiveViewModelTests.swift", + "source_location": "L81", + "weight": 1.0, + "source": "macmagazine_features_mmlivelibrary_tests_mmlivelibrarytests_mmliveviewmodeltests_mmliveviewmodeltests_notlivewhenbeforestart", + "target": "macmagazine_features_mmlivelibrary_tests_mmlivelibrarytests_mmliveviewmodeltests_mockpushnotification", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/MMLiveLibrary/Tests/MMLiveLibraryTests/MMLiveViewModelTests.swift", + "source_location": "L94", + "weight": 1.0, + "source": "macmagazine_features_mmlivelibrary_tests_mmlivelibrarytests_mmliveviewmodeltests_mmliveviewmodeltests_notlivewhenafterend", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_dateextensions_date" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MMLiveLibrary/Tests/MMLiveLibraryTests/MMLiveViewModelTests.swift", + "source_location": "L104", + "weight": 1.0, + "source": "macmagazine_features_mmlivelibrary_tests_mmlivelibrarytests_mmliveviewmodeltests_mmliveviewmodeltests_notlivewhenafterend", + "target": "macmagazine_features_mmlivelibrary_tests_mmlivelibrarytests_mmliveviewmodeltests_mockpushnotification", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/MMLiveLibrary/Tests/MMLiveLibraryTests/MMLiveViewModelTests.swift", + "source_location": "L119", + "weight": 1.0, + "source": "macmagazine_features_mmlivelibrary_tests_mmlivelibrarytests_mmliveviewmodeltests_mmliveviewmodeltests_usecachewithin24hours", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_dateextensions_date" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MMLiveLibrary/Tests/MMLiveLibraryTests/MMLiveViewModelTests.swift", + "source_location": "L130", + "weight": 1.0, + "source": "macmagazine_features_mmlivelibrary_tests_mmlivelibrarytests_mmliveviewmodeltests_mmliveviewmodeltests_usecachewithin24hours", + "target": "macmagazine_features_mmlivelibrary_tests_mmlivelibrarytests_mmliveviewmodeltests_mockpushnotification", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/MMLiveLibrary/Tests/MMLiveLibraryTests/MMLiveViewModelTests.swift", + "source_location": "L146", + "weight": 1.0, + "source": "macmagazine_features_mmlivelibrary_tests_mmlivelibrarytests_mmliveviewmodeltests_mmliveviewmodeltests_refetchafter24hours", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_dateextensions_date" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MMLiveLibrary/Tests/MMLiveLibraryTests/MMLiveViewModelTests.swift", + "source_location": "L161", + "weight": 1.0, + "source": "macmagazine_features_mmlivelibrary_tests_mmlivelibrarytests_mmliveviewmodeltests_mmliveviewmodeltests_refetchafter24hours", + "target": "macmagazine_features_mmlivelibrary_tests_mmlivelibrarytests_mmliveviewmodeltests_mockpushnotification", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MMLiveLibrary/Tests/MMLiveLibraryTests/MMLiveViewModelTests.swift", + "source_location": "L192", + "weight": 1.0, + "source": "macmagazine_features_mmlivelibrary_tests_mmlivelibrarytests_mmliveviewmodeltests_mmliveviewmodeltests_refetchwhennocache", + "target": "macmagazine_features_mmlivelibrary_tests_mmlivelibrarytests_mmliveviewmodeltests_mockpushnotification", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/MMLiveLibrary/Tests/MMLiveLibraryTests/MMLiveViewModelTests.swift", + "source_location": "L211", + "weight": 1.0, + "source": "macmagazine_features_mmlivelibrary_tests_mmlivelibrarytests_mmliveviewmodeltests_mmliveviewmodeltests_refetchwhennolastchecked", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_dateextensions_date" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MMLiveLibrary/Tests/MMLiveLibraryTests/MMLiveViewModelTests.swift", + "source_location": "L225", + "weight": 1.0, + "source": "macmagazine_features_mmlivelibrary_tests_mmlivelibrarytests_mmliveviewmodeltests_mmliveviewmodeltests_refetchwhennolastchecked", + "target": "macmagazine_features_mmlivelibrary_tests_mmlivelibrarytests_mmliveviewmodeltests_mockpushnotification", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MMLiveLibrary/Tests/MMLiveLibraryTests/MMLiveViewModelTests.swift", + "source_location": "L244", + "weight": 1.0, + "source": "macmagazine_features_mmlivelibrary_tests_mmlivelibrarytests_mmliveviewmodeltests_mmliveviewmodeltests_returnfalseonnetworkerror", + "target": "macmagazine_features_mmlivelibrary_tests_mmlivelibrarytests_mmliveviewmodeltests_mockpushnotification", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/MMLiveLibrary/Tests/MMLiveLibraryTests/MMLiveViewModelTests.swift", + "source_location": "L262", + "weight": 1.0, + "source": "macmagazine_features_mmlivelibrary_tests_mmlivelibrarytests_mmliveviewmodeltests_mmliveviewmodeltests_liveatexactstarttime", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_dateextensions_date" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MMLiveLibrary/Tests/MMLiveLibraryTests/MMLiveViewModelTests.swift", + "source_location": "L271", + "weight": 1.0, + "source": "macmagazine_features_mmlivelibrary_tests_mmlivelibrarytests_mmliveviewmodeltests_mmliveviewmodeltests_liveatexactstarttime", + "target": "macmagazine_features_mmlivelibrary_tests_mmlivelibrarytests_mmliveviewmodeltests_mockpushnotification", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/MMLiveLibrary/Tests/MMLiveLibraryTests/MMLiveViewModelTests.swift", + "source_location": "L284", + "weight": 1.0, + "source": "macmagazine_features_mmlivelibrary_tests_mmlivelibrarytests_mmliveviewmodeltests_mmliveviewmodeltests_notliveatexactendtime", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_dateextensions_date" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MMLiveLibrary/Tests/MMLiveLibraryTests/MMLiveViewModelTests.swift", + "source_location": "L293", + "weight": 1.0, + "source": "macmagazine_features_mmlivelibrary_tests_mmlivelibrarytests_mmliveviewmodeltests_mmliveviewmodeltests_notliveatexactendtime", + "target": "macmagazine_features_mmlivelibrary_tests_mmlivelibrarytests_mmliveviewmodeltests_mockpushnotification", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MMLiveLibrary/Tests/MMLiveLibraryTests/MMLiveViewModelTests.swift", + "source_location": "L309", + "weight": 1.0, + "source": "macmagazine_features_mmlivelibrary_tests_mmlivelibrarytests_mmliveviewmodeltests_mockpushnotification", + "target": "macmagazine_features_mmlivelibrary_tests_mmlivelibrarytests_mmliveviewmodeltests_mockpushnotification_setlocalnotification", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L25", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_analyticsconstants", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L124", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L326", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_genericevent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L30", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_screen", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AppDefinitions.swift", + "source_location": "L22", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_apptabs", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_analyticsconstants", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AppDefinitions.swift", + "source_location": "L67", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_social", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_analyticsconstants", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/NewsView.swift", + "source_location": "L199", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_sources_newslibrary_views_newsview_newsview_handletap", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_analyticsconstants" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchView.swift", + "source_location": "L232", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchview_searchview_handlelinkselection", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_analyticsconstants" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "MacMagazine/MacMagazine/MainApp/Sizecalss/MainView+sidebar.swift", + "source_location": "L187", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_sizecalss_mainview_sidebar_mainview_process", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_analyticsconstants" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "MacMagazine/Widget/Views/WidgetView.swift", + "source_location": "L47", + "weight": 1.0, + "source": "macmagazine_widget_views_widgetview_widgetview_content", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_analyticsconstants" + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L60", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_screen", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_screen_deeplinkdetail", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L54", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_screen", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_screen_live", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L63", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_screen", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_screen_loginpatroes", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L32", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_screen", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_screen_news", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L67", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_screen", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_screen_onboardingfeatures", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L68", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_screen", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_screen_onboardingpermissions", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L66", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_screen", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_screen_onboardingwelcome", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L37", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_screen", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_screen_podcast", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L38", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_screen", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_screen_podcastchapters", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L35", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_screen", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_screen_podcastfullplayer", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L36", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_screen", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_screen_podcastminiplayer", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L57", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_screen", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_screen_search", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L44", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_screen", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_screen_settings", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L45", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_screen", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_screen_settingsappearance", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L46", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_screen", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_screen_settingsposts", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L51", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_screen", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_screen_socialinstagram", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L50", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_screen", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_screen_socialpodcast", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L49", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_screen", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_screen_socialvideos", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L41", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_screen", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_screen_videos", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L71", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_screen", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_screen_widget", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L73", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_screen", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L222", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L331", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_genericevent", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L205", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid_applaunched", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L191", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid_categoryfilterchanged", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L171", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid_cleanallposts", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L172", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid_cleanonboarding", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L170", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid_cleanposts", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L169", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid_cleanpostsoptions", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L192", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid_deeplinkopened", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L162", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid_favoritebutton", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L201", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid_highlightcardtapped", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L166", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid_icon", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L180", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid_loginpatrao", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L181", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid_logoffpatrao", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L179", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid_managesubscription", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L129", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid_news", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L128", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid_newsfavorite", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L127", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid_newsstarted", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L218", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid_onboardingattaccepted", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L217", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid_onboardingattcontinue", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L219", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid_onboardingattdenied", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L220", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid_onboardingcomplete", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L212", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid_onboardingfeaturepage", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L211", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid_onboardingfeaturescontinue", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L210", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid_onboardingfeaturesskip", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L215", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid_onboardingpushaccepted", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L214", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid_onboardingpushcontinue", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L216", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid_onboardingpushdenied", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L213", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid_onboardingpushskip", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L209", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid_onboardingwelcomecontinue", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L208", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid_onboardingwelcomeskip", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L132", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid_podcastclosefullplayer", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L138", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid_podcastcloseminiplayer", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L153", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid_podcastfavorite", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L135", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid_podcastnextchapter", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L139", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid_podcastopenfullplayer", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L134", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid_podcastpreviouschapter", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L133", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid_podcastshowchapters", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L143", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid_podcastskipminus15", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L144", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid_podcastskipplus15", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L148", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid_podcastspeed", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L149", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid_podcastspeedadvanced", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L147", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid_podcastspeedbutton", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L152", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid_podcaststarted", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L142", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid_podcasttoggleplaypause", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L186", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid_privacypolicy", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L202", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid_pulltorefresh", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L175", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid_pushnotifications", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L197", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid_recentsearchcleared", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L198", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid_recentsearchremoved", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L196", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid_recentsearchtapped", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L184", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid_reportproblem", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L178", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid_restorepurchase", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L195", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid_searchresultselected", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L161", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid_share", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L190", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid_sidebaritemselected", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L189", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid_tabselected", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L185", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid_termsconditions", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L165", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid_theme", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L158", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid_videofavorite", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L156", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid_videostarted", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L157", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid_videostopped", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L149", + "weight": 1.0, + "context": "type", + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_swift_double", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L212", + "weight": 1.0, + "context": "type", + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_swift_int", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L129", + "weight": 1.0, + "context": "type", + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_buttonid", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_swift_newscategory", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L327", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_genericevent", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_genericevent_newsorder", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L329", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_genericevent", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_genericevent_socialorder", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift", + "source_location": "L328", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_genericevent", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_analyticsconstants_genericevent_taborder", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AppDefinitions.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions", + "target": "analyticslibrary", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AppDefinitions.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_apptabs", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AppDefinitions.swift", + "source_location": "L76", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_areequal", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AppDefinitions.swift", + "source_location": "L84", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_equatable", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AppDefinitions.swift", + "source_location": "L32", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_news", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AppDefinitions.swift", + "source_location": "L54", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_social", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Model/CardContent.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardcontent", + "target": "analyticslibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/GlassCardView.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_glasscardview", + "target": "analyticslibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/LeadingImageCard.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_leadingimagecard", + "target": "analyticslibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Extensions/FeedDBExtensions.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_sources_newslibrary_extensions_feeddbextensions", + "target": "analyticslibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/FeedHighlightCardView.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_sources_newslibrary_views_components_feedhighlightcardview", + "target": "analyticslibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/NewsView.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_sources_newslibrary_views_newsview", + "target": "analyticslibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/ViewModels/OnboardingCoordinator.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_onboardingcoordinator", + "target": "analyticslibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/ViewModels/PermissionManager.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_permissionmanager", + "target": "analyticslibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/OnboardingContainerView.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_onboardingcontainerview", + "target": "analyticslibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Screen1_WelcomeView.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_screen1_welcomeview", + "target": "analyticslibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Screen2_FeaturesView.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_screen2_featuresview", + "target": "analyticslibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Screen3_PermissionsView.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_screen3_permissionsview", + "target": "analyticslibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Tests/OnboardingLibraryTests/OnboardingCoordinatorTests.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_tests_onboardinglibrarytests_onboardingcoordinatortests", + "target": "analyticslibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Extensions/PodcastDBExtensions.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_extensions_podcastdbextensions", + "target": "analyticslibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Card/GlassPodcastCardView.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_card_glasspodcastcardview", + "target": "analyticslibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/ChaptersView.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_chaptersview", + "target": "analyticslibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/FullPlayerView.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_fullplayerview", + "target": "analyticslibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/MiniPlayerView.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_miniplayerview", + "target": "analyticslibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/PodcastView.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_podcastview", + "target": "analyticslibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchResultsList.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist", + "target": "analyticslibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchView.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchview", + "target": "analyticslibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/SubscriptionViewModel.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_subscriptionviewmodel", + "target": "analyticslibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/SettingsView.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_settingsview", + "target": "analyticslibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/AboutView.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_aboutview", + "target": "analyticslibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/AppearanceView.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_appearanceview", + "target": "analyticslibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/CustomSocialView.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_customsocialview", + "target": "analyticslibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/CustomTabView.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_customtabview", + "target": "analyticslibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/IconsView.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_iconsview", + "target": "analyticslibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/PostsVisibilityView.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_postsvisibilityview", + "target": "analyticslibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/PushOptionsView.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_pushoptionsview", + "target": "analyticslibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/ReadingPreferencesView.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_readingpreferencesview", + "target": "analyticslibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/SubscriptionView.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_subscriptionview", + "target": "analyticslibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/Card/AdaptiveVideoCard.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_videoslibrary_sources_videos_card_adaptivevideocard", + "target": "analyticslibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/Model/VideoDBExtensions.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_videoslibrary_sources_videos_model_videodbextensions", + "target": "analyticslibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/VideosView.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_videoslibrary_sources_videos_videosview", + "target": "analyticslibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/Features/News/DeepLinkNewsDetailView.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_macmagazine_features_news_deeplinknewsdetailview", + "target": "analyticslibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/Features/News/NewsView.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_macmagazine_features_news_newsview", + "target": "analyticslibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/Features/Social/SocialView.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_macmagazine_features_social_socialview", + "target": "analyticslibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/MacMagazineApp.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_macmagazineapp", + "target": "analyticslibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/MainViewModel.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_mainviewmodel", + "target": "analyticslibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/Sizecalss/MainView+sidebar.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_sizecalss_mainview_sidebar", + "target": "analyticslibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/Sizecalss/MainView+tabbar.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_sizecalss_mainview_tabbar", + "target": "analyticslibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/MacMagazineWidget.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_widget_macmagazinewidget", + "target": "analyticslibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/Views/WidgetView.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_widget_views_widgetview", + "target": "analyticslibrary", + "confidence_score": 1.0 + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AppDefinitions.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_apptabs", + "target": "caseiterable", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AppDefinitions.swift", + "source_location": "L6", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_apptabs", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_apptabs_live", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AppDefinitions.swift", + "source_location": "L7", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_apptabs", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_apptabs_news", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AppDefinitions.swift", + "source_location": "L10", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_apptabs", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_apptabs_search", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AppDefinitions.swift", + "source_location": "L9", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_apptabs", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_apptabs_settings", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AppDefinitions.swift", + "source_location": "L8", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_apptabs", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_apptabs_social", + "confidence_score": 1.0 + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AppDefinitions.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_apptabs", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_equatable", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AppDefinitions.swift", + "source_location": "L12", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_apptabs", + "target": "string", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "MacMagazine/Features/MacMagazineLibrary/Tests/MacMagazineLibraryTests/AppDefinitionsTests.swift", + "source_location": "L20", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_appdefinitionstests_apptabstests_usableasdictionarykeys", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_apptabs" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/Databases/CustomizationDB.swift", + "source_location": "L8", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_databases_customizationdb_customizationdb", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_apptabs", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/Databases/CustomizationDB.swift", + "source_location": "L13", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_databases_customizationdb_customizationdb_init", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_apptabs", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/CustomizationViewModel.swift", + "source_location": "L22", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_customizationviewmodel_customizationviewmodel_change", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_apptabs", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/Extensions/Database.swift", + "source_location": "L104", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_extensions_database_database_update", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_apptabs", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/SettingsViewModel.swift", + "source_location": "L19", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_settingsviewmodel_settingsviewmodel", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_apptabs", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/SettingsViewModel.swift", + "source_location": "L63", + "weight": 1.0, + "context": "generic_arg", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_settingsviewmodel_settingsviewmodel_updatetabs", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_apptabs", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/CustomTabView.swift", + "source_location": "L57", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_customtabview_customtabview_shoulddisablemove", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_apptabs", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/Features/Shortcuts/ShortcutManager.swift", + "source_location": "L14", + "weight": 1.0, + "context": "field", + "source": "macmagazine_macmagazine_features_shortcuts_shortcutmanager_shortcutmanager", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_apptabs", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/MainViewModel.swift", + "source_location": "L31", + "weight": 1.0, + "context": "field", + "source": "macmagazine_macmagazine_mainapp_mainviewmodel_mainviewmodel", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_apptabs", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/Sizecalss/MainView+sidebar.swift", + "source_location": "L98", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_macmagazine_mainapp_sizecalss_mainview_sidebar_mainview_news", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_apptabs", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/Sizecalss/MainView+sidebar.swift", + "source_location": "L85", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_macmagazine_mainapp_sizecalss_mainview_sidebar_mainview_social", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_apptabs", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/Sizecalss/MainView+tabbar.swift", + "source_location": "L43", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_macmagazine_mainapp_sizecalss_mainview_tabbar_mainview_contentview", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_apptabs", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AppDefinitions.swift", + "source_location": "L41", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_news", + "target": "string", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AppDefinitions.swift", + "source_location": "L59", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_social", + "target": "string", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/NewsCategory.swift", + "source_location": "L14", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_newscategory_newscategory", + "target": "string", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/IconType.swift", + "source_location": "L8", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_icontype_icontype", + "target": "string", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/IconType.swift", + "source_location": "L15", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_icontype_icontype_accessibilitytext", + "target": "string", + "confidence_score": 1.0 + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/PushPreferences.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_pushpreferences_pushpreferences", + "target": "string", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/PushPreferences.swift", + "source_location": "L7", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_pushpreferences_pushpreferences_accessibilitytext", + "target": "string", + "confidence_score": 1.0 + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/Features/Shortcuts/ShortcutActions.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_macmagazine_features_shortcuts_shortcutactions_shortcutactions", + "target": "string", + "confidence_score": 1.0 + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/MainView.swift", + "source_location": "L7", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_mainview_layouttype", + "target": "string", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AppDefinitions.swift", + "source_location": "L76", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_areequal", + "target": "caseiterable", + "confidence_score": 1.0 + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AppDefinitions.swift", + "source_location": "L32", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_news", + "target": "caseiterable", + "confidence_score": 1.0 + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AppDefinitions.swift", + "source_location": "L54", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_social", + "target": "caseiterable", + "confidence_score": 1.0 + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/NewsCategory.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_newscategory_newscategory", + "target": "caseiterable", + "confidence_score": 1.0 + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/IconType.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_icontype_icontype", + "target": "caseiterable", + "confidence_score": 1.0 + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AppDefinitions.swift", + "source_location": "L32", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_news", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_equatable", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AppDefinitions.swift", + "source_location": "L33", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_news", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_news_all", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AppDefinitions.swift", + "source_location": "L36", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_news", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_news_appletv", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AppDefinitions.swift", + "source_location": "L35", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_news", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_news_highlights", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AppDefinitions.swift", + "source_location": "L34", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_news", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_news_news", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AppDefinitions.swift", + "source_location": "L37", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_news", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_news_reviews", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AppDefinitions.swift", + "source_location": "L38", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_news", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_news_rumors", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AppDefinitions.swift", + "source_location": "L39", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_news", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_news_tutoriais", + "confidence_score": 1.0 + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AppDefinitions.swift", + "source_location": "L54", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_social", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_equatable", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AppDefinitions.swift", + "source_location": "L57", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_social", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_social_instagram", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AppDefinitions.swift", + "source_location": "L56", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_social", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_social_podcast", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AppDefinitions.swift", + "source_location": "L55", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_social", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_social_videos", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "MacMagazine/Features/MacMagazineLibrary/Tests/MacMagazineLibraryTests/AppDefinitionsTests.swift", + "source_location": "L64", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_appdefinitionstests_socialtests_usableasdictionarykeys", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_social" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/Databases/CustomizationDB.swift", + "source_location": "L10", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_databases_customizationdb_customizationdb", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_social", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/Databases/CustomizationDB.swift", + "source_location": "L13", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_databases_customizationdb_customizationdb_init", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_social", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/CustomizationViewModel.swift", + "source_location": "L27", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_customizationviewmodel_customizationviewmodel_change", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_social", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/Extensions/Database.swift", + "source_location": "L115", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_extensions_database_database_update", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_social", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/SettingsViewModel.swift", + "source_location": "L11", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_settingsviewmodel_settingsviewmodel", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_social", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/MainViewModel.swift", + "source_location": "L29", + "weight": 1.0, + "context": "field", + "source": "macmagazine_macmagazine_mainapp_mainviewmodel_mainviewmodel", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_social", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AppDefinitions.swift", + "source_location": "L76", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_areequal", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_equatable", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AppDefinitions.swift", + "source_location": "L81", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_areequal", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_equatable_isequal", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AppDefinitions.swift", + "source_location": "L76", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_areequal", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_swift_bool", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/MacMagazineLibrary/Tests/MacMagazineLibraryTests/AppDefinitionsTests.swift", + "source_location": "L76", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_appdefinitionstests_areequaltests_samevalues", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_areequal" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/MacMagazine/MainApp/Sizecalss/MainView+sidebar.swift", + "source_location": "L131", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_sizecalss_mainview_sidebar_mainview_animatecontentstackview", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_areequal" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/MacMagazine/MainApp/Sizecalss/MainView+sidebar.swift", + "source_location": "L179", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_sizecalss_mainview_sidebar_mainview_navigatebackfromsearch", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_areequal" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/MacMagazine/MainApp/Sizecalss/MainView+sidebar.swift", + "source_location": "L122", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_sizecalss_mainview_sidebar_mainview_show", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_areequal" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AppDefinitions.swift", + "source_location": "L85", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_equatable_isequal", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_swift_bool", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AppDefinitions.swift", + "source_location": "L85", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_equatable_isequal", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_equatable", + "confidence_score": 1.0 + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/PushNotification/PushNotification.swift", + "source_location": "L7", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_pushnotification_pushpermissionstatus", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_equatable", + "confidence_score": 1.0 + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/URLClassifier.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_urlclassifier_urlclassification", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_equatable", + "confidence_score": 1.0 + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WebViewStatus.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_webviewstatus_webviewstatus", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_equatable", + "confidence_score": 1.0 + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/ViewModel/NewsViewModel.swift", + "source_location": "L14", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_sources_newslibrary_viewmodel_newsviewmodel_options", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_equatable", + "confidence_score": 1.0 + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/ViewModels/PermissionManager.swift", + "source_location": "L190", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_permissionmanager_attpermissionstatus", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_equatable", + "confidence_score": 1.0 + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/ViewModel/PodcastViewModel.swift", + "source_location": "L13", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_viewmodel_podcastviewmodel_options", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_equatable", + "confidence_score": 1.0 + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/ViewModel/SearchViewModel.swift", + "source_location": "L5", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_viewmodel_searchviewmodel_searchstatus", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_equatable", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/Databases/CustomizationDB.swift", + "source_location": "L5", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_databases_customizationdb_customizationdb", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_equatable", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/Databases/SettingsDB.swift", + "source_location": "L5", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_databases_settingsdb_settingsdb", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_equatable", + "confidence_score": 1.0 + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/AboutViewModel.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_aboutviewmodel_buttonaction", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_equatable", + "confidence_score": 1.0 + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/VideosViewModel.swift", + "source_location": "L13", + "weight": 1.0, + "source": "macmagazine_features_videoslibrary_sources_videos_videosviewmodel_options", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_equatable", + "confidence_score": 1.0 + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/Features/News/ToolbarModifier.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_macmagazine_features_news_toolbarmodifier_toolbartype", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_equatable", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/NavigationState.swift", + "source_location": "L9", + "weight": 1.0, + "context": "field", + "source": "macmagazine_macmagazine_mainapp_navigationstate_navigationstate", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_equatable", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/NavigationState.swift", + "source_location": "L11", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_macmagazine_mainapp_navigationstate_navigationstate_navigate", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_equatable", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/Sizecalss/MainView+sidebar.swift", + "source_location": "L129", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_macmagazine_mainapp_sizecalss_mainview_sidebar_mainview_animatecontentstackview", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_equatable", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/Sizecalss/MainView+sidebar.swift", + "source_location": "L143", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_macmagazine_mainapp_sizecalss_mainview_sidebar_mainview_contentview", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_equatable", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/Sizecalss/MainView+sidebar.swift", + "source_location": "L206", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_macmagazine_mainapp_sizecalss_mainview_sidebar_mainview_id", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_equatable", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/Sizecalss/MainView+sidebar.swift", + "source_location": "L185", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_macmagazine_mainapp_sizecalss_mainview_sidebar_mainview_process", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_equatable", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/Sizecalss/MainView+sidebar.swift", + "source_location": "L111", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_macmagazine_mainapp_sizecalss_mainview_sidebar_mainview_show", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_appdefinitions_equatable", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/DateExtensions.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_dateextensions", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_dateextensions_date", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/DateExtensions.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_dateextensions_date", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_dateextensions_date_totimeagodisplay", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Model/CardContent.swift", + "source_location": "L69", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardcontent_cardcontent", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_dateextensions_date", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Model/CardContent.swift", + "source_location": "L82", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardcontent_cardcontent_init", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_dateextensions_date", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/Ticker.swift", + "source_location": "L8", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_ticker_ticker", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_dateextensions_date", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/Ticker.swift", + "source_location": "L45", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_ticker_ticker_calculateoffset", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_dateextensions_date", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Models/RecentSearchDB.swift", + "source_location": "L7", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_models_recentsearchdb_recentsearchdb", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_dateextensions_date", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Models/RecentSearchDB.swift", + "source_location": "L9", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_models_recentsearchdb_recentsearchdb_init", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_dateextensions_date", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Models/SearchResult.swift", + "source_location": "L14", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_models_searchresult_searchresult", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_dateextensions_date", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Models/SearchResult.swift", + "source_location": "L20", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_models_searchresult_searchresult_init", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_dateextensions_date", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Models/SearchResult.swift", + "source_location": "L68", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_models_searchresult_videodb_tosearchresult", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_dateextensions_date" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/RelevanceScorerTests.swift", + "source_location": "L13", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_relevancescorertests_relevancescorertests_makeresult", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_dateextensions_date", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchResultMergerTests.swift", + "source_location": "L10", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchresultmergertests_searchresultmergertests_makeresult", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_dateextensions_date", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchViewModelTests.swift", + "source_location": "L33", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_makeresult", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_dateextensions_date", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/Databases/CustomizationDB.swift", + "source_location": "L11", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_databases_customizationdb_customizationdb", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_dateextensions_date", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/Databases/CustomizationDB.swift", + "source_location": "L13", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_databases_customizationdb_customizationdb_init", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_dateextensions_date", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/Databases/SettingsDB.swift", + "source_location": "L13", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_databases_settingsdb_settingsdb", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_dateextensions_date", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/Databases/SettingsDB.swift", + "source_location": "L15", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_databases_settingsdb_settingsdb_init", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_dateextensions_date", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/Subscription.swift", + "source_location": "L5", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_subscription_subscription", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_dateextensions_date", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/Extensions/Database.swift", + "source_location": "L77", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_extensions_database_database_update", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_dateextensions_date", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/SubscriptionViewModel.swift", + "source_location": "L75", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_subscriptionviewmodel_subscriptionviewmodel_change", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_dateextensions_date", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchWidget/Model/WidgetEntry.swift", + "source_location": "L11", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_watchwidget_model_widgetentry_widgetdata_init", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_dateextensions_date", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchWidget/Model/WidgetEntry.swift", + "source_location": "L6", + "weight": 1.0, + "context": "field", + "source": "macmagazine_watchwidget_model_widgetentry_widgetentry", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_dateextensions_date", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchWidget/Widget/WatchWidgetProvider.swift", + "source_location": "L38", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_watchwidget_widget_watchwidgetprovider_watchwidgetprovider_getwidgetcontent", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_dateextensions_date", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/Timeline/WidgetEntry.swift", + "source_location": "L6", + "weight": 1.0, + "context": "field", + "source": "macmagazine_widget_timeline_widgetentry_widgetentry", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_dateextensions_date", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/DateExtensions.swift", + "source_location": "L4", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_dateextensions_date_totimeagodisplay", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_dateextensions_swift_bool", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/DateExtensions.swift", + "source_location": "L4", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_dateextensions_date_totimeagodisplay", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_dateextensions_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/EnvironmentValuesExtensions.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_environmentvaluesextensions", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_environmentvaluesextensions_environmentvalues", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/EnvironmentValuesExtensions.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_environmentvaluesextensions", + "target": "swiftui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/ThemeColor.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_themecolor", + "target": "swiftui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/Utils.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_utils", + "target": "swiftui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/ButtonWithGlassEffect.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_buttonwithglasseffect", + "target": "swiftui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardDensity.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_carddensity", + "target": "swiftui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/DynamicTypeSize.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_dynamictypesize", + "target": "swiftui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/FavoriteAndShare/FavoriteButton.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_favoriteandshare_favoritebutton", + "target": "swiftui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/FavoriteAndShare/FavoriteShareGlassContainer.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_favoriteandshare_favoriteshareglasscontainer", + "target": "swiftui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/FavoriteAndShare/ShareButton.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_favoriteandshare_sharebutton", + "target": "swiftui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/Menu/MenuButton.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_menu_menubutton", + "target": "swiftui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/Metadata/MetadataContent.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_metadata_metadatacontent", + "target": "swiftui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/Metadata/MetadataDuration.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_metadata_metadataduration", + "target": "swiftui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/GlassCardView.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_glasscardview", + "target": "swiftui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/LeadingImageCard.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_leadingimagecard", + "target": "swiftui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/NewsCard.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_newscard", + "target": "swiftui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/MenuView.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_menuview", + "target": "swiftui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/PaginatedForEach.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_paginatedforeach", + "target": "swiftui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/Disqus/DisqusHTMLBuilder.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_disqus_disqushtmlbuilder", + "target": "swiftui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/Disqus/DisqusWebView.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_disqus_disquswebview", + "target": "swiftui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/InteractivePopGesture.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_interactivepopgesture", + "target": "swiftui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/ManagedWebView.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview", + "target": "swiftui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMNavigationDecider.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmnavigationdecider", + "target": "swiftui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview", + "target": "swiftui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WebViewStatus.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_webviewstatus", + "target": "swiftui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Modifiers/CardAccessibilityModifier.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_sources_newslibrary_modifiers_cardaccessibilitymodifier", + "target": "swiftui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/CollectionViewWithHeader.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_sources_newslibrary_views_components_collectionviewwithheader", + "target": "swiftui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/FeedHighlightCardView.swift", + "source_location": "L6", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_sources_newslibrary_views_components_feedhighlightcardview", + "target": "swiftui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/FeedHighlightsCarouselView.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_sources_newslibrary_views_components_feedhighlightscarouselview", + "target": "swiftui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/NewsView.swift", + "source_location": "L8", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_sources_newslibrary_views_newsview", + "target": "swiftui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Extensions/Array.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_extensions_array", + "target": "swiftui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Extensions/View.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_extensions_view", + "target": "swiftui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Model/OnBoardingFeature.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_model_onboardingfeature", + "target": "swiftui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/ViewModels/OnboardingCoordinator.swift", + "source_location": "L5", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_onboardingcoordinator", + "target": "swiftui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Components/OnboardingCTAButton.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_onboardingctabutton", + "target": "swiftui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Components/OnboardingLogoView.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_onboardinglogoview", + "target": "swiftui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Components/OnboardingSkipButton.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_onboardingskipbutton", + "target": "swiftui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Components/OnboardingTitleView.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_onboardingtitleview", + "target": "swiftui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Components/PermissionCard.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_permissioncard", + "target": "swiftui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Modifiers/OnboardingFadeModifier.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_modifiers_onboardingfademodifier", + "target": "swiftui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/OnboardingContainerView.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_onboardingcontainerview", + "target": "swiftui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Screen1_WelcomeView.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_screen1_welcomeview", + "target": "swiftui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Screen2_FeaturesView.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_screen2_featuresview", + "target": "swiftui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Screen3_PermissionsView.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_screen3_permissionsview", + "target": "swiftui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/PodcastChapter.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastchapter", + "target": "swiftui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/SystemVolumeView.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_manager_systemvolumeview", + "target": "swiftui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Modifiers/CardAccessibilityModifier.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_modifiers_cardaccessibilitymodifier", + "target": "swiftui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Modifiers/PodcastMiniPlayerModifier.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_modifiers_podcastminiplayermodifier", + "target": "swiftui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Card/AdaptivePodcastCardView.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_card_adaptivepodcastcardview", + "target": "swiftui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Card/GlassPodcastCardView.swift", + "source_location": "L6", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_card_glasspodcastcardview", + "target": "swiftui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Card/PodcastCardView.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_card_podcastcardview", + "target": "swiftui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/ChaptersView.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_chaptersview", + "target": "swiftui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/FullPlayerView.swift", + "source_location": "L5", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_fullplayerview", + "target": "swiftui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/Background/BackgroundView.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_background_backgroundview", + "target": "swiftui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/Background/BackgroundViewModel.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_background_backgroundviewmodel", + "target": "swiftui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/PodcastImageView.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_podcastimageview", + "target": "swiftui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/ScrollStylePicker.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_scrollstylepicker", + "target": "swiftui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/Ticker.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_ticker", + "target": "swiftui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/MiniPlayerView.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_miniplayerview", + "target": "swiftui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/PodcastView.swift", + "source_location": "L7", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_podcastview", + "target": "swiftui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastChapterTests.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests", + "target": "swiftui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/RecentSearchesView.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_views_recentsearchesview", + "target": "swiftui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchResultsList.swift", + "source_location": "L8", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist", + "target": "swiftui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchView.swift", + "source_location": "L7", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchview", + "target": "swiftui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/ColorScheme.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_colorscheme", + "target": "swiftui", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/ColorScheme.swift", + "source_location": "L9", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_colorscheme_colorscheme", + "target": "swiftui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/SettingsViewModel.swift", + "source_location": "L5", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_settingsviewmodel", + "target": "swiftui", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/SettingsViewModel.swift", + "source_location": "L10", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_settingsviewmodel_settingsviewmodel", + "target": "swiftui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Extensions/CustomProductViewStyle.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_extensions_customproductviewstyle", + "target": "swiftui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Extensions/PlainButtonTextStyle.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_extensions_plainbuttontextstyle", + "target": "swiftui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/SettingsView.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_settingsview", + "target": "swiftui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/AboutView.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_aboutview", + "target": "swiftui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/AppearanceView.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_appearanceview", + "target": "swiftui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/CustomSocialView.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_customsocialview", + "target": "swiftui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/CustomTabView.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_customtabview", + "target": "swiftui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/IconsView.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_iconsview", + "target": "swiftui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/PostsVisibilityView.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_postsvisibilityview", + "target": "swiftui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/PushOptionsView.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_pushoptionsview", + "target": "swiftui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/ReadingPreferencesView.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_readingpreferencesview", + "target": "swiftui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/SubscriptionView.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_subscriptionview", + "target": "swiftui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/Card/AdaptiveVideoCard.swift", + "source_location": "L5", + "weight": 1.0, + "source": "macmagazine_features_videoslibrary_sources_videos_card_adaptivevideocard", + "target": "swiftui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/VideosView.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_features_videoslibrary_sources_videos_videosview", + "target": "swiftui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/Features/News/DeepLinkNewsDetailView.swift", + "source_location": "L6", + "weight": 1.0, + "source": "macmagazine_macmagazine_features_news_deeplinknewsdetailview", + "target": "swiftui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/Features/News/NewsView.swift", + "source_location": "L7", + "weight": 1.0, + "source": "macmagazine_macmagazine_features_news_newsview", + "target": "swiftui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/Features/News/ToolbarModifier.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_macmagazine_features_news_toolbarmodifier", + "target": "swiftui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/Features/Shortcuts/ShortcutManager.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_macmagazine_features_shortcuts_shortcutmanager", + "target": "swiftui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/Features/Social/SocialView.swift", + "source_location": "L7", + "weight": 1.0, + "source": "macmagazine_macmagazine_features_social_socialview", + "target": "swiftui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/MacMagazineApp.swift", + "source_location": "L10", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_macmagazineapp", + "target": "swiftui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/MainView.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_mainview", + "target": "swiftui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/MainViewModel.swift", + "source_location": "L10", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_mainviewmodel", + "target": "swiftui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/NavigationState.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_navigationstate", + "target": "swiftui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/SceneDelegate.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_scenedelegate", + "target": "swiftui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/Sizecalss/MainView+sidebar.swift", + "source_location": "L7", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_sizecalss_mainview_sidebar", + "target": "swiftui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/Sizecalss/MainView+tabbar.swift", + "source_location": "L7", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_sizecalss_mainview_tabbar", + "target": "swiftui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/Modifiers/NavigationModifier.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_macmagazine_modifiers_navigationmodifier", + "target": "swiftui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/Helper/FeedDotsIndicatorView.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_watchapp_helper_feeddotsindicatorview", + "target": "swiftui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/MainApp/WatchApp.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_watchapp_mainapp_watchapp", + "target": "swiftui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/ViewModel/FeedScrollPositionKey.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_watchapp_viewmodel_feedscrollpositionkey", + "target": "swiftui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/Views/FeedDetailView.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_watchapp_views_feeddetailview", + "target": "swiftui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/Views/FeedMainView.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_watchapp_views_feedmainview", + "target": "swiftui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/Views/Row/FeedRowView.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_watchapp_views_row_feedrowview", + "target": "swiftui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchWidget/Extensions/WidgetAccessibility+View.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_watchwidget_extensions_widgetaccessibility_view", + "target": "swiftui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchWidget/Views/WatchWidgetEntryView.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_watchwidget_views_watchwidgetentryview", + "target": "swiftui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchWidget/Widget/WatchWidget.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_watchwidget_widget_watchwidget", + "target": "swiftui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchWidget/Widget/WatchWidgetBundle.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_watchwidget_widget_watchwidgetbundle", + "target": "swiftui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchWidget/Widget/WatchWidgetProvider.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_watchwidget_widget_watchwidgetprovider", + "target": "swiftui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/Extensions/WidgetAccessibility+View.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_widget_extensions_widgetaccessibility_view", + "target": "swiftui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/MacMagazineWidget.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_widget_macmagazinewidget", + "target": "swiftui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/MacMagazineWidgetBundle.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_widget_macmagazinewidgetbundle", + "target": "swiftui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/MacMagazineWidgetLiveActivity.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_widget_macmagazinewidgetliveactivity", + "target": "swiftui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/Timeline/MacMagazineTimelineProvider.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_widget_timeline_macmagazinetimelineprovider", + "target": "swiftui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/Views/Modifiers/HeaderWidgetModifier.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_widget_views_modifiers_headerwidgetmodifier", + "target": "swiftui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/Views/Modifiers/SmallWidgetStyleModifier.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_widget_views_modifiers_smallwidgetstylemodifier", + "target": "swiftui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/Views/WidgetElementView.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_widget_views_widgetelementview", + "target": "swiftui", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/Views/WidgetView.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_widget_views_widgetview", + "target": "swiftui", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/EnvironmentValuesExtensions.swift", + "source_location": "L28", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_environmentvaluesextensions_environmentvalues", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_environmentvaluesextensions_swift_bool", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/ModelProtocols.swift", + "source_location": "L12", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_modelprotocols", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_modelprotocols_modelduplicable", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/ModelProtocols.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_modelprotocols", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_modelprotocols_modelfavoritable", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/ModelProtocols.swift", + "source_location": "L8", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_modelprotocols", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_modelprotocols_modelreadable", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/ModelProtocols.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_modelprotocols_modelfavoritable", + "target": "anyobject", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/ModelProtocols.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_modelprotocols_modelfavoritable", + "target": "persistentmodel", + "confidence_score": 1.0 + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/Model/VideoDBExtensions.swift", + "source_location": "L44", + "weight": 1.0, + "source": "macmagazine_features_videoslibrary_sources_videos_model_videodbextensions_videodb", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_modelprotocols_modelfavoritable", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/ModelProtocols.swift", + "source_location": "L12", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_modelprotocols_modelduplicable", + "target": "anyobject", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/ModelProtocols.swift", + "source_location": "L8", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_modelprotocols_modelreadable", + "target": "anyobject", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/ModelProtocols.swift", + "source_location": "L12", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_modelprotocols_modelduplicable", + "target": "persistentmodel", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/ModelProtocols.swift", + "source_location": "L8", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_modelprotocols_modelreadable", + "target": "persistentmodel", + "confidence_score": 1.0 + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/Databases/CustomizationDB.swift", + "source_location": "L33", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_databases_customizationdb_customizationdb", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_modelprotocols_modelduplicable", + "confidence_score": 1.0 + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/Databases/SettingsDB.swift", + "source_location": "L42", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_databases_settingsdb_settingsdb", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_modelprotocols_modelduplicable", + "confidence_score": 1.0 + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/Model/VideoDBExtensions.swift", + "source_location": "L54", + "weight": 1.0, + "source": "macmagazine_features_videoslibrary_sources_videos_model_videodbextensions_videodb", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_modelprotocols_modelduplicable", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/NewsCategory.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_newscategory", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_newscategory_newscategory", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/NewsCategory.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_newscategory_newscategory", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_newscategory_newscategory_all", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/NewsCategory.swift", + "source_location": "L7", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_newscategory_newscategory", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_newscategory_newscategory_appletv", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/NewsCategory.swift", + "source_location": "L6", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_newscategory_newscategory", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_newscategory_newscategory_highlights", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/NewsCategory.swift", + "source_location": "L5", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_newscategory_newscategory", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_newscategory_newscategory_news", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/NewsCategory.swift", + "source_location": "L12", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_newscategory_newscategory", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_newscategory_newscategory_podcast", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/NewsCategory.swift", + "source_location": "L8", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_newscategory_newscategory", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_newscategory_newscategory_reviews", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/NewsCategory.swift", + "source_location": "L9", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_newscategory_newscategory", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_newscategory_newscategory_rumors", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/NewsCategory.swift", + "source_location": "L10", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_newscategory_newscategory", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_newscategory_newscategory_tutorials", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/NewsCategory.swift", + "source_location": "L11", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_newscategory_newscategory", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_newscategory_newscategory_youtube", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/PushNotification/PushNotification.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_pushnotification", + "target": "loggerlibrary", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/PushNotification/PushNotification.swift", + "source_location": "L172", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_pushnotification", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_pushnotification_pushnotification", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/PushNotification/PushNotification.swift", + "source_location": "L107", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_pushnotification", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_pushnotification_pushnotificationdefinition", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/PushNotification/PushNotification.swift", + "source_location": "L7", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_pushnotification", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_pushnotification_pushpermissionstatus", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/PushNotification/PushNotification.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_pushnotification", + "target": "observation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/PushNotification/PushNotification.swift", + "source_location": "L96", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_pushnotification", + "target": "onesignalframework", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/PushNotification/PushNotification.swift", + "source_location": "L105", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_pushnotification", + "target": "uikit", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/PushNotification/PushNotification.swift", + "source_location": "L5", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_pushnotification", + "target": "utilitylibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/NewsView.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_sources_newslibrary_views_newsview", + "target": "loggerlibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/AppDelegate.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_appdelegate", + "target": "loggerlibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/MacMagazineApp.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_macmagazineapp", + "target": "loggerlibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/MainViewModel.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_mainviewmodel", + "target": "loggerlibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/SceneDelegate.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_scenedelegate", + "target": "loggerlibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/MainApp/WatchNotificationsDelegate.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_watchapp_mainapp_watchnotificationsdelegate", + "target": "loggerlibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/SessionState.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_sessionstate", + "target": "observation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/ViewModels/OnboardingCoordinator.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_onboardingcoordinator", + "target": "observation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/ViewModels/PermissionManager.swift", + "source_location": "L5", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_permissionmanager", + "target": "observation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/PodcastPlayerManager.swift", + "source_location": "L7", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager", + "target": "observation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/FavoriteAndShare/ShareButton.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_favoriteandshare_sharebutton", + "target": "utilitylibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/Metadata/MetadataDuration.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_metadata_metadataduration", + "target": "utilitylibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/GlassCardView.swift", + "source_location": "L5", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_glasscardview", + "target": "utilitylibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/LeadingImageCard.swift", + "source_location": "L5", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_leadingimagecard", + "target": "utilitylibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Modifiers/CardAccessibilityModifier.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_sources_newslibrary_modifiers_cardaccessibilitymodifier", + "target": "utilitylibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Modifiers/CardAccessibilityModifier.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_modifiers_cardaccessibilitymodifier", + "target": "utilitylibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Card/AdaptivePodcastCardView.swift", + "source_location": "L6", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_card_adaptivepodcastcardview", + "target": "utilitylibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Card/PodcastCardView.swift", + "source_location": "L6", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_card_podcastcardview", + "target": "utilitylibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/Extension/FeedDB.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_watchapp_extension_feeddb", + "target": "utilitylibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/Views/Row/FeedRowView.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_watchapp_views_row_feedrowview", + "target": "utilitylibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchWidget/Views/WatchWidgetEntryView.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_watchwidget_views_watchwidgetentryview", + "target": "utilitylibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/Views/WidgetElementView.swift", + "source_location": "L6", + "weight": 1.0, + "source": "macmagazine_widget_views_widgetelementview", + "target": "utilitylibrary", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/PushNotification/PushNotification.swift", + "source_location": "L34", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_pushnotification_pushnotification", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_pushnotification_pushpermissionstatus", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/PushNotification/PushNotification.swift", + "source_location": "L9", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_pushnotification_pushpermissionstatus", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_pushnotification_pushpermissionstatus_authorized", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/PushNotification/PushNotification.swift", + "source_location": "L10", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_pushnotification_pushpermissionstatus", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_pushnotification_pushpermissionstatus_denied", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/PushNotification/PushNotification.swift", + "source_location": "L8", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_pushnotification_pushpermissionstatus", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_pushnotification_pushpermissionstatus_notdetermined", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/ViewModels/PermissionManager.swift", + "source_location": "L11", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_permissionmanager_permissionmanager", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_pushnotification_pushpermissionstatus", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/PushNotification/PushNotification.swift", + "source_location": "L50", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_pushnotification_pushnotification", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_pushnotification_pushnotification_adddevice", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/PushNotification/PushNotification.swift", + "source_location": "L20", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_pushnotification_pushnotification", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_pushnotification_pushnotification_init", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/PushNotification/PushNotification.swift", + "source_location": "L118", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_pushnotification_pushnotification", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_pushnotification_pushnotification_initialize", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/PushNotification/PushNotification.swift", + "source_location": "L152", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_pushnotification_pushnotification", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_pushnotification_pushnotification_onclick", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/PushNotification/PushNotification.swift", + "source_location": "L140", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_pushnotification_pushnotification", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_pushnotification_pushnotification_onwilldisplay", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/PushNotification/PushNotification.swift", + "source_location": "L113", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_pushnotification_pushnotification", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_pushnotification_pushnotification_resetbadge", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/PushNotification/PushNotification.swift", + "source_location": "L127", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_pushnotification_pushnotification", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_pushnotification_pushnotification_setup", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/PushNotification/PushNotification.swift", + "source_location": "L99", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_pushnotification_pushnotification", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_pushnotification_pushnotification_tag", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/PushNotification/PushNotification.swift", + "source_location": "L179", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_pushnotification_pushnotification", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_pushnotification_pushnotification_usernotificationcenter", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/PushNotification/PushNotification.swift", + "source_location": "L18", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_pushnotification_pushnotification", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_pushnotification_swift_loggerprotocol", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/PushNotification/PushNotification.swift", + "source_location": "L26", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_pushnotification_pushnotification", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_pushnotification_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/PushNotification/PushNotification.swift", + "source_location": "L151", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_pushnotification_pushnotification", + "target": "osnotificationclicklistener", + "confidence_score": 1.0 + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/PushNotification/PushNotification.swift", + "source_location": "L139", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_pushnotification_pushnotification", + "target": "osnotificationlifecyclelistener", + "confidence_score": 1.0 + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/PushNotification/PushNotification.swift", + "source_location": "L172", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_pushnotification_pushnotification", + "target": "unusernotificationcenterdelegate", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/PushNotification/PushNotification.swift", + "source_location": "L50", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_pushnotification_pushnotification_adddevice", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_pushnotification_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/PushNotification/PushNotification.swift", + "source_location": "L99", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_pushnotification_pushnotification_tag", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_pushnotification_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/PushNotification/PushNotification.swift", + "source_location": "L61", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_pushnotification_pushnotification_adddevice", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_usermodel_useridentity" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/PushNotification/PushNotification.swift", + "source_location": "L55", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_pushnotification_pushnotification_adddevice", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_usermodel_usermodel" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/PushNotification/PushNotification.swift", + "source_location": "L56", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_pushnotification_pushnotification_adddevice", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_usermodel_userproperties" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/PushNotification/PushNotification.swift", + "source_location": "L64", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_pushnotification_pushnotification_adddevice", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_usermodel_usersubscriptions" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/AppDelegate.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_appdelegate", + "target": "onesignalframework", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/Utils.swift", + "source_location": "L9", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_utils", + "target": "uikit", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/FavoriteAndShare/FavoriteButton.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_favoriteandshare_favoritebutton", + "target": "uikit", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/Cookies.swift", + "source_location": "L134", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_cookies", + "target": "uikit", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/InteractivePopGesture.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_interactivepopgesture", + "target": "uikit", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Extensions/UIColorExtensions.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_extensions_uicolorextensions", + "target": "uikit", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Extensions/UIImageExtensions.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_extensions_uiimageextensions", + "target": "uikit", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/PodcastPlayerManager.swift", + "source_location": "L8", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager", + "target": "uikit", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/Background/BackgroundViewModel.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_background_backgroundviewmodel", + "target": "uikit", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchView.swift", + "source_location": "L9", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchview", + "target": "uikit", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/IconsViewModel.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_iconsviewmodel", + "target": "uikit", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/SubscriptionViewModel.swift", + "source_location": "L7", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_subscriptionviewmodel", + "target": "uikit", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/SubscriptionView.swift", + "source_location": "L6", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_subscriptionview", + "target": "uikit", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/AppDelegate.swift", + "source_location": "L5", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_appdelegate", + "target": "uikit", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/SceneDelegate.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_scenedelegate", + "target": "uikit", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/Views/WidgetElementView.swift", + "source_location": "L5", + "weight": 1.0, + "source": "macmagazine_widget_views_widgetelementview", + "target": "uikit", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/PushNotification/PushNotification.swift", + "source_location": "L109", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_pushnotification_pushnotificationdefinition", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_pushnotification_swift_any", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/PushNotification/PushNotification.swift", + "source_location": "L109", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_pushnotification_pushnotificationdefinition", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_pushnotification_swift_uiapplication", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/PushNotification/PushNotification.swift", + "source_location": "L118", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_pushnotification_pushnotification_initialize", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_pushnotification_swift_uiapplication", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/PushNotification/PushNotification.swift", + "source_location": "L127", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_pushnotification_pushnotification_setup", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_pushnotification_swift_uiapplication", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/PushNotification/PushNotification.swift", + "source_location": "L118", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_pushnotification_pushnotification_initialize", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_pushnotification_swift_any", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/PushNotification/PushNotification.swift", + "source_location": "L127", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_pushnotification_pushnotification_setup", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_pushnotification_swift_any", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/PushNotification/PushNotification.swift", + "source_location": "L129", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_pushnotification_pushnotification_setup", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_pushnotification_pushnotification_initialize", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/PushNotification/PushNotification.swift", + "source_location": "L127", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_pushnotification_pushnotification_setup", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_pushnotification_swift_bool", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/PushNotification/PushNotification.swift", + "source_location": "L140", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_pushnotification_pushnotification_onwilldisplay", + "target": "osnotificationwilldisplayevent", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/PushNotification/PushNotification.swift", + "source_location": "L152", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_pushnotification_pushnotification_onclick", + "target": "osnotificationclickevent", + "confidence_score": 1.0 + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/MainApp/WatchNotificationsDelegate.swift", + "source_location": "L35", + "weight": 1.0, + "source": "macmagazine_watchapp_mainapp_watchnotificationsdelegate_watchnotificationsdelegate", + "target": "unusernotificationcenterdelegate", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/PushNotification/PushNotification.swift", + "source_location": "L179", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_pushnotification_pushnotification_usernotificationcenter", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_pushnotification_swift_unnotificationresponse", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/PushNotification/PushNotification.swift", + "source_location": "L179", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_pushnotification_pushnotification_usernotificationcenter", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_pushnotification_swift_unusernotificationcenter", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/PushNotification/PushNotification.swift", + "source_location": "L179", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_pushnotification_pushnotification_usernotificationcenter", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_pushnotification_swift_void", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/PushNotification/PushNotification.swift", + "source_location": "L173", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_pushnotification_pushnotification_usernotificationcenter", + "target": "unnotification", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/PushNotification/PushNotification.swift", + "source_location": "L173", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_pushnotification_pushnotification_usernotificationcenter", + "target": "unnotificationpresentationoptions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/PushNotification/UserModel.swift", + "source_location": "L15", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_usermodel", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_usermodel_useridentity", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/PushNotification/UserModel.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_usermodel", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_usermodel_usermodel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/PushNotification/UserModel.swift", + "source_location": "L9", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_usermodel", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_usermodel_userproperties", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/PushNotification/UserModel.swift", + "source_location": "L19", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_usermodel", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_usermodel_usersubscriptions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/PushNotification/UserModel.swift", + "source_location": "L20", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_usermodel", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_usermodel_usersubscriptionstype", + "confidence_score": 1.0 + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/PushNotification/UserModel.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_usermodel_usermodel", + "target": "encodable", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/PushNotification/UserModel.swift", + "source_location": "L5", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_usermodel_usermodel", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_usermodel_useridentity", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/PushNotification/UserModel.swift", + "source_location": "L4", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_usermodel_usermodel", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_usermodel_userproperties", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/PushNotification/UserModel.swift", + "source_location": "L6", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_usermodel_usermodel", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_usermodel_usersubscriptions", + "confidence_score": 1.0 + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/PushNotification/UserModel.swift", + "source_location": "L15", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_usermodel_useridentity", + "target": "encodable", + "confidence_score": 1.0 + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/PushNotification/UserModel.swift", + "source_location": "L9", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_usermodel_userproperties", + "target": "encodable", + "confidence_score": 1.0 + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/PushNotification/UserModel.swift", + "source_location": "L19", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_usermodel_usersubscriptions", + "target": "encodable", + "confidence_score": 1.0 + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/PushNotification/UserModel.swift", + "source_location": "L20", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_usermodel_usersubscriptionstype", + "target": "encodable", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/PushNotification/UserModel.swift", + "source_location": "L12", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_usermodel_userproperties", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_usermodel_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/PushNotification/UserModel.swift", + "source_location": "L16", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_usermodel_useridentity", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_usermodel_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/PushNotification/UserModel.swift", + "source_location": "L27", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_usermodel_usersubscriptions", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_usermodel_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/PushNotification/UserModel.swift", + "source_location": "L20", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_usermodel_usersubscriptionstype", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_usermodel_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/PushNotification/UserModel.swift", + "source_location": "L26", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_usermodel_usersubscriptions", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_usermodel_swift_int", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/PushNotification/UserModel.swift", + "source_location": "L24", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_usermodel_usersubscriptions", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_usermodel_usersubscriptionstype", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/PushNotification/UserModel.swift", + "source_location": "L21", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_usermodel_usersubscriptionstype", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_pushnotification_usermodel_usersubscriptionstype_ios", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/SessionState.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_sessionstate", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_sessionstate_sessionstate", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/SessionState.swift", + "source_location": "L17", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_sessionstate_sessionstate", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_sessionstate_sessionstate_init", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/SessionState.swift", + "source_location": "L13", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_sessionstate_sessionstate", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_sessionstate_swift_bool", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/PodcastPlayerManager.swift", + "source_location": "L38", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager_observesessionstate", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_sessionstate_sessionstate", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/MacMagazine/MainApp/MainViewModel.swift", + "source_location": "L37", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_mainviewmodel_mainviewmodel", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_sessionstate_sessionstate" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/ThemeColor.swift", + "source_location": "L32", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_themecolor", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_themecolor_environmentvalues", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/ThemeColor.swift", + "source_location": "L28", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_themecolor", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_themecolor_string", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/ThemeColor.swift", + "source_location": "L5", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_themecolor", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_themecolor_themecolor", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/ThemeColor.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_themecolor", + "target": "uicomponentslibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardDensity.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_carddensity", + "target": "uicomponentslibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/GlassCardView.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_glasscardview", + "target": "uicomponentslibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/LeadingImageCard.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_leadingimagecard", + "target": "uicomponentslibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/ViewModel/NewsViewModel.swift", + "source_location": "L6", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_sources_newslibrary_viewmodel_newsviewmodel", + "target": "uicomponentslibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/CollectionViewWithHeader.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_sources_newslibrary_views_components_collectionviewwithheader", + "target": "uicomponentslibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/NewsView.swift", + "source_location": "L9", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_sources_newslibrary_views_newsview", + "target": "uicomponentslibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Components/OnboardingCTAButton.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_onboardingctabutton", + "target": "uicomponentslibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Components/OnboardingSkipButton.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_onboardingskipbutton", + "target": "uicomponentslibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Components/OnboardingTitleView.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_onboardingtitleview", + "target": "uicomponentslibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Screen1_WelcomeView.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_screen1_welcomeview", + "target": "uicomponentslibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Screen2_FeaturesView.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_screen2_featuresview", + "target": "uicomponentslibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Screen3_PermissionsView.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_screen3_permissionsview", + "target": "uicomponentslibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Modifiers/PodcastMiniPlayerModifier.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_modifiers_podcastminiplayermodifier", + "target": "uicomponentslibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/ViewModel/PodcastViewModel.swift", + "source_location": "L6", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_viewmodel_podcastviewmodel", + "target": "uicomponentslibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Card/AdaptivePodcastCardView.swift", + "source_location": "L5", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_card_adaptivepodcastcardview", + "target": "uicomponentslibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Card/PodcastCardView.swift", + "source_location": "L5", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_card_podcastcardview", + "target": "uicomponentslibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/ChaptersView.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_chaptersview", + "target": "uicomponentslibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/FullPlayerView.swift", + "source_location": "L6", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_fullplayerview", + "target": "uicomponentslibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/Background/BackgroundView.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_background_backgroundview", + "target": "uicomponentslibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/PodcastImageView.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_podcastimageview", + "target": "uicomponentslibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/MiniPlayerView.swift", + "source_location": "L5", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_miniplayerview", + "target": "uicomponentslibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/PodcastView.swift", + "source_location": "L8", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_podcastview", + "target": "uicomponentslibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastViewModelTests.swift", + "source_location": "L7", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests", + "target": "uicomponentslibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchView.swift", + "source_location": "L8", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchview", + "target": "uicomponentslibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Extensions/CustomProductViewStyle.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_extensions_customproductviewstyle", + "target": "uicomponentslibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/AboutView.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_aboutview", + "target": "uicomponentslibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/PostsVisibilityView.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_postsvisibilityview", + "target": "uicomponentslibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/PushOptionsView.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_pushoptionsview", + "target": "uicomponentslibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/ReadingPreferencesView.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_readingpreferencesview", + "target": "uicomponentslibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/SubscriptionView.swift", + "source_location": "L5", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_subscriptionview", + "target": "uicomponentslibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/VideosView.swift", + "source_location": "L5", + "weight": 1.0, + "source": "macmagazine_features_videoslibrary_sources_videos_videosview", + "target": "uicomponentslibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/VideosViewModel.swift", + "source_location": "L5", + "weight": 1.0, + "source": "macmagazine_features_videoslibrary_sources_videos_videosviewmodel", + "target": "uicomponentslibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/Features/News/NewsView.swift", + "source_location": "L8", + "weight": 1.0, + "source": "macmagazine_macmagazine_features_news_newsview", + "target": "uicomponentslibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/Features/Social/SocialView.swift", + "source_location": "L8", + "weight": 1.0, + "source": "macmagazine_macmagazine_features_social_socialview", + "target": "uicomponentslibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/MainView.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_mainview", + "target": "uicomponentslibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/Views/Row/FeedRowView.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_watchapp_views_row_feedrowview", + "target": "uicomponentslibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/Views/WidgetElementView.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_widget_views_widgetelementview", + "target": "uicomponentslibrary", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/ThemeColor.swift", + "source_location": "L33", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_themecolor_environmentvalues", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_themecolor_themecolor", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/ThemeColor.swift", + "source_location": "L25", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_themecolor_themecolor", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_themecolor_themecolor_init", + "confidence_score": 1.0 + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/ThemeColor.swift", + "source_location": "L5", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_themecolor_themecolor", + "target": "themeable", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/MenuView.swift", + "source_location": "L6", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_menuview_menuview", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_themecolor_themecolor", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/NewsView.swift", + "source_location": "L17", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_newslibrary_sources_newslibrary_views_newsview_newsview", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_themecolor_themecolor", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Components/OnboardingCTAButton.swift", + "source_location": "L8", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_onboardingctabutton_onboardingctabutton", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_themecolor_themecolor", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/OnboardingContainerView.swift", + "source_location": "L6", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_onboardingcontainerview_onboardingcontainerview", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_themecolor_themecolor", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Screen1_WelcomeView.swift", + "source_location": "L7", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_screen1_welcomeview_welcomeview", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_themecolor_themecolor", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Screen2_FeaturesView.swift", + "source_location": "L7", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_screen2_featuresview_featuresview", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_themecolor_themecolor", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Screen3_PermissionsView.swift", + "source_location": "L7", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_screen3_permissionsview_permissionsview", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_themecolor_themecolor", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/PodcastView.swift", + "source_location": "L11", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_podcastview_podcastview", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_themecolor_themecolor", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchView.swift", + "source_location": "L13", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchview_searchview", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_themecolor_themecolor", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/SettingsView.swift", + "source_location": "L9", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_settingsview_settingsview", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_themecolor_themecolor", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/AboutView.swift", + "source_location": "L8", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_aboutview_aboutview", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_themecolor_themecolor", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/AppearanceView.swift", + "source_location": "L7", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_appearanceview_appearanceview", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_themecolor_themecolor", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/CustomSocialView.swift", + "source_location": "L7", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_customsocialview_customsocialview", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_themecolor_themecolor", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/CustomTabView.swift", + "source_location": "L8", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_customtabview_customtabview", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_themecolor_themecolor", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/IconsView.swift", + "source_location": "L7", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_iconsview_iconsview", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_themecolor_themecolor", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/PostsVisibilityView.swift", + "source_location": "L8", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_postsvisibilityview_postsvisibilityview", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_themecolor_themecolor", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/PushOptionsView.swift", + "source_location": "L8", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_pushoptionsview_pushoptionsview", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_themecolor_themecolor", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/ReadingPreferencesView.swift", + "source_location": "L8", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_readingpreferencesview_readingpreferencesview", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_themecolor_themecolor", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/SubscriptionView.swift", + "source_location": "L11", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_subscriptionview_subscriptionview", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_themecolor_themecolor", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/Card/AdaptiveVideoCard.swift", + "source_location": "L31", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_videoslibrary_sources_videos_card_adaptivevideocard_adaptivebody", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_themecolor_themecolor", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/Features/News/NewsView.swift", + "source_location": "L12", + "weight": 1.0, + "context": "field", + "source": "macmagazine_macmagazine_features_news_newsview_newsview", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_themecolor_themecolor", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/Features/Social/SocialView.swift", + "source_location": "L13", + "weight": 1.0, + "context": "field", + "source": "macmagazine_macmagazine_features_social_socialview_socialview", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_themecolor_themecolor", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/MainView.swift", + "source_location": "L16", + "weight": 1.0, + "context": "field", + "source": "macmagazine_macmagazine_mainapp_mainview_mainview", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_themecolor_themecolor", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/MacMagazine/MainApp/MainViewModel.swift", + "source_location": "L39", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_mainviewmodel_mainviewmodel", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_themecolor_themecolor" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/ThemeColor.swift", + "source_location": "L29", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_themecolor_string", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_themecolor_swift_color", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/URLClassifier.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_urlclassifier", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_urlclassifier_urlclassification", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/URLClassifier.swift", + "source_location": "L12", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_urlclassifier", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_urlclassifier_urlclassifier", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/URLClassifier.swift", + "source_location": "L4", + "weight": 1.0, + "context": "type", + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_urlclassifier_urlclassification", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_urlclassifier_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/URLClassifier.swift", + "source_location": "L6", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_urlclassifier_urlclassification", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_urlclassifier_urlclassification_appstore", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/URLClassifier.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_urlclassifier_urlclassification", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_urlclassifier_urlclassification_comments", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/URLClassifier.swift", + "source_location": "L9", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_urlclassifier_urlclassification", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_urlclassifier_urlclassification_external", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/URLClassifier.swift", + "source_location": "L8", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_urlclassifier_urlclassification", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_urlclassifier_urlclassification_instagram", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/URLClassifier.swift", + "source_location": "L5", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_urlclassifier_urlclassification", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_urlclassifier_urlclassification_macmagazinepost", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/URLClassifier.swift", + "source_location": "L7", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_urlclassifier_urlclassification", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_urlclassifier_urlclassification_youtube", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/URLClassifier.swift", + "source_location": "L13", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_urlclassifier_urlclassifier_classify", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_urlclassifier_urlclassification", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/URLClassifier.swift", + "source_location": "L13", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_urlclassifier_urlclassifier", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_urlclassifier_urlclassifier_classify", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/URLClassifier.swift", + "source_location": "L13", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_urlclassifier_urlclassifier_classify", + "target": "macmagazine_widget_models_widgetdata_url", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "MacMagazine/Features/MacMagazineLibrary/Tests/MacMagazineLibraryTests/URLClassifierTests.swift", + "source_location": "L30", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_urlclassifiertests_urlclassifiertests_appstore", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_urlclassifier_urlclassifier_classify" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "MacMagazine/Features/MacMagazineLibrary/Tests/MacMagazineLibraryTests/URLClassifierTests.swift", + "source_location": "L12", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_urlclassifiertests_urlclassifiertests_commentsscheme", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_urlclassifier_urlclassifier_classify" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "MacMagazine/Features/MacMagazineLibrary/Tests/MacMagazineLibraryTests/URLClassifierTests.swift", + "source_location": "L18", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_urlclassifiertests_urlclassifiertests_disqusanchor", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_urlclassifier_urlclassifier_classify" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "MacMagazine/Features/MacMagazineLibrary/Tests/MacMagazineLibraryTests/URLClassifierTests.swift", + "source_location": "L60", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_urlclassifiertests_urlclassifiertests_external", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_urlclassifier_urlclassifier_classify" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "MacMagazine/Features/MacMagazineLibrary/Tests/MacMagazineLibraryTests/URLClassifierTests.swift", + "source_location": "L24", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_urlclassifiertests_urlclassifiertests_instagram", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_urlclassifier_urlclassifier_classify" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "MacMagazine/Features/MacMagazineLibrary/Tests/MacMagazineLibraryTests/URLClassifierTests.swift", + "source_location": "L36", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_urlclassifiertests_urlclassifiertests_itunes", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_urlclassifier_urlclassifier_classify" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "MacMagazine/Features/MacMagazineLibrary/Tests/MacMagazineLibraryTests/URLClassifierTests.swift", + "source_location": "L54", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_urlclassifiertests_urlclassifiertests_macmagazinepost", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_urlclassifier_urlclassifier_classify" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "MacMagazine/Features/MacMagazineLibrary/Tests/MacMagazineLibraryTests/URLClassifierTests.swift", + "source_location": "L42", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_urlclassifiertests_urlclassifiertests_youtube", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_urlclassifier_urlclassifier_classify" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMNavigationDecider.swift", + "source_location": "L20", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmnavigationdecider_mmnavigationdecider_decidepolicy", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_urlclassifier_urlclassifier_classify" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/Utils.swift", + "source_location": "L25", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_utils", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_utils_utils", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/Utils.swift", + "source_location": "L26", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_utils_utils", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_utils_utils_isdarkmode", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/Utils.swift", + "source_location": "L26", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_utils_utils_isdarkmode", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_utils_swift_bool", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/Utils.swift", + "source_location": "L12", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_utils_utils_isdarkmode", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_colorscheme_colorscheme", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift", + "source_location": "L158", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview_makecookies", + "target": "macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_utils_utils_isdarkmode" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Tests/MacMagazineLibraryTests/AppDefinitionsTests.swift", + "source_location": "L5", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_appdefinitionstests", + "target": "macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_appdefinitionstests_apptabstests", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Tests/MacMagazineLibraryTests/AppDefinitionsTests.swift", + "source_location": "L71", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_appdefinitionstests", + "target": "macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_appdefinitionstests_areequaltests", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Tests/MacMagazineLibraryTests/AppDefinitionsTests.swift", + "source_location": "L27", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_appdefinitionstests", + "target": "macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_appdefinitionstests_newstests", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Tests/MacMagazineLibraryTests/AppDefinitionsTests.swift", + "source_location": "L49", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_appdefinitionstests", + "target": "macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_appdefinitionstests_socialtests", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Tests/MacMagazineLibraryTests/AppDefinitionsTests.swift", + "source_location": "L8", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_appdefinitionstests_apptabstests", + "target": "macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_appdefinitionstests_apptabstests_codableroundtrip", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Tests/MacMagazineLibraryTests/AppDefinitionsTests.swift", + "source_location": "L17", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_appdefinitionstests_apptabstests", + "target": "macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_appdefinitionstests_apptabstests_usableasdictionarykeys", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Tests/MacMagazineLibraryTests/AppDefinitionsTests.swift", + "source_location": "L30", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_appdefinitionstests_newstests", + "target": "macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_appdefinitionstests_newstests_codableroundtrip", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Tests/MacMagazineLibraryTests/AppDefinitionsTests.swift", + "source_location": "L39", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_appdefinitionstests_newstests", + "target": "macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_appdefinitionstests_newstests_usableasdictionarykeys", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Tests/MacMagazineLibraryTests/AppDefinitionsTests.swift", + "source_location": "L52", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_appdefinitionstests_socialtests", + "target": "macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_appdefinitionstests_socialtests_codableroundtrip", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Tests/MacMagazineLibraryTests/AppDefinitionsTests.swift", + "source_location": "L61", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_appdefinitionstests_socialtests", + "target": "macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_appdefinitionstests_socialtests_usableasdictionarykeys", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Tests/MacMagazineLibraryTests/AppDefinitionsTests.swift", + "source_location": "L88", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_appdefinitionstests_areequaltests", + "target": "macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_appdefinitionstests_areequaltests_differenttypes", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Tests/MacMagazineLibraryTests/AppDefinitionsTests.swift", + "source_location": "L81", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_appdefinitionstests_areequaltests", + "target": "macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_appdefinitionstests_areequaltests_differentvaluessametype", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Tests/MacMagazineLibraryTests/AppDefinitionsTests.swift", + "source_location": "L74", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_appdefinitionstests_areequaltests", + "target": "macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_appdefinitionstests_areequaltests_samevalues", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Tests/MacMagazineLibraryTests/URLClassifierTests.swift", + "source_location": "L6", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_urlclassifiertests", + "target": "macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_urlclassifiertests_urlclassifiertests", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Tests/MacMagazineLibraryTests/URLClassifierTests.swift", + "source_location": "L27", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_urlclassifiertests_urlclassifiertests", + "target": "macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_urlclassifiertests_urlclassifiertests_appstore", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Tests/MacMagazineLibraryTests/URLClassifierTests.swift", + "source_location": "L9", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_urlclassifiertests_urlclassifiertests", + "target": "macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_urlclassifiertests_urlclassifiertests_commentsscheme", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Tests/MacMagazineLibraryTests/URLClassifierTests.swift", + "source_location": "L15", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_urlclassifiertests_urlclassifiertests", + "target": "macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_urlclassifiertests_urlclassifiertests_disqusanchor", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Tests/MacMagazineLibraryTests/URLClassifierTests.swift", + "source_location": "L57", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_urlclassifiertests_urlclassifiertests", + "target": "macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_urlclassifiertests_urlclassifiertests_external", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Tests/MacMagazineLibraryTests/URLClassifierTests.swift", + "source_location": "L21", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_urlclassifiertests_urlclassifiertests", + "target": "macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_urlclassifiertests_urlclassifiertests_instagram", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Tests/MacMagazineLibraryTests/URLClassifierTests.swift", + "source_location": "L33", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_urlclassifiertests_urlclassifiertests", + "target": "macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_urlclassifiertests_urlclassifiertests_itunes", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Tests/MacMagazineLibraryTests/URLClassifierTests.swift", + "source_location": "L51", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_urlclassifiertests_urlclassifiertests", + "target": "macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_urlclassifiertests_urlclassifiertests_macmagazinepost", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineLibrary/Tests/MacMagazineLibraryTests/URLClassifierTests.swift", + "source_location": "L45", + "weight": 1.0, + "source": "macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_urlclassifiertests_urlclassifiertests", + "target": "macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_urlclassifiertests_urlclassifiertests_youtube", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/ArrayExtensions.swift", + "source_location": "L13", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_arrayextensions", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_arrayextensions_array", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/ArrayExtensions.swift", + "source_location": "L14", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_arrayextensions_array", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_arrayextensions_swift_newscategory", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/ButtonWithGlassEffect.swift", + "source_location": "L9", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_buttonwithglasseffect", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_buttonwithglasseffect_buttonwithglasseffect", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/ButtonWithGlassEffect.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_buttonwithglasseffect", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_buttonwithglasseffect_view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/ButtonWithGlassEffect.swift", + "source_location": "L10", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_buttonwithglasseffect_buttonwithglasseffect_body", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_buttonwithglasseffect_view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/ButtonWithGlassEffect.swift", + "source_location": "L4", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_buttonwithglasseffect_view_buttonwithglasseffect", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_buttonwithglasseffect_view", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/ButtonWithGlassEffect.swift", + "source_location": "L5", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_buttonwithglasseffect_view_buttonwithglasseffect", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_buttonwithglasseffect_buttonwithglasseffect", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/ButtonWithGlassEffect.swift", + "source_location": "L10", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_buttonwithglasseffect_buttonwithglasseffect", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_buttonwithglasseffect_buttonwithglasseffect_body", + "confidence_score": 1.0 + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/ButtonWithGlassEffect.swift", + "source_location": "L9", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_buttonwithglasseffect_buttonwithglasseffect", + "target": "viewmodifier", + "confidence_score": 1.0 + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Modifiers/CardAccessibilityModifier.swift", + "source_location": "L62", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_sources_newslibrary_modifiers_cardaccessibilitymodifier_cardaccessibilitymodifier", + "target": "viewmodifier", + "confidence_score": 1.0 + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Modifiers/OnboardingFadeModifier.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_modifiers_onboardingfademodifier_onboardingfademodifier", + "target": "viewmodifier", + "confidence_score": 1.0 + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Modifiers/CardAccessibilityModifier.swift", + "source_location": "L59", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_modifiers_cardaccessibilitymodifier_cardaccessibilitymodifier", + "target": "viewmodifier", + "confidence_score": 1.0 + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Modifiers/PodcastMiniPlayerModifier.swift", + "source_location": "L12", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_modifiers_podcastminiplayermodifier_podcastminiplayermodifier", + "target": "viewmodifier", + "confidence_score": 1.0 + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Extensions/PlainButtonTextStyle.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_extensions_plainbuttontextstyle_plainbuttontextstyle", + "target": "viewmodifier", + "confidence_score": 1.0 + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/Features/News/ToolbarModifier.swift", + "source_location": "L22", + "weight": 1.0, + "source": "macmagazine_macmagazine_features_news_toolbarmodifier_toolbarmodifier", + "target": "viewmodifier", + "confidence_score": 1.0 + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/Modifiers/NavigationModifier.swift", + "source_location": "L16", + "weight": 1.0, + "source": "macmagazine_macmagazine_modifiers_navigationmodifier_navigationmodifier", + "target": "viewmodifier", + "confidence_score": 1.0 + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/ViewModel/FeedScrollPositionKey.swift", + "source_location": "L12", + "weight": 1.0, + "source": "macmagazine_watchapp_viewmodel_feedscrollpositionkey_feedrowpositionreporter", + "target": "viewmodifier", + "confidence_score": 1.0 + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/Views/Modifiers/HeaderWidgetModifier.swift", + "source_location": "L14", + "weight": 1.0, + "source": "macmagazine_widget_views_modifiers_headerwidgetmodifier_headerwidgetmodifier", + "target": "viewmodifier", + "confidence_score": 1.0 + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/Views/Modifiers/HeaderWidgetModifier.swift", + "source_location": "L43", + "weight": 1.0, + "source": "macmagazine_widget_views_modifiers_headerwidgetmodifier_overlayheaderwidgetmodifier", + "target": "viewmodifier", + "confidence_score": 1.0 + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/Views/Modifiers/SmallWidgetStyleModifier.swift", + "source_location": "L10", + "weight": 1.0, + "source": "macmagazine_widget_views_modifiers_smallwidgetstylemodifier_smallwidgetstylemodifier", + "target": "viewmodifier", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/ButtonWithGlassEffect.swift", + "source_location": "L10", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_buttonwithglasseffect_buttonwithglasseffect_body", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_buttonwithglasseffect_swift_content", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardDensity.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_carddensity", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_carddensity_carddensity", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardDensity.swift", + "source_location": "L42", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_carddensity_carddensity_from", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_carddensity_carddensity", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardDensity.swift", + "source_location": "L20", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_carddensity_carddensity", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_carddensity_carddensity_titlefont", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardDensity.swift", + "source_location": "L31", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_carddensity_carddensity", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_carddensity_carddensity_titlelinelimit", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardDensity.swift", + "source_location": "L5", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_carddensity_carddensity", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_carddensity_swift_font", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardDensity.swift", + "source_location": "L12", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_carddensity_carddensity", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_carddensity_swift_int", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/GlassCardView.swift", + "source_location": "L17", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_glasscardview_glasscardview", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_carddensity_carddensity", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/LeadingImageCard.swift", + "source_location": "L22", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_leadingimagecard_leadingimagecard", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_carddensity_carddensity", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/CollectionViewWithHeader.swift", + "source_location": "L21", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_newslibrary_sources_newslibrary_views_components_collectionviewwithheader_collectionviewwithheader", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_carddensity_carddensity", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchView.swift", + "source_location": "L201", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchview_searchview", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_carddensity_carddensity", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardDensity.swift", + "source_location": "L20", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_carddensity_carddensity_titlefont", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_carddensity_swift_font", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardDensity.swift", + "source_location": "L31", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_carddensity_carddensity_titlelinelimit", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_carddensity_swift_int", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardDensity.swift", + "source_location": "L20", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_carddensity_carddensity_titlefont", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardstyle_cardstyle", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardDensity.swift", + "source_location": "L31", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_carddensity_carddensity_titlelinelimit", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardstyle_cardstyle", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardDensity.swift", + "source_location": "L42", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_carddensity_carddensity_from", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_carddensity_swift_cgfloat", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/DynamicTypeSize.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_dynamictypesize", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_dynamictypesize_dynamictypesize", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/DynamicTypeSize.swift", + "source_location": "L4", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_dynamictypesize_dynamictypesize", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_dynamictypesize_swift_bool", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Model/CardContent.swift", + "source_location": "L65", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardcontent", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardcontent_cardcontent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Model/CardContent.swift", + "source_location": "L5", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardcontent", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardcontent_cardcontenttype", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Model/CardContent.swift", + "source_location": "L66", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardcontent_cardcontent", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardcontent_cardcontenttype", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Model/CardContent.swift", + "source_location": "L82", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardcontent_cardcontent_init", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardcontent_cardcontenttype", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Model/CardContent.swift", + "source_location": "L8", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardcontent_cardcontenttype", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardcontent_cardcontenttype_news", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Model/CardContent.swift", + "source_location": "L7", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardcontent_cardcontenttype", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardcontent_cardcontenttype_podcast", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Model/CardContent.swift", + "source_location": "L6", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardcontent_cardcontenttype", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardcontent_cardcontenttype_video", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Model/CardContent.swift", + "source_location": "L18", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardcontent_cardcontenttype", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardcontent_swift_newscategory", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Model/CardContent.swift", + "source_location": "L56", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardcontent_cardcontenttype", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardcontent_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Model/CardContent.swift", + "source_location": "L26", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardcontent_cardcontenttype", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardstyle_cardstyle", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CardSystemTests.swift", + "source_location": "L188", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cardsystemtests_cardcontenttypetests_highlightnewsdispatch", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardcontent_cardcontenttype" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CardSystemTests.swift", + "source_location": "L202", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cardsystemtests_cardcontenttypetests_mmtvnewsdispatch", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardcontent_cardcontenttype" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CardSystemTests.swift", + "source_location": "L144", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cardsystemtests_cardcontenttypetests_newstypecategories", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardcontent_cardcontenttype" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CardSystemTests.swift", + "source_location": "L162", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cardsystemtests_cardcontenttypetests_newstypeexplicitstyle", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardcontent_cardcontenttype" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CardSystemTests.swift", + "source_location": "L168", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cardsystemtests_cardcontenttypetests_newstypenilstyle", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardcontent_cardcontenttype" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CardSystemTests.swift", + "source_location": "L209", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cardsystemtests_cardcontenttypetests_podcastcontentrouting", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardcontent_cardcontenttype" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CardSystemTests.swift", + "source_location": "L150", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cardsystemtests_cardcontenttypetests_podcasttypecategories", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardcontent_cardcontenttype" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CardSystemTests.swift", + "source_location": "L174", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cardsystemtests_cardcontenttypetests_podcasttypestyle", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardcontent_cardcontenttype" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CardSystemTests.swift", + "source_location": "L195", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cardsystemtests_cardcontenttypetests_regularnewsdispatch", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardcontent_cardcontenttype" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CardSystemTests.swift", + "source_location": "L156", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cardsystemtests_cardcontenttypetests_videotypecategories", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardcontent_cardcontenttype" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CardSystemTests.swift", + "source_location": "L180", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cardsystemtests_cardcontenttypetests_videotypestyle", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardcontent_cardcontenttype" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Extensions/FeedDBExtensions.swift", + "source_location": "L16", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_sources_newslibrary_extensions_feeddbextensions_feeddb_tocardcontent", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardcontent_cardcontenttype" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Extensions/PodcastDBExtensions.swift", + "source_location": "L14", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_extensions_podcastdbextensions_podcastdb_tocardcontent", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardcontent_cardcontenttype" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/Model/VideoDBExtensions.swift", + "source_location": "L17", + "weight": 1.0, + "source": "macmagazine_features_videoslibrary_sources_videos_model_videodbextensions_videodb_tocardcontent", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardcontent_cardcontenttype" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Model/CardContent.swift", + "source_location": "L72", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardcontent_cardcontent", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardcontent_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Model/CardContent.swift", + "source_location": "L82", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardcontent_cardcontent_init", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardcontent_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Model/CardContent.swift", + "source_location": "L82", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardcontent_cardcontent", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardcontent_cardcontent_init", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Model/CardContent.swift", + "source_location": "L67", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardcontent_cardcontent", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardcontent_swift_analyticsmanager", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Model/CardContent.swift", + "source_location": "L74", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardcontent_cardcontent", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardcontent_swift_bool", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Model/CardContent.swift", + "source_location": "L80", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardcontent_cardcontent", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardcontent_swift_cgfloat", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Model/CardContent.swift", + "source_location": "L76", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardcontent_cardcontent", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardcontent_swift_void", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/Menu/MenuButton.swift", + "source_location": "L4", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_menu_menubutton_menubutton", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardcontent_cardcontent", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/Menu/MenuButton.swift", + "source_location": "L6", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_menu_menubutton_menubutton_init", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardcontent_cardcontent", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/Menu/MenuButton.swift", + "source_location": "L23", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_menu_menubutton_menucontent", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardcontent_cardcontent", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/Menu/MenuButton.swift", + "source_location": "L25", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_menu_menubutton_menucontent_init", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardcontent_cardcontent", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/GlassCardView.swift", + "source_location": "L13", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_glasscardview_glasscardview", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardcontent_cardcontent", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/GlassCardView.swift", + "source_location": "L19", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_glasscardview_glasscardview_init", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardcontent_cardcontent", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/LeadingImageCard.swift", + "source_location": "L18", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_leadingimagecard_leadingimagecard", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardcontent_cardcontent", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/LeadingImageCard.swift", + "source_location": "L24", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_leadingimagecard_leadingimagecard_init", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardcontent_cardcontent", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/NewsCard.swift", + "source_location": "L8", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_newscard_newscard", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardcontent_cardcontent", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/NewsCard.swift", + "source_location": "L11", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_newscard_newscard_init", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardcontent_cardcontent", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/PreviewData/ContentPreview.swift", + "source_location": "L6", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_previewdata_contentpreview_contentpreview", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardcontent_cardcontent" + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Extensions/FeedDBExtensions.swift", + "source_location": "L9", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_sources_newslibrary_extensions_feeddbextensions_feeddb_tocardcontent", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardcontent_cardcontent", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Modifiers/CardAccessibilityModifier.swift", + "source_location": "L35", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_newslibrary_sources_newslibrary_modifiers_cardaccessibilitymodifier_array_makebuttons", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardcontent_cardcontent", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Modifiers/CardAccessibilityModifier.swift", + "source_location": "L13", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_newslibrary_sources_newslibrary_modifiers_cardaccessibilitymodifier_array_maketext", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardcontent_cardcontent", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Modifiers/CardAccessibilityModifier.swift", + "source_location": "L63", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_newslibrary_sources_newslibrary_modifiers_cardaccessibilitymodifier_cardaccessibilitymodifier", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardcontent_cardcontent", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Modifiers/CardAccessibilityModifier.swift", + "source_location": "L49", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_newslibrary_sources_newslibrary_modifiers_cardaccessibilitymodifier_view_cardaccessibility", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardcontent_cardcontent", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Extensions/PodcastDBExtensions.swift", + "source_location": "L9", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_extensions_podcastdbextensions_podcastdb_tocardcontent", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardcontent_cardcontent", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Modifiers/CardAccessibilityModifier.swift", + "source_location": "L32", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_podcastlibrary_sources_podcast_modifiers_cardaccessibilitymodifier_array_makebuttons", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardcontent_cardcontent", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Modifiers/CardAccessibilityModifier.swift", + "source_location": "L13", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_podcastlibrary_sources_podcast_modifiers_cardaccessibilitymodifier_array_maketext", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardcontent_cardcontent", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Modifiers/CardAccessibilityModifier.swift", + "source_location": "L60", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_podcastlibrary_sources_podcast_modifiers_cardaccessibilitymodifier_cardaccessibilitymodifier", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardcontent_cardcontent", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Modifiers/CardAccessibilityModifier.swift", + "source_location": "L46", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_podcastlibrary_sources_podcast_modifiers_cardaccessibilitymodifier_view_cardaccessibility", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardcontent_cardcontent", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Card/AdaptivePodcastCardView.swift", + "source_location": "L10", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_card_adaptivepodcastcardview_adaptivepodcastcardview", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardcontent_cardcontent", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Card/AdaptivePodcastCardView.swift", + "source_location": "L13", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_card_adaptivepodcastcardview_adaptivepodcastcardview_init", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardcontent_cardcontent", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Card/GlassPodcastCardView.swift", + "source_location": "L10", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_card_glasspodcastcardview_glasspodcastcardview", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardcontent_cardcontent", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Card/GlassPodcastCardView.swift", + "source_location": "L13", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_card_glasspodcastcardview_glasspodcastcardview_init", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardcontent_cardcontent", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Card/PodcastCardView.swift", + "source_location": "L11", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_card_podcastcardview_podcastcardview", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardcontent_cardcontent", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Card/PodcastCardView.swift", + "source_location": "L14", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_card_podcastcardview_podcastcardview_init", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardcontent_cardcontent", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/Model/VideoDBExtensions.swift", + "source_location": "L13", + "weight": 1.0, + "source": "macmagazine_features_videoslibrary_sources_videos_model_videodbextensions_videodb_tocardcontent", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardcontent_cardcontent", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Model/CardContent.swift", + "source_location": "L82", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardcontent_cardcontent_init", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardcontent_swift_analyticsmanager", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Model/CardContent.swift", + "source_location": "L82", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardcontent_cardcontent_init", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardcontent_swift_bool", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Model/CardContent.swift", + "source_location": "L82", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardcontent_cardcontent_init", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardcontent_swift_void", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Model/CardContent.swift", + "source_location": "L82", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardcontent_cardcontent_init", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardcontent_swift_cgfloat", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Model/CardStyle.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardstyle", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardstyle_cardstyle", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Model/CardStyle.swift", + "source_location": "L10", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardstyle", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardstyle_newscategory", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Model/CardStyle.swift", + "source_location": "L7", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardstyle_cardstyle", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardstyle_cardstyle_glass", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Model/CardStyle.swift", + "source_location": "L6", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardstyle_cardstyle", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardstyle_cardstyle_highlight", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Model/CardStyle.swift", + "source_location": "L5", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardstyle_cardstyle", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardstyle_cardstyle_leadingimage", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Model/CardStyle.swift", + "source_location": "L11", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardstyle_newscategory", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardstyle_cardstyle", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Extensions/FeedDBExtensions.swift", + "source_location": "L9", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_newslibrary_sources_newslibrary_extensions_feeddbextensions_feeddb_tocardcontent", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardstyle_cardstyle", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/FavoriteAndShare/FavoriteButton.swift", + "source_location": "L6", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_favoriteandshare_favoritebutton", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_favoriteandshare_favoritebutton_favoritebutton", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/FavoriteAndShare/FavoriteButton.swift", + "source_location": "L11", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_favoriteandshare_favoritebutton_favoritebutton", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_favoriteandshare_favoritebutton_favoritebutton_init", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/FavoriteAndShare/FavoriteButton.swift", + "source_location": "L8", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_favoriteandshare_favoritebutton_favoritebutton", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_favoriteandshare_favoritebutton_swift_bool", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/FavoriteAndShare/FavoriteButton.swift", + "source_location": "L7", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_favoriteandshare_favoritebutton_favoritebutton", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_favoriteandshare_favoritebutton_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/FavoriteAndShare/FavoriteButton.swift", + "source_location": "L9", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_favoriteandshare_favoritebutton_favoritebutton", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_favoriteandshare_favoritebutton_swift_void", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/FavoriteAndShare/FavoriteButton.swift", + "source_location": "L21", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_favoriteandshare_favoritebutton_favoritebutton", + "target": "view", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Modifiers/CardAccessibilityModifier.swift", + "source_location": "L40", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_sources_newslibrary_modifiers_cardaccessibilitymodifier_array_makebuttons", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_favoriteandshare_favoritebutton_favoritebutton" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Modifiers/CardAccessibilityModifier.swift", + "source_location": "L37", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_modifiers_cardaccessibilitymodifier_array_makebuttons", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_favoriteandshare_favoritebutton_favoritebutton" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/FavoriteAndShare/FavoriteShareGlassContainer.swift", + "source_location": "L15", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_favoriteandshare_favoriteshareglasscontainer_favoriteshareglasscontainer", + "target": "view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/FavoriteAndShare/ShareButton.swift", + "source_location": "L17", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_favoriteandshare_sharebutton_sharebutton", + "target": "view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/Menu/MenuButton.swift", + "source_location": "L10", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_menu_menubutton_menubutton", + "target": "view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/Menu/MenuButton.swift", + "source_location": "L29", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_menu_menubutton_menucontent", + "target": "view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/Metadata/MetadataContent.swift", + "source_location": "L12", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_metadata_metadatacontent_metadatacontent", + "target": "view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/Metadata/MetadataDuration.swift", + "source_location": "L11", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_metadata_metadataduration_metadataduration", + "target": "view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/GlassCardView.swift", + "source_location": "L236", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_glasscardview_glasscardview", + "target": "view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/GlassCardView.swift", + "source_location": "L102", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_glasscardview_glasscardview_thumbnail", + "target": "view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/LeadingImageCard.swift", + "source_location": "L103", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_leadingimagecard_leadingimagecard", + "target": "view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/NewsCard.swift", + "source_location": "L27", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_newscard_newscard", + "target": "view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/MenuView.swift", + "source_location": "L10", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_menuview_menuview", + "target": "view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/PaginatedForEach.swift", + "source_location": "L33", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_paginatedforeach_paginatedforeach", + "target": "view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/Disqus/DisqusWebView.swift", + "source_location": "L142", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_disqus_disquswebview_disqusloginwebview", + "target": "view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/Disqus/DisqusWebView.swift", + "source_location": "L17", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_disqus_disquswebview_disqussheet", + "target": "view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/ManagedWebView.swift", + "source_location": "L105", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_managedwebview", + "target": "view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift", + "source_location": "L32", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview", + "target": "view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WebViewStatus.swift", + "source_location": "L13", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_webviewstatus_webviewstatusoverlay", + "target": "view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/CollectionViewWithHeader.swift", + "source_location": "L62", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_newslibrary_sources_newslibrary_views_components_collectionviewwithheader_collectionviewwithheader", + "target": "view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/FeedHighlightCardView.swift", + "source_location": "L24", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_newslibrary_sources_newslibrary_views_components_feedhighlightcardview_feedhighlightcardview", + "target": "view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/FeedHighlightsCarouselView.swift", + "source_location": "L81", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_newslibrary_sources_newslibrary_views_components_feedhighlightscarouselview_feedhighlightscarouselview", + "target": "view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/NewsView.swift", + "source_location": "L254", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_newslibrary_sources_newslibrary_views_newsview_newsview", + "target": "view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Components/OnboardingCTAButton.swift", + "source_location": "L32", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_onboardingctabutton_onboardingctabutton", + "target": "view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Components/OnboardingLogoView.swift", + "source_location": "L20", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_onboardinglogoview_onboardinglogoview", + "target": "view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Components/OnboardingSkipButton.swift", + "source_location": "L22", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_onboardingskipbutton_onboardingskipbutton", + "target": "view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Components/OnboardingTitleView.swift", + "source_location": "L24", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_onboardingtitleview_onboardingtitleview", + "target": "view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Components/PermissionCard.swift", + "source_location": "L62", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_permissioncard_permissioncard", + "target": "view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/OnboardingContainerView.swift", + "source_location": "L19", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_onboardingcontainerview_onboardingcontainerview", + "target": "view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/OnboardingContainerView.swift", + "source_location": "L59", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_onboardingcontainerview_onboardingsheetpreviewhost", + "target": "view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Screen1_WelcomeView.swift", + "source_location": "L171", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_screen1_welcomeview_welcomesheetpreviewhost", + "target": "view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Screen1_WelcomeView.swift", + "source_location": "L129", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_screen1_welcomeview_welcomeview", + "target": "view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Screen1_WelcomeView.swift", + "source_location": "L104", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_screen1_welcomeview_welcomeview_logoview", + "target": "view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Screen2_FeaturesView.swift", + "source_location": "L267", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_screen2_featuresview_featuresview", + "target": "view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Screen2_FeaturesView.swift", + "source_location": "L196", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_screen2_featuresview_featuresview_cardview", + "target": "view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Screen2_FeaturesView.swift", + "source_location": "L187", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_screen2_featuresview_featuresview_pageview", + "target": "view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Screen2_FeaturesView.swift", + "source_location": "L309", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_screen2_featuresview_featuresviewsheetpreviewhost", + "target": "view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Screen3_PermissionsView.swift", + "source_location": "L205", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_screen3_permissionsview_permissionsview", + "target": "view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Screen3_PermissionsView.swift", + "source_location": "L250", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_screen3_permissionsview_permissionviewsheetpreviewhost", + "target": "view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Card/AdaptivePodcastCardView.swift", + "source_location": "L27", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_card_adaptivepodcastcardview_adaptivepodcastcardview", + "target": "view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Card/GlassPodcastCardView.swift", + "source_location": "L18", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_card_glasspodcastcardview_glasspodcastcardview", + "target": "view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Card/PodcastCardView.swift", + "source_location": "L78", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_card_podcastcardview_podcastcardview", + "target": "view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/ChaptersView.swift", + "source_location": "L55", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_chaptersview_chaptersview", + "target": "view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/ChaptersView.swift", + "source_location": "L134", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_chaptersview_chaptersview_cardbackground", + "target": "view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/ChaptersView.swift", + "source_location": "L69", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_chaptersview_chaptersview_chapterrow", + "target": "view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/ChaptersView.swift", + "source_location": "L156", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_chaptersview_chaptersview_progressbar", + "target": "view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/FullPlayerView.swift", + "source_location": "L575", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_fullplayerview_fullplayerview", + "target": "view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/FullPlayerView.swift", + "source_location": "L115", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_fullplayerview_fullplayerview_fullplayercontent", + "target": "view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/FullPlayerView.swift", + "source_location": "L229", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_fullplayerview_fullplayerview_podcasttitle", + "target": "view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/FullPlayerView.swift", + "source_location": "L411", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_fullplayerview_fullplayerview_skipbutton", + "target": "view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/Background/BackgroundView.swift", + "source_location": "L28", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_background_backgroundview_backgroundview", + "target": "view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/PodcastImageView.swift", + "source_location": "L15", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_podcastimageview_podcastimageview", + "target": "view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/PodcastImageView.swift", + "source_location": "L49", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_podcastimageview_podcastimageview_coverimage", + "target": "view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/PodcastImageView.swift", + "source_location": "L28", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_podcastimageview_podcastimageview_dataimage", + "target": "view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/ScrollStylePicker.swift", + "source_location": "L39", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_scrollstylepicker_speedwheelpicker", + "target": "view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/ScrollStylePicker.swift", + "source_location": "L177", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_scrollstylepicker_wrapper", + "target": "view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/Ticker.swift", + "source_location": "L10", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_ticker_ticker", + "target": "view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/MiniPlayerView.swift", + "source_location": "L81", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_miniplayerview_miniplayerview", + "target": "view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/MiniPlayerView.swift", + "source_location": "L143", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_miniplayerview_miniplayerview_artwork", + "target": "view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/PodcastView.swift", + "source_location": "L70", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_podcastview_podcastview", + "target": "view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/RecentSearchesView.swift", + "source_location": "L9", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_views_recentsearchesview_recentsearchesview", + "target": "view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchResultsList.swift", + "source_location": "L22", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist_searchresultslist", + "target": "view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchResultsList.swift", + "source_location": "L50", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist_searchresultslist_newscard", + "target": "view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchResultsList.swift", + "source_location": "L71", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist_searchresultslist_podcastcard", + "target": "view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchResultsList.swift", + "source_location": "L33", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist_searchresultslist_resultcard", + "target": "view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchResultsList.swift", + "source_location": "L86", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist_searchresultslist_videocard", + "target": "view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchView.swift", + "source_location": "L298", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchview_searchview", + "target": "view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchView.swift", + "source_location": "L185", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchview_searchview_errorcontent", + "target": "view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/SettingsView.swift", + "source_location": "L122", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_settingsview_contentsheet", + "target": "view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/SettingsView.swift", + "source_location": "L168", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_settingsview_patronloginsheet", + "target": "view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/SettingsView.swift", + "source_location": "L88", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_settingsview_settingsview", + "target": "view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/AboutView.swift", + "source_location": "L48", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_aboutview_aboutview", + "target": "view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/AppearanceView.swift", + "source_location": "L46", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_appearanceview_appearanceview", + "target": "view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/CustomSocialView.swift", + "source_location": "L38", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_customsocialview_customsocialview", + "target": "view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/CustomTabView.swift", + "source_location": "L39", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_customtabview_customtabview", + "target": "view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/IconsView.swift", + "source_location": "L50", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_iconsview_iconsview", + "target": "view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/PostsVisibilityView.swift", + "source_location": "L46", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_postsvisibilityview_postsvisibilityview", + "target": "view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/PushOptionsView.swift", + "source_location": "L38", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_pushoptionsview_pushoptionsview", + "target": "view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/ReadingPreferencesView.swift", + "source_location": "L13", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_readingpreferencesview_readingpreferencesview", + "target": "view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/SubscriptionView.swift", + "source_location": "L172", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_subscriptionview_subscriptionview", + "target": "view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/SubscriptionView.swift", + "source_location": "L101", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_subscriptionview_subscriptionview_subscriptions", + "target": "view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/VideosView.swift", + "source_location": "L36", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_videoslibrary_sources_videos_videosview_videosview", + "target": "view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/Features/News/DeepLinkNewsDetailView.swift", + "source_location": "L71", + "weight": 1.0, + "context": "field", + "source": "macmagazine_macmagazine_features_news_deeplinknewsdetailview_deeplinknewsdetailview", + "target": "view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/Features/News/NewsView.swift", + "source_location": "L84", + "weight": 1.0, + "context": "field", + "source": "macmagazine_macmagazine_features_news_newsview_newsview", + "target": "view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/Features/Social/SocialView.swift", + "source_location": "L100", + "weight": 1.0, + "context": "field", + "source": "macmagazine_macmagazine_features_social_socialview_socialview", + "target": "view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/MacMagazineApp.swift", + "source_location": "L126", + "weight": 1.0, + "context": "field", + "source": "macmagazine_macmagazine_mainapp_macmagazineapp_sceneview", + "target": "view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/MainView.swift", + "source_location": "L61", + "weight": 1.0, + "context": "field", + "source": "macmagazine_macmagazine_mainapp_mainview_mainview", + "target": "view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/Helper/FeedDotsIndicatorView.swift", + "source_location": "L18", + "weight": 1.0, + "context": "field", + "source": "macmagazine_watchapp_helper_feeddotsindicatorview_feeddotsindicatorview", + "target": "view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/Views/FeedDetailView.swift", + "source_location": "L53", + "weight": 1.0, + "context": "field", + "source": "macmagazine_watchapp_views_feeddetailview_feeddetailview", + "target": "view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/Views/FeedMainView.swift", + "source_location": "L252", + "weight": 1.0, + "context": "field", + "source": "macmagazine_watchapp_views_feedmainview_feedmainview", + "target": "view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/Views/FeedMainView.swift", + "source_location": "L185", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_watchapp_views_feedmainview_feedmainview_carouselrowscreen", + "target": "view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/Views/FeedMainView.swift", + "source_location": "L237", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_watchapp_views_feedmainview_feedmainview_contextmenusheet", + "target": "view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/Views/FeedMainView.swift", + "source_location": "L114", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_watchapp_views_feedmainview_feedmainview_errorscreen", + "target": "view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/Views/FeedMainView.swift", + "source_location": "L91", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_watchapp_views_feedmainview_feedmainview_navigationtitle", + "target": "view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/Views/FeedMainView.swift", + "source_location": "L142", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_watchapp_views_feedmainview_feedmainview_statusscreen", + "target": "view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/Views/FeedMainView.swift", + "source_location": "L315", + "weight": 1.0, + "context": "field", + "source": "macmagazine_watchapp_views_feedmainview_feedpreviewhost", + "target": "view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/Views/Row/FeedRowView.swift", + "source_location": "L48", + "weight": 1.0, + "context": "field", + "source": "macmagazine_watchapp_views_row_feedrowview_feedrowview", + "target": "view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/Views/Row/FeedRowView.swift", + "source_location": "L20", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_watchapp_views_row_feedrowview_feedrowview_background", + "target": "view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchWidget/Views/WatchWidgetEntryView.swift", + "source_location": "L83", + "weight": 1.0, + "context": "field", + "source": "macmagazine_watchwidget_views_watchwidgetentryview_watchwidgetentryview", + "target": "view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/Views/WidgetElementView.swift", + "source_location": "L127", + "weight": 1.0, + "context": "field", + "source": "macmagazine_widget_views_widgetelementview_widgetelementview", + "target": "view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/Views/WidgetView.swift", + "source_location": "L13", + "weight": 1.0, + "context": "field", + "source": "macmagazine_widget_views_widgetview_widgetview", + "target": "view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/Views/WidgetView.swift", + "source_location": "L38", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_widget_views_widgetview_widgetview_content", + "target": "view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/FavoriteAndShare/FavoriteButton.swift", + "source_location": "L11", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_favoriteandshare_favoritebutton_favoritebutton_init", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_favoriteandshare_favoritebutton_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/FavoriteAndShare/FavoriteButton.swift", + "source_location": "L11", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_favoriteandshare_favoritebutton_favoritebutton_init", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_favoriteandshare_favoritebutton_swift_bool", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/FavoriteAndShare/FavoriteButton.swift", + "source_location": "L11", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_favoriteandshare_favoritebutton_favoritebutton_init", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_favoriteandshare_favoritebutton_swift_void", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/FavoriteAndShare/FavoriteShareGlassContainer.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_favoriteandshare_favoriteshareglasscontainer", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_favoriteandshare_favoriteshareglasscontainer_favoriteshareglasscontainer", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/FavoriteAndShare/FavoriteShareGlassContainer.swift", + "source_location": "L4", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_favoriteandshare_favoriteshareglasscontainer_favoriteshareglasscontainer", + "target": "favoriteview", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/FavoriteAndShare/FavoriteShareGlassContainer.swift", + "source_location": "L7", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_favoriteandshare_favoriteshareglasscontainer_favoriteshareglasscontainer", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_favoriteandshare_favoriteshareglasscontainer_favoriteshareglasscontainer_init", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/FavoriteAndShare/FavoriteShareGlassContainer.swift", + "source_location": "L5", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_favoriteandshare_favoriteshareglasscontainer_favoriteshareglasscontainer", + "target": "shareview", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/FavoriteAndShare/FavoriteShareGlassContainer.swift", + "source_location": "L7", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_favoriteandshare_favoriteshareglasscontainer_favoriteshareglasscontainer_init", + "target": "favoriteview", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/FavoriteAndShare/FavoriteShareGlassContainer.swift", + "source_location": "L7", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_favoriteandshare_favoriteshareglasscontainer_favoriteshareglasscontainer_init", + "target": "shareview", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/FavoriteAndShare/ShareButton.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_favoriteandshare_sharebutton", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_favoriteandshare_sharebutton_sharebutton", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/FavoriteAndShare/ShareButton.swift", + "source_location": "L8", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_favoriteandshare_sharebutton_sharebutton", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_favoriteandshare_sharebutton_sharebutton_init", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/FavoriteAndShare/ShareButton.swift", + "source_location": "L5", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_favoriteandshare_sharebutton_sharebutton", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_favoriteandshare_sharebutton_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/FavoriteAndShare/ShareButton.swift", + "source_location": "L6", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_favoriteandshare_sharebutton_sharebutton", + "target": "macmagazine_widget_models_widgetdata_url", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Modifiers/CardAccessibilityModifier.swift", + "source_location": "L42", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_sources_newslibrary_modifiers_cardaccessibilitymodifier_array_makebuttons", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_favoriteandshare_sharebutton_sharebutton" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Modifiers/CardAccessibilityModifier.swift", + "source_location": "L39", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_modifiers_cardaccessibilitymodifier_array_makebuttons", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_favoriteandshare_sharebutton_sharebutton" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/FavoriteAndShare/ShareButton.swift", + "source_location": "L8", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_favoriteandshare_sharebutton_sharebutton_init", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_favoriteandshare_sharebutton_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/Menu/MenuButton.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_menu_menubutton", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_menu_menubutton_menubutton", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/Menu/MenuButton.swift", + "source_location": "L49", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_menu_menubutton", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_menu_menubutton_menucontent", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/Menu/MenuButton.swift", + "source_location": "L6", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_menu_menubutton_menubutton", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_menu_menubutton_menubutton_init", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/Menu/MenuButton.swift", + "source_location": "L25", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_menu_menubutton_menucontent", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_menu_menubutton_menucontent_init", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/Menu/MenuButton.swift", + "source_location": "L58", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_menu_menubutton_menucontent", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_menu_menubutton_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/Metadata/MetadataContent.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_metadata_metadatacontent", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_metadata_metadatacontent_metadatacontent", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/Metadata/MetadataContent.swift", + "source_location": "L7", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_metadata_metadatacontent_metadatacontent", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_metadata_metadatacontent_metadatacontent_init", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/Metadata/MetadataContent.swift", + "source_location": "L5", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_metadata_metadatacontent_metadatacontent", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_metadata_metadatacontent_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/Metadata/MetadataContent.swift", + "source_location": "L7", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_metadata_metadatacontent_metadatacontent_init", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_metadata_metadatacontent_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/Metadata/MetadataDuration.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_metadata_metadataduration", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_metadata_metadataduration_metadataduration", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/Metadata/MetadataDuration.swift", + "source_location": "L7", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_metadata_metadataduration_metadataduration", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_metadata_metadataduration_metadataduration_init", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/Metadata/MetadataDuration.swift", + "source_location": "L5", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_metadata_metadataduration_metadataduration", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_metadata_metadataduration_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/Metadata/MetadataDuration.swift", + "source_location": "L7", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_metadata_metadataduration_metadataduration_init", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_metadata_metadataduration_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/GlassCardView.swift", + "source_location": "L235", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_glasscardview", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_glasscardview_glasscardview", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/GlassCardView.swift", + "source_location": "L86", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_glasscardview_glasscardview", + "target": "lineargradient", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/GlassCardView.swift", + "source_location": "L19", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_glasscardview_glasscardview", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_glasscardview_glasscardview_init", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/GlassCardView.swift", + "source_location": "L102", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_glasscardview_glasscardview", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_glasscardview_glasscardview_thumbnail", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/GlassCardView.swift", + "source_location": "L9", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_glasscardview_glasscardview", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_glasscardview_swift_analyticsmanager", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/GlassCardView.swift", + "source_location": "L15", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_glasscardview_glasscardview", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_glasscardview_swift_cgfloat", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/GlassCardView.swift", + "source_location": "L102", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_glasscardview_glasscardview_thumbnail", + "target": "macmagazine_widget_models_widgetdata_url", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/LeadingImageCard.swift", + "source_location": "L8", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_leadingimagecard", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_leadingimagecard_cardmetrics", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/LeadingImageCard.swift", + "source_location": "L67", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_leadingimagecard", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_leadingimagecard_leadingimagecard", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/LeadingImageCard.swift", + "source_location": "L24", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_leadingimagecard_leadingimagecard", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_leadingimagecard_leadingimagecard_init", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/LeadingImageCard.swift", + "source_location": "L14", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_leadingimagecard_leadingimagecard", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_leadingimagecard_swift_analyticsmanager", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/LeadingImageCard.swift", + "source_location": "L20", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_leadingimagecard_leadingimagecard", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_leadingimagecard_swift_cgfloat", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/LeadingImageCard.swift", + "source_location": "L11", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_leadingimagecard_cardmetrics", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_leadingimagecard_swift_cgfloat", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/NewsCard.swift", + "source_location": "L26", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_newscard", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_newscard_newscard", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/NewsCard.swift", + "source_location": "L11", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_newscard_newscard", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_newscard_newscard_init", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/NewsCard.swift", + "source_location": "L9", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_newscard_newscard", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_newscard_swift_void", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchResultsList.swift", + "source_location": "L60", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist_searchresultslist_newscard", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_newscard_newscard" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/NewsCard.swift", + "source_location": "L11", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_newscard_newscard_init", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_newscard_swift_void", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/MenuView.swift", + "source_location": "L43", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_menuview", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_menuview_menuview", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/MenuView.swift", + "source_location": "L44", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_menuview_menuview", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_menuview_menuview_effect", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/MenuView.swift", + "source_location": "L36", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_menuview_menuview", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_menuview_menuview_init", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/MenuView.swift", + "source_location": "L8", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_menuview_menuview", + "target": "t", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/MenuView.swift", + "source_location": "L36", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_menuview_menuview_init", + "target": "t", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/MenuView.swift", + "source_location": "L36", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_menuview_menuview_init", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_menuview_swift_binding", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/MenuView.swift", + "source_location": "L44", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_menuview_menuview_effect", + "target": "glass", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/MenuView.swift", + "source_location": "L44", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_menuview_menuview_effect", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_menuview_swift_bool", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/PaginatedForEach.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_paginatedforeach", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_paginatedforeach_paginatedforeach", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/PaginatedForEach.swift", + "source_location": "L12", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_paginatedforeach_paginatedforeach", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_paginatedforeach_paginatedforeach_init", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/PaginatedForEach.swift", + "source_location": "L51", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_paginatedforeach_paginatedforeach", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_paginatedforeach_paginatedforeach_loadmore", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/PaginatedForEach.swift", + "source_location": "L29", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_paginatedforeach_paginatedforeach", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_paginatedforeach_swift_bool", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/PaginatedForEach.swift", + "source_location": "L8", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_paginatedforeach_paginatedforeach", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_paginatedforeach_swift_content", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/PaginatedForEach.swift", + "source_location": "L25", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_paginatedforeach_paginatedforeach", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_paginatedforeach_swift_element", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/PaginatedForEach.swift", + "source_location": "L25", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_paginatedforeach_paginatedforeach", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_paginatedforeach_swift_int", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/PaginatedForEach.swift", + "source_location": "L12", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_paginatedforeach_paginatedforeach_init", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_paginatedforeach_swift_element", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/PaginatedForEach.swift", + "source_location": "L12", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_paginatedforeach_paginatedforeach_init", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_paginatedforeach_swift_int", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/PaginatedForEach.swift", + "source_location": "L12", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_paginatedforeach_paginatedforeach_init", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_paginatedforeach_swift_content", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/PreviewData/ContentPreview.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_previewdata_contentpreview", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_previewdata_contentpreview_contentpreview", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/Cookies.swift", + "source_location": "L154", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_cookies", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_cookies_cookies", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/Cookies.swift", + "source_location": "L162", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_cookies", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_cookies_string", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/Cookies.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_cookies", + "target": "webkit", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/Disqus/DisqusDataStore.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_disqus_disqusdatastore", + "target": "webkit", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/Disqus/DisqusNewWindowHandler.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_disqus_disqusnewwindowhandler", + "target": "webkit", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/Disqus/DisqusWebView.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_disqus_disquswebview", + "target": "webkit", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/GalleryStateMessageHandler.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_gallerystatemessagehandler", + "target": "webkit", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/ManagedWebView.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview", + "target": "webkit", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMNavigationDecider.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmnavigationdecider", + "target": "webkit", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview", + "target": "webkit", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebViewUserScripts.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebviewuserscripts", + "target": "webkit", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WebPageCache.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_webpagecache", + "target": "webkit", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/SettingsView.swift", + "source_location": "L5", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_settingsview", + "target": "webkit", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/Cookies.swift", + "source_location": "L49", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_cookies_cookies", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_cookies_cookies_createcolorschema", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/Cookies.swift", + "source_location": "L60", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_cookies_cookies", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_cookies_cookies_createdarkmode", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/Cookies.swift", + "source_location": "L71", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_cookies_cookies", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_cookies_cookies_createfont", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/Cookies.swift", + "source_location": "L93", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_cookies_cookies", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_cookies_cookies_createpurchased", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/Cookies.swift", + "source_location": "L82", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_cookies_cookies", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_cookies_cookies_createversion", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/Cookies.swift", + "source_location": "L106", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_cookies_cookies", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_cookies_cookies_makecookies", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/Cookies.swift", + "source_location": "L31", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_cookies_cookies", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_cookies_cookies_restoredisquscookies", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/Cookies.swift", + "source_location": "L15", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_cookies_cookies", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_cookies_cookies_savedisquscookies", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/Cookies.swift", + "source_location": "L155", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_cookies_cookies", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_cookies_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/Cookies.swift", + "source_location": "L8", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_cookies_cookies", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_cookies_swift_timeinterval", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/Cookies.swift", + "source_location": "L15", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_cookies_cookies_savedisquscookies", + "target": "wkhttpcookiestore", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/Cookies.swift", + "source_location": "L31", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_cookies_cookies_restoredisquscookies", + "target": "wkhttpcookiestore", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/Cookies.swift", + "source_location": "L43", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_cookies_cookies_restoredisquscookies", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_cookies_swift_httpcookie", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/Disqus/DisqusWebView.swift", + "source_location": "L96", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_disqus_disquswebview_disqussheet_setuppage", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_cookies_cookies_restoredisquscookies" + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/Cookies.swift", + "source_location": "L49", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_cookies_cookies_createcolorschema", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_cookies_swift_httpcookie", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/Cookies.swift", + "source_location": "L49", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_cookies_cookies_createcolorschema", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_cookies_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/Cookies.swift", + "source_location": "L117", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_cookies_cookies_makecookies", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_cookies_cookies_createcolorschema", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CookiesTests.swift", + "source_location": "L159", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cookiestests_cookiestests_createcolorschemadark", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_cookies_cookies_createcolorschema" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CookiesTests.swift", + "source_location": "L170", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cookiestests_cookiestests_createcolorschemalight", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_cookies_cookies_createcolorschema" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/Cookies.swift", + "source_location": "L60", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_cookies_cookies_createdarkmode", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_cookies_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/Cookies.swift", + "source_location": "L71", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_cookies_cookies_createfont", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_cookies_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/Cookies.swift", + "source_location": "L93", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_cookies_cookies_createpurchased", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_cookies_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/Cookies.swift", + "source_location": "L82", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_cookies_cookies_createversion", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_cookies_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/Cookies.swift", + "source_location": "L106", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_cookies_cookies_makecookies", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_cookies_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/Cookies.swift", + "source_location": "L60", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_cookies_cookies_createdarkmode", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_cookies_swift_httpcookie", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/Cookies.swift", + "source_location": "L71", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_cookies_cookies_createfont", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_cookies_swift_httpcookie", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/Cookies.swift", + "source_location": "L93", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_cookies_cookies_createpurchased", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_cookies_swift_httpcookie", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/Cookies.swift", + "source_location": "L82", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_cookies_cookies_createversion", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_cookies_swift_httpcookie", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/Cookies.swift", + "source_location": "L106", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_cookies_cookies_makecookies", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_cookies_swift_httpcookie", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/Cookies.swift", + "source_location": "L114", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_cookies_cookies_makecookies", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_cookies_cookies_createdarkmode", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CookiesTests.swift", + "source_location": "L149", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cookiestests_cookiestests_createdarkmodecookiefalse", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_cookies_cookies_createdarkmode" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CookiesTests.swift", + "source_location": "L135", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cookiestests_cookiestests_createdarkmodecookietrue", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_cookies_cookies_createdarkmode" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/Cookies.swift", + "source_location": "L121", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_cookies_cookies_makecookies", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_cookies_cookies_createfont", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CookiesTests.swift", + "source_location": "L180", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cookiestests_cookiestests_createfontcookie", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_cookies_cookies_createfont" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CookiesTests.swift", + "source_location": "L191", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cookiestests_cookiestests_createversioncookie", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_cookies_cookies_createversion" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/Cookies.swift", + "source_location": "L125", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_cookies_cookies_makecookies", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_cookies_cookies_createpurchased", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CookiesTests.swift", + "source_location": "L202", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cookiestests_cookiestests_createpurchasedcookie", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_cookies_cookies_createpurchased" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/Cookies.swift", + "source_location": "L106", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_cookies_cookies_makecookies", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_cookies_swift_bool", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CookiesTests.swift", + "source_location": "L309", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cookiestests_cookiestests_allcookiescorrectdomain", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_cookies_cookies_makecookies" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CookiesTests.swift", + "source_location": "L345", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cookiestests_cookiestests_allcookieshaveexpiration", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_cookies_cookies_makecookies" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CookiesTests.swift", + "source_location": "L333", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cookiestests_cookiestests_allcookiesrootpath", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_cookies_cookies_makecookies" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CookiesTests.swift", + "source_location": "L321", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cookiestests_cookiestests_allcookiessecure", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_cookies_cookies_makecookies" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CookiesTests.swift", + "source_location": "L281", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cookiestests_cookiestests_makecookiesallparameters", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_cookies_cookies_makecookies" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CookiesTests.swift", + "source_location": "L248", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cookiestests_cookiestests_makecookiescustomfont", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_cookies_cookies_makecookies" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CookiesTests.swift", + "source_location": "L216", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cookiestests_cookiestests_makecookiesdarkmode", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_cookies_cookies_makecookies" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CookiesTests.swift", + "source_location": "L232", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cookiestests_cookiestests_makecookieslightmode", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_cookies_cookies_makecookies" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CookiesTests.swift", + "source_location": "L296", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cookiestests_cookiestests_makecookiesnilremoveads", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_cookies_cookies_makecookies" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CookiesTests.swift", + "source_location": "L270", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cookiestests_cookiestests_makecookiesnoremoveads", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_cookies_cookies_makecookies" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CookiesTests.swift", + "source_location": "L259", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cookiestests_cookiestests_makecookiesremoveads", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_cookies_cookies_makecookies" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/Cookies.swift", + "source_location": "L163", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_cookies_string_llamacase", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_cookies_string", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/Disqus/DisqusDataStore.swift", + "source_location": "L6", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_disqus_disqusdatastore", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_disqus_disqusdatastore_disqusdatastore", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/Disqus/DisqusDataStore.swift", + "source_location": "L9", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_disqus_disqusdatastore_disqusdatastore", + "target": "wkwebsitedatastore" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/Disqus/DisqusHTMLBuilder.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_disqus_disqushtmlbuilder", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_disqus_disqushtmlbuilder_disqushtmlbuilder", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/Disqus/DisqusHTMLBuilder.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_disqus_disqushtmlbuilder_disqushtmlbuilder", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_disqus_disqushtmlbuilder_disqushtmlbuilder_makehtml", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/Disqus/DisqusHTMLBuilder.swift", + "source_location": "L4", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_disqus_disqushtmlbuilder_disqushtmlbuilder_makehtml", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_disqus_disqushtmlbuilder_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/Disqus/DisqusHTMLBuilder.swift", + "source_location": "L4", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_disqus_disqushtmlbuilder_disqushtmlbuilder_makehtml", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_colorscheme_colorscheme", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/Disqus/DisqusWebView.swift", + "source_location": "L115", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_disqus_disquswebview_disqussheet_loadcontent", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_disqus_disqushtmlbuilder_disqushtmlbuilder_makehtml" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/Disqus/DisqusNewWindowHandler.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_disqus_disqusnewwindowhandler", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_disqus_disqusnewwindowhandler_disqusnewwindowhandler", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/Disqus/DisqusNewWindowHandler.swift", + "source_location": "L7", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_disqus_disqusnewwindowhandler_disqusnewwindowhandler", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_disqus_disqusnewwindowhandler_disqusnewwindowhandler_usercontentcontroller", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/Disqus/DisqusNewWindowHandler.swift", + "source_location": "L5", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_disqus_disqusnewwindowhandler_disqusnewwindowhandler", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_disqus_disqusnewwindowhandler_swift_mainactor", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/Disqus/DisqusNewWindowHandler.swift", + "source_location": "L5", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_disqus_disqusnewwindowhandler_disqusnewwindowhandler", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_disqus_disqusnewwindowhandler_swift_void", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/Disqus/DisqusNewWindowHandler.swift", + "source_location": "L5", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_disqus_disqusnewwindowhandler_disqusnewwindowhandler", + "target": "macmagazine_widget_models_widgetdata_url", + "confidence_score": 1.0 + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/Disqus/DisqusNewWindowHandler.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_disqus_disqusnewwindowhandler_disqusnewwindowhandler", + "target": "wkscriptmessagehandler", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/Disqus/DisqusWebView.swift", + "source_location": "L10", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_disqus_disquswebview_disqussheet", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_disqus_disqusnewwindowhandler_disqusnewwindowhandler" + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/GalleryStateMessageHandler.swift", + "source_location": "L5", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_gallerystatemessagehandler_gallerystatemessagehandler", + "target": "wkscriptmessagehandler", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/Disqus/DisqusNewWindowHandler.swift", + "source_location": "L7", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_disqus_disqusnewwindowhandler_disqusnewwindowhandler_usercontentcontroller", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_disqus_disqusnewwindowhandler_swift_wkscriptmessage", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/Disqus/DisqusNewWindowHandler.swift", + "source_location": "L7", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_disqus_disqusnewwindowhandler_disqusnewwindowhandler_usercontentcontroller", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_disqus_disqusnewwindowhandler_swift_wkusercontentcontroller", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/Disqus/DisqusWebView.swift", + "source_location": "L135", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_disqus_disquswebview", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_disqus_disquswebview_disqusloginwebview", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/Disqus/DisqusWebView.swift", + "source_location": "L85", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_disqus_disquswebview", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_disqus_disquswebview_disqussheet", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/Disqus/DisqusWebView.swift", + "source_location": "L86", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_disqus_disquswebview_disqussheet", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_disqus_disquswebview_disqussheet_configurenewwindowhandler", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/Disqus/DisqusWebView.swift", + "source_location": "L113", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_disqus_disquswebview_disqussheet", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_disqus_disquswebview_disqussheet_loadcontent", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/Disqus/DisqusWebView.swift", + "source_location": "L107", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_disqus_disquswebview_disqussheet", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_disqus_disquswebview_disqussheet_reloadpage", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/Disqus/DisqusWebView.swift", + "source_location": "L92", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_disqus_disquswebview_disqussheet", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_disqus_disquswebview_disqussheet_setuppage", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/Disqus/DisqusWebView.swift", + "source_location": "L14", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_disqus_disquswebview_disqussheet", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_disqus_disquswebview_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/Disqus/DisqusWebView.swift", + "source_location": "L15", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_disqus_disquswebview_disqussheet", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_disqus_disquswebview_swift_void", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/Disqus/DisqusWebView.swift", + "source_location": "L11", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_disqus_disquswebview_disqussheet", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_disqus_disquswebview_swift_webpage", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/Disqus/DisqusWebView.swift", + "source_location": "L12", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_disqus_disquswebview_disqussheet", + "target": "macmagazine_widget_models_widgetdata_url", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/Disqus/DisqusWebView.swift", + "source_location": "L136", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_disqus_disquswebview_disqusloginwebview", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_disqus_disquswebview_swift_webpage", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/Disqus/DisqusWebView.swift", + "source_location": "L104", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_disqus_disquswebview_disqussheet_setuppage", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_disqus_disquswebview_swift_webpage", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/Disqus/DisqusWebView.swift", + "source_location": "L140", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_disqus_disquswebview_disqusloginwebview", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_disqus_disquswebview_swift_void", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/Disqus/DisqusWebView.swift", + "source_location": "L109", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_disqus_disquswebview_disqussheet_reloadpage", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_disqus_disquswebview_disqussheet_loadcontent", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/Disqus/DisqusWebView.swift", + "source_location": "L140", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_disqus_disquswebview_disqusloginwebview", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_disqus_disquswebview_swift_mainactor", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/Disqus/DisqusWebView.swift", + "source_location": "L138", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_disqus_disquswebview_disqusloginwebview", + "target": "macmagazine_widget_models_widgetdata_url", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/Disqus/DisqusWebView.swift", + "source_location": "L139", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_disqus_disquswebview_disqusloginwebview", + "target": "wkwebsitedatastore", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/GalleryStateMessageHandler.swift", + "source_location": "L5", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_gallerystatemessagehandler", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_gallerystatemessagehandler_gallerystatemessagehandler", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/GalleryStateMessageHandler.swift", + "source_location": "L11", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_gallerystatemessagehandler_gallerystatemessagehandler", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_gallerystatemessagehandler_gallerystatemessagehandler_usercontentcontroller", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/GalleryStateMessageHandler.swift", + "source_location": "L9", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_gallerystatemessagehandler_gallerystatemessagehandler", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_gallerystatemessagehandler_swift_bool", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/GalleryStateMessageHandler.swift", + "source_location": "L9", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_gallerystatemessagehandler_gallerystatemessagehandler", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_gallerystatemessagehandler_swift_void", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift", + "source_location": "L14", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_gallerystatemessagehandler_gallerystatemessagehandler" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WebPageCache.swift", + "source_location": "L8", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_webpagecache_webpagecache", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_gallerystatemessagehandler_gallerystatemessagehandler", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WebPageCache.swift", + "source_location": "L39", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_webpagecache_webpagecache_galleryhandler", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_gallerystatemessagehandler_gallerystatemessagehandler", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WebPageCache.swift", + "source_location": "L21", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_webpagecache_webpagecache_page", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_gallerystatemessagehandler_gallerystatemessagehandler", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/GalleryStateMessageHandler.swift", + "source_location": "L11", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_gallerystatemessagehandler_gallerystatemessagehandler_usercontentcontroller", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_gallerystatemessagehandler_swift_wkscriptmessage", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/GalleryStateMessageHandler.swift", + "source_location": "L11", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_gallerystatemessagehandler_gallerystatemessagehandler_usercontentcontroller", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_gallerystatemessagehandler_swift_wkusercontentcontroller", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/InteractivePopGesture.swift", + "source_location": "L25", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_interactivepopgesture", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_interactivepopgesture_bridgeviewcontroller", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/InteractivePopGesture.swift", + "source_location": "L13", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_interactivepopgesture", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_interactivepopgesture_interactivepopgesturebridge", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/InteractivePopGesture.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_interactivepopgesture", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_interactivepopgesture_view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/InteractivePopGesture.swift", + "source_location": "L8", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_interactivepopgesture_view_interactivepopgesture", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_interactivepopgesture_view", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/InteractivePopGesture.swift", + "source_location": "L9", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_interactivepopgesture_view_interactivepopgesture", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_interactivepopgesture_interactivepopgesturebridge", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/InteractivePopGesture.swift", + "source_location": "L8", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_interactivepopgesture_view_interactivepopgesture", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_interactivepopgesture_swift_bool", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/InteractivePopGesture.swift", + "source_location": "L9", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_interactivepopgesture_view_interactivepopgesture", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_podcastimageview_imagelocation_background" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/InteractivePopGesture.swift", + "source_location": "L57", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_interactivepopgesture_bridgeviewcontroller_gesturerecognizershouldbegin", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_interactivepopgesture_swift_bool", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/InteractivePopGesture.swift", + "source_location": "L31", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_interactivepopgesture_bridgeviewcontroller_viewdidappear", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_interactivepopgesture_swift_bool", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/InteractivePopGesture.swift", + "source_location": "L40", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_interactivepopgesture_bridgeviewcontroller_viewwilldisappear", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_interactivepopgesture_swift_bool", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/InteractivePopGesture.swift", + "source_location": "L14", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_interactivepopgesture_interactivepopgesturebridge", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_interactivepopgesture_swift_bool", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/InteractivePopGesture.swift", + "source_location": "L16", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_interactivepopgesture_interactivepopgesturebridge", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_interactivepopgesture_interactivepopgesturebridge_makeuiviewcontroller", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/InteractivePopGesture.swift", + "source_location": "L20", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_interactivepopgesture_interactivepopgesturebridge", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_interactivepopgesture_interactivepopgesturebridge_updateuiviewcontroller", + "confidence_score": 1.0 + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/InteractivePopGesture.swift", + "source_location": "L13", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_interactivepopgesture_interactivepopgesturebridge", + "target": "uiviewcontrollerrepresentable", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/InteractivePopGesture.swift", + "source_location": "L16", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_interactivepopgesture_interactivepopgesturebridge_makeuiviewcontroller", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_interactivepopgesture_bridgeviewcontroller", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/InteractivePopGesture.swift", + "source_location": "L16", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_interactivepopgesture_interactivepopgesturebridge_makeuiviewcontroller", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_interactivepopgesture_swift_context", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/InteractivePopGesture.swift", + "source_location": "L20", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_interactivepopgesture_interactivepopgesturebridge_updateuiviewcontroller", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_interactivepopgesture_swift_context", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/InteractivePopGesture.swift", + "source_location": "L20", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_interactivepopgesture_interactivepopgesturebridge_updateuiviewcontroller", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_interactivepopgesture_bridgeviewcontroller", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/InteractivePopGesture.swift", + "source_location": "L57", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_interactivepopgesture_bridgeviewcontroller", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_interactivepopgesture_bridgeviewcontroller_gesturerecognizershouldbegin", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/InteractivePopGesture.swift", + "source_location": "L49", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_interactivepopgesture_bridgeviewcontroller", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_interactivepopgesture_bridgeviewcontroller_restoredelegate", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/InteractivePopGesture.swift", + "source_location": "L31", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_interactivepopgesture_bridgeviewcontroller", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_interactivepopgesture_bridgeviewcontroller_viewdidappear", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/InteractivePopGesture.swift", + "source_location": "L40", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_interactivepopgesture_bridgeviewcontroller", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_interactivepopgesture_bridgeviewcontroller_viewwilldisappear", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/InteractivePopGesture.swift", + "source_location": "L28", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_interactivepopgesture_bridgeviewcontroller", + "target": "uigesturerecognizer", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/InteractivePopGesture.swift", + "source_location": "L29", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_interactivepopgesture_bridgeviewcontroller", + "target": "uigesturerecognizerdelegate", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/InteractivePopGesture.swift", + "source_location": "L25", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_interactivepopgesture_bridgeviewcontroller", + "target": "uiviewcontroller", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/InteractivePopGesture.swift", + "source_location": "L57", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_interactivepopgesture_bridgeviewcontroller_gesturerecognizershouldbegin", + "target": "uigesturerecognizer", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/InteractivePopGesture.swift", + "source_location": "L42", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_interactivepopgesture_bridgeviewcontroller_viewwilldisappear", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_interactivepopgesture_bridgeviewcontroller_restoredelegate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMNavigationDecider.swift", + "source_location": "L5", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmnavigationdecider", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmnavigationdecider_mmnavigationdecider", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMNavigationDecider.swift", + "source_location": "L10", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmnavigationdecider_mmnavigationdecider", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmnavigationdecider_mmnavigationdecider_decidepolicy", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMNavigationDecider.swift", + "source_location": "L39", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmnavigationdecider_mmnavigationdecider", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmnavigationdecider_mmnavigationdecider_open", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMNavigationDecider.swift", + "source_location": "L7", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmnavigationdecider_mmnavigationdecider", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmnavigationdecider_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMNavigationDecider.swift", + "source_location": "L8", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmnavigationdecider_mmnavigationdecider", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmnavigationdecider_swift_void", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMNavigationDecider.swift", + "source_location": "L8", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmnavigationdecider_mmnavigationdecider", + "target": "macmagazine_widget_models_widgetdata_url", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMNavigationDecider.swift", + "source_location": "L5", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmnavigationdecider_mmnavigationdecider", + "target": "webpage", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift", + "source_location": "L13", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmnavigationdecider_mmnavigationdecider" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMNavigationDecider.swift", + "source_location": "L10", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmnavigationdecider_mmnavigationdecider_decidepolicy", + "target": "webpage", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMNavigationDecider.swift", + "source_location": "L10", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmnavigationdecider_mmnavigationdecider_decidepolicy", + "target": "wknavigationactionpolicy", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMNavigationDecider.swift", + "source_location": "L39", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmnavigationdecider_mmnavigationdecider_open", + "target": "macmagazine_widget_models_widgetdata_url", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift", + "source_location": "L84", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift", + "source_location": "L22", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview_init", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift", + "source_location": "L142", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview_makeconfiguration", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift", + "source_location": "L156", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview_makecookies", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift", + "source_location": "L85", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview_makeloadaction", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift", + "source_location": "L105", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview_makepage", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift", + "source_location": "L163", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview_updatecookies", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift", + "source_location": "L93", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview_urlloadaction", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift", + "source_location": "L19", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift", + "source_location": "L20", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_swift_void", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift", + "source_location": "L12", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_swift_webpage", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift", + "source_location": "L11", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview", + "target": "macmagazine_widget_models_widgetdata_url", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/MacMagazine/MainApp/Sizecalss/MainView+sidebar.swift", + "source_location": "L150", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_sizecalss_mainview_sidebar_mainview_contentview", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/MacMagazine/MainApp/Sizecalss/MainView+tabbar.swift", + "source_location": "L51", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_sizecalss_mainview_tabbar_mainview_contentview", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift", + "source_location": "L142", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview_makeconfiguration", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_swift_webpage", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift", + "source_location": "L105", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview_makepage", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_swift_webpage", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift", + "source_location": "L22", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview_init", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift", + "source_location": "L22", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview_init", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_swift_void", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift", + "source_location": "L85", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview_makeloadaction", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_swift_void", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift", + "source_location": "L86", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview_makeloadaction", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview_urlloadaction", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift", + "source_location": "L85", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview_makeloadaction", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_swift_async", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift", + "source_location": "L85", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview_makeloadaction", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_swift_mainactor", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift", + "source_location": "L87", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview_makeloadaction", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_webpagecache_webpagecache_haspage" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift", + "source_location": "L93", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview_urlloadaction", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_swift_mainactor", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift", + "source_location": "L112", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview_makepage", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview_makeconfiguration", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift", + "source_location": "L133", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview_makepage", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview_makecookies", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift", + "source_location": "L122", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview_makepage", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_webpagecache_webpagecache_galleryhandler" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift", + "source_location": "L116", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview_makepage", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_webpagecache_webpagecache_page" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift", + "source_location": "L156", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview_makecookies", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_swift_httpcookie", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift", + "source_location": "L156", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview_makecookies", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_colorscheme_colorscheme", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift", + "source_location": "L164", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview_updatecookies", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview_makecookies", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift", + "source_location": "L163", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview_updatecookies", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_colorscheme_colorscheme", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebViewUserScripts.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebviewuserscripts", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebviewuserscripts_mmwebviewuserscripts", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebViewUserScripts.swift", + "source_location": "L117", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebviewuserscripts_mmwebviewuserscripts", + "target": "wkuserscript", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/ManagedWebView.swift", + "source_location": "L104", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_managedwebview", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/ManagedWebView.swift", + "source_location": "L5", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_managedwebviewstyle", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/ManagedWebView.swift", + "source_location": "L36", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_managedwebview", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_managedwebviewstyle", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/ManagedWebView.swift", + "source_location": "L44", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_managedwebview_init", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_managedwebviewstyle", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/ManagedWebView.swift", + "source_location": "L6", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_managedwebviewstyle", + "target": "edge", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/ManagedWebView.swift", + "source_location": "L9", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_managedwebviewstyle", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_managedwebviewstyle_init", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/ManagedWebView.swift", + "source_location": "L7", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_managedwebviewstyle", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_swift_bool", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/ManagedWebView.swift", + "source_location": "L9", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_managedwebviewstyle_init", + "target": "edge", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/ManagedWebView.swift", + "source_location": "L9", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_managedwebviewstyle_init", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_swift_bool", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/ManagedWebView.swift", + "source_location": "L44", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_managedwebview", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_managedwebview_init", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/ManagedWebView.swift", + "source_location": "L122", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_managedwebview", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_managedwebview_performload", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/ManagedWebView.swift", + "source_location": "L40", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_managedwebview", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_swift_async", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/ManagedWebView.swift", + "source_location": "L40", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_managedwebview", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_swift_mainactor", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/ManagedWebView.swift", + "source_location": "L42", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_managedwebview", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_swift_uuid", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/ManagedWebView.swift", + "source_location": "L40", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_managedwebview", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_swift_void", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/ManagedWebView.swift", + "source_location": "L41", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_managedwebview", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_swift_webpage", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/ManagedWebView.swift", + "source_location": "L44", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_managedwebview_init", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_swift_mainactor", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/ManagedWebView.swift", + "source_location": "L44", + "weight": 1.0, + "context": "generic_arg", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_managedwebview_init", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_swift_webpage", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/ManagedWebView.swift", + "source_location": "L122", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_managedwebview_performload", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_swift_webpage", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/ManagedWebView.swift", + "source_location": "L44", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_managedwebview_init", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_swift_async", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/ManagedWebView.swift", + "source_location": "L44", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_managedwebview_init", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_swift_void", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/ManagedWebView.swift", + "source_location": "L44", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_managedwebview_init", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_swift_uuid", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/ManagedWebView.swift", + "source_location": "L44", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_managedwebview_init", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_swift_binding", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WebPageCache.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_webpagecache", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_webpagecache_webpagecache", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WebPageCache.swift", + "source_location": "L8", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_webpagecache_webpagecache", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_webpagecache_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WebPageCache.swift", + "source_location": "L7", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_webpagecache_webpagecache", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_webpagecache_swift_webpage", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WebPageCache.swift", + "source_location": "L39", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_webpagecache_webpagecache", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_webpagecache_webpagecache_galleryhandler", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WebPageCache.swift", + "source_location": "L43", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_webpagecache_webpagecache", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_webpagecache_webpagecache_haspage", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WebPageCache.swift", + "source_location": "L10", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_webpagecache_webpagecache", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_webpagecache_webpagecache_init", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WebPageCache.swift", + "source_location": "L21", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_webpagecache_webpagecache", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_webpagecache_webpagecache_page", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WebPageCache.swift", + "source_location": "L47", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_webpagecache_webpagecache", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_webpagecache_webpagecache_removepage", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WebPageCache.swift", + "source_location": "L39", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_webpagecache_webpagecache_galleryhandler", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_webpagecache_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WebPageCache.swift", + "source_location": "L43", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_webpagecache_webpagecache_haspage", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_webpagecache_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WebPageCache.swift", + "source_location": "L21", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_webpagecache_webpagecache_page", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_webpagecache_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WebPageCache.swift", + "source_location": "L47", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_webpagecache_webpagecache_removepage", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_webpagecache_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WebPageCache.swift", + "source_location": "L21", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_webpagecache_webpagecache_page", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_webpagecache_swift_webpage", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WebPageCache.swift", + "source_location": "L43", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_webpagecache_webpagecache_haspage", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_webpagecache_swift_bool", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WebViewStatus.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_webviewstatus", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_webviewstatus_webviewstatus", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WebViewStatus.swift", + "source_location": "L10", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_webviewstatus", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_webviewstatus_webviewstatusoverlay", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WebViewStatus.swift", + "source_location": "L6", + "weight": 1.0, + "context": "type", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_webviewstatus_webviewstatus", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_webviewstatus_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WebViewStatus.swift", + "source_location": "L7", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_webviewstatus_webviewstatus", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_webviewstatus_webviewstatus_done", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WebViewStatus.swift", + "source_location": "L6", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_webviewstatus_webviewstatus", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_webviewstatus_webviewstatus_error", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WebViewStatus.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_webviewstatus_webviewstatus", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_webviewstatus_webviewstatus_idle", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WebViewStatus.swift", + "source_location": "L5", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_webviewstatus_webviewstatus", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_webviewstatus_webviewstatus_loading", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WebViewStatus.swift", + "source_location": "L11", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_webviewstatus_webviewstatusoverlay", + "target": "macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_webviewstatus_webviewstatus", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CardSystemTests.swift", + "source_location": "L139", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cardsystemtests", + "target": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cardsystemtests_cardcontenttypetests", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CardSystemTests.swift", + "source_location": "L58", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cardsystemtests", + "target": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cardsystemtests_mostrelevantcategorytests", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CardSystemTests.swift", + "source_location": "L7", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cardsystemtests", + "target": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cardsystemtests_newscategorystyletests", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CardSystemTests.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cardsystemtests", + "target": "macmagazineuilibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CookiesTests.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cookiestests", + "target": "macmagazineuilibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Extensions/FeedDBExtensions.swift", + "source_location": "L5", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_sources_newslibrary_extensions_feeddbextensions", + "target": "macmagazineuilibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Modifiers/CardAccessibilityModifier.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_sources_newslibrary_modifiers_cardaccessibilitymodifier", + "target": "macmagazineuilibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/FeedHighlightCardView.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_sources_newslibrary_views_components_feedhighlightcardview", + "target": "macmagazineuilibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/NewsView.swift", + "source_location": "L5", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_sources_newslibrary_views_newsview", + "target": "macmagazineuilibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Extensions/PodcastDBExtensions.swift", + "source_location": "L5", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_extensions_podcastdbextensions", + "target": "macmagazineuilibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Modifiers/CardAccessibilityModifier.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_modifiers_cardaccessibilitymodifier", + "target": "macmagazineuilibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Card/AdaptivePodcastCardView.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_card_adaptivepodcastcardview", + "target": "macmagazineuilibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Card/GlassPodcastCardView.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_card_glasspodcastcardview", + "target": "macmagazineuilibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Card/PodcastCardView.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_card_podcastcardview", + "target": "macmagazineuilibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/FullPlayerView.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_fullplayerview", + "target": "macmagazineuilibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/PodcastView.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_podcastview", + "target": "macmagazineuilibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchResultsList.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist", + "target": "macmagazineuilibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchView.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchview", + "target": "macmagazineuilibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/SettingsView.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_settingsview", + "target": "macmagazineuilibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/Card/AdaptiveVideoCard.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_videoslibrary_sources_videos_card_adaptivevideocard", + "target": "macmagazineuilibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/Model/VideoDBExtensions.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_features_videoslibrary_sources_videos_model_videodbextensions", + "target": "macmagazineuilibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/Features/News/DeepLinkNewsDetailView.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_macmagazine_features_news_deeplinknewsdetailview", + "target": "macmagazineuilibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/Features/News/NewsView.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_macmagazine_features_news_newsview", + "target": "macmagazineuilibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/Features/Social/SocialView.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_macmagazine_features_social_socialview", + "target": "macmagazineuilibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/Sizecalss/MainView+sidebar.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_sizecalss_mainview_sidebar", + "target": "macmagazineuilibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/Sizecalss/MainView+tabbar.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_sizecalss_mainview_tabbar", + "target": "macmagazineuilibrary", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CardSystemTests.swift", + "source_location": "L30", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cardsystemtests_newscategorystyletests", + "target": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cardsystemtests_newscategorystyletests_allstyle", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CardSystemTests.swift", + "source_location": "L35", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cardsystemtests_newscategorystyletests", + "target": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cardsystemtests_newscategorystyletests_appletvstyle", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CardSystemTests.swift", + "source_location": "L10", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cardsystemtests_newscategorystyletests", + "target": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cardsystemtests_newscategorystyletests_highlightsstyle", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CardSystemTests.swift", + "source_location": "L25", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cardsystemtests_newscategorystyletests", + "target": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cardsystemtests_newscategorystyletests_newsstyle", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CardSystemTests.swift", + "source_location": "L15", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cardsystemtests_newscategorystyletests", + "target": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cardsystemtests_newscategorystyletests_podcaststyle", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CardSystemTests.swift", + "source_location": "L40", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cardsystemtests_newscategorystyletests", + "target": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cardsystemtests_newscategorystyletests_reviewsstyle", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CardSystemTests.swift", + "source_location": "L45", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cardsystemtests_newscategorystyletests", + "target": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cardsystemtests_newscategorystyletests_rumorsstyle", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CardSystemTests.swift", + "source_location": "L50", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cardsystemtests_newscategorystyletests", + "target": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cardsystemtests_newscategorystyletests_tutorialsstyle", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CardSystemTests.swift", + "source_location": "L20", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cardsystemtests_newscategorystyletests", + "target": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cardsystemtests_newscategorystyletests_youtubestyle", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CardSystemTests.swift", + "source_location": "L67", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cardsystemtests_mostrelevantcategorytests", + "target": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cardsystemtests_mostrelevantcategorytests_appletvpriority", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CardSystemTests.swift", + "source_location": "L97", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cardsystemtests_mostrelevantcategorytests", + "target": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cardsystemtests_mostrelevantcategorytests_emptyreturnsall", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CardSystemTests.swift", + "source_location": "L115", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cardsystemtests_mostrelevantcategorytests", + "target": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cardsystemtests_mostrelevantcategorytests_fullpriorityorder", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CardSystemTests.swift", + "source_location": "L61", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cardsystemtests_mostrelevantcategorytests", + "target": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cardsystemtests_mostrelevantcategorytests_highlightshighestpriority", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CardSystemTests.swift", + "source_location": "L91", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cardsystemtests_mostrelevantcategorytests", + "target": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cardsystemtests_mostrelevantcategorytests_newslowestpriority", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CardSystemTests.swift", + "source_location": "L73", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cardsystemtests_mostrelevantcategorytests", + "target": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cardsystemtests_mostrelevantcategorytests_reviewspriority", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CardSystemTests.swift", + "source_location": "L79", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cardsystemtests_mostrelevantcategorytests", + "target": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cardsystemtests_mostrelevantcategorytests_rumorspriority", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CardSystemTests.swift", + "source_location": "L103", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cardsystemtests_mostrelevantcategorytests", + "target": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cardsystemtests_mostrelevantcategorytests_singlehighlight", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CardSystemTests.swift", + "source_location": "L85", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cardsystemtests_mostrelevantcategorytests", + "target": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cardsystemtests_mostrelevantcategorytests_tutorialspriority", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CardSystemTests.swift", + "source_location": "L109", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cardsystemtests_mostrelevantcategorytests", + "target": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cardsystemtests_mostrelevantcategorytests_unknowncategoriesreturnfirst", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CardSystemTests.swift", + "source_location": "L186", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cardsystemtests_cardcontenttypetests", + "target": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cardsystemtests_cardcontenttypetests_highlightnewsdispatch", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CardSystemTests.swift", + "source_location": "L200", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cardsystemtests_cardcontenttypetests", + "target": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cardsystemtests_cardcontenttypetests_mmtvnewsdispatch", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CardSystemTests.swift", + "source_location": "L142", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cardsystemtests_cardcontenttypetests", + "target": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cardsystemtests_cardcontenttypetests_newstypecategories", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CardSystemTests.swift", + "source_location": "L160", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cardsystemtests_cardcontenttypetests", + "target": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cardsystemtests_cardcontenttypetests_newstypeexplicitstyle", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CardSystemTests.swift", + "source_location": "L166", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cardsystemtests_cardcontenttypetests", + "target": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cardsystemtests_cardcontenttypetests_newstypenilstyle", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CardSystemTests.swift", + "source_location": "L207", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cardsystemtests_cardcontenttypetests", + "target": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cardsystemtests_cardcontenttypetests_podcastcontentrouting", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CardSystemTests.swift", + "source_location": "L148", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cardsystemtests_cardcontenttypetests", + "target": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cardsystemtests_cardcontenttypetests_podcasttypecategories", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CardSystemTests.swift", + "source_location": "L172", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cardsystemtests_cardcontenttypetests", + "target": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cardsystemtests_cardcontenttypetests_podcasttypestyle", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CardSystemTests.swift", + "source_location": "L193", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cardsystemtests_cardcontenttypetests", + "target": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cardsystemtests_cardcontenttypetests_regularnewsdispatch", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CardSystemTests.swift", + "source_location": "L154", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cardsystemtests_cardcontenttypetests", + "target": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cardsystemtests_cardcontenttypetests_videotypecategories", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CardSystemTests.swift", + "source_location": "L178", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cardsystemtests_cardcontenttypetests", + "target": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cardsystemtests_cardcontenttypetests_videotypestyle", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CookiesTests.swift", + "source_location": "L5", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cookiestests", + "target": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cookiestests_cookiestests", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CookiesTests.swift", + "source_location": "L305", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cookiestests_cookiestests", + "target": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cookiestests_cookiestests_allcookiescorrectdomain", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CookiesTests.swift", + "source_location": "L341", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cookiestests_cookiestests", + "target": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cookiestests_cookiestests_allcookieshaveexpiration", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CookiesTests.swift", + "source_location": "L329", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cookiestests_cookiestests", + "target": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cookiestests_cookiestests_allcookiesrootpath", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CookiesTests.swift", + "source_location": "L317", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cookiestests_cookiestests", + "target": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cookiestests_cookiestests_allcookiessecure", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CookiesTests.swift", + "source_location": "L156", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cookiestests_cookiestests", + "target": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cookiestests_cookiestests_createcolorschemadark", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CookiesTests.swift", + "source_location": "L167", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cookiestests_cookiestests", + "target": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cookiestests_cookiestests_createcolorschemalight", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CookiesTests.swift", + "source_location": "L146", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cookiestests_cookiestests", + "target": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cookiestests_cookiestests_createdarkmodecookiefalse", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CookiesTests.swift", + "source_location": "L132", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cookiestests_cookiestests", + "target": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cookiestests_cookiestests_createdarkmodecookietrue", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CookiesTests.swift", + "source_location": "L177", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cookiestests_cookiestests", + "target": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cookiestests_cookiestests_createfontcookie", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CookiesTests.swift", + "source_location": "L199", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cookiestests_cookiestests", + "target": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cookiestests_cookiestests_createpurchasedcookie", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CookiesTests.swift", + "source_location": "L188", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cookiestests_cookiestests", + "target": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cookiestests_cookiestests_createversioncookie", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CookiesTests.swift", + "source_location": "L70", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cookiestests_cookiestests", + "target": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cookiestests_cookiestests_llamacasealluppercase", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CookiesTests.swift", + "source_location": "L22", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cookiestests_cookiestests", + "target": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cookiestests_cookiestests_llamacasecamelcase", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CookiesTests.swift", + "source_location": "L58", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cookiestests_cookiestests", + "target": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cookiestests_cookiestests_llamacaseempty", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CookiesTests.swift", + "source_location": "L106", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cookiestests_cookiestests", + "target": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cookiestests_cookiestests_llamacaselowercasestart", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CookiesTests.swift", + "source_location": "L10", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cookiestests_cookiestests", + "target": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cookiestests_cookiestests_llamacasepascalcase", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CookiesTests.swift", + "source_location": "L46", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cookiestests_cookiestests", + "target": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cookiestests_cookiestests_llamacasesinglelowercase", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CookiesTests.swift", + "source_location": "L34", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cookiestests_cookiestests", + "target": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cookiestests_cookiestests_llamacasesingleuppercase", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CookiesTests.swift", + "source_location": "L118", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cookiestests_cookiestests", + "target": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cookiestests_cookiestests_llamacasetypicalsize", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CookiesTests.swift", + "source_location": "L82", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cookiestests_cookiestests", + "target": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cookiestests_cookiestests_llamacasewithnumbers", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CookiesTests.swift", + "source_location": "L94", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cookiestests_cookiestests", + "target": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cookiestests_cookiestests_llamacasewithspecialchars", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CookiesTests.swift", + "source_location": "L277", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cookiestests_cookiestests", + "target": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cookiestests_cookiestests_makecookiesallparameters", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CookiesTests.swift", + "source_location": "L244", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cookiestests_cookiestests", + "target": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cookiestests_cookiestests_makecookiescustomfont", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CookiesTests.swift", + "source_location": "L212", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cookiestests_cookiestests", + "target": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cookiestests_cookiestests_makecookiesdarkmode", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CookiesTests.swift", + "source_location": "L228", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cookiestests_cookiestests", + "target": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cookiestests_cookiestests_makecookieslightmode", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CookiesTests.swift", + "source_location": "L292", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cookiestests_cookiestests", + "target": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cookiestests_cookiestests_makecookiesnilremoveads", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CookiesTests.swift", + "source_location": "L266", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cookiestests_cookiestests", + "target": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cookiestests_cookiestests_makecookiesnoremoveads", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CookiesTests.swift", + "source_location": "L255", + "weight": 1.0, + "source": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cookiestests_cookiestests", + "target": "macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_cookiestests_cookiestests_makecookiesremoveads", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Extensions/ArrayExtensions.swift", + "source_location": "L12", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_sources_newslibrary_extensions_arrayextensions", + "target": "macmagazine_features_newslibrary_sources_newslibrary_extensions_arrayextensions_array", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Extensions/ArrayExtensions.swift", + "source_location": "L13", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_newslibrary_sources_newslibrary_extensions_arrayextensions_array", + "target": "macmagazine_features_newslibrary_sources_newslibrary_extensions_arrayextensions_swift_newscategory", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Extensions/FeedDBExtensions.swift", + "source_location": "L8", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_sources_newslibrary_extensions_feeddbextensions", + "target": "macmagazine_features_newslibrary_sources_newslibrary_extensions_feeddbextensions_feeddb", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Extensions/FeedDBExtensions.swift", + "source_location": "L9", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_sources_newslibrary_extensions_feeddbextensions_feeddb", + "target": "macmagazine_features_newslibrary_sources_newslibrary_extensions_feeddbextensions_feeddb_tocardcontent", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Extensions/FeedDBExtensions.swift", + "source_location": "L9", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_newslibrary_sources_newslibrary_extensions_feeddbextensions_feeddb_tocardcontent", + "target": "macmagazine_features_newslibrary_sources_newslibrary_extensions_feeddbextensions_swift_analyticsmanager", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Extensions/FeedDBExtensions.swift", + "source_location": "L9", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_newslibrary_sources_newslibrary_extensions_feeddbextensions_feeddb_tocardcontent", + "target": "macmagazine_features_newslibrary_sources_newslibrary_extensions_feeddbextensions_swift_cgfloat", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Extensions/FeedDBExtensions.swift", + "source_location": "L9", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_newslibrary_sources_newslibrary_extensions_feeddbextensions_feeddb_tocardcontent", + "target": "macmagazine_features_newslibrary_sources_newslibrary_extensions_feeddbextensions_swift_modelcontext", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Extensions/FeedDBExtensions.swift", + "source_location": "L9", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_newslibrary_sources_newslibrary_extensions_feeddbextensions_feeddb_tocardcontent", + "target": "macmagazine_features_newslibrary_sources_newslibrary_extensions_feeddbextensions_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Modifiers/CardAccessibilityModifier.swift", + "source_location": "L34", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_sources_newslibrary_modifiers_cardaccessibilitymodifier", + "target": "macmagazine_features_newslibrary_sources_newslibrary_modifiers_cardaccessibilitymodifier_array", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Modifiers/CardAccessibilityModifier.swift", + "source_location": "L62", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_sources_newslibrary_modifiers_cardaccessibilitymodifier", + "target": "macmagazine_features_newslibrary_sources_newslibrary_modifiers_cardaccessibilitymodifier_cardaccessibilitymodifier", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Modifiers/CardAccessibilityModifier.swift", + "source_location": "L29", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_sources_newslibrary_modifiers_cardaccessibilitymodifier", + "target": "macmagazine_features_newslibrary_sources_newslibrary_modifiers_cardaccessibilitymodifier_cardbutton", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Modifiers/CardAccessibilityModifier.swift", + "source_location": "L6", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_sources_newslibrary_modifiers_cardaccessibilitymodifier", + "target": "macmagazine_features_newslibrary_sources_newslibrary_modifiers_cardaccessibilitymodifier_cardlabel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Modifiers/CardAccessibilityModifier.swift", + "source_location": "L48", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_sources_newslibrary_modifiers_cardaccessibilitymodifier", + "target": "macmagazine_features_newslibrary_sources_newslibrary_modifiers_cardaccessibilitymodifier_view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Modifiers/CardAccessibilityModifier.swift", + "source_location": "L64", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_newslibrary_sources_newslibrary_modifiers_cardaccessibilitymodifier_cardaccessibilitymodifier", + "target": "macmagazine_features_newslibrary_sources_newslibrary_modifiers_cardaccessibilitymodifier_cardlabel", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Modifiers/CardAccessibilityModifier.swift", + "source_location": "L9", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_sources_newslibrary_modifiers_cardaccessibilitymodifier_cardlabel", + "target": "macmagazine_features_newslibrary_sources_newslibrary_modifiers_cardaccessibilitymodifier_cardlabel_author", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Modifiers/CardAccessibilityModifier.swift", + "source_location": "L8", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_sources_newslibrary_modifiers_cardaccessibilitymodifier_cardlabel", + "target": "macmagazine_features_newslibrary_sources_newslibrary_modifiers_cardaccessibilitymodifier_cardlabel_date", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Modifiers/CardAccessibilityModifier.swift", + "source_location": "L7", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_sources_newslibrary_modifiers_cardaccessibilitymodifier_cardlabel", + "target": "macmagazine_features_newslibrary_sources_newslibrary_modifiers_cardaccessibilitymodifier_cardlabel_title", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Modifiers/CardAccessibilityModifier.swift", + "source_location": "L49", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_newslibrary_sources_newslibrary_modifiers_cardaccessibilitymodifier_view_cardaccessibility", + "target": "macmagazine_features_newslibrary_sources_newslibrary_modifiers_cardaccessibilitymodifier_cardlabel", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Modifiers/CardAccessibilityModifier.swift", + "source_location": "L35", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_sources_newslibrary_modifiers_cardaccessibilitymodifier_array", + "target": "macmagazine_features_newslibrary_sources_newslibrary_modifiers_cardaccessibilitymodifier_array_makebuttons", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Modifiers/CardAccessibilityModifier.swift", + "source_location": "L13", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_sources_newslibrary_modifiers_cardaccessibilitymodifier_array", + "target": "macmagazine_features_newslibrary_sources_newslibrary_modifiers_cardaccessibilitymodifier_array_maketext", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Modifiers/CardAccessibilityModifier.swift", + "source_location": "L13", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_newslibrary_sources_newslibrary_modifiers_cardaccessibilitymodifier_array_maketext", + "target": "macmagazine_features_newslibrary_sources_newslibrary_modifiers_cardaccessibilitymodifier_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Modifiers/CardAccessibilityModifier.swift", + "source_location": "L71", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_sources_newslibrary_modifiers_cardaccessibilitymodifier_cardaccessibilitymodifier_body", + "target": "macmagazine_features_newslibrary_sources_newslibrary_modifiers_cardaccessibilitymodifier_array_maketext", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Modifiers/CardAccessibilityModifier.swift", + "source_location": "L65", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_newslibrary_sources_newslibrary_modifiers_cardaccessibilitymodifier_cardaccessibilitymodifier", + "target": "macmagazine_features_newslibrary_sources_newslibrary_modifiers_cardaccessibilitymodifier_cardbutton", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Modifiers/CardAccessibilityModifier.swift", + "source_location": "L31", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_sources_newslibrary_modifiers_cardaccessibilitymodifier_cardbutton", + "target": "macmagazine_features_newslibrary_sources_newslibrary_modifiers_cardaccessibilitymodifier_cardbutton_favorite", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Modifiers/CardAccessibilityModifier.swift", + "source_location": "L30", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_sources_newslibrary_modifiers_cardaccessibilitymodifier_cardbutton", + "target": "macmagazine_features_newslibrary_sources_newslibrary_modifiers_cardaccessibilitymodifier_cardbutton_share", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Modifiers/CardAccessibilityModifier.swift", + "source_location": "L49", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_newslibrary_sources_newslibrary_modifiers_cardaccessibilitymodifier_view_cardaccessibility", + "target": "macmagazine_features_newslibrary_sources_newslibrary_modifiers_cardaccessibilitymodifier_cardbutton", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Modifiers/CardAccessibilityModifier.swift", + "source_location": "L35", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_features_newslibrary_sources_newslibrary_modifiers_cardaccessibilitymodifier_array_makebuttons", + "target": "macmagazine_features_newslibrary_sources_newslibrary_modifiers_cardaccessibilitymodifier_swift_view", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Modifiers/CardAccessibilityModifier.swift", + "source_location": "L74", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_sources_newslibrary_modifiers_cardaccessibilitymodifier_cardaccessibilitymodifier_body", + "target": "macmagazine_features_newslibrary_sources_newslibrary_modifiers_cardaccessibilitymodifier_array_makebuttons", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Modifiers/CardAccessibilityModifier.swift", + "source_location": "L67", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_features_newslibrary_sources_newslibrary_modifiers_cardaccessibilitymodifier_cardaccessibilitymodifier_body", + "target": "macmagazine_features_newslibrary_sources_newslibrary_modifiers_cardaccessibilitymodifier_view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Modifiers/CardAccessibilityModifier.swift", + "source_location": "L49", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_features_newslibrary_sources_newslibrary_modifiers_cardaccessibilitymodifier_view_cardaccessibility", + "target": "macmagazine_features_newslibrary_sources_newslibrary_modifiers_cardaccessibilitymodifier_view", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Modifiers/CardAccessibilityModifier.swift", + "source_location": "L54", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_sources_newslibrary_modifiers_cardaccessibilitymodifier_view_cardaccessibility", + "target": "macmagazine_features_newslibrary_sources_newslibrary_modifiers_cardaccessibilitymodifier_cardaccessibilitymodifier", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Modifiers/CardAccessibilityModifier.swift", + "source_location": "L67", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_sources_newslibrary_modifiers_cardaccessibilitymodifier_cardaccessibilitymodifier", + "target": "macmagazine_features_newslibrary_sources_newslibrary_modifiers_cardaccessibilitymodifier_cardaccessibilitymodifier_body", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Modifiers/CardAccessibilityModifier.swift", + "source_location": "L67", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_newslibrary_sources_newslibrary_modifiers_cardaccessibilitymodifier_cardaccessibilitymodifier_body", + "target": "macmagazine_features_newslibrary_sources_newslibrary_modifiers_cardaccessibilitymodifier_swift_content", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Modifiers/CardAccessibilityModifier.swift", + "source_location": "L71", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_sources_newslibrary_modifiers_cardaccessibilitymodifier_cardaccessibilitymodifier_body", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_views_extensions_plainbuttontextstyle_text" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/ViewModel/NewsViewModel.swift", + "source_location": "L8", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_sources_newslibrary_viewmodel_newsviewmodel", + "target": "macmagazine_features_newslibrary_sources_newslibrary_viewmodel_newsviewmodel_newsviewmodel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/ViewModel/NewsViewModel.swift", + "source_location": "L14", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_sources_newslibrary_viewmodel_newsviewmodel", + "target": "macmagazine_features_newslibrary_sources_newslibrary_viewmodel_newsviewmodel_options", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/ViewModel/NewsViewModel.swift", + "source_location": "L32", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_sources_newslibrary_viewmodel_newsviewmodel_newsviewmodel", + "target": "macmagazine_features_newslibrary_sources_newslibrary_viewmodel_newsviewmodel_newsviewmodel_getnews", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/ViewModel/NewsViewModel.swift", + "source_location": "L23", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_sources_newslibrary_viewmodel_newsviewmodel_newsviewmodel", + "target": "macmagazine_features_newslibrary_sources_newslibrary_viewmodel_newsviewmodel_newsviewmodel_init", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/ViewModel/NewsViewModel.swift", + "source_location": "L45", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_sources_newslibrary_viewmodel_newsviewmodel_newsviewmodel", + "target": "macmagazine_features_newslibrary_sources_newslibrary_viewmodel_newsviewmodel_newsviewmodel_loadmoreifneeded", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/ViewModel/NewsViewModel.swift", + "source_location": "L11", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_newslibrary_sources_newslibrary_viewmodel_newsviewmodel_newsviewmodel", + "target": "macmagazine_features_newslibrary_sources_newslibrary_viewmodel_newsviewmodel_swift_apistatus", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/ViewModel/NewsViewModel.swift", + "source_location": "L12", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_newslibrary_sources_newslibrary_viewmodel_newsviewmodel_newsviewmodel", + "target": "macmagazine_features_newslibrary_sources_newslibrary_viewmodel_newsviewmodel_swift_feeddb", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/ViewModel/NewsViewModel.swift", + "source_location": "L10", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_newslibrary_sources_newslibrary_viewmodel_newsviewmodel_newsviewmodel", + "target": "macmagazine_features_newslibrary_sources_newslibrary_viewmodel_newsviewmodel_swift_options", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/NewsView.swift", + "source_location": "L28", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_newslibrary_sources_newslibrary_views_newsview_newsview", + "target": "macmagazine_features_newslibrary_sources_newslibrary_viewmodel_newsviewmodel_newsviewmodel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/NewsView.swift", + "source_location": "L50", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_sources_newslibrary_views_newsview_newsview_init", + "target": "macmagazine_features_newslibrary_sources_newslibrary_viewmodel_newsviewmodel_newsviewmodel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/NewsLibrary/Tests/NewsLibraryTests/NewsViewModelTests.swift", + "source_location": "L215", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests_newsviewmodeltests_fetchesdefaultpage", + "target": "macmagazine_features_newslibrary_sources_newslibrary_viewmodel_newsviewmodel_newsviewmodel" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/NewsLibrary/Tests/NewsLibraryTests/NewsViewModelTests.swift", + "source_location": "L226", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests_newsviewmodeltests_fetchesspecifiedpage", + "target": "macmagazine_features_newslibrary_sources_newslibrary_viewmodel_newsviewmodel_newsviewmodel" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/NewsLibrary/Tests/NewsLibraryTests/NewsViewModelTests.swift", + "source_location": "L239", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests_newsviewmodeltests_handlenegativeindex", + "target": "macmagazine_features_newslibrary_sources_newslibrary_viewmodel_newsviewmodel_newsviewmodel" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/NewsLibrary/Tests/NewsLibraryTests/NewsViewModelTests.swift", + "source_location": "L250", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests_newsviewmodeltests_handleverylargeindex", + "target": "macmagazine_features_newslibrary_sources_newslibrary_viewmodel_newsviewmodel_newsviewmodel" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/NewsLibrary/Tests/NewsLibraryTests/NewsViewModelTests.swift", + "source_location": "L25", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests_newsviewmodeltests_initialoptionishome", + "target": "macmagazine_features_newslibrary_sources_newslibrary_viewmodel_newsviewmodel_newsviewmodel" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/NewsLibrary/Tests/NewsLibraryTests/NewsViewModelTests.swift", + "source_location": "L17", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests_newsviewmodeltests_initialstatusisidle", + "target": "macmagazine_features_newslibrary_sources_newslibrary_viewmodel_newsviewmodel_newsviewmodel" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/NewsLibrary/Tests/NewsLibraryTests/NewsViewModelTests.swift", + "source_location": "L187", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests_newsviewmodeltests_keepsstatuswhennilpassed", + "target": "macmagazine_features_newslibrary_sources_newslibrary_viewmodel_newsviewmodel_newsviewmodel" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/NewsLibrary/Tests/NewsLibraryTests/NewsViewModelTests.swift", + "source_location": "L92", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests_newsviewmodeltests_noloadatindexzero", + "target": "macmagazine_features_newslibrary_sources_newslibrary_viewmodel_newsviewmodel_newsviewmodel" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/NewsLibrary/Tests/NewsLibraryTests/NewsViewModelTests.swift", + "source_location": "L116", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests_newsviewmodeltests_noloadatnonmultiples", + "target": "macmagazine_features_newslibrary_sources_newslibrary_viewmodel_newsviewmodel_newsviewmodel" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/NewsLibrary/Tests/NewsLibraryTests/NewsViewModelTests.swift", + "source_location": "L103", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests_newsviewmodeltests_noloadbelowthreshold", + "target": "macmagazine_features_newslibrary_sources_newslibrary_viewmodel_newsviewmodel_newsviewmodel" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/NewsLibrary/Tests/NewsLibraryTests/NewsViewModelTests.swift", + "source_location": "L148", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests_newsviewmodeltests_noloadforsameindex", + "target": "macmagazine_features_newslibrary_sources_newslibrary_viewmodel_newsviewmodel_newsviewmodel" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/NewsLibrary/Tests/NewsLibraryTests/NewsViewModelTests.swift", + "source_location": "L135", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests_newsviewmodeltests_noloadonbackwardscroll", + "target": "macmagazine_features_newslibrary_sources_newslibrary_viewmodel_newsviewmodel_newsviewmodel" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "MacMagazine/Features/NewsLibrary/Tests/NewsLibraryTests/NewsViewModelTests.swift", + "source_location": "L81", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests_newsviewmodeltests_optionsequatable", + "target": "macmagazine_features_newslibrary_sources_newslibrary_viewmodel_newsviewmodel_newsviewmodel" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/NewsLibrary/Tests/NewsLibraryTests/NewsViewModelTests.swift", + "source_location": "L174", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests_newsviewmodeltests_setsloadingstatus", + "target": "macmagazine_features_newslibrary_sources_newslibrary_viewmodel_newsviewmodel_newsviewmodel" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/NewsLibrary/Tests/NewsLibraryTests/NewsViewModelTests.swift", + "source_location": "L198", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests_newsviewmodeltests_statusupdatesonerror", + "target": "macmagazine_features_newslibrary_sources_newslibrary_viewmodel_newsviewmodel_newsviewmodel" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/NewsLibrary/Tests/NewsLibraryTests/NewsViewModelTests.swift", + "source_location": "L163", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests_newsviewmodeltests_statusupdatesonsuccess", + "target": "macmagazine_features_newslibrary_sources_newslibrary_viewmodel_newsviewmodel_newsviewmodel" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/NewsLibrary/Tests/NewsLibraryTests/NewsViewModelTests.swift", + "source_location": "L49", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests_newsviewmodeltests_supportsemptysearchtext", + "target": "macmagazine_features_newslibrary_sources_newslibrary_viewmodel_newsviewmodel_newsviewmodel" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/NewsLibrary/Tests/NewsLibraryTests/NewsViewModelTests.swift", + "source_location": "L35", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests_newsviewmodeltests_supportssearchoption", + "target": "macmagazine_features_newslibrary_sources_newslibrary_viewmodel_newsviewmodel_newsviewmodel" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/NewsLibrary/Tests/NewsLibraryTests/NewsViewModelTests.swift", + "source_location": "L63", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests_newsviewmodeltests_transitionbetweenoptions", + "target": "macmagazine_features_newslibrary_sources_newslibrary_viewmodel_newsviewmodel_newsviewmodel" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/ViewModel/NewsViewModel.swift", + "source_location": "L32", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_newslibrary_sources_newslibrary_viewmodel_newsviewmodel_newsviewmodel_getnews", + "target": "macmagazine_features_newslibrary_sources_newslibrary_viewmodel_newsviewmodel_swift_apistatus", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/ViewModel/NewsViewModel.swift", + "source_location": "L15", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_sources_newslibrary_viewmodel_newsviewmodel_options", + "target": "macmagazine_features_newslibrary_sources_newslibrary_viewmodel_newsviewmodel_options_home", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/ViewModel/NewsViewModel.swift", + "source_location": "L16", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_sources_newslibrary_viewmodel_newsviewmodel_options", + "target": "macmagazine_features_newslibrary_sources_newslibrary_viewmodel_newsviewmodel_options_search", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/ViewModel/NewsViewModel.swift", + "source_location": "L16", + "weight": 1.0, + "context": "type", + "source": "macmagazine_features_newslibrary_sources_newslibrary_viewmodel_newsviewmodel_options", + "target": "macmagazine_features_newslibrary_sources_newslibrary_viewmodel_newsviewmodel_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/ViewModel/NewsViewModel.swift", + "source_location": "L23", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_newslibrary_sources_newslibrary_viewmodel_newsviewmodel_newsviewmodel_init", + "target": "macmagazine_features_newslibrary_sources_newslibrary_viewmodel_newsviewmodel_swift_database", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/ViewModel/NewsViewModel.swift", + "source_location": "L23", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_newslibrary_sources_newslibrary_viewmodel_newsviewmodel_newsviewmodel_init", + "target": "macmagazine_features_newslibrary_sources_newslibrary_viewmodel_newsviewmodel_swift_networkmockdata", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/ViewModel/NewsViewModel.swift", + "source_location": "L32", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_newslibrary_sources_newslibrary_viewmodel_newsviewmodel_newsviewmodel_getnews", + "target": "macmagazine_features_newslibrary_sources_newslibrary_viewmodel_newsviewmodel_swift_int", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/ViewModel/NewsViewModel.swift", + "source_location": "L53", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_sources_newslibrary_viewmodel_newsviewmodel_newsviewmodel_loadmoreifneeded", + "target": "macmagazine_features_newslibrary_sources_newslibrary_viewmodel_newsviewmodel_newsviewmodel_getnews", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/NewsLibrary/Tests/NewsLibraryTests/NewsViewModelTests.swift", + "source_location": "L217", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests_newsviewmodeltests_fetchesdefaultpage", + "target": "macmagazine_features_newslibrary_sources_newslibrary_viewmodel_newsviewmodel_newsviewmodel_getnews" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/NewsLibrary/Tests/NewsLibraryTests/NewsViewModelTests.swift", + "source_location": "L228", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests_newsviewmodeltests_fetchesspecifiedpage", + "target": "macmagazine_features_newslibrary_sources_newslibrary_viewmodel_newsviewmodel_newsviewmodel_getnews" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/NewsLibrary/Tests/NewsLibraryTests/NewsViewModelTests.swift", + "source_location": "L189", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests_newsviewmodeltests_keepsstatuswhennilpassed", + "target": "macmagazine_features_newslibrary_sources_newslibrary_viewmodel_newsviewmodel_newsviewmodel_getnews" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/NewsLibrary/Tests/NewsLibraryTests/NewsViewModelTests.swift", + "source_location": "L178", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests_newsviewmodeltests_setsloadingstatus", + "target": "macmagazine_features_newslibrary_sources_newslibrary_viewmodel_newsviewmodel_newsviewmodel_getnews" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/NewsLibrary/Tests/NewsLibraryTests/NewsViewModelTests.swift", + "source_location": "L200", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests_newsviewmodeltests_statusupdatesonerror", + "target": "macmagazine_features_newslibrary_sources_newslibrary_viewmodel_newsviewmodel_newsviewmodel_getnews" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/NewsLibrary/Tests/NewsLibraryTests/NewsViewModelTests.swift", + "source_location": "L165", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests_newsviewmodeltests_statusupdatesonsuccess", + "target": "macmagazine_features_newslibrary_sources_newslibrary_viewmodel_newsviewmodel_newsviewmodel_getnews" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/ViewModel/NewsViewModel.swift", + "source_location": "L45", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_sources_newslibrary_viewmodel_newsviewmodel_newsviewmodel_loadmoreifneeded", + "target": "macmagazine_features_newslibrary_sources_newslibrary_viewmodel_newsviewmodel_swift_int", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/NewsLibrary/Tests/NewsLibraryTests/NewsViewModelTests.swift", + "source_location": "L241", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests_newsviewmodeltests_handlenegativeindex", + "target": "macmagazine_features_newslibrary_sources_newslibrary_viewmodel_newsviewmodel_newsviewmodel_loadmoreifneeded" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/NewsLibrary/Tests/NewsLibraryTests/NewsViewModelTests.swift", + "source_location": "L252", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests_newsviewmodeltests_handleverylargeindex", + "target": "macmagazine_features_newslibrary_sources_newslibrary_viewmodel_newsviewmodel_newsviewmodel_loadmoreifneeded" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/NewsLibrary/Tests/NewsLibraryTests/NewsViewModelTests.swift", + "source_location": "L94", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests_newsviewmodeltests_noloadatindexzero", + "target": "macmagazine_features_newslibrary_sources_newslibrary_viewmodel_newsviewmodel_newsviewmodel_loadmoreifneeded" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/NewsLibrary/Tests/NewsLibraryTests/NewsViewModelTests.swift", + "source_location": "L118", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests_newsviewmodeltests_noloadatnonmultiples", + "target": "macmagazine_features_newslibrary_sources_newslibrary_viewmodel_newsviewmodel_newsviewmodel_loadmoreifneeded" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/NewsLibrary/Tests/NewsLibraryTests/NewsViewModelTests.swift", + "source_location": "L106", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests_newsviewmodeltests_noloadbelowthreshold", + "target": "macmagazine_features_newslibrary_sources_newslibrary_viewmodel_newsviewmodel_newsviewmodel_loadmoreifneeded" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/NewsLibrary/Tests/NewsLibraryTests/NewsViewModelTests.swift", + "source_location": "L150", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests_newsviewmodeltests_noloadforsameindex", + "target": "macmagazine_features_newslibrary_sources_newslibrary_viewmodel_newsviewmodel_newsviewmodel_loadmoreifneeded" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/NewsLibrary/Tests/NewsLibraryTests/NewsViewModelTests.swift", + "source_location": "L137", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests_newsviewmodeltests_noloadonbackwardscroll", + "target": "macmagazine_features_newslibrary_sources_newslibrary_viewmodel_newsviewmodel_newsviewmodel_loadmoreifneeded" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/CollectionViewWithHeader.swift", + "source_location": "L99", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_sources_newslibrary_views_components_collectionviewwithheader", + "target": "macmagazine_features_newslibrary_sources_newslibrary_views_components_collectionviewwithheader_collectionviewwithheader", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/CollectionViewWithHeader.swift", + "source_location": "L23", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_newslibrary_sources_newslibrary_views_components_collectionviewwithheader_collectionviewwithheader", + "target": "header", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/CollectionViewWithHeader.swift", + "source_location": "L100", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_sources_newslibrary_views_components_collectionviewwithheader_collectionviewwithheader", + "target": "macmagazine_features_newslibrary_sources_newslibrary_views_components_collectionviewwithheader_collectionviewwithheader_init", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/CollectionViewWithHeader.swift", + "source_location": "L16", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_newslibrary_sources_newslibrary_views_components_collectionviewwithheader_collectionviewwithheader", + "target": "macmagazine_features_newslibrary_sources_newslibrary_views_components_collectionviewwithheader_swift_apistatus", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/CollectionViewWithHeader.swift", + "source_location": "L19", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_newslibrary_sources_newslibrary_views_components_collectionviewwithheader_collectionviewwithheader", + "target": "macmagazine_features_newslibrary_sources_newslibrary_views_components_collectionviewwithheader_swift_bool", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/CollectionViewWithHeader.swift", + "source_location": "L25", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_newslibrary_sources_newslibrary_views_components_collectionviewwithheader_collectionviewwithheader", + "target": "macmagazine_features_newslibrary_sources_newslibrary_views_components_collectionviewwithheader_swift_content", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/CollectionViewWithHeader.swift", + "source_location": "L20", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_newslibrary_sources_newslibrary_views_components_collectionviewwithheader_collectionviewwithheader", + "target": "macmagazine_features_newslibrary_sources_newslibrary_views_components_collectionviewwithheader_swift_int", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/CollectionViewWithHeader.swift", + "source_location": "L13", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_newslibrary_sources_newslibrary_views_components_collectionviewwithheader_collectionviewwithheader", + "target": "macmagazine_features_newslibrary_sources_newslibrary_views_components_collectionviewwithheader_swift_scrollposition", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/CollectionViewWithHeader.swift", + "source_location": "L15", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_newslibrary_sources_newslibrary_views_components_collectionviewwithheader_collectionviewwithheader", + "target": "macmagazine_features_newslibrary_sources_newslibrary_views_components_collectionviewwithheader_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/CollectionViewWithHeader.swift", + "source_location": "L24", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_newslibrary_sources_newslibrary_views_components_collectionviewwithheader_collectionviewwithheader", + "target": "macmagazine_features_newslibrary_sources_newslibrary_views_components_collectionviewwithheader_swift_void", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/CollectionViewWithHeader.swift", + "source_location": "L100", + "weight": 1.0, + "context": "generic_arg", + "source": "macmagazine_features_newslibrary_sources_newslibrary_views_components_collectionviewwithheader_collectionviewwithheader_init", + "target": "macmagazine_features_newslibrary_sources_newslibrary_views_components_collectionviewwithheader_swift_scrollposition", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/CollectionViewWithHeader.swift", + "source_location": "L100", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_newslibrary_sources_newslibrary_views_components_collectionviewwithheader_collectionviewwithheader_init", + "target": "macmagazine_features_newslibrary_sources_newslibrary_views_components_collectionviewwithheader_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/CollectionViewWithHeader.swift", + "source_location": "L100", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_newslibrary_sources_newslibrary_views_components_collectionviewwithheader_collectionviewwithheader_init", + "target": "macmagazine_features_newslibrary_sources_newslibrary_views_components_collectionviewwithheader_swift_apistatus", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/CollectionViewWithHeader.swift", + "source_location": "L100", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_newslibrary_sources_newslibrary_views_components_collectionviewwithheader_collectionviewwithheader_init", + "target": "macmagazine_features_newslibrary_sources_newslibrary_views_components_collectionviewwithheader_swift_bool", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/CollectionViewWithHeader.swift", + "source_location": "L100", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_newslibrary_sources_newslibrary_views_components_collectionviewwithheader_collectionviewwithheader_init", + "target": "macmagazine_features_newslibrary_sources_newslibrary_views_components_collectionviewwithheader_swift_int", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/CollectionViewWithHeader.swift", + "source_location": "L35", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_newslibrary_sources_newslibrary_views_components_collectionviewwithheader_collectionviewwithheader_init", + "target": "header", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/CollectionViewWithHeader.swift", + "source_location": "L100", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_newslibrary_sources_newslibrary_views_components_collectionviewwithheader_collectionviewwithheader_init", + "target": "macmagazine_features_newslibrary_sources_newslibrary_views_components_collectionviewwithheader_swift_void", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/CollectionViewWithHeader.swift", + "source_location": "L100", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_newslibrary_sources_newslibrary_views_components_collectionviewwithheader_collectionviewwithheader_init", + "target": "macmagazine_features_newslibrary_sources_newslibrary_views_components_collectionviewwithheader_swift_content", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/CollectionViewWithHeader.swift", + "source_location": "L100", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_newslibrary_sources_newslibrary_views_components_collectionviewwithheader_collectionviewwithheader_init", + "target": "macmagazine_features_newslibrary_sources_newslibrary_views_components_collectionviewwithheader_swift_binding", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/FeedHighlightCardView.swift", + "source_location": "L12", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_sources_newslibrary_views_components_feedhighlightcardview", + "target": "macmagazine_features_newslibrary_sources_newslibrary_views_components_feedhighlightcardview_feedhighlightcardview", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/FeedHighlightCardView.swift", + "source_location": "L39", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_sources_newslibrary_views_components_feedhighlightcardview_feedhighlightcardview", + "target": "macmagazine_features_newslibrary_sources_newslibrary_views_components_feedhighlightcardview_feedhighlightcardview_init", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/FeedHighlightCardView.swift", + "source_location": "L20", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_newslibrary_sources_newslibrary_views_components_feedhighlightcardview_feedhighlightcardview", + "target": "macmagazine_features_newslibrary_sources_newslibrary_views_components_feedhighlightcardview_swift_analyticsmanager", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/FeedHighlightCardView.swift", + "source_location": "L16", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_newslibrary_sources_newslibrary_views_components_feedhighlightcardview_feedhighlightcardview", + "target": "macmagazine_features_newslibrary_sources_newslibrary_views_components_feedhighlightcardview_swift_feeddb", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/FeedHighlightCardView.swift", + "source_location": "L39", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_newslibrary_sources_newslibrary_views_components_feedhighlightcardview_feedhighlightcardview_init", + "target": "macmagazine_features_newslibrary_sources_newslibrary_views_components_feedhighlightcardview_swift_feeddb", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/FeedHighlightsCarouselView.swift", + "source_location": "L9", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_sources_newslibrary_views_components_feedhighlightscarouselview", + "target": "macmagazine_features_newslibrary_sources_newslibrary_views_components_feedhighlightscarouselview_feedhighlightscarouselview", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/FeedHighlightsCarouselView.swift", + "source_location": "L25", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_sources_newslibrary_views_components_feedhighlightscarouselview", + "target": "macmagazine_features_newslibrary_sources_newslibrary_views_components_feedhighlightscarouselview_layout", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/FeedHighlightsCarouselView.swift", + "source_location": "L69", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_sources_newslibrary_views_components_feedhighlightscarouselview_feedhighlightscarouselview", + "target": "macmagazine_features_newslibrary_sources_newslibrary_views_components_feedhighlightscarouselview_feedhighlightscarouselview_init", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/FeedHighlightsCarouselView.swift", + "source_location": "L43", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_newslibrary_sources_newslibrary_views_components_feedhighlightscarouselview_feedhighlightscarouselview", + "target": "macmagazine_features_newslibrary_sources_newslibrary_views_components_feedhighlightscarouselview_swift_bool", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/FeedHighlightsCarouselView.swift", + "source_location": "L57", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_newslibrary_sources_newslibrary_views_components_feedhighlightscarouselview_feedhighlightscarouselview", + "target": "macmagazine_features_newslibrary_sources_newslibrary_views_components_feedhighlightscarouselview_swift_cgfloat", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/FeedHighlightsCarouselView.swift", + "source_location": "L14", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_newslibrary_sources_newslibrary_views_components_feedhighlightscarouselview_feedhighlightscarouselview", + "target": "macmagazine_features_newslibrary_sources_newslibrary_views_components_feedhighlightscarouselview_swift_feeddb", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/FeedHighlightsCarouselView.swift", + "source_location": "L62", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_newslibrary_sources_newslibrary_views_components_feedhighlightscarouselview_feedhighlightscarouselview", + "target": "macmagazine_features_newslibrary_sources_newslibrary_views_components_feedhighlightscarouselview_swift_int", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/FeedHighlightsCarouselView.swift", + "source_location": "L16", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_newslibrary_sources_newslibrary_views_components_feedhighlightscarouselview_feedhighlightscarouselview", + "target": "macmagazine_features_newslibrary_sources_newslibrary_views_components_feedhighlightscarouselview_swift_scrollposition", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/FeedHighlightsCarouselView.swift", + "source_location": "L14", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_newslibrary_sources_newslibrary_views_components_feedhighlightscarouselview_feedhighlightscarouselview", + "target": "macmagazine_features_newslibrary_sources_newslibrary_views_components_feedhighlightscarouselview_swift_void", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/FeedHighlightsCarouselView.swift", + "source_location": "L69", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_newslibrary_sources_newslibrary_views_components_feedhighlightscarouselview_feedhighlightscarouselview_init", + "target": "macmagazine_features_newslibrary_sources_newslibrary_views_components_feedhighlightscarouselview_swift_feeddb", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/FeedHighlightsCarouselView.swift", + "source_location": "L69", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_newslibrary_sources_newslibrary_views_components_feedhighlightscarouselview_feedhighlightscarouselview_init", + "target": "macmagazine_features_newslibrary_sources_newslibrary_views_components_feedhighlightscarouselview_swift_void", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/FeedHighlightsCarouselView.swift", + "source_location": "L69", + "weight": 1.0, + "context": "generic_arg", + "source": "macmagazine_features_newslibrary_sources_newslibrary_views_components_feedhighlightscarouselview_feedhighlightscarouselview_init", + "target": "macmagazine_features_newslibrary_sources_newslibrary_views_components_feedhighlightscarouselview_swift_scrollposition", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/FeedHighlightsCarouselView.swift", + "source_location": "L34", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_newslibrary_sources_newslibrary_views_components_feedhighlightscarouselview_layout", + "target": "macmagazine_features_newslibrary_sources_newslibrary_views_components_feedhighlightscarouselview_swift_cgfloat", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/FeedHighlightsCarouselView.swift", + "source_location": "L69", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_newslibrary_sources_newslibrary_views_components_feedhighlightscarouselview_feedhighlightscarouselview_init", + "target": "macmagazine_features_newslibrary_sources_newslibrary_views_components_feedhighlightscarouselview_swift_binding", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Mock/PreviewData.swift", + "source_location": "L8", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_sources_newslibrary_views_mock_previewdata", + "target": "macmagazine_features_newslibrary_sources_newslibrary_views_mock_previewdata_previewdata", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Mock/PreviewData.swift", + "source_location": "L12", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_sources_newslibrary_views_mock_previewdata_previewdata", + "target": "macmagazine_features_newslibrary_sources_newslibrary_views_mock_previewdata_previewdata_samplepost", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Mock/PreviewData.swift", + "source_location": "L55", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_newslibrary_sources_newslibrary_views_mock_previewdata_previewdata", + "target": "macmagazine_features_newslibrary_sources_newslibrary_views_mock_previewdata_swift_feeddb", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Mock/PreviewData.swift", + "source_location": "L12", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_newslibrary_sources_newslibrary_views_mock_previewdata_previewdata_samplepost", + "target": "macmagazine_features_newslibrary_sources_newslibrary_views_mock_previewdata_swift_bool", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Mock/PreviewData.swift", + "source_location": "L12", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_sources_newslibrary_views_mock_previewdata_previewdata_samplepost", + "target": "macmagazine_features_newslibrary_sources_newslibrary_views_mock_previewdata_swift_feeddb", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Mock/PreviewData.swift", + "source_location": "L12", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_newslibrary_sources_newslibrary_views_mock_previewdata_previewdata_samplepost", + "target": "macmagazine_features_newslibrary_sources_newslibrary_views_mock_previewdata_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/NewsView.swift", + "source_location": "L268", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_sources_newslibrary_views_newsview", + "target": "macmagazine_features_newslibrary_sources_newslibrary_views_newsview_newsview", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/NewsView.swift", + "source_location": "L38", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_newslibrary_sources_newslibrary_views_newsview_newsview", + "target": "filter", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/NewsView.swift", + "source_location": "L197", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_sources_newslibrary_views_newsview_newsview", + "target": "macmagazine_features_newslibrary_sources_newslibrary_views_newsview_newsview_handletap", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/NewsView.swift", + "source_location": "L43", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_sources_newslibrary_views_newsview_newsview", + "target": "macmagazine_features_newslibrary_sources_newslibrary_views_newsview_newsview_init", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/NewsView.swift", + "source_location": "L24", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_newslibrary_sources_newslibrary_views_newsview_newsview", + "target": "macmagazine_features_newslibrary_sources_newslibrary_views_newsview_swift_analyticsmanager", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/NewsView.swift", + "source_location": "L292", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_newslibrary_sources_newslibrary_views_newsview_newsview", + "target": "macmagazine_features_newslibrary_sources_newslibrary_views_newsview_swift_bool", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/NewsView.swift", + "source_location": "L297", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_newslibrary_sources_newslibrary_views_newsview_newsview", + "target": "macmagazine_features_newslibrary_sources_newslibrary_views_newsview_swift_cgfloat", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/NewsView.swift", + "source_location": "L281", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_newslibrary_sources_newslibrary_views_newsview_newsview", + "target": "macmagazine_features_newslibrary_sources_newslibrary_views_newsview_swift_feeddb", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/NewsView.swift", + "source_location": "L270", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_newslibrary_sources_newslibrary_views_newsview_newsview", + "target": "macmagazine_features_newslibrary_sources_newslibrary_views_newsview_swift_int", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/NewsView.swift", + "source_location": "L31", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_newslibrary_sources_newslibrary_views_newsview_newsview", + "target": "macmagazine_features_newslibrary_sources_newslibrary_views_newsview_swift_newscategory", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/NewsView.swift", + "source_location": "L32", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_newslibrary_sources_newslibrary_views_newsview_newsview", + "target": "macmagazine_features_newslibrary_sources_newslibrary_views_newsview_swift_scrollposition", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/NewsView.swift", + "source_location": "L33", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_newslibrary_sources_newslibrary_views_newsview_newsview", + "target": "macmagazine_features_newslibrary_sources_newslibrary_views_newsview_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/NewsView.swift", + "source_location": "L43", + "weight": 1.0, + "context": "generic_arg", + "source": "macmagazine_features_newslibrary_sources_newslibrary_views_newsview_newsview_init", + "target": "macmagazine_features_newslibrary_sources_newslibrary_views_newsview_swift_bool", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/NewsView.swift", + "source_location": "L43", + "weight": 1.0, + "context": "generic_arg", + "source": "macmagazine_features_newslibrary_sources_newslibrary_views_newsview_newsview_init", + "target": "macmagazine_features_newslibrary_sources_newslibrary_views_newsview_swift_newscategory", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/NewsView.swift", + "source_location": "L43", + "weight": 1.0, + "context": "generic_arg", + "source": "macmagazine_features_newslibrary_sources_newslibrary_views_newsview_newsview_init", + "target": "macmagazine_features_newslibrary_sources_newslibrary_views_newsview_swift_scrollposition", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/NewsView.swift", + "source_location": "L197", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_newslibrary_sources_newslibrary_views_newsview_newsview_handletap", + "target": "macmagazine_features_newslibrary_sources_newslibrary_views_newsview_swift_feeddb", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/NewsView.swift", + "source_location": "L43", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_newslibrary_sources_newslibrary_views_newsview_newsview_init", + "target": "filter", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/VideosViewModel.swift", + "source_location": "L43", + "weight": 1.0, + "source": "macmagazine_features_videoslibrary_sources_videos_videosviewmodel_videosviewmodel_init", + "target": "filter" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/NewsView.swift", + "source_location": "L43", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_newslibrary_sources_newslibrary_views_newsview_newsview_init", + "target": "macmagazine_features_newslibrary_sources_newslibrary_views_newsview_swift_binding", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/NewsView.swift", + "source_location": "L43", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_newslibrary_sources_newslibrary_views_newsview_newsview_init", + "target": "macmagazine_features_newslibrary_sources_newslibrary_views_newsview_swift_database", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/NewsView.swift", + "source_location": "L199", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_sources_newslibrary_views_newsview_newsview_handletap", + "target": "macmagazine_features_newslibrary_sources_newslibrary_views_newsview_swift_int", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Tests/NewsLibraryTests/NewsViewModelTests.swift", + "source_location": "L262", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests", + "target": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests_createmocknetwork", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Tests/NewsLibraryTests/NewsViewModelTests.swift", + "source_location": "L8", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests", + "target": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests_newsviewmodeltests", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Tests/NewsLibraryTests/NewsViewModelTests.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests", + "target": "newslibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchResultsList.swift", + "source_location": "L5", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist", + "target": "newslibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/Features/News/NewsView.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_macmagazine_features_news_newsview", + "target": "newslibrary", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Tests/NewsLibraryTests/NewsViewModelTests.swift", + "source_location": "L211", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests_newsviewmodeltests", + "target": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests_newsviewmodeltests_fetchesdefaultpage", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Tests/NewsLibraryTests/NewsViewModelTests.swift", + "source_location": "L222", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests_newsviewmodeltests", + "target": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests_newsviewmodeltests_fetchesspecifiedpage", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Tests/NewsLibraryTests/NewsViewModelTests.swift", + "source_location": "L235", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests_newsviewmodeltests", + "target": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests_newsviewmodeltests_handlenegativeindex", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Tests/NewsLibraryTests/NewsViewModelTests.swift", + "source_location": "L246", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests_newsviewmodeltests", + "target": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests_newsviewmodeltests_handleverylargeindex", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Tests/NewsLibraryTests/NewsViewModelTests.swift", + "source_location": "L22", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests_newsviewmodeltests", + "target": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests_newsviewmodeltests_initialoptionishome", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Tests/NewsLibraryTests/NewsViewModelTests.swift", + "source_location": "L14", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests_newsviewmodeltests", + "target": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests_newsviewmodeltests_initialstatusisidle", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Tests/NewsLibraryTests/NewsViewModelTests.swift", + "source_location": "L183", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests_newsviewmodeltests", + "target": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests_newsviewmodeltests_keepsstatuswhennilpassed", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Tests/NewsLibraryTests/NewsViewModelTests.swift", + "source_location": "L88", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests_newsviewmodeltests", + "target": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests_newsviewmodeltests_noloadatindexzero", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Tests/NewsLibraryTests/NewsViewModelTests.swift", + "source_location": "L112", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests_newsviewmodeltests", + "target": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests_newsviewmodeltests_noloadatnonmultiples", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Tests/NewsLibraryTests/NewsViewModelTests.swift", + "source_location": "L99", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests_newsviewmodeltests", + "target": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests_newsviewmodeltests_noloadbelowthreshold", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Tests/NewsLibraryTests/NewsViewModelTests.swift", + "source_location": "L144", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests_newsviewmodeltests", + "target": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests_newsviewmodeltests_noloadforsameindex", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Tests/NewsLibraryTests/NewsViewModelTests.swift", + "source_location": "L131", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests_newsviewmodeltests", + "target": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests_newsviewmodeltests_noloadonbackwardscroll", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Tests/NewsLibraryTests/NewsViewModelTests.swift", + "source_location": "L78", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests_newsviewmodeltests", + "target": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests_newsviewmodeltests_optionsequatable", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Tests/NewsLibraryTests/NewsViewModelTests.swift", + "source_location": "L170", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests_newsviewmodeltests", + "target": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests_newsviewmodeltests_setsloadingstatus", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Tests/NewsLibraryTests/NewsViewModelTests.swift", + "source_location": "L194", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests_newsviewmodeltests", + "target": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests_newsviewmodeltests_statusupdatesonerror", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Tests/NewsLibraryTests/NewsViewModelTests.swift", + "source_location": "L159", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests_newsviewmodeltests", + "target": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests_newsviewmodeltests_statusupdatesonsuccess", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Tests/NewsLibraryTests/NewsViewModelTests.swift", + "source_location": "L46", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests_newsviewmodeltests", + "target": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests_newsviewmodeltests_supportsemptysearchtext", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Tests/NewsLibraryTests/NewsViewModelTests.swift", + "source_location": "L32", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests_newsviewmodeltests", + "target": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests_newsviewmodeltests_supportssearchoption", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Tests/NewsLibraryTests/NewsViewModelTests.swift", + "source_location": "L60", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests_newsviewmodeltests", + "target": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests_newsviewmodeltests_transitionbetweenoptions", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Tests/NewsLibraryTests/NewsViewModelTests.swift", + "source_location": "L91", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests_newsviewmodeltests_noloadatindexzero", + "target": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests_createmocknetwork", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Tests/NewsLibraryTests/NewsViewModelTests.swift", + "source_location": "L102", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests_newsviewmodeltests_noloadbelowthreshold", + "target": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests_createmocknetwork", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Tests/NewsLibraryTests/NewsViewModelTests.swift", + "source_location": "L115", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests_newsviewmodeltests_noloadatnonmultiples", + "target": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests_createmocknetwork", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Tests/NewsLibraryTests/NewsViewModelTests.swift", + "source_location": "L134", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests_newsviewmodeltests_noloadonbackwardscroll", + "target": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests_createmocknetwork", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Tests/NewsLibraryTests/NewsViewModelTests.swift", + "source_location": "L147", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests_newsviewmodeltests_noloadforsameindex", + "target": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests_createmocknetwork", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Tests/NewsLibraryTests/NewsViewModelTests.swift", + "source_location": "L162", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests_newsviewmodeltests_statusupdatesonsuccess", + "target": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests_createmocknetwork", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Tests/NewsLibraryTests/NewsViewModelTests.swift", + "source_location": "L173", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests_newsviewmodeltests_setsloadingstatus", + "target": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests_createmocknetwork", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Tests/NewsLibraryTests/NewsViewModelTests.swift", + "source_location": "L186", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests_newsviewmodeltests_keepsstatuswhennilpassed", + "target": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests_createmocknetwork", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Tests/NewsLibraryTests/NewsViewModelTests.swift", + "source_location": "L214", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests_newsviewmodeltests_fetchesdefaultpage", + "target": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests_createmocknetwork", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Tests/NewsLibraryTests/NewsViewModelTests.swift", + "source_location": "L225", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests_newsviewmodeltests_fetchesspecifiedpage", + "target": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests_createmocknetwork", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Tests/NewsLibraryTests/NewsViewModelTests.swift", + "source_location": "L238", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests_newsviewmodeltests_handlenegativeindex", + "target": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests_createmocknetwork", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Tests/NewsLibraryTests/NewsViewModelTests.swift", + "source_location": "L249", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests_newsviewmodeltests_handleverylargeindex", + "target": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests_createmocknetwork", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/NewsLibrary/Tests/NewsLibraryTests/NewsViewModelTests.swift", + "source_location": "L262", + "weight": 1.0, + "source": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests_createmocknetwork", + "target": "macmagazine_features_newslibrary_tests_newslibrarytests_newsviewmodeltests_swift_networkmockdata", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Extensions/Array.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_extensions_array", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_extensions_array_array", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Extensions/Array.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_extensions_array_array", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_extensions_array_array_chunked", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Extensions/Array.swift", + "source_location": "L4", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_extensions_array_array_chunked", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_extensions_array_swift_element", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Extensions/Array.swift", + "source_location": "L4", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_extensions_array_array_chunked", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_extensions_array_swift_int", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Extensions/View.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_extensions_view", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_extensions_view_view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Extensions/View.swift", + "source_location": "L5", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_extensions_view_view_blurslide", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_extensions_view_view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Extensions/View.swift", + "source_location": "L36", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_extensions_view_view_onboardinganimatein", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_extensions_view_view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Extensions/View.swift", + "source_location": "L50", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_extensions_view_view_onboardingfade", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_extensions_view_view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Extensions/View.swift", + "source_location": "L14", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_extensions_view_view_setuponboarding", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_extensions_view_view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Extensions/View.swift", + "source_location": "L5", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_extensions_view_view_blurslide", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_extensions_view_swift_bool", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Extensions/View.swift", + "source_location": "L36", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_extensions_view_view_onboardinganimatein", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_extensions_view_swift_bool", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Extensions/View.swift", + "source_location": "L50", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_extensions_view_view_onboardingfade", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_extensions_view_swift_bool", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Extensions/View.swift", + "source_location": "L36", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_extensions_view_view_onboardinganimatein", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_extensions_view_swift_double", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Extensions/View.swift", + "source_location": "L50", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_extensions_view_view_onboardingfade", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_extensions_view_swift_double", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Extensions/View.swift", + "source_location": "L55", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_extensions_view_view_onboardingfade", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_modifiers_onboardingfademodifier_onboardingfademodifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Model/OnBoardingFeature.swift", + "source_location": "L10", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_model_onboardingfeature", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_model_onboardingfeature_onboardingfeature", + "confidence_score": 1.0 + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Model/OnBoardingFeature.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_model_onboardingfeature_onboardingfeature", + "target": "identifiable", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Model/OnBoardingFeature.swift", + "source_location": "L7", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_model_onboardingfeature_onboardingfeature", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_model_onboardingfeature_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Screen2_FeaturesView.swift", + "source_location": "L42", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_screen2_featuresview_featuresview", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_model_onboardingfeature_onboardingfeature", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Screen2_FeaturesView.swift", + "source_location": "L196", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_screen2_featuresview_featuresview_cardview", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_model_onboardingfeature_onboardingfeature", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Screen2_FeaturesView.swift", + "source_location": "L187", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_screen2_featuresview_featuresview_pageview", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_model_onboardingfeature_onboardingfeature", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/ViewModels/OnboardingCoordinator.swift", + "source_location": "L7", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_onboardingcoordinator_onboardingcoordinator", + "target": "identifiable", + "confidence_score": 1.0 + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Models/SearchResult.swift", + "source_location": "L11", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_models_searchresult_searchresult", + "target": "identifiable", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/ViewModels/OnboardingCoordinator.swift", + "source_location": "L7", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_onboardingcoordinator", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_onboardingcoordinator_onboardingcoordinator", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/ViewModels/OnboardingCoordinator.swift", + "source_location": "L122", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_onboardingcoordinator", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_onboardingcoordinator_onboardingscreen", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/ViewModels/OnboardingCoordinator.swift", + "source_location": "L59", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_onboardingcoordinator_onboardingcoordinator", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_onboardingcoordinator_onboardingcoordinator_completeonboarding", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/ViewModels/OnboardingCoordinator.swift", + "source_location": "L82", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_onboardingcoordinator_onboardingcoordinator_createifneeded", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_onboardingcoordinator_onboardingcoordinator", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/ViewModels/OnboardingCoordinator.swift", + "source_location": "L26", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_onboardingcoordinator_onboardingcoordinator", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_onboardingcoordinator_onboardingcoordinator_init", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/ViewModels/OnboardingCoordinator.swift", + "source_location": "L71", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_onboardingcoordinator_onboardingcoordinator", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_onboardingcoordinator_onboardingcoordinator_markfeaturesasseen", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/ViewModels/OnboardingCoordinator.swift", + "source_location": "L36", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_onboardingcoordinator_onboardingcoordinator", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_onboardingcoordinator_onboardingcoordinator_navigate", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/ViewModels/OnboardingCoordinator.swift", + "source_location": "L114", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_onboardingcoordinator_onboardingcoordinator", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_onboardingcoordinator_onboardingcoordinator_resetonboarding", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/ViewModels/OnboardingCoordinator.swift", + "source_location": "L46", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_onboardingcoordinator_onboardingcoordinator", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_onboardingcoordinator_onboardingcoordinator_skiptopermissions", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/ViewModels/OnboardingCoordinator.swift", + "source_location": "L13", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_onboardingcoordinator_onboardingcoordinator", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_onboardingcoordinator_onboardingscreen", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/ViewModels/OnboardingCoordinator.swift", + "source_location": "L20", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_onboardingcoordinator_onboardingcoordinator", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_onboardingcoordinator_swift_analyticsmanager", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/ViewModels/OnboardingCoordinator.swift", + "source_location": "L75", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_onboardingcoordinator_onboardingcoordinator", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_onboardingcoordinator_swift_bool", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/ViewModels/OnboardingCoordinator.swift", + "source_location": "L10", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_onboardingcoordinator_onboardingcoordinator", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_onboardingcoordinator_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/ViewModels/OnboardingCoordinator.swift", + "source_location": "L16", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_onboardingcoordinator_onboardingcoordinator", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_onboardingcoordinator_swift_void", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/ViewModels/OnboardingCoordinator.swift", + "source_location": "L19", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_onboardingcoordinator_onboardingcoordinator", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_permissionmanager_permissionmanager", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/OnboardingContainerView.swift", + "source_location": "L8", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_onboardingcontainerview_onboardingcontainerview", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_onboardingcoordinator_onboardingcoordinator", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/OnboardingContainerView.swift", + "source_location": "L15", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_onboardingcontainerview_onboardingcontainerview_init", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_onboardingcoordinator_onboardingcoordinator", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/OnboardingContainerView.swift", + "source_location": "L54", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_onboardingcontainerview_onboardingsheetpreviewhost", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_onboardingcoordinator_onboardingcoordinator", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Screen1_WelcomeView.swift", + "source_location": "L166", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_screen1_welcomeview_welcomesheetpreviewhost", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_onboardingcoordinator_onboardingcoordinator", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Screen1_WelcomeView.swift", + "source_location": "L11", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_screen1_welcomeview_welcomeview", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_onboardingcoordinator_onboardingcoordinator", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Screen1_WelcomeView.swift", + "source_location": "L141", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_screen1_welcomeview_welcomeview_trackandnavigate", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_onboardingcoordinator_onboardingcoordinator" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Screen2_FeaturesView.swift", + "source_location": "L12", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_screen2_featuresview_featuresview", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_onboardingcoordinator_onboardingcoordinator", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Screen2_FeaturesView.swift", + "source_location": "L279", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_screen2_featuresview_featuresview_handlecontinue", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_onboardingcoordinator_onboardingcoordinator" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Screen2_FeaturesView.swift", + "source_location": "L304", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_screen2_featuresview_featuresviewsheetpreviewhost", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_onboardingcoordinator_onboardingcoordinator", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Screen3_PermissionsView.swift", + "source_location": "L11", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_screen3_permissionsview_permissionsview", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_onboardingcoordinator_onboardingcoordinator", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Screen3_PermissionsView.swift", + "source_location": "L226", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_screen3_permissionsview_permissionsview_requestattpermission", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_onboardingcoordinator_onboardingcoordinator" + }, + { + "relation": "references", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Screen3_PermissionsView.swift", + "source_location": "L221", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_screen3_permissionsview_permissionsview_requestpushpermission", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_onboardingcoordinator_onboardingcoordinator" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Screen3_PermissionsView.swift", + "source_location": "L245", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_screen3_permissionsview_permissionviewsheetpreviewhost", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_onboardingcoordinator_onboardingcoordinator", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/OnboardingLibrary/Tests/OnboardingLibraryTests/OnboardingCoordinatorTests.swift", + "source_location": "L111", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_tests_onboardinglibrarytests_onboardingcoordinatortests_onboardingcoordinatortests_completionhandlercalled", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_onboardingcoordinator_onboardingcoordinator" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/OnboardingLibrary/Tests/OnboardingLibraryTests/OnboardingCoordinatorTests.swift", + "source_location": "L125", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_tests_onboardinglibrarytests_onboardingcoordinatortests_onboardingcoordinatortests_completionwithnilhandler", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_onboardingcoordinator_onboardingcoordinator" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/OnboardingLibrary/Tests/OnboardingLibraryTests/OnboardingCoordinatorTests.swift", + "source_location": "L32", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_tests_onboardinglibrarytests_onboardingcoordinatortests_onboardingcoordinatortests_hasstableidentifier", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_onboardingcoordinator_onboardingcoordinator" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/OnboardingLibrary/Tests/OnboardingLibraryTests/OnboardingCoordinatorTests.swift", + "source_location": "L41", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_tests_onboardinglibrarytests_onboardingcoordinatortests_onboardingcoordinatortests_initialcompletionisnil", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_onboardingcoordinator_onboardingcoordinator" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/OnboardingLibrary/Tests/OnboardingLibraryTests/OnboardingCoordinatorTests.swift", + "source_location": "L23", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_tests_onboardinglibrarytests_onboardingcoordinatortests_onboardingcoordinatortests_initialscreeniswelcome", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_onboardingcoordinator_onboardingcoordinator" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/OnboardingLibrary/Tests/OnboardingLibraryTests/OnboardingCoordinatorTests.swift", + "source_location": "L138", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_tests_onboardinglibrarytests_onboardingcoordinatortests_onboardingcoordinatortests_marksonboardingascompleted", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_onboardingcoordinator_onboardingcoordinator" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/OnboardingLibrary/Tests/OnboardingLibraryTests/OnboardingCoordinatorTests.swift", + "source_location": "L74", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_tests_onboardinglibrarytests_onboardingcoordinatortests_onboardingcoordinatortests_navigatebacktowelcome", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_onboardingcoordinator_onboardingcoordinator" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/OnboardingLibrary/Tests/OnboardingLibraryTests/OnboardingCoordinatorTests.swift", + "source_location": "L52", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_tests_onboardinglibrarytests_onboardingcoordinatortests_onboardingcoordinatortests_navigatetofeatures", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_onboardingcoordinator_onboardingcoordinator" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/OnboardingLibrary/Tests/OnboardingLibraryTests/OnboardingCoordinatorTests.swift", + "source_location": "L63", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_tests_onboardinglibrarytests_onboardingcoordinatortests_onboardingcoordinatortests_navigatetopermissions", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_onboardingcoordinator_onboardingcoordinator" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/OnboardingLibrary/Tests/OnboardingLibraryTests/OnboardingCoordinatorTests.swift", + "source_location": "L152", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_tests_onboardinglibrarytests_onboardingcoordinatortests_onboardingcoordinatortests_resetonboardingstate", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_onboardingcoordinator_onboardingcoordinator" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/OnboardingLibrary/Tests/OnboardingLibraryTests/OnboardingCoordinatorTests.swift", + "source_location": "L183", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_tests_onboardinglibrarytests_onboardingcoordinatortests_onboardingcoordinatortests_skipnavigationflow", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_onboardingcoordinator_onboardingcoordinator" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/OnboardingLibrary/Tests/OnboardingLibraryTests/OnboardingCoordinatorTests.swift", + "source_location": "L86", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_tests_onboardinglibrarytests_onboardingcoordinatortests_onboardingcoordinatortests_skiptopermissions", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_onboardingcoordinator_onboardingcoordinator" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/OnboardingLibrary/Tests/OnboardingLibraryTests/OnboardingCoordinatorTests.swift", + "source_location": "L97", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_tests_onboardinglibrarytests_onboardingcoordinatortests_onboardingcoordinatortests_skiptopermissionsfromfeatures", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_onboardingcoordinator_onboardingcoordinator" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/OnboardingLibrary/Tests/OnboardingLibraryTests/OnboardingCoordinatorTests.swift", + "source_location": "L168", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_tests_onboardinglibrarytests_onboardingcoordinatortests_onboardingcoordinatortests_typicalnavigationflow", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_onboardingcoordinator_onboardingcoordinator" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/MainViewModel.swift", + "source_location": "L32", + "weight": 1.0, + "context": "field", + "source": "macmagazine_macmagazine_mainapp_mainviewmodel_mainviewmodel", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_onboardingcoordinator_onboardingcoordinator", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/ViewModels/OnboardingCoordinator.swift", + "source_location": "L127", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_onboardingcoordinator_onboardingscreen", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_onboardingcoordinator_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/ViewModels/OnboardingCoordinator.swift", + "source_location": "L82", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_onboardingcoordinator_onboardingcoordinator_createifneeded", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_onboardingcoordinator_swift_analyticsmanager", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/ViewModels/OnboardingCoordinator.swift", + "source_location": "L26", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_onboardingcoordinator_onboardingcoordinator_init", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_onboardingcoordinator_swift_analyticsmanager", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/ViewModels/OnboardingCoordinator.swift", + "source_location": "L26", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_onboardingcoordinator_onboardingcoordinator_init", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_permissionmanager_permissionmanager", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/ViewModels/OnboardingCoordinator.swift", + "source_location": "L42", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_onboardingcoordinator_onboardingcoordinator_navigate", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_onboardingcoordinator_onboardingcoordinator_markfeaturesasseen", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/ViewModels/OnboardingCoordinator.swift", + "source_location": "L36", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_onboardingcoordinator_onboardingcoordinator_navigate", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_onboardingcoordinator_onboardingscreen", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Screen1_WelcomeView.swift", + "source_location": "L146", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_screen1_welcomeview_welcomeview_trackandnavigate", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_onboardingcoordinator_onboardingcoordinator_navigate" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Screen2_FeaturesView.swift", + "source_location": "L284", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_screen2_featuresview_featuresview_handlecontinue", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_onboardingcoordinator_onboardingcoordinator_navigate" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/OnboardingLibrary/Tests/OnboardingLibraryTests/OnboardingCoordinatorTests.swift", + "source_location": "L76", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_tests_onboardinglibrarytests_onboardingcoordinatortests_onboardingcoordinatortests_navigatebacktowelcome", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_onboardingcoordinator_onboardingcoordinator_navigate" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/OnboardingLibrary/Tests/OnboardingLibraryTests/OnboardingCoordinatorTests.swift", + "source_location": "L54", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_tests_onboardinglibrarytests_onboardingcoordinatortests_onboardingcoordinatortests_navigatetofeatures", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_onboardingcoordinator_onboardingcoordinator_navigate" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/OnboardingLibrary/Tests/OnboardingLibraryTests/OnboardingCoordinatorTests.swift", + "source_location": "L65", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_tests_onboardinglibrarytests_onboardingcoordinatortests_onboardingcoordinatortests_navigatetopermissions", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_onboardingcoordinator_onboardingcoordinator_navigate" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/OnboardingLibrary/Tests/OnboardingLibraryTests/OnboardingCoordinatorTests.swift", + "source_location": "L99", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_tests_onboardinglibrarytests_onboardingcoordinatortests_onboardingcoordinatortests_skiptopermissionsfromfeatures", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_onboardingcoordinator_onboardingcoordinator_navigate" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/OnboardingLibrary/Tests/OnboardingLibraryTests/OnboardingCoordinatorTests.swift", + "source_location": "L172", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_tests_onboardinglibrarytests_onboardingcoordinatortests_onboardingcoordinatortests_typicalnavigationflow", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_onboardingcoordinator_onboardingcoordinator_navigate" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/ViewModels/OnboardingCoordinator.swift", + "source_location": "L52", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_onboardingcoordinator_onboardingcoordinator_skiptopermissions", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_onboardingcoordinator_onboardingcoordinator_markfeaturesasseen", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/OnboardingLibrary/Tests/OnboardingLibraryTests/OnboardingCoordinatorTests.swift", + "source_location": "L116", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_tests_onboardinglibrarytests_onboardingcoordinatortests_onboardingcoordinatortests_completionhandlercalled", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_onboardingcoordinator_onboardingcoordinator_completeonboarding" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/OnboardingLibrary/Tests/OnboardingLibraryTests/OnboardingCoordinatorTests.swift", + "source_location": "L127", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_tests_onboardinglibrarytests_onboardingcoordinatortests_onboardingcoordinatortests_completionwithnilhandler", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_onboardingcoordinator_onboardingcoordinator_completeonboarding" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/OnboardingLibrary/Tests/OnboardingLibraryTests/OnboardingCoordinatorTests.swift", + "source_location": "L140", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_tests_onboardinglibrarytests_onboardingcoordinatortests_onboardingcoordinatortests_marksonboardingascompleted", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_onboardingcoordinator_onboardingcoordinator_completeonboarding" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/OnboardingLibrary/Tests/OnboardingLibraryTests/OnboardingCoordinatorTests.swift", + "source_location": "L154", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_tests_onboardinglibrarytests_onboardingcoordinatortests_onboardingcoordinatortests_resetonboardingstate", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_onboardingcoordinator_onboardingcoordinator_completeonboarding" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/ViewModels/OnboardingCoordinator.swift", + "source_location": "L82", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_onboardingcoordinator_onboardingcoordinator_createifneeded", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_onboardingcoordinator_swift_pushnotification", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/ViewModels/OnboardingCoordinator.swift", + "source_location": "L83", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_onboardingcoordinator_onboardingcoordinator_createifneeded", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_permissionmanager_permissionmanager", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/ViewModels/OnboardingCoordinator.swift", + "source_location": "L84", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_onboardingcoordinator_onboardingcoordinator_createifneeded", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_permissionmanager_permissionmanager_refreshallpermissionstatuses" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "MacMagazine/MacMagazine/MainApp/MainViewModel.swift", + "source_location": "L94", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_mainviewmodel_mainviewmodel_initializeonboarding", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_onboardingcoordinator_onboardingcoordinator_createifneeded" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "MacMagazine/Features/OnboardingLibrary/Tests/OnboardingLibraryTests/OnboardingCoordinatorTests.swift", + "source_location": "L14", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_tests_onboardinglibrarytests_onboardingcoordinatortests_onboardingcoordinatortests_init", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_onboardingcoordinator_onboardingcoordinator_resetonboarding" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "MacMagazine/Features/OnboardingLibrary/Tests/OnboardingLibraryTests/OnboardingCoordinatorTests.swift", + "source_location": "L134", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_tests_onboardinglibrarytests_onboardingcoordinatortests_onboardingcoordinatortests_marksonboardingascompleted", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_onboardingcoordinator_onboardingcoordinator_resetonboarding" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "MacMagazine/Features/OnboardingLibrary/Tests/OnboardingLibraryTests/OnboardingCoordinatorTests.swift", + "source_location": "L156", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_tests_onboardinglibrarytests_onboardingcoordinatortests_onboardingcoordinatortests_resetonboardingstate", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_onboardingcoordinator_onboardingcoordinator_resetonboarding" + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/ViewModels/OnboardingCoordinator.swift", + "source_location": "L124", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_onboardingcoordinator_onboardingscreen", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_onboardingcoordinator_onboardingscreen_features", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/ViewModels/OnboardingCoordinator.swift", + "source_location": "L125", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_onboardingcoordinator_onboardingscreen", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_onboardingcoordinator_onboardingscreen_permissions", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/ViewModels/OnboardingCoordinator.swift", + "source_location": "L123", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_onboardingcoordinator_onboardingscreen", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_onboardingcoordinator_onboardingscreen_welcome", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/ViewModels/PermissionManager.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_permissionmanager", + "target": "apptrackingtransparency", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/ViewModels/PermissionManager.swift", + "source_location": "L190", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_permissionmanager", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_permissionmanager_attpermissionstatus", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/ViewModels/PermissionManager.swift", + "source_location": "L7", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_permissionmanager", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_permissionmanager_permissionmanager", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/ViewModels/PermissionManager.swift", + "source_location": "L12", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_permissionmanager_permissionmanager", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_permissionmanager_attpermissionstatus", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/ViewModels/PermissionManager.swift", + "source_location": "L99", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_permissionmanager_permissionmanager", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_permissionmanager_permissionmanager_checkattpermissionstatus", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/ViewModels/PermissionManager.swift", + "source_location": "L25", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_permissionmanager_permissionmanager", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_permissionmanager_permissionmanager_checkpushpermissionstatus", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/ViewModels/PermissionManager.swift", + "source_location": "L17", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_permissionmanager_permissionmanager", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_permissionmanager_permissionmanager_init", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/ViewModels/PermissionManager.swift", + "source_location": "L182", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_permissionmanager_permissionmanager", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_permissionmanager_permissionmanager_refreshallpermissionstatuses", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/ViewModels/PermissionManager.swift", + "source_location": "L123", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_permissionmanager_permissionmanager", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_permissionmanager_permissionmanager_requestattpermission", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/ViewModels/PermissionManager.swift", + "source_location": "L36", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_permissionmanager_permissionmanager", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_permissionmanager_permissionmanager_requestpushpermission", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/ViewModels/PermissionManager.swift", + "source_location": "L63", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_permissionmanager_permissionmanager", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_permissionmanager_permissionmanager_skippushpermission", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/ViewModels/PermissionManager.swift", + "source_location": "L14", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_permissionmanager_permissionmanager", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_permissionmanager_swift_analyticsmanager", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/ViewModels/PermissionManager.swift", + "source_location": "L164", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_permissionmanager_permissionmanager", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_permissionmanager_swift_bool", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/ViewModels/PermissionManager.swift", + "source_location": "L15", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_permissionmanager_permissionmanager", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_permissionmanager_swift_pushnotification", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/ViewModels/PermissionManager.swift", + "source_location": "L170", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_permissionmanager_permissionmanager", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_permissionmanager_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/OnboardingContainerView.swift", + "source_location": "L55", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_onboardingcontainerview_onboardingsheetpreviewhost", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_permissionmanager_permissionmanager" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Screen1_WelcomeView.swift", + "source_location": "L167", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_screen1_welcomeview_welcomesheetpreviewhost", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_permissionmanager_permissionmanager" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Screen2_FeaturesView.swift", + "source_location": "L305", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_screen2_featuresview_featuresviewsheetpreviewhost", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_permissionmanager_permissionmanager" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Screen3_PermissionsView.swift", + "source_location": "L246", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_screen3_permissionsview_permissionviewsheetpreviewhost", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_permissionmanager_permissionmanager" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/OnboardingLibrary/Tests/OnboardingLibraryTests/OnboardingCoordinatorTests.swift", + "source_location": "L110", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_tests_onboardinglibrarytests_onboardingcoordinatortests_onboardingcoordinatortests_completionhandlercalled", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_permissionmanager_permissionmanager" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/OnboardingLibrary/Tests/OnboardingLibraryTests/OnboardingCoordinatorTests.swift", + "source_location": "L124", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_tests_onboardinglibrarytests_onboardingcoordinatortests_onboardingcoordinatortests_completionwithnilhandler", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_permissionmanager_permissionmanager" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/OnboardingLibrary/Tests/OnboardingLibraryTests/OnboardingCoordinatorTests.swift", + "source_location": "L31", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_tests_onboardinglibrarytests_onboardingcoordinatortests_onboardingcoordinatortests_hasstableidentifier", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_permissionmanager_permissionmanager" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/OnboardingLibrary/Tests/OnboardingLibraryTests/OnboardingCoordinatorTests.swift", + "source_location": "L40", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_tests_onboardinglibrarytests_onboardingcoordinatortests_onboardingcoordinatortests_initialcompletionisnil", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_permissionmanager_permissionmanager" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/OnboardingLibrary/Tests/OnboardingLibraryTests/OnboardingCoordinatorTests.swift", + "source_location": "L22", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_tests_onboardinglibrarytests_onboardingcoordinatortests_onboardingcoordinatortests_initialscreeniswelcome", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_permissionmanager_permissionmanager" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/OnboardingLibrary/Tests/OnboardingLibraryTests/OnboardingCoordinatorTests.swift", + "source_location": "L137", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_tests_onboardinglibrarytests_onboardingcoordinatortests_onboardingcoordinatortests_marksonboardingascompleted", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_permissionmanager_permissionmanager" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/OnboardingLibrary/Tests/OnboardingLibraryTests/OnboardingCoordinatorTests.swift", + "source_location": "L73", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_tests_onboardinglibrarytests_onboardingcoordinatortests_onboardingcoordinatortests_navigatebacktowelcome", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_permissionmanager_permissionmanager" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/OnboardingLibrary/Tests/OnboardingLibraryTests/OnboardingCoordinatorTests.swift", + "source_location": "L51", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_tests_onboardinglibrarytests_onboardingcoordinatortests_onboardingcoordinatortests_navigatetofeatures", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_permissionmanager_permissionmanager" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/OnboardingLibrary/Tests/OnboardingLibraryTests/OnboardingCoordinatorTests.swift", + "source_location": "L62", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_tests_onboardinglibrarytests_onboardingcoordinatortests_onboardingcoordinatortests_navigatetopermissions", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_permissionmanager_permissionmanager" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/OnboardingLibrary/Tests/OnboardingLibraryTests/OnboardingCoordinatorTests.swift", + "source_location": "L151", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_tests_onboardinglibrarytests_onboardingcoordinatortests_onboardingcoordinatortests_resetonboardingstate", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_permissionmanager_permissionmanager" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/OnboardingLibrary/Tests/OnboardingLibraryTests/OnboardingCoordinatorTests.swift", + "source_location": "L182", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_tests_onboardinglibrarytests_onboardingcoordinatortests_onboardingcoordinatortests_skipnavigationflow", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_permissionmanager_permissionmanager" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/OnboardingLibrary/Tests/OnboardingLibraryTests/OnboardingCoordinatorTests.swift", + "source_location": "L85", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_tests_onboardinglibrarytests_onboardingcoordinatortests_onboardingcoordinatortests_skiptopermissions", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_permissionmanager_permissionmanager" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/OnboardingLibrary/Tests/OnboardingLibraryTests/OnboardingCoordinatorTests.swift", + "source_location": "L96", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_tests_onboardinglibrarytests_onboardingcoordinatortests_onboardingcoordinatortests_skiptopermissionsfromfeatures", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_permissionmanager_permissionmanager" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/OnboardingLibrary/Tests/OnboardingLibraryTests/OnboardingCoordinatorTests.swift", + "source_location": "L167", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_tests_onboardinglibrarytests_onboardingcoordinatortests_onboardingcoordinatortests_typicalnavigationflow", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_permissionmanager_permissionmanager" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/ViewModels/PermissionManager.swift", + "source_location": "L17", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_permissionmanager_permissionmanager_init", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_permissionmanager_swift_analyticsmanager", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/ViewModels/PermissionManager.swift", + "source_location": "L17", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_permissionmanager_permissionmanager_init", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_permissionmanager_swift_pushnotification", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/ViewModels/PermissionManager.swift", + "source_location": "L183", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_permissionmanager_permissionmanager_refreshallpermissionstatuses", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_permissionmanager_permissionmanager_checkpushpermissionstatus", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/ViewModels/PermissionManager.swift", + "source_location": "L36", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_permissionmanager_permissionmanager_requestpushpermission", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_permissionmanager_swift_bool", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/ViewModels/PermissionManager.swift", + "source_location": "L123", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_permissionmanager_permissionmanager_requestattpermission", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_permissionmanager_swift_bool", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/ViewModels/PermissionManager.swift", + "source_location": "L184", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_permissionmanager_permissionmanager_refreshallpermissionstatuses", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_permissionmanager_permissionmanager_checkattpermissionstatus", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/ViewModels/PermissionManager.swift", + "source_location": "L192", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_permissionmanager_attpermissionstatus", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_permissionmanager_attpermissionstatus_authorized", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/ViewModels/PermissionManager.swift", + "source_location": "L193", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_permissionmanager_attpermissionstatus", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_permissionmanager_attpermissionstatus_denied", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/ViewModels/PermissionManager.swift", + "source_location": "L191", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_permissionmanager_attpermissionstatus", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_permissionmanager_attpermissionstatus_notdetermined", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/ViewModels/PermissionManager.swift", + "source_location": "L194", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_permissionmanager_attpermissionstatus", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_viewmodels_permissionmanager_attpermissionstatus_restricted", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Components/OnboardingCTAButton.swift", + "source_location": "L7", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_onboardingctabutton", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_onboardingctabutton_onboardingctabutton", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Components/OnboardingCTAButton.swift", + "source_location": "L20", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_onboardingctabutton_onboardingctabutton", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_onboardingctabutton_onboardingctabutton_init", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Components/OnboardingCTAButton.swift", + "source_location": "L16", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_onboardingctabutton_onboardingctabutton", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_onboardingctabutton_swift_bool", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Components/OnboardingCTAButton.swift", + "source_location": "L11", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_onboardingctabutton_onboardingctabutton", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_onboardingctabutton_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Components/OnboardingCTAButton.swift", + "source_location": "L14", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_onboardingctabutton_onboardingctabutton", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_onboardingctabutton_swift_void", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Components/OnboardingCTAButton.swift", + "source_location": "L20", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_onboardingctabutton_onboardingctabutton_init", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_onboardingctabutton_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Components/OnboardingCTAButton.swift", + "source_location": "L20", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_onboardingctabutton_onboardingctabutton_init", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_onboardingctabutton_swift_bool", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Components/OnboardingCTAButton.swift", + "source_location": "L20", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_onboardingctabutton_onboardingctabutton_init", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_onboardingctabutton_swift_void", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Components/OnboardingLogoView.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_onboardinglogoview", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_onboardinglogoview_onboardinglogoview", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Components/OnboardingLogoView.swift", + "source_location": "L12", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_onboardinglogoview_onboardinglogoview", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_onboardinglogoview_onboardinglogoview_init", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Components/OnboardingLogoView.swift", + "source_location": "L8", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_onboardinglogoview_onboardinglogoview", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_onboardinglogoview_swift_cgfloat", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Screen1_WelcomeView.swift", + "source_location": "L105", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_screen1_welcomeview_welcomeview_logoview", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_onboardinglogoview_onboardinglogoview" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Components/OnboardingLogoView.swift", + "source_location": "L12", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_onboardinglogoview_onboardinglogoview_init", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_onboardinglogoview_swift_cgfloat", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Components/OnboardingSkipButton.swift", + "source_location": "L7", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_onboardingskipbutton", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_onboardingskipbutton_onboardingskipbutton", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Components/OnboardingSkipButton.swift", + "source_location": "L12", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_onboardingskipbutton_onboardingskipbutton", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_onboardingskipbutton_onboardingskipbutton_init", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Components/OnboardingSkipButton.swift", + "source_location": "L10", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_onboardingskipbutton_onboardingskipbutton", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_onboardingskipbutton_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Components/OnboardingSkipButton.swift", + "source_location": "L8", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_onboardingskipbutton_onboardingskipbutton", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_onboardingskipbutton_swift_void", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Components/OnboardingSkipButton.swift", + "source_location": "L12", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_onboardingskipbutton_onboardingskipbutton_init", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_onboardingskipbutton_swift_void", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Components/OnboardingSkipButton.swift", + "source_location": "L12", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_onboardingskipbutton_onboardingskipbutton_init", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_onboardingskipbutton_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Components/OnboardingTitleView.swift", + "source_location": "L7", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_onboardingtitleview", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_onboardingtitleview_onboardingtitleview", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Components/OnboardingTitleView.swift", + "source_location": "L14", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_onboardingtitleview_onboardingtitleview", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_onboardingtitleview_onboardingtitleview_init", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Components/OnboardingTitleView.swift", + "source_location": "L11", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_onboardingtitleview_onboardingtitleview", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_onboardingtitleview_swift_bool", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Components/OnboardingTitleView.swift", + "source_location": "L12", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_onboardingtitleview_onboardingtitleview", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_onboardingtitleview_swift_double", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Components/OnboardingTitleView.swift", + "source_location": "L10", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_onboardingtitleview_onboardingtitleview", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_onboardingtitleview_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Components/OnboardingTitleView.swift", + "source_location": "L14", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_onboardingtitleview_onboardingtitleview_init", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_onboardingtitleview_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Components/OnboardingTitleView.swift", + "source_location": "L14", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_onboardingtitleview_onboardingtitleview_init", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_onboardingtitleview_swift_bool", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Components/OnboardingTitleView.swift", + "source_location": "L14", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_onboardingtitleview_onboardingtitleview_init", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_onboardingtitleview_swift_double", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Components/PermissionCard.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_permissioncard", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_permissioncard_permissioncard", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Components/PermissionCard.swift", + "source_location": "L128", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_permissioncard", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_permissioncard_permissioncardstatus", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Components/PermissionCard.swift", + "source_location": "L12", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_permissioncard_permissioncard", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_permissioncard_permissioncard_init", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Components/PermissionCard.swift", + "source_location": "L7", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_permissioncard_permissioncard", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_permissioncard_permissioncardstatus", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Components/PermissionCard.swift", + "source_location": "L6", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_permissioncard_permissioncard", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_permissioncard_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Components/PermissionCard.swift", + "source_location": "L8", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_permissioncard_permissioncard", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_permissioncard_swift_void", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Components/PermissionCard.swift", + "source_location": "L12", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_permissioncard_permissioncard_init", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_permissioncard_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Components/PermissionCard.swift", + "source_location": "L12", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_permissioncard_permissioncard_init", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_permissioncard_swift_void", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Components/PermissionCard.swift", + "source_location": "L12", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_permissioncard_permissioncard_init", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_permissioncard_permissioncardstatus", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Components/PermissionCard.swift", + "source_location": "L131", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_permissioncard_permissioncardstatus", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_permissioncard_permissioncardstatus_denied", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Components/PermissionCard.swift", + "source_location": "L130", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_permissioncard_permissioncardstatus", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_permissioncard_permissioncardstatus_granted", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Components/PermissionCard.swift", + "source_location": "L129", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_permissioncard_permissioncardstatus", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_permissioncard_permissioncardstatus_notdetermined", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Screen3_PermissionsView.swift", + "source_location": "L33", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_screen3_permissionsview_permissionsview", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_components_permissioncard_permissioncardstatus", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Modifiers/OnboardingFadeModifier.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_modifiers_onboardingfademodifier", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_modifiers_onboardingfademodifier_onboardingfademodifier", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Modifiers/OnboardingFadeModifier.swift", + "source_location": "L8", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_modifiers_onboardingfademodifier_onboardingfademodifier", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_modifiers_onboardingfademodifier_onboardingfademodifier_body", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Modifiers/OnboardingFadeModifier.swift", + "source_location": "L4", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_modifiers_onboardingfademodifier_onboardingfademodifier", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_modifiers_onboardingfademodifier_swift_bool", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Modifiers/OnboardingFadeModifier.swift", + "source_location": "L6", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_modifiers_onboardingfademodifier_onboardingfademodifier", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_modifiers_onboardingfademodifier_swift_double", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Modifiers/OnboardingFadeModifier.swift", + "source_location": "L8", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_modifiers_onboardingfademodifier_onboardingfademodifier_body", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_modifiers_onboardingfademodifier_swift_content", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Modifiers/OnboardingFadeModifier.swift", + "source_location": "L8", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_modifiers_onboardingfademodifier_onboardingfademodifier_body", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_modifiers_onboardingfademodifier_swift_view", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/OnboardingContainerView.swift", + "source_location": "L5", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_onboardingcontainerview", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_onboardingcontainerview_onboardingcontainerview", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/OnboardingContainerView.swift", + "source_location": "L52", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_onboardingcontainerview", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_onboardingcontainerview_onboardingsheetpreviewhost", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/OnboardingContainerView.swift", + "source_location": "L15", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_onboardingcontainerview_onboardingcontainerview", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_onboardingcontainerview_onboardingcontainerview_init", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/OnboardingContainerView.swift", + "source_location": "L11", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_onboardingcontainerview_onboardingcontainerview", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_onboardingcontainerview_swift_bool", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Screen1_WelcomeView.swift", + "source_location": "L164", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_screen1_welcomeview", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_screen1_welcomeview_welcomesheetpreviewhost", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Screen1_WelcomeView.swift", + "source_location": "L6", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_screen1_welcomeview", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_screen1_welcomeview_welcomeview", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Screen1_WelcomeView.swift", + "source_location": "L16", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_screen1_welcomeview_welcomeview", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_screen1_welcomeview_swift_bool", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Screen1_WelcomeView.swift", + "source_location": "L12", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_screen1_welcomeview_welcomeview", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_screen1_welcomeview_swift_namespace", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Screen1_WelcomeView.swift", + "source_location": "L104", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_screen1_welcomeview_welcomeview", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_screen1_welcomeview_welcomeview_logoview", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Screen1_WelcomeView.swift", + "source_location": "L140", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_screen1_welcomeview_welcomeview", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_screen1_welcomeview_welcomeview_trackandnavigate", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Screen1_WelcomeView.swift", + "source_location": "L104", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_screen1_welcomeview_welcomeview_logoview", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_screen1_welcomeview_swift_cgfloat", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Screen2_FeaturesView.swift", + "source_location": "L6", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_screen2_featuresview", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_screen2_featuresview_featuresview", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Screen2_FeaturesView.swift", + "source_location": "L302", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_screen2_featuresview", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_screen2_featuresview_featuresviewsheetpreviewhost", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Screen2_FeaturesView.swift", + "source_location": "L196", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_screen2_featuresview_featuresview", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_screen2_featuresview_featuresview_cardview", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Screen2_FeaturesView.swift", + "source_location": "L278", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_screen2_featuresview_featuresview", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_screen2_featuresview_featuresview_handlecontinue", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Screen2_FeaturesView.swift", + "source_location": "L187", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_screen2_featuresview_featuresview", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_screen2_featuresview_featuresview_pageview", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Screen2_FeaturesView.swift", + "source_location": "L46", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_screen2_featuresview_featuresview", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_screen2_featuresview_swift_bool", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Screen2_FeaturesView.swift", + "source_location": "L177", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_screen2_featuresview_featuresview", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_screen2_featuresview_swift_cgfloat", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Screen2_FeaturesView.swift", + "source_location": "L38", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_screen2_featuresview_featuresview", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_screen2_featuresview_swift_griditem", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Screen2_FeaturesView.swift", + "source_location": "L34", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_screen2_featuresview_featuresview", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_screen2_featuresview_swift_int", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Screen2_FeaturesView.swift", + "source_location": "L13", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_screen2_featuresview_featuresview", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_screen2_featuresview_swift_namespace", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Screen2_FeaturesView.swift", + "source_location": "L190", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_screen2_featuresview_featuresview_pageview", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_screen2_featuresview_featuresview_cardview", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Screen2_FeaturesView.swift", + "source_location": "L206", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_screen2_featuresview_featuresview_cardview", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_views_extensions_plainbuttontextstyle_text" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Screen3_PermissionsView.swift", + "source_location": "L6", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_screen3_permissionsview", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_screen3_permissionsview_permissionsview", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Screen3_PermissionsView.swift", + "source_location": "L241", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_screen3_permissionsview", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_screen3_permissionsview_permissionviewsheetpreviewhost", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Screen3_PermissionsView.swift", + "source_location": "L224", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_screen3_permissionsview_permissionsview", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_screen3_permissionsview_permissionsview_requestattpermission", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Screen3_PermissionsView.swift", + "source_location": "L219", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_screen3_permissionsview_permissionsview", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_screen3_permissionsview_permissionsview_requestpushpermission", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Screen3_PermissionsView.swift", + "source_location": "L44", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_screen3_permissionsview_permissionsview", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_screen3_permissionsview_swift_bool", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Screen3_PermissionsView.swift", + "source_location": "L12", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_screen3_permissionsview_permissionsview", + "target": "macmagazine_features_onboardinglibrary_sources_onboardinglibrary_views_screen3_permissionsview_swift_namespace", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Tests/OnboardingLibraryTests/OnboardingCoordinatorTests.swift", + "source_location": "L7", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_tests_onboardinglibrarytests_onboardingcoordinatortests", + "target": "macmagazine_features_onboardinglibrary_tests_onboardinglibrarytests_onboardingcoordinatortests_onboardingcoordinatortests", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Tests/OnboardingLibraryTests/OnboardingCoordinatorTests.swift", + "source_location": "L192", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_tests_onboardinglibrarytests_onboardingcoordinatortests", + "target": "macmagazine_features_onboardinglibrary_tests_onboardinglibrarytests_onboardingcoordinatortests_onboardingscreentests", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Tests/OnboardingLibraryTests/OnboardingCoordinatorTests.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_tests_onboardinglibrarytests_onboardingcoordinatortests", + "target": "onboardinglibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/MacMagazineApp.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_macmagazineapp", + "target": "onboardinglibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/MainViewModel.swift", + "source_location": "L5", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_mainviewmodel", + "target": "onboardinglibrary", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Tests/OnboardingLibraryTests/OnboardingCoordinatorTests.swift", + "source_location": "L107", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_tests_onboardinglibrarytests_onboardingcoordinatortests_onboardingcoordinatortests", + "target": "macmagazine_features_onboardinglibrary_tests_onboardinglibrarytests_onboardingcoordinatortests_onboardingcoordinatortests_completionhandlercalled", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Tests/OnboardingLibraryTests/OnboardingCoordinatorTests.swift", + "source_location": "L121", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_tests_onboardinglibrarytests_onboardingcoordinatortests_onboardingcoordinatortests", + "target": "macmagazine_features_onboardinglibrary_tests_onboardinglibrarytests_onboardingcoordinatortests_onboardingcoordinatortests_completionwithnilhandler", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Tests/OnboardingLibraryTests/OnboardingCoordinatorTests.swift", + "source_location": "L28", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_tests_onboardinglibrarytests_onboardingcoordinatortests_onboardingcoordinatortests", + "target": "macmagazine_features_onboardinglibrary_tests_onboardinglibrarytests_onboardingcoordinatortests_onboardingcoordinatortests_hasstableidentifier", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Tests/OnboardingLibraryTests/OnboardingCoordinatorTests.swift", + "source_location": "L13", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_tests_onboardinglibrarytests_onboardingcoordinatortests_onboardingcoordinatortests", + "target": "macmagazine_features_onboardinglibrary_tests_onboardinglibrarytests_onboardingcoordinatortests_onboardingcoordinatortests_init", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Tests/OnboardingLibraryTests/OnboardingCoordinatorTests.swift", + "source_location": "L37", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_tests_onboardinglibrarytests_onboardingcoordinatortests_onboardingcoordinatortests", + "target": "macmagazine_features_onboardinglibrary_tests_onboardinglibrarytests_onboardingcoordinatortests_onboardingcoordinatortests_initialcompletionisnil", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Tests/OnboardingLibraryTests/OnboardingCoordinatorTests.swift", + "source_location": "L19", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_tests_onboardinglibrarytests_onboardingcoordinatortests_onboardingcoordinatortests", + "target": "macmagazine_features_onboardinglibrary_tests_onboardinglibrarytests_onboardingcoordinatortests_onboardingcoordinatortests_initialscreeniswelcome", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Tests/OnboardingLibraryTests/OnboardingCoordinatorTests.swift", + "source_location": "L132", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_tests_onboardinglibrarytests_onboardingcoordinatortests_onboardingcoordinatortests", + "target": "macmagazine_features_onboardinglibrary_tests_onboardinglibrarytests_onboardingcoordinatortests_onboardingcoordinatortests_marksonboardingascompleted", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Tests/OnboardingLibraryTests/OnboardingCoordinatorTests.swift", + "source_location": "L70", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_tests_onboardinglibrarytests_onboardingcoordinatortests_onboardingcoordinatortests", + "target": "macmagazine_features_onboardinglibrary_tests_onboardinglibrarytests_onboardingcoordinatortests_onboardingcoordinatortests_navigatebacktowelcome", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Tests/OnboardingLibraryTests/OnboardingCoordinatorTests.swift", + "source_location": "L48", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_tests_onboardinglibrarytests_onboardingcoordinatortests_onboardingcoordinatortests", + "target": "macmagazine_features_onboardinglibrary_tests_onboardinglibrarytests_onboardingcoordinatortests_onboardingcoordinatortests_navigatetofeatures", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Tests/OnboardingLibraryTests/OnboardingCoordinatorTests.swift", + "source_location": "L59", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_tests_onboardinglibrarytests_onboardingcoordinatortests_onboardingcoordinatortests", + "target": "macmagazine_features_onboardinglibrary_tests_onboardinglibrarytests_onboardingcoordinatortests_onboardingcoordinatortests_navigatetopermissions", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Tests/OnboardingLibraryTests/OnboardingCoordinatorTests.swift", + "source_location": "L148", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_tests_onboardinglibrarytests_onboardingcoordinatortests_onboardingcoordinatortests", + "target": "macmagazine_features_onboardinglibrary_tests_onboardinglibrarytests_onboardingcoordinatortests_onboardingcoordinatortests_resetonboardingstate", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Tests/OnboardingLibraryTests/OnboardingCoordinatorTests.swift", + "source_location": "L179", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_tests_onboardinglibrarytests_onboardingcoordinatortests_onboardingcoordinatortests", + "target": "macmagazine_features_onboardinglibrary_tests_onboardinglibrarytests_onboardingcoordinatortests_onboardingcoordinatortests_skipnavigationflow", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Tests/OnboardingLibraryTests/OnboardingCoordinatorTests.swift", + "source_location": "L82", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_tests_onboardinglibrarytests_onboardingcoordinatortests_onboardingcoordinatortests", + "target": "macmagazine_features_onboardinglibrary_tests_onboardinglibrarytests_onboardingcoordinatortests_onboardingcoordinatortests_skiptopermissions", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Tests/OnboardingLibraryTests/OnboardingCoordinatorTests.swift", + "source_location": "L93", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_tests_onboardinglibrarytests_onboardingcoordinatortests_onboardingcoordinatortests", + "target": "macmagazine_features_onboardinglibrary_tests_onboardinglibrarytests_onboardingcoordinatortests_onboardingcoordinatortests_skiptopermissionsfromfeatures", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Tests/OnboardingLibraryTests/OnboardingCoordinatorTests.swift", + "source_location": "L164", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_tests_onboardinglibrarytests_onboardingcoordinatortests_onboardingcoordinatortests", + "target": "macmagazine_features_onboardinglibrary_tests_onboardinglibrarytests_onboardingcoordinatortests_onboardingcoordinatortests_typicalnavigationflow", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Tests/OnboardingLibraryTests/OnboardingCoordinatorTests.swift", + "source_location": "L187", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_tests_onboardinglibrarytests_onboardingcoordinatortests_onboardingcoordinatortests_skipnavigationflow", + "target": "macmagazine_features_onboardinglibrary_tests_onboardinglibrarytests_onboardingcoordinatortests_onboardingcoordinatortests_skiptopermissions", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Tests/OnboardingLibraryTests/OnboardingCoordinatorTests.swift", + "source_location": "L100", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_tests_onboardinglibrarytests_onboardingcoordinatortests_onboardingcoordinatortests_skiptopermissionsfromfeatures", + "target": "macmagazine_features_onboardinglibrary_tests_onboardinglibrarytests_onboardingcoordinatortests_onboardingcoordinatortests_skiptopermissions", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Tests/OnboardingLibraryTests/OnboardingCoordinatorTests.swift", + "source_location": "L195", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_tests_onboardinglibrarytests_onboardingcoordinatortests_onboardingscreentests", + "target": "macmagazine_features_onboardinglibrary_tests_onboardinglibrarytests_onboardingcoordinatortests_onboardingscreentests_screensarehashable", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/OnboardingLibrary/Tests/OnboardingLibraryTests/OnboardingCoordinatorTests.swift", + "source_location": "L205", + "weight": 1.0, + "source": "macmagazine_features_onboardinglibrary_tests_onboardinglibrarytests_onboardingcoordinatortests_onboardingscreentests", + "target": "macmagazine_features_onboardinglibrary_tests_onboardinglibrarytests_onboardingcoordinatortests_onboardingscreentests_screenshaveanalyticsnames", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Extensions/PodcastDBExtensions.swift", + "source_location": "L8", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_extensions_podcastdbextensions", + "target": "macmagazine_features_podcastlibrary_sources_podcast_extensions_podcastdbextensions_podcastdb", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Extensions/PodcastDBExtensions.swift", + "source_location": "L36", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_extensions_podcastdbextensions_podcastdb", + "target": "macmagazine_features_podcastlibrary_sources_podcast_extensions_podcastdbextensions_podcastdb_save", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Extensions/PodcastDBExtensions.swift", + "source_location": "L9", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_extensions_podcastdbextensions_podcastdb", + "target": "macmagazine_features_podcastlibrary_sources_podcast_extensions_podcastdbextensions_podcastdb_tocardcontent", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Extensions/PodcastDBExtensions.swift", + "source_location": "L27", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_extensions_podcastdbextensions_podcastdb_tocardcontent", + "target": "macmagazine_features_podcastlibrary_sources_podcast_extensions_podcastdbextensions_podcastdb_save", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Extensions/PodcastDBExtensions.swift", + "source_location": "L9", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_podcastlibrary_sources_podcast_extensions_podcastdbextensions_podcastdb_tocardcontent", + "target": "macmagazine_features_podcastlibrary_sources_podcast_extensions_podcastdbextensions_swift_analyticsmanager", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Extensions/PodcastDBExtensions.swift", + "source_location": "L9", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_podcastlibrary_sources_podcast_extensions_podcastdbextensions_podcastdb_tocardcontent", + "target": "macmagazine_features_podcastlibrary_sources_podcast_extensions_podcastdbextensions_swift_modelcontext", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Extensions/PodcastDBExtensions.swift", + "source_location": "L9", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_podcastlibrary_sources_podcast_extensions_podcastdbextensions_podcastdb_tocardcontent", + "target": "macmagazine_features_podcastlibrary_sources_podcast_extensions_podcastdbextensions_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Extensions/PodcastDBExtensions.swift", + "source_location": "L36", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_podcastlibrary_sources_podcast_extensions_podcastdbextensions_podcastdb_save", + "target": "macmagazine_features_podcastlibrary_sources_podcast_extensions_podcastdbextensions_swift_modelcontext", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Extensions/PodcastDBExtensions.swift", + "source_location": "L36", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_podcastlibrary_sources_podcast_extensions_podcastdbextensions_podcastdb_save", + "target": "macmagazine_features_podcastlibrary_sources_podcast_extensions_podcastdbextensions_swift_double", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Extensions/UIColorExtensions.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_extensions_uicolorextensions", + "target": "macmagazine_features_podcastlibrary_sources_podcast_extensions_uicolorextensions_uicolor", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Extensions/UIColorExtensions.swift", + "source_location": "L4", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_podcastlibrary_sources_podcast_extensions_uicolorextensions_uicolor", + "target": "macmagazine_features_podcastlibrary_sources_podcast_extensions_uicolorextensions_swift_cgfloat", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Extensions/UIImageExtensions.swift", + "source_location": "L5", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_extensions_uiimageextensions_uiimage_averagecolor", + "target": "macmagazine_features_podcastlibrary_sources_podcast_extensions_uicolorextensions_uicolor", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Extensions/UIImageExtensions.swift", + "source_location": "L118", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_extensions_uiimageextensions_uiimage_fourtonegradientcolors", + "target": "macmagazine_features_podcastlibrary_sources_podcast_extensions_uicolorextensions_uicolor", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Extensions/UIImageExtensions.swift", + "source_location": "L77", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_extensions_uiimageextensions_uiimage_threetonegradientcolors", + "target": "macmagazine_features_podcastlibrary_sources_podcast_extensions_uicolorextensions_uicolor", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Extensions/UIImageExtensions.swift", + "source_location": "L43", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_extensions_uiimageextensions_uiimage_twotonegradientcolors", + "target": "macmagazine_features_podcastlibrary_sources_podcast_extensions_uicolorextensions_uicolor", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Extensions/UIImageExtensions.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_extensions_uiimageextensions", + "target": "macmagazine_features_podcastlibrary_sources_podcast_extensions_uiimageextensions_uiimage", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Extensions/UIImageExtensions.swift", + "source_location": "L5", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_extensions_uiimageextensions_uiimage", + "target": "macmagazine_features_podcastlibrary_sources_podcast_extensions_uiimageextensions_uiimage_averagecolor", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Extensions/UIImageExtensions.swift", + "source_location": "L118", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_extensions_uiimageextensions_uiimage", + "target": "macmagazine_features_podcastlibrary_sources_podcast_extensions_uiimageextensions_uiimage_fourtonegradientcolors", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Extensions/UIImageExtensions.swift", + "source_location": "L77", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_extensions_uiimageextensions_uiimage", + "target": "macmagazine_features_podcastlibrary_sources_podcast_extensions_uiimageextensions_uiimage_threetonegradientcolors", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Extensions/UIImageExtensions.swift", + "source_location": "L43", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_extensions_uiimageextensions_uiimage", + "target": "macmagazine_features_podcastlibrary_sources_podcast_extensions_uiimageextensions_uiimage_twotonegradientcolors", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/SystemVolumeView.swift", + "source_location": "L8", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_manager_systemvolumeview_systemvolumeview_makeuiview", + "target": "macmagazine_features_podcastlibrary_sources_podcast_extensions_uiimageextensions_uiimage" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/Background/BackgroundViewModel.swift", + "source_location": "L86", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_background_backgroundviewmodel_backgroundviewmodel_processartworkcolors", + "target": "macmagazine_features_podcastlibrary_sources_podcast_extensions_uiimageextensions_uiimage" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/PodcastImageView.swift", + "source_location": "L28", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_podcastimageview_podcastimageview_dataimage", + "target": "macmagazine_features_podcastlibrary_sources_podcast_extensions_uiimageextensions_uiimage", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Extensions/UIImageExtensions.swift", + "source_location": "L8", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_extensions_uiimageextensions_uiimage_averagecolor", + "target": "cgsize" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Extensions/UIImageExtensions.swift", + "source_location": "L119", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_extensions_uiimageextensions_uiimage_fourtonegradientcolors", + "target": "macmagazine_features_podcastlibrary_sources_podcast_extensions_uiimageextensions_uiimage_averagecolor", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Extensions/UIImageExtensions.swift", + "source_location": "L78", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_extensions_uiimageextensions_uiimage_threetonegradientcolors", + "target": "macmagazine_features_podcastlibrary_sources_podcast_extensions_uiimageextensions_uiimage_averagecolor", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Extensions/UIImageExtensions.swift", + "source_location": "L44", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_extensions_uiimageextensions_uiimage_twotonegradientcolors", + "target": "macmagazine_features_podcastlibrary_sources_podcast_extensions_uiimageextensions_uiimage_averagecolor", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/PodcastChapter.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastchapter", + "target": "avfoundation", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/PodcastChapter.swift", + "source_location": "L5", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastchapter", + "target": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastchapter_podcastchapter", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/PodcastPlayerManager.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager", + "target": "avfoundation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastChapterTests.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests", + "target": "avfoundation", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastPlayerManagerTests.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastplayermanagertests", + "target": "avfoundation", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/PodcastChapter.swift", + "source_location": "L10", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastchapter_podcastchapter", + "target": "cmtime", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/PodcastChapter.swift", + "source_location": "L21", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastchapter_podcastchapter", + "target": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastchapter_podcastchapter_backgroundcolor", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/PodcastChapter.swift", + "source_location": "L29", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastchapter_podcastchapter", + "target": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastchapter_podcastchapter_timestring", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/PodcastChapter.swift", + "source_location": "L11", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastchapter_podcastchapter", + "target": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastchapter_swift_data", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/PodcastChapter.swift", + "source_location": "L17", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastchapter_podcastchapter", + "target": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastchapter_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/PodcastPlayerManager.swift", + "source_location": "L23", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager", + "target": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastchapter_podcastchapter", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/PodcastPlayerManager.swift", + "source_location": "L282", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager_getchapter", + "target": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastchapter_podcastchapter", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/ChaptersView.swift", + "source_location": "L134", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_chaptersview_chaptersview_cardbackground", + "target": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastchapter_podcastchapter", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/ChaptersView.swift", + "source_location": "L69", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_chaptersview_chaptersview_chapterrow", + "target": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastchapter_podcastchapter", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/ChaptersView.swift", + "source_location": "L148", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_chaptersview_chaptersview_chaptertintcolor", + "target": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastchapter_podcastchapter", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/ChaptersView.swift", + "source_location": "L175", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_chaptersview_chaptersview_isactive", + "target": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastchapter_podcastchapter", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/ChaptersView.swift", + "source_location": "L180", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_chaptersview_chaptersview_progress", + "target": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastchapter_podcastchapter", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/ChaptersView.swift", + "source_location": "L156", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_chaptersview_chaptersview_progressbar", + "target": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastchapter_podcastchapter", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/Background/BackgroundView.swift", + "source_location": "L5", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_background_backgroundview_backgroundview", + "target": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastchapter_podcastchapter", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastChapterTests.swift", + "source_location": "L331", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_createchapter", + "target": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastchapter_podcastchapter", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastChapterTests.swift", + "source_location": "L297", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_podcastchaptertests_formatfractionalseconds", + "target": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastchapter_podcastchapter", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastPlayerManagerTests.swift", + "source_location": "L298", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastplayermanagertests_createchapter", + "target": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastchapter_podcastchapter", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastPlayerManagerTests.swift", + "source_location": "L312", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastplayermanagertests_createtestchapters", + "target": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastchapter_podcastchapter", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/PodcastChapter.swift", + "source_location": "L29", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastchapter_podcastchapter_timestring", + "target": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastchapter_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/PodcastPlayerManager.swift", + "source_location": "L120", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager_seek", + "target": "cmtime" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/PodcastPlayerManager.swift", + "source_location": "L221", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager_setuptimeobserver", + "target": "cmtime" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastChapterTests.swift", + "source_location": "L332", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_createchapter", + "target": "cmtime" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastChapterTests.swift", + "source_location": "L294", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_podcastchaptertests_formatfractionalseconds", + "target": "cmtime" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastPlayerManagerTests.swift", + "source_location": "L299", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastplayermanagertests_createchapter", + "target": "cmtime" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/PodcastChapter.swift", + "source_location": "L21", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastchapter_podcastchapter_backgroundcolor", + "target": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastchapter_swift_color", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/PodcastChapter.swift", + "source_location": "L21", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastchapter_podcastchapter_backgroundcolor", + "target": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastchapter_swift_double", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/ChaptersView.swift", + "source_location": "L149", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_chaptersview_chaptersview_chaptertintcolor", + "target": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastchapter_podcastchapter_backgroundcolor" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastChapterTests.swift", + "source_location": "L187", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_podcastchaptertests_backgroundcolorafterchapter", + "target": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastchapter_podcastchapter_backgroundcolor" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastChapterTests.swift", + "source_location": "L219", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_podcastchaptertests_backgroundcoloratexactend", + "target": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastchapter_podcastchapter_backgroundcolor" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastChapterTests.swift", + "source_location": "L203", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_podcastchaptertests_backgroundcoloratexactstart", + "target": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastchapter_podcastchapter_backgroundcolor" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastChapterTests.swift", + "source_location": "L171", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_podcastchaptertests_backgroundcolorbeforechapter", + "target": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastchapter_podcastchapter_backgroundcolor" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastChapterTests.swift", + "source_location": "L154", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_podcastchaptertests_backgroundcolorduringchapter", + "target": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastchapter_podcastchapter_backgroundcolor" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastChapterTests.swift", + "source_location": "L235", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_podcastchaptertests_backgroundcoloremptyarrayduringchapter", + "target": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastchapter_podcastchapter_backgroundcolor" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastChapterTests.swift", + "source_location": "L251", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_podcastchaptertests_backgroundcoloremptyarrayoutsidechapter", + "target": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastchapter_podcastchapter_backgroundcolor" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastChapterTests.swift", + "source_location": "L321", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_podcastchaptertests_backgroundcolorpreciseposition", + "target": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastchapter_podcastchapter_backgroundcolor" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/PodcastChapter.swift", + "source_location": "L29", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastchapter_podcastchapter_timestring", + "target": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastchapter_swift_double", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/PodcastPlayerManager.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager", + "target": "combine", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/PodcastPlayerManager.swift", + "source_location": "L327", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager", + "target": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_array", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/PodcastPlayerManager.swift", + "source_location": "L281", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager", + "target": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/PodcastPlayerManager.swift", + "source_location": "L6", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager", + "target": "mediaplayer", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/SystemVolumeView.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_manager_systemvolumeview", + "target": "mediaplayer", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/PodcastPlayerManager.swift", + "source_location": "L30", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager", + "target": "avplayer", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/PodcastPlayerManager.swift", + "source_location": "L18", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager", + "target": "float", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/PodcastPlayerManager.swift", + "source_location": "L282", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager", + "target": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager_getchapter", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/PodcastPlayerManager.swift", + "source_location": "L249", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager", + "target": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager_handleplaybackend", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/PodcastPlayerManager.swift", + "source_location": "L36", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager", + "target": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager_init", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/PodcastPlayerManager.swift", + "source_location": "L58", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager", + "target": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager_loadpodcast", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/PodcastPlayerManager.swift", + "source_location": "L38", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager", + "target": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager_observesessionstate", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/PodcastPlayerManager.swift", + "source_location": "L105", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager", + "target": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager_pause", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/PodcastPlayerManager.swift", + "source_location": "L98", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager", + "target": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager_play", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/PodcastPlayerManager.swift", + "source_location": "L119", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager", + "target": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager_seek", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/PodcastPlayerManager.swift", + "source_location": "L130", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager", + "target": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager_setplaybackrate", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/PodcastPlayerManager.swift", + "source_location": "L157", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager", + "target": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager_setupaudiosession", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/PodcastPlayerManager.swift", + "source_location": "L231", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager", + "target": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager_setupitemobservers", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/PodcastPlayerManager.swift", + "source_location": "L167", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager", + "target": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager_setupremotetransportcontrols", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/PodcastPlayerManager.swift", + "source_location": "L214", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager", + "target": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager_setuptimeobserver", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/PodcastPlayerManager.swift", + "source_location": "L125", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager", + "target": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager_skip", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/PodcastPlayerManager.swift", + "source_location": "L111", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager", + "target": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager_toggleplaypause", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/PodcastPlayerManager.swift", + "source_location": "L145", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager", + "target": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager_tonextchapter", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/PodcastPlayerManager.swift", + "source_location": "L137", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager", + "target": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager_topreviouschapter", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/PodcastPlayerManager.swift", + "source_location": "L256", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager", + "target": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager_updatenowplayinginfo", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/PodcastPlayerManager.swift", + "source_location": "L31", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager", + "target": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_swift_any", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/PodcastPlayerManager.swift", + "source_location": "L13", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager", + "target": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_swift_podcastdb", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/PodcastPlayerManager.swift", + "source_location": "L17", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager", + "target": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_swift_timeinterval", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Modifiers/PodcastMiniPlayerModifier.swift", + "source_location": "L58", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_podcastlibrary_sources_podcast_modifiers_podcastminiplayermodifier_view_fullplayersheet", + "target": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/ChaptersView.swift", + "source_location": "L8", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_chaptersview_chaptersview", + "target": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/ChaptersView.swift", + "source_location": "L16", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_chaptersview_chaptersview_init", + "target": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/FullPlayerView.swift", + "source_location": "L45", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_fullplayerview_fullplayerview", + "target": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/FullPlayerView.swift", + "source_location": "L61", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_fullplayerview_fullplayerview_init", + "target": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/MiniPlayerView.swift", + "source_location": "L13", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_miniplayerview_miniplayerview", + "target": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/MiniPlayerView.swift", + "source_location": "L29", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_miniplayerview_miniplayerview_init", + "target": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastPlayerManagerTests.swift", + "source_location": "L47", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastplayermanagertests_podcastplayermanagertests_currentchapterafterall", + "target": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastPlayerManagerTests.swift", + "source_location": "L75", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastplayermanagertests_podcastplayermanagertests_currentchapteratexactend", + "target": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastPlayerManagerTests.swift", + "source_location": "L61", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastplayermanagertests_podcastplayermanagertests_currentchapteratexactstart", + "target": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastPlayerManagerTests.swift", + "source_location": "L30", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastplayermanagertests_podcastplayermanagertests_currentchapterbeforeall", + "target": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastPlayerManagerTests.swift", + "source_location": "L90", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastplayermanagertests_podcastplayermanagertests_currentchapterlast", + "target": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastPlayerManagerTests.swift", + "source_location": "L104", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastplayermanagertests_podcastplayermanagertests_currentchapternochapters", + "target": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastPlayerManagerTests.swift", + "source_location": "L16", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastplayermanagertests_podcastplayermanagertests_currentchapterwithinrange", + "target": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastPlayerManagerTests.swift", + "source_location": "L223", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastplayermanagertests_podcastplayermanagertests_navigatewithmanychapters", + "target": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastPlayerManagerTests.swift", + "source_location": "L197", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastplayermanagertests_podcastplayermanagertests_navigatewithnochapters", + "target": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastPlayerManagerTests.swift", + "source_location": "L246", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastplayermanagertests_podcastplayermanagertests_navigatewithoverlappingchapters", + "target": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastPlayerManagerTests.swift", + "source_location": "L263", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastplayermanagertests_podcastplayermanagertests_navigatewithprecisetime", + "target": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastPlayerManagerTests.swift", + "source_location": "L209", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastplayermanagertests_podcastplayermanagertests_navigatewithsinglechapter", + "target": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastPlayerManagerTests.swift", + "source_location": "L277", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastplayermanagertests_podcastplayermanagertests_navigatewithzerodurationchapter", + "target": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/MacMagazine/MainApp/MacMagazineApp.swift", + "source_location": "L24", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_macmagazineapp_sceneview", + "target": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/PodcastPlayerManager.swift", + "source_location": "L58", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager_loadpodcast", + "target": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_swift_podcastdb", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/PodcastPlayerManager.swift", + "source_location": "L119", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager_seek", + "target": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_swift_timeinterval", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/PodcastPlayerManager.swift", + "source_location": "L130", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager_setplaybackrate", + "target": "float", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/PodcastPlayerManager.swift", + "source_location": "L73", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager_loadpodcast", + "target": "avplayer", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/PodcastPlayerManager.swift", + "source_location": "L46", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager_observesessionstate", + "target": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager_pause", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/PodcastPlayerManager.swift", + "source_location": "L70", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager_loadpodcast", + "target": "avplayeritem", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/PodcastPlayerManager.swift", + "source_location": "L79", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager_loadpodcast", + "target": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager_getchapter", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/PodcastPlayerManager.swift", + "source_location": "L91", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager_loadpodcast", + "target": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager_handleplaybackend", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/PodcastPlayerManager.swift", + "source_location": "L95", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager_loadpodcast", + "target": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager_play", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/PodcastPlayerManager.swift", + "source_location": "L61", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager_loadpodcast", + "target": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager_setupaudiosession", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/PodcastPlayerManager.swift", + "source_location": "L83", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager_loadpodcast", + "target": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager_setupitemobservers", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/PodcastPlayerManager.swift", + "source_location": "L62", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager_loadpodcast", + "target": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager_setupremotetransportcontrols", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/PodcastPlayerManager.swift", + "source_location": "L82", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager_loadpodcast", + "target": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager_setuptimeobserver", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/PodcastPlayerManager.swift", + "source_location": "L65", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager_loadpodcast", + "target": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager_toggleplaypause", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/PodcastPlayerManager.swift", + "source_location": "L102", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager_play", + "target": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager_updatenowplayinginfo", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/PodcastPlayerManager.swift", + "source_location": "L175", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager_setupremotetransportcontrols", + "target": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager_play", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/PodcastPlayerManager.swift", + "source_location": "L115", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager_toggleplaypause", + "target": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager_play", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/PodcastPlayerManager.swift", + "source_location": "L108", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager_pause", + "target": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager_updatenowplayinginfo", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/PodcastPlayerManager.swift", + "source_location": "L182", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager_setupremotetransportcontrols", + "target": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager_pause", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/PodcastPlayerManager.swift", + "source_location": "L113", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager_toggleplaypause", + "target": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager_pause", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/MiniPlayerView.swift", + "source_location": "L69", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_miniplayerview_miniplayerview_closeminiplayer", + "target": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager_pause" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/PodcastPlayerManager.swift", + "source_location": "L252", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager_handleplaybackend", + "target": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager_seek", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/PodcastPlayerManager.swift", + "source_location": "L122", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager_seek", + "target": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager_updatenowplayinginfo", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/PodcastPlayerManager.swift", + "source_location": "L208", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager_setupremotetransportcontrols", + "target": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager_seek", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/PodcastPlayerManager.swift", + "source_location": "L127", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager_skip", + "target": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager_seek", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/PodcastPlayerManager.swift", + "source_location": "L149", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager_tonextchapter", + "target": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager_seek", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/PodcastPlayerManager.swift", + "source_location": "L141", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager_topreviouschapter", + "target": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager_seek", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/ChaptersView.swift", + "source_location": "L71", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_chaptersview_chaptersview_chapterrow", + "target": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager_seek" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/PodcastPlayerManager.swift", + "source_location": "L190", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager_setupremotetransportcontrols", + "target": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager_skip", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/PodcastPlayerManager.swift", + "source_location": "L125", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager_skip", + "target": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_swift_double", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/PodcastPlayerManager.swift", + "source_location": "L231", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager_setupitemobservers", + "target": "avplayeritem", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/PodcastPlayerManager.swift", + "source_location": "L242", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager_setupitemobservers", + "target": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager_updatenowplayinginfo", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/PodcastPlayerManager.swift", + "source_location": "L253", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager_handleplaybackend", + "target": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager_updatenowplayinginfo", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/PodcastPlayerManager.swift", + "source_location": "L282", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_podcastplayermanager_getchapter", + "target": "macmagazine_widget_models_widgetdata_url", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/PodcastPlayerManager.swift", + "source_location": "L328", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_array", + "target": "macmagazine_features_podcastlibrary_sources_podcast_manager_podcastplayermanager_swift_self", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/SystemVolumeView.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_manager_systemvolumeview", + "target": "avkit", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/SystemVolumeView.swift", + "source_location": "L5", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_manager_systemvolumeview", + "target": "macmagazine_features_podcastlibrary_sources_podcast_manager_systemvolumeview_systemvolumeview", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/SystemVolumeView.swift", + "source_location": "L6", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_manager_systemvolumeview_systemvolumeview", + "target": "macmagazine_features_podcastlibrary_sources_podcast_manager_systemvolumeview_systemvolumeview_makeuiview", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/SystemVolumeView.swift", + "source_location": "L25", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_manager_systemvolumeview_systemvolumeview", + "target": "macmagazine_features_podcastlibrary_sources_podcast_manager_systemvolumeview_systemvolumeview_updateuiview", + "confidence_score": 1.0 + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/SystemVolumeView.swift", + "source_location": "L5", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_manager_systemvolumeview_systemvolumeview", + "target": "uiviewrepresentable", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/SystemVolumeView.swift", + "source_location": "L6", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_podcastlibrary_sources_podcast_manager_systemvolumeview_systemvolumeview_makeuiview", + "target": "macmagazine_features_podcastlibrary_sources_podcast_manager_systemvolumeview_swift_context", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/SystemVolumeView.swift", + "source_location": "L6", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_manager_systemvolumeview_systemvolumeview_makeuiview", + "target": "mpvolumeview", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/SystemVolumeView.swift", + "source_location": "L25", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_podcastlibrary_sources_podcast_manager_systemvolumeview_systemvolumeview_updateuiview", + "target": "macmagazine_features_podcastlibrary_sources_podcast_manager_systemvolumeview_swift_context", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/SystemVolumeView.swift", + "source_location": "L25", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_podcastlibrary_sources_podcast_manager_systemvolumeview_systemvolumeview_updateuiview", + "target": "mpvolumeview", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Modifiers/CardAccessibilityModifier.swift", + "source_location": "L31", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_modifiers_cardaccessibilitymodifier", + "target": "macmagazine_features_podcastlibrary_sources_podcast_modifiers_cardaccessibilitymodifier_array", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Modifiers/CardAccessibilityModifier.swift", + "source_location": "L59", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_modifiers_cardaccessibilitymodifier", + "target": "macmagazine_features_podcastlibrary_sources_podcast_modifiers_cardaccessibilitymodifier_cardaccessibilitymodifier", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Modifiers/CardAccessibilityModifier.swift", + "source_location": "L26", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_modifiers_cardaccessibilitymodifier", + "target": "macmagazine_features_podcastlibrary_sources_podcast_modifiers_cardaccessibilitymodifier_cardbutton", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Modifiers/CardAccessibilityModifier.swift", + "source_location": "L6", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_modifiers_cardaccessibilitymodifier", + "target": "macmagazine_features_podcastlibrary_sources_podcast_modifiers_cardaccessibilitymodifier_cardlabel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Modifiers/CardAccessibilityModifier.swift", + "source_location": "L45", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_modifiers_cardaccessibilitymodifier", + "target": "macmagazine_features_podcastlibrary_sources_podcast_modifiers_cardaccessibilitymodifier_view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Modifiers/CardAccessibilityModifier.swift", + "source_location": "L61", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_podcastlibrary_sources_podcast_modifiers_cardaccessibilitymodifier_cardaccessibilitymodifier", + "target": "macmagazine_features_podcastlibrary_sources_podcast_modifiers_cardaccessibilitymodifier_cardlabel", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Modifiers/CardAccessibilityModifier.swift", + "source_location": "L8", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_modifiers_cardaccessibilitymodifier_cardlabel", + "target": "macmagazine_features_podcastlibrary_sources_podcast_modifiers_cardaccessibilitymodifier_cardlabel_date", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Modifiers/CardAccessibilityModifier.swift", + "source_location": "L9", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_modifiers_cardaccessibilitymodifier_cardlabel", + "target": "macmagazine_features_podcastlibrary_sources_podcast_modifiers_cardaccessibilitymodifier_cardlabel_duration", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Modifiers/CardAccessibilityModifier.swift", + "source_location": "L7", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_modifiers_cardaccessibilitymodifier_cardlabel", + "target": "macmagazine_features_podcastlibrary_sources_podcast_modifiers_cardaccessibilitymodifier_cardlabel_title", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Modifiers/CardAccessibilityModifier.swift", + "source_location": "L46", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_podcastlibrary_sources_podcast_modifiers_cardaccessibilitymodifier_view_cardaccessibility", + "target": "macmagazine_features_podcastlibrary_sources_podcast_modifiers_cardaccessibilitymodifier_cardlabel", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Modifiers/CardAccessibilityModifier.swift", + "source_location": "L32", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_modifiers_cardaccessibilitymodifier_array", + "target": "macmagazine_features_podcastlibrary_sources_podcast_modifiers_cardaccessibilitymodifier_array_makebuttons", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Modifiers/CardAccessibilityModifier.swift", + "source_location": "L13", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_modifiers_cardaccessibilitymodifier_array", + "target": "macmagazine_features_podcastlibrary_sources_podcast_modifiers_cardaccessibilitymodifier_array_maketext", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Modifiers/CardAccessibilityModifier.swift", + "source_location": "L13", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_features_podcastlibrary_sources_podcast_modifiers_cardaccessibilitymodifier_array_maketext", + "target": "macmagazine_features_podcastlibrary_sources_podcast_modifiers_cardaccessibilitymodifier_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Modifiers/CardAccessibilityModifier.swift", + "source_location": "L68", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_modifiers_cardaccessibilitymodifier_cardaccessibilitymodifier_body", + "target": "macmagazine_features_podcastlibrary_sources_podcast_modifiers_cardaccessibilitymodifier_array_maketext", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Modifiers/CardAccessibilityModifier.swift", + "source_location": "L62", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_podcastlibrary_sources_podcast_modifiers_cardaccessibilitymodifier_cardaccessibilitymodifier", + "target": "macmagazine_features_podcastlibrary_sources_podcast_modifiers_cardaccessibilitymodifier_cardbutton", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Modifiers/CardAccessibilityModifier.swift", + "source_location": "L28", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_modifiers_cardaccessibilitymodifier_cardbutton", + "target": "macmagazine_features_podcastlibrary_sources_podcast_modifiers_cardaccessibilitymodifier_cardbutton_favorite", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Modifiers/CardAccessibilityModifier.swift", + "source_location": "L27", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_modifiers_cardaccessibilitymodifier_cardbutton", + "target": "macmagazine_features_podcastlibrary_sources_podcast_modifiers_cardaccessibilitymodifier_cardbutton_share", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Modifiers/CardAccessibilityModifier.swift", + "source_location": "L46", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_podcastlibrary_sources_podcast_modifiers_cardaccessibilitymodifier_view_cardaccessibility", + "target": "macmagazine_features_podcastlibrary_sources_podcast_modifiers_cardaccessibilitymodifier_cardbutton", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Modifiers/CardAccessibilityModifier.swift", + "source_location": "L32", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_features_podcastlibrary_sources_podcast_modifiers_cardaccessibilitymodifier_array_makebuttons", + "target": "macmagazine_features_podcastlibrary_sources_podcast_modifiers_cardaccessibilitymodifier_swift_view", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Modifiers/CardAccessibilityModifier.swift", + "source_location": "L71", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_modifiers_cardaccessibilitymodifier_cardaccessibilitymodifier_body", + "target": "macmagazine_features_podcastlibrary_sources_podcast_modifiers_cardaccessibilitymodifier_array_makebuttons", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Modifiers/CardAccessibilityModifier.swift", + "source_location": "L64", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_features_podcastlibrary_sources_podcast_modifiers_cardaccessibilitymodifier_cardaccessibilitymodifier_body", + "target": "macmagazine_features_podcastlibrary_sources_podcast_modifiers_cardaccessibilitymodifier_view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Modifiers/CardAccessibilityModifier.swift", + "source_location": "L46", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_features_podcastlibrary_sources_podcast_modifiers_cardaccessibilitymodifier_view_cardaccessibility", + "target": "macmagazine_features_podcastlibrary_sources_podcast_modifiers_cardaccessibilitymodifier_view", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Modifiers/CardAccessibilityModifier.swift", + "source_location": "L51", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_modifiers_cardaccessibilitymodifier_view_cardaccessibility", + "target": "macmagazine_features_podcastlibrary_sources_podcast_modifiers_cardaccessibilitymodifier_cardaccessibilitymodifier", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Modifiers/CardAccessibilityModifier.swift", + "source_location": "L64", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_modifiers_cardaccessibilitymodifier_cardaccessibilitymodifier", + "target": "macmagazine_features_podcastlibrary_sources_podcast_modifiers_cardaccessibilitymodifier_cardaccessibilitymodifier_body", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Modifiers/CardAccessibilityModifier.swift", + "source_location": "L64", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_podcastlibrary_sources_podcast_modifiers_cardaccessibilitymodifier_cardaccessibilitymodifier_body", + "target": "macmagazine_features_podcastlibrary_sources_podcast_modifiers_cardaccessibilitymodifier_swift_content", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Modifiers/CardAccessibilityModifier.swift", + "source_location": "L68", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_modifiers_cardaccessibilitymodifier_cardaccessibilitymodifier_body", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_views_extensions_plainbuttontextstyle_text" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Modifiers/PodcastMiniPlayerModifier.swift", + "source_location": "L12", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_modifiers_podcastminiplayermodifier", + "target": "macmagazine_features_podcastlibrary_sources_podcast_modifiers_podcastminiplayermodifier_podcastminiplayermodifier", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Modifiers/PodcastMiniPlayerModifier.swift", + "source_location": "L57", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_modifiers_podcastminiplayermodifier", + "target": "macmagazine_features_podcastlibrary_sources_podcast_modifiers_podcastminiplayermodifier_view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Modifiers/PodcastMiniPlayerModifier.swift", + "source_location": "L20", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_features_podcastlibrary_sources_podcast_modifiers_podcastminiplayermodifier_podcastminiplayermodifier_body", + "target": "macmagazine_features_podcastlibrary_sources_podcast_modifiers_podcastminiplayermodifier_view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Modifiers/PodcastMiniPlayerModifier.swift", + "source_location": "L58", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_features_podcastlibrary_sources_podcast_modifiers_podcastminiplayermodifier_view_fullplayersheet", + "target": "macmagazine_features_podcastlibrary_sources_podcast_modifiers_podcastminiplayermodifier_view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Modifiers/PodcastMiniPlayerModifier.swift", + "source_location": "L7", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_features_podcastlibrary_sources_podcast_modifiers_podcastminiplayermodifier_view_podcastminiplayer", + "target": "macmagazine_features_podcastlibrary_sources_podcast_modifiers_podcastminiplayermodifier_view", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Modifiers/PodcastMiniPlayerModifier.swift", + "source_location": "L8", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_modifiers_podcastminiplayermodifier_view_podcastminiplayer", + "target": "macmagazine_features_podcastlibrary_sources_podcast_modifiers_podcastminiplayermodifier_podcastminiplayermodifier", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Modifiers/PodcastMiniPlayerModifier.swift", + "source_location": "L20", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_modifiers_podcastminiplayermodifier_podcastminiplayermodifier", + "target": "macmagazine_features_podcastlibrary_sources_podcast_modifiers_podcastminiplayermodifier_podcastminiplayermodifier_body", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Modifiers/PodcastMiniPlayerModifier.swift", + "source_location": "L18", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_modifiers_podcastminiplayermodifier_podcastminiplayermodifier", + "target": "macmagazine_features_podcastlibrary_sources_podcast_modifiers_podcastminiplayermodifier_podcastminiplayermodifier_init", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Modifiers/PodcastMiniPlayerModifier.swift", + "source_location": "L20", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_podcastlibrary_sources_podcast_modifiers_podcastminiplayermodifier_podcastminiplayermodifier_body", + "target": "macmagazine_features_podcastlibrary_sources_podcast_modifiers_podcastminiplayermodifier_swift_content", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Modifiers/PodcastMiniPlayerModifier.swift", + "source_location": "L23", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_modifiers_podcastminiplayermodifier_podcastminiplayermodifier_body", + "target": "macmagazine_features_podcastlibrary_sources_podcast_modifiers_podcastminiplayermodifier_view_fullplayersheet", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Modifiers/PodcastMiniPlayerModifier.swift", + "source_location": "L25", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_modifiers_podcastminiplayermodifier_podcastminiplayermodifier_body", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_miniplayerview_miniplayerview" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Modifiers/PodcastMiniPlayerModifier.swift", + "source_location": "L65", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_modifiers_podcastminiplayermodifier_view_fullplayersheet", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_fullplayerview_fullplayerview" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/ViewModel/PodcastViewModel.swift", + "source_location": "L13", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_viewmodel_podcastviewmodel", + "target": "macmagazine_features_podcastlibrary_sources_podcast_viewmodel_podcastviewmodel_options", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/ViewModel/PodcastViewModel.swift", + "source_location": "L8", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_viewmodel_podcastviewmodel", + "target": "macmagazine_features_podcastlibrary_sources_podcast_viewmodel_podcastviewmodel_podcastviewmodel", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/ViewModel/PodcastViewModel.swift", + "source_location": "L31", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_viewmodel_podcastviewmodel_podcastviewmodel", + "target": "macmagazine_features_podcastlibrary_sources_podcast_viewmodel_podcastviewmodel_podcastviewmodel_getpodcasts", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/ViewModel/PodcastViewModel.swift", + "source_location": "L22", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_viewmodel_podcastviewmodel_podcastviewmodel", + "target": "macmagazine_features_podcastlibrary_sources_podcast_viewmodel_podcastviewmodel_podcastviewmodel_init", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/ViewModel/PodcastViewModel.swift", + "source_location": "L44", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_viewmodel_podcastviewmodel_podcastviewmodel", + "target": "macmagazine_features_podcastlibrary_sources_podcast_viewmodel_podcastviewmodel_podcastviewmodel_loadmoreifneeded", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/ViewModel/PodcastViewModel.swift", + "source_location": "L11", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_podcastlibrary_sources_podcast_viewmodel_podcastviewmodel_podcastviewmodel", + "target": "macmagazine_features_podcastlibrary_sources_podcast_viewmodel_podcastviewmodel_swift_apistatus", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/ViewModel/PodcastViewModel.swift", + "source_location": "L10", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_podcastlibrary_sources_podcast_viewmodel_podcastviewmodel_podcastviewmodel", + "target": "macmagazine_features_podcastlibrary_sources_podcast_viewmodel_podcastviewmodel_swift_options", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/PodcastView.swift", + "source_location": "L17", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_podcastview_podcastview", + "target": "macmagazine_features_podcastlibrary_sources_podcast_viewmodel_podcastviewmodel_podcastviewmodel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/PodcastView.swift", + "source_location": "L31", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_podcastview_podcastview_init", + "target": "macmagazine_features_podcastlibrary_sources_podcast_viewmodel_podcastviewmodel_podcastviewmodel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastViewModelTests.swift", + "source_location": "L150", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_podcastviewmodeltests_correctpagecalculation", + "target": "macmagazine_features_podcastlibrary_sources_podcast_viewmodel_podcastviewmodel_podcastviewmodel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastViewModelTests.swift", + "source_location": "L222", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_podcastviewmodeltests_handlerapidscrolling", + "target": "macmagazine_features_podcastlibrary_sources_podcast_viewmodel_podcastviewmodel_podcastviewmodel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastViewModelTests.swift", + "source_location": "L308", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_podcastviewmodeltests_initialoptionishome", + "target": "macmagazine_features_podcastlibrary_sources_podcast_viewmodel_podcastviewmodel_podcastviewmodel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastViewModelTests.swift", + "source_location": "L246", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_podcastviewmodeltests_initialstatusisidle", + "target": "macmagazine_features_podcastlibrary_sources_podcast_viewmodel_podcastviewmodel_podcastviewmodel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastViewModelTests.swift", + "source_location": "L50", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_podcastviewmodeltests_loadpage2atthreshold", + "target": "macmagazine_features_podcastlibrary_sources_podcast_viewmodel_podcastviewmodel_podcastviewmodel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastViewModelTests.swift", + "source_location": "L73", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_podcastviewmodeltests_loadpage3atsecondthreshold", + "target": "macmagazine_features_podcastlibrary_sources_podcast_viewmodel_podcastviewmodel_podcastviewmodel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastViewModelTests.swift", + "source_location": "L20", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_podcastviewmodeltests_noloadatindexzero", + "target": "macmagazine_features_podcastlibrary_sources_podcast_viewmodel_podcastviewmodel_podcastviewmodel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastViewModelTests.swift", + "source_location": "L34", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_podcastviewmodeltests_noloadbelowthreshold", + "target": "macmagazine_features_podcastlibrary_sources_podcast_viewmodel_podcastviewmodel_podcastviewmodel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastViewModelTests.swift", + "source_location": "L127", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_podcastviewmodeltests_noreloadsamepage", + "target": "macmagazine_features_podcastlibrary_sources_podcast_viewmodel_podcastviewmodel_podcastviewmodel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastViewModelTests.swift", + "source_location": "L101", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_podcastviewmodeltests_onlyloadatexactmultiples", + "target": "macmagazine_features_podcastlibrary_sources_podcast_viewmodel_podcastviewmodel_podcastviewmodel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastViewModelTests.swift", + "source_location": "L193", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_podcastviewmodeltests_onlyloadwhenindexincreases", + "target": "macmagazine_features_podcastlibrary_sources_podcast_viewmodel_podcastviewmodel_podcastviewmodel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastViewModelTests.swift", + "source_location": "L293", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_podcastviewmodeltests_preservecustomstatus", + "target": "macmagazine_features_podcastlibrary_sources_podcast_viewmodel_podcastviewmodel_podcastviewmodel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastViewModelTests.swift", + "source_location": "L271", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_podcastviewmodeltests_statusupdatesonerror", + "target": "macmagazine_features_podcastlibrary_sources_podcast_viewmodel_podcastviewmodel_podcastviewmodel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastViewModelTests.swift", + "source_location": "L257", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_podcastviewmodeltests_statusupdatesonsuccess", + "target": "macmagazine_features_podcastlibrary_sources_podcast_viewmodel_podcastviewmodel_podcastviewmodel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastViewModelTests.swift", + "source_location": "L318", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_podcastviewmodeltests_supportssearchoption", + "target": "macmagazine_features_podcastlibrary_sources_podcast_viewmodel_podcastviewmodel_podcastviewmodel", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastViewModelTests.swift", + "source_location": "L333", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_podcastviewmodeltests_waitforstatuschange", + "target": "macmagazine_features_podcastlibrary_sources_podcast_viewmodel_podcastviewmodel_podcastviewmodel", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/ViewModel/PodcastViewModel.swift", + "source_location": "L31", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_podcastlibrary_sources_podcast_viewmodel_podcastviewmodel_podcastviewmodel_getpodcasts", + "target": "macmagazine_features_podcastlibrary_sources_podcast_viewmodel_podcastviewmodel_swift_apistatus", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/ViewModel/PodcastViewModel.swift", + "source_location": "L14", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_viewmodel_podcastviewmodel_options", + "target": "macmagazine_features_podcastlibrary_sources_podcast_viewmodel_podcastviewmodel_options_home", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/ViewModel/PodcastViewModel.swift", + "source_location": "L15", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_viewmodel_podcastviewmodel_options", + "target": "macmagazine_features_podcastlibrary_sources_podcast_viewmodel_podcastviewmodel_options_search", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/ViewModel/PodcastViewModel.swift", + "source_location": "L15", + "weight": 1.0, + "context": "type", + "source": "macmagazine_features_podcastlibrary_sources_podcast_viewmodel_podcastviewmodel_options", + "target": "macmagazine_features_podcastlibrary_sources_podcast_viewmodel_podcastviewmodel_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/ViewModel/PodcastViewModel.swift", + "source_location": "L22", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_podcastlibrary_sources_podcast_viewmodel_podcastviewmodel_podcastviewmodel_init", + "target": "macmagazine_features_podcastlibrary_sources_podcast_viewmodel_podcastviewmodel_swift_database", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/ViewModel/PodcastViewModel.swift", + "source_location": "L22", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_podcastlibrary_sources_podcast_viewmodel_podcastviewmodel_podcastviewmodel_init", + "target": "macmagazine_features_podcastlibrary_sources_podcast_viewmodel_podcastviewmodel_swift_networkmockdata", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/ViewModel/PodcastViewModel.swift", + "source_location": "L31", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_podcastlibrary_sources_podcast_viewmodel_podcastviewmodel_podcastviewmodel_getpodcasts", + "target": "macmagazine_features_podcastlibrary_sources_podcast_viewmodel_podcastviewmodel_swift_int", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/ViewModel/PodcastViewModel.swift", + "source_location": "L52", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_viewmodel_podcastviewmodel_podcastviewmodel_loadmoreifneeded", + "target": "macmagazine_features_podcastlibrary_sources_podcast_viewmodel_podcastviewmodel_podcastviewmodel_getpodcasts", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastViewModelTests.swift", + "source_location": "L296", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_podcastviewmodeltests_preservecustomstatus", + "target": "macmagazine_features_podcastlibrary_sources_podcast_viewmodel_podcastviewmodel_podcastviewmodel_getpodcasts" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastViewModelTests.swift", + "source_location": "L275", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_podcastviewmodeltests_statusupdatesonerror", + "target": "macmagazine_features_podcastlibrary_sources_podcast_viewmodel_podcastviewmodel_podcastviewmodel_getpodcasts" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastViewModelTests.swift", + "source_location": "L260", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_podcastviewmodeltests_statusupdatesonsuccess", + "target": "macmagazine_features_podcastlibrary_sources_podcast_viewmodel_podcastviewmodel_podcastviewmodel_getpodcasts" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/ViewModel/PodcastViewModel.swift", + "source_location": "L44", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_viewmodel_podcastviewmodel_podcastviewmodel_loadmoreifneeded", + "target": "macmagazine_features_podcastlibrary_sources_podcast_viewmodel_podcastviewmodel_swift_int", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastViewModelTests.swift", + "source_location": "L158", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_podcastviewmodeltests_correctpagecalculation", + "target": "macmagazine_features_podcastlibrary_sources_podcast_viewmodel_podcastviewmodel_podcastviewmodel_loadmoreifneeded" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastViewModelTests.swift", + "source_location": "L225", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_podcastviewmodeltests_handlerapidscrolling", + "target": "macmagazine_features_podcastlibrary_sources_podcast_viewmodel_podcastviewmodel_podcastviewmodel_loadmoreifneeded" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastViewModelTests.swift", + "source_location": "L53", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_podcastviewmodeltests_loadpage2atthreshold", + "target": "macmagazine_features_podcastlibrary_sources_podcast_viewmodel_podcastviewmodel_podcastviewmodel_loadmoreifneeded" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastViewModelTests.swift", + "source_location": "L76", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_podcastviewmodeltests_loadpage3atsecondthreshold", + "target": "macmagazine_features_podcastlibrary_sources_podcast_viewmodel_podcastviewmodel_podcastviewmodel_loadmoreifneeded" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastViewModelTests.swift", + "source_location": "L23", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_podcastviewmodeltests_noloadatindexzero", + "target": "macmagazine_features_podcastlibrary_sources_podcast_viewmodel_podcastviewmodel_podcastviewmodel_loadmoreifneeded" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastViewModelTests.swift", + "source_location": "L38", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_podcastviewmodeltests_noloadbelowthreshold", + "target": "macmagazine_features_podcastlibrary_sources_podcast_viewmodel_podcastviewmodel_podcastviewmodel_loadmoreifneeded" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastViewModelTests.swift", + "source_location": "L130", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_podcastviewmodeltests_noreloadsamepage", + "target": "macmagazine_features_podcastlibrary_sources_podcast_viewmodel_podcastviewmodel_podcastviewmodel_loadmoreifneeded" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastViewModelTests.swift", + "source_location": "L104", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_podcastviewmodeltests_onlyloadatexactmultiples", + "target": "macmagazine_features_podcastlibrary_sources_podcast_viewmodel_podcastviewmodel_podcastviewmodel_loadmoreifneeded" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastViewModelTests.swift", + "source_location": "L196", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_podcastviewmodeltests_onlyloadwhenindexincreases", + "target": "macmagazine_features_podcastlibrary_sources_podcast_viewmodel_podcastviewmodel_podcastviewmodel_loadmoreifneeded" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Card/AdaptivePodcastCardView.swift", + "source_location": "L8", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_card_adaptivepodcastcardview", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_card_adaptivepodcastcardview_adaptivepodcastcardview", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Card/AdaptivePodcastCardView.swift", + "source_location": "L13", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_card_adaptivepodcastcardview_adaptivepodcastcardview", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_card_adaptivepodcastcardview_adaptivepodcastcardview_init", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Card/AdaptivePodcastCardView.swift", + "source_location": "L11", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_card_adaptivepodcastcardview_adaptivepodcastcardview", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_card_adaptivepodcastcardview_swift_void", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchResultsList.swift", + "source_location": "L74", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist_searchresultslist_podcastcard", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_card_adaptivepodcastcardview_adaptivepodcastcardview" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Card/AdaptivePodcastCardView.swift", + "source_location": "L13", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_card_adaptivepodcastcardview_adaptivepodcastcardview_init", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_card_adaptivepodcastcardview_swift_void", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Card/GlassPodcastCardView.swift", + "source_location": "L8", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_card_glasspodcastcardview", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_card_glasspodcastcardview_glasspodcastcardview", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Card/GlassPodcastCardView.swift", + "source_location": "L13", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_card_glasspodcastcardview_glasspodcastcardview", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_card_glasspodcastcardview_glasspodcastcardview_init", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Card/GlassPodcastCardView.swift", + "source_location": "L9", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_card_glasspodcastcardview_glasspodcastcardview", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_card_glasspodcastcardview_swift_analyticsmanager", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Card/GlassPodcastCardView.swift", + "source_location": "L11", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_card_glasspodcastcardview_glasspodcastcardview", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_card_glasspodcastcardview_swift_void", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Card/GlassPodcastCardView.swift", + "source_location": "L13", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_card_glasspodcastcardview_glasspodcastcardview_init", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_card_glasspodcastcardview_swift_void", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Card/PodcastCardView.swift", + "source_location": "L8", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_card_podcastcardview", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_card_podcastcardview_podcastcardview", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Card/PodcastCardView.swift", + "source_location": "L14", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_card_podcastcardview_podcastcardview", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_card_podcastcardview_podcastcardview_init", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Card/PodcastCardView.swift", + "source_location": "L12", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_card_podcastcardview_podcastcardview", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_card_podcastcardview_swift_void", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Card/PodcastCardView.swift", + "source_location": "L14", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_card_podcastcardview_podcastcardview_init", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_card_podcastcardview_swift_void", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/ChaptersView.swift", + "source_location": "L191", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_chaptersview", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_chaptersview_chaptersview", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/ChaptersView.swift", + "source_location": "L134", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_chaptersview_chaptersview", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_chaptersview_chaptersview_cardbackground", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/ChaptersView.swift", + "source_location": "L69", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_chaptersview_chaptersview", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_chaptersview_chaptersview_chapterrow", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/ChaptersView.swift", + "source_location": "L148", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_chaptersview_chaptersview", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_chaptersview_chaptersview_chaptertintcolor", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/ChaptersView.swift", + "source_location": "L16", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_chaptersview_chaptersview", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_chaptersview_chaptersview_init", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/ChaptersView.swift", + "source_location": "L175", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_chaptersview_chaptersview", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_chaptersview_chaptersview_isactive", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/ChaptersView.swift", + "source_location": "L180", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_chaptersview_chaptersview", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_chaptersview_chaptersview_progress", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/ChaptersView.swift", + "source_location": "L156", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_chaptersview_chaptersview", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_chaptersview_chaptersview_progressbar", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/ChaptersView.swift", + "source_location": "L192", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_chaptersview_chaptersview", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_chaptersview_chaptersview_updatebackgroundgradient", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/ChaptersView.swift", + "source_location": "L7", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_chaptersview_chaptersview", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_chaptersview_swift_analyticsmanager", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/ChaptersView.swift", + "source_location": "L9", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_chaptersview_chaptersview", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_chaptersview_swift_bool", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/ChaptersView.swift", + "source_location": "L11", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_chaptersview_chaptersview", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_chaptersview_swift_color", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/ChaptersView.swift", + "source_location": "L14", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_chaptersview_chaptersview", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_fullplayerview_podcastbackgroundgradientstyle", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/ChaptersView.swift", + "source_location": "L16", + "weight": 1.0, + "context": "generic_arg", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_chaptersview_chaptersview_init", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_chaptersview_swift_bool", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/ChaptersView.swift", + "source_location": "L175", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_chaptersview_chaptersview_isactive", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_chaptersview_swift_bool", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/ChaptersView.swift", + "source_location": "L148", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_chaptersview_chaptersview_chaptertintcolor", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_chaptersview_swift_color", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/ChaptersView.swift", + "source_location": "L16", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_chaptersview_chaptersview_init", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_chaptersview_swift_binding", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/ChaptersView.swift", + "source_location": "L16", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_chaptersview_chaptersview_init", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_fullplayerview_podcastbackgroundgradientstyle", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/ChaptersView.swift", + "source_location": "L124", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_chaptersview_chaptersview_chapterrow", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_chaptersview_chaptersview_cardbackground", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/ChaptersView.swift", + "source_location": "L85", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_chaptersview_chaptersview_chapterrow", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_chaptersview_chaptersview_isactive", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/ChaptersView.swift", + "source_location": "L109", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_chaptersview_chaptersview_chapterrow", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_chaptersview_chaptersview_progressbar", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/ChaptersView.swift", + "source_location": "L75", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_chaptersview_chaptersview_chapterrow", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_podcastimageview_podcastimageview" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/ChaptersView.swift", + "source_location": "L84", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_chaptersview_chaptersview_chapterrow", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_views_extensions_plainbuttontextstyle_text" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/ChaptersView.swift", + "source_location": "L141", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_chaptersview_chaptersview_cardbackground", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_chaptersview_chaptersview_isactive", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/ChaptersView.swift", + "source_location": "L157", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_chaptersview_chaptersview_progressbar", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_chaptersview_chaptersview_progress", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/ChaptersView.swift", + "source_location": "L180", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_chaptersview_chaptersview_progress", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_chaptersview_swift_cgfloat", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/ChaptersView.swift", + "source_location": "L192", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_chaptersview_chaptersview_updatebackgroundgradient", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_chaptersview_swift_data", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/ChaptersView.swift", + "source_location": "L193", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_chaptersview_chaptersview_updatebackgroundgradient", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_background_backgroundviewmodel_backgroundviewmodel_backgroundgradient" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/FullPlayerView.swift", + "source_location": "L10", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_fullplayerview", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_fullplayerview_constants", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/FullPlayerView.swift", + "source_location": "L610", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_fullplayerview", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_fullplayerview_fullplayerview", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/FullPlayerView.swift", + "source_location": "L24", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_fullplayerview", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_fullplayerview_playeraccessibilitypriority", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/FullPlayerView.swift", + "source_location": "L16", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_fullplayerview", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_fullplayerview_podcastbackgroundgradientstyle", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/FullPlayerView.swift", + "source_location": "L47", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_fullplayerview_fullplayerview", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_fullplayerview_podcastbackgroundgradientstyle", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/FullPlayerView.swift", + "source_location": "L61", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_fullplayerview_fullplayerview_init", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_fullplayerview_podcastbackgroundgradientstyle", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/FullPlayerView.swift", + "source_location": "L19", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_fullplayerview_podcastbackgroundgradientstyle", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_fullplayerview_podcastbackgroundgradientstyle_fourtone", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/FullPlayerView.swift", + "source_location": "L18", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_fullplayerview_podcastbackgroundgradientstyle", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_fullplayerview_podcastbackgroundgradientstyle_threetone", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/FullPlayerView.swift", + "source_location": "L17", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_fullplayerview_podcastbackgroundgradientstyle", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_fullplayerview_podcastbackgroundgradientstyle_twotone", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/Background/BackgroundViewModel.swift", + "source_location": "L11", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_background_backgroundviewmodel_backgroundviewmodel_backgroundgradient", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_fullplayerview_podcastbackgroundgradientstyle", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/Background/BackgroundViewModel.swift", + "source_location": "L78", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_background_backgroundviewmodel_backgroundviewmodel_processartworkcolors", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_fullplayerview_podcastbackgroundgradientstyle", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/Background/BackgroundViewModel.swift", + "source_location": "L59", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_background_backgroundviewmodel_backgroundviewmodel_updatebackgroundgradient", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_fullplayerview_podcastbackgroundgradientstyle", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/FullPlayerView.swift", + "source_location": "L36", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_fullplayerview_playeraccessibilitypriority", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_fullplayerview_swift_double", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/FullPlayerView.swift", + "source_location": "L57", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_fullplayerview_fullplayerview", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_fullplayerview_swift_double", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/FullPlayerView.swift", + "source_location": "L625", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_fullplayerview_fullplayerview_accessiblespeedvalue", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_fullplayerview_swift_double", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/FullPlayerView.swift", + "source_location": "L637", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_fullplayerview_fullplayerview_formattedspeedforbutton", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_fullplayerview_swift_double", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/FullPlayerView.swift", + "source_location": "L625", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_fullplayerview_fullplayerview", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_fullplayerview_fullplayerview_accessiblespeedvalue", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/FullPlayerView.swift", + "source_location": "L637", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_fullplayerview_fullplayerview", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_fullplayerview_fullplayerview_formattedspeedforbutton", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/FullPlayerView.swift", + "source_location": "L611", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_fullplayerview_fullplayerview", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_fullplayerview_fullplayerview_formattime", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/FullPlayerView.swift", + "source_location": "L115", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_fullplayerview_fullplayerview", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_fullplayerview_fullplayerview_fullplayercontent", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/FullPlayerView.swift", + "source_location": "L647", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_fullplayerview_fullplayerview", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_fullplayerview_fullplayerview_haptictick", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/FullPlayerView.swift", + "source_location": "L61", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_fullplayerview_fullplayerview", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_fullplayerview_fullplayerview_init", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/FullPlayerView.swift", + "source_location": "L229", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_fullplayerview_fullplayerview", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_fullplayerview_fullplayerview_podcasttitle", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/FullPlayerView.swift", + "source_location": "L411", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_fullplayerview_fullplayerview", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_fullplayerview_fullplayerview_skipbutton", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/FullPlayerView.swift", + "source_location": "L652", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_fullplayerview_fullplayerview", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_fullplayerview_fullplayerview_updatebackgroundgradient", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/FullPlayerView.swift", + "source_location": "L42", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_fullplayerview_fullplayerview", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_fullplayerview_swift_analyticsmanager", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/FullPlayerView.swift", + "source_location": "L52", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_fullplayerview_fullplayerview", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_fullplayerview_swift_color", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/FullPlayerView.swift", + "source_location": "L55", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_fullplayerview_fullplayerview", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_fullplayerview_swift_timeinterval", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/FullPlayerView.swift", + "source_location": "L611", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_fullplayerview_fullplayerview_formattime", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_fullplayerview_swift_timeinterval", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/FullPlayerView.swift", + "source_location": "L131", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_fullplayerview_fullplayerview_fullplayercontent", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_fullplayerview_fullplayerview_podcasttitle", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/FullPlayerView.swift", + "source_location": "L115", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_fullplayerview_fullplayerview_fullplayercontent", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_fullplayerview_swift_podcastdb", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/FullPlayerView.swift", + "source_location": "L229", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_fullplayerview_fullplayerview_podcasttitle", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_fullplayerview_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/FullPlayerView.swift", + "source_location": "L231", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_fullplayerview_fullplayerview_podcasttitle", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_ticker_ticker" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/FullPlayerView.swift", + "source_location": "L625", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_fullplayerview_fullplayerview_accessiblespeedvalue", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_fullplayerview_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/FullPlayerView.swift", + "source_location": "L637", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_fullplayerview_fullplayerview_formattedspeedforbutton", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_fullplayerview_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/FullPlayerView.swift", + "source_location": "L611", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_fullplayerview_fullplayerview_formattime", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_fullplayerview_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/FullPlayerView.swift", + "source_location": "L411", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_fullplayerview_fullplayerview_skipbutton", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_fullplayerview_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/FullPlayerView.swift", + "source_location": "L652", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_fullplayerview_fullplayerview_updatebackgroundgradient", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_fullplayerview_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/FullPlayerView.swift", + "source_location": "L411", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_fullplayerview_fullplayerview_skipbutton", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_fullplayerview_swift_void", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/FullPlayerView.swift", + "source_location": "L637", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_fullplayerview_fullplayerview_formattedspeedforbutton", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_fullplayerview_swift_bool", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/FullPlayerView.swift", + "source_location": "L652", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_fullplayerview_fullplayerview_updatebackgroundgradient", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_fullplayerview_swift_data", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/FullPlayerView.swift", + "source_location": "L656", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_fullplayerview_fullplayerview_updatebackgroundgradient", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_background_backgroundviewmodel_backgroundviewmodel_backgroundgradient" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/Background/BackgroundView.swift", + "source_location": "L18", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_background_backgroundview", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_background_backgroundview_backgroundview", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/Background/BackgroundView.swift", + "source_location": "L7", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_background_backgroundview_backgroundview", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_background_backgroundview_swift_bool", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/Background/BackgroundView.swift", + "source_location": "L6", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_background_backgroundview_backgroundview", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_background_backgroundview_swift_color", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/Background/BackgroundViewModel.swift", + "source_location": "L5", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_background_backgroundviewmodel", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_background_backgroundviewmodel_backgroundgradientstatus", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/Background/BackgroundViewModel.swift", + "source_location": "L10", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_background_backgroundviewmodel", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_background_backgroundviewmodel_backgroundviewmodel", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/Background/BackgroundViewModel.swift", + "source_location": "L7", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_background_backgroundviewmodel_backgroundgradientstatus", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_background_backgroundviewmodel_swift_bool", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/Background/BackgroundViewModel.swift", + "source_location": "L6", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_background_backgroundviewmodel_backgroundgradientstatus", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_background_backgroundviewmodel_swift_color", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/Background/BackgroundViewModel.swift", + "source_location": "L78", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_background_backgroundviewmodel_backgroundviewmodel_processartworkcolors", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_background_backgroundviewmodel_backgroundgradientstatus", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/Background/BackgroundViewModel.swift", + "source_location": "L59", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_background_backgroundviewmodel_backgroundviewmodel_updatebackgroundgradient", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_background_backgroundviewmodel_backgroundgradientstatus", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/Background/BackgroundViewModel.swift", + "source_location": "L11", + "weight": 1.0, + "context": "generic_arg", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_background_backgroundviewmodel_backgroundviewmodel_backgroundgradient", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_background_backgroundviewmodel_swift_color", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/Background/BackgroundViewModel.swift", + "source_location": "L124", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_background_backgroundviewmodel_backgroundviewmodel_processartworkcolors", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_background_backgroundviewmodel_swift_color", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/Background/BackgroundViewModel.swift", + "source_location": "L11", + "weight": 1.0, + "context": "generic_arg", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_background_backgroundviewmodel_backgroundviewmodel_backgroundgradient", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_background_backgroundviewmodel_swift_bool", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/Background/BackgroundViewModel.swift", + "source_location": "L11", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_background_backgroundviewmodel_backgroundviewmodel", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_background_backgroundviewmodel_backgroundviewmodel_backgroundgradient", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/Background/BackgroundViewModel.swift", + "source_location": "L78", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_background_backgroundviewmodel_backgroundviewmodel", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_background_backgroundviewmodel_backgroundviewmodel_processartworkcolors", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/Background/BackgroundViewModel.swift", + "source_location": "L59", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_background_backgroundviewmodel_backgroundviewmodel", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_background_backgroundviewmodel_backgroundviewmodel_updatebackgroundgradient", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/Background/BackgroundViewModel.swift", + "source_location": "L20", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_background_backgroundviewmodel_backgroundviewmodel_backgroundgradient", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_background_backgroundviewmodel_backgroundviewmodel_updatebackgroundgradient", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/Background/BackgroundViewModel.swift", + "source_location": "L11", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_background_backgroundviewmodel_backgroundviewmodel_backgroundgradient", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_background_backgroundviewmodel_swift_binding", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/Background/BackgroundViewModel.swift", + "source_location": "L11", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_background_backgroundviewmodel_backgroundviewmodel_backgroundgradient", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_background_backgroundviewmodel_swift_data", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/Background/BackgroundViewModel.swift", + "source_location": "L11", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_background_backgroundviewmodel_backgroundviewmodel_backgroundgradient", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_background_backgroundviewmodel_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/Background/BackgroundViewModel.swift", + "source_location": "L78", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_background_backgroundviewmodel_backgroundviewmodel_processartworkcolors", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_background_backgroundviewmodel_swift_data", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/Background/BackgroundViewModel.swift", + "source_location": "L41", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_background_backgroundviewmodel_backgroundviewmodel_updatebackgroundgradient", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_background_backgroundviewmodel_swift_data", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/Background/BackgroundViewModel.swift", + "source_location": "L59", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_background_backgroundviewmodel_backgroundviewmodel_updatebackgroundgradient", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_background_backgroundviewmodel_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/Background/BackgroundViewModel.swift", + "source_location": "L51", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_background_backgroundviewmodel_backgroundviewmodel_updatebackgroundgradient", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_background_backgroundviewmodel_backgroundviewmodel_processartworkcolors", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/Background/BackgroundViewModel.swift", + "source_location": "L78", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_background_backgroundviewmodel_backgroundviewmodel_processartworkcolors", + "target": "macmagazine_widget_models_widgetdata_url", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/PodcastImageView.swift", + "source_location": "L5", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_podcastimageview", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_podcastimageview_imagelocation", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/PodcastImageView.swift", + "source_location": "L27", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_podcastimageview", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_podcastimageview_podcastimageview", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/PodcastImageView.swift", + "source_location": "L12", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_podcastimageview_podcastimageview", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_podcastimageview_imagelocation", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/PodcastImageView.swift", + "source_location": "L49", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_podcastimageview_podcastimageview", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_podcastimageview_podcastimageview_coverimage", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/PodcastImageView.swift", + "source_location": "L28", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_podcastimageview_podcastimageview", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_podcastimageview_podcastimageview_dataimage", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/PodcastImageView.swift", + "source_location": "L13", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_podcastimageview_podcastimageview", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_podcastimageview_swift_content", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/PodcastImageView.swift", + "source_location": "L11", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_podcastimageview_podcastimageview", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_podcastimageview_swift_data", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/PodcastImageView.swift", + "source_location": "L8", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_podcastimageview_imagelocation", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_podcastimageview_imagelocation_background", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/PodcastImageView.swift", + "source_location": "L6", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_podcastimageview_imagelocation", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_podcastimageview_imagelocation_chapter", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/PodcastImageView.swift", + "source_location": "L7", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_podcastimageview_imagelocation", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_podcastimageview_imagelocation_player", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/PodcastImageView.swift", + "source_location": "L49", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_podcastimageview_podcastimageview_coverimage", + "target": "macmagazine_widget_models_widgetdata_url", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/ScrollStylePicker.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_scrollstylepicker", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_scrollstylepicker_speedwheelpicker", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/ScrollStylePicker.swift", + "source_location": "L174", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_scrollstylepicker", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_scrollstylepicker_wrapper", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/ScrollStylePicker.swift", + "source_location": "L11", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_scrollstylepicker_speedwheelpicker", + "target": "lefticon", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/ScrollStylePicker.swift", + "source_location": "L132", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_scrollstylepicker_speedwheelpicker", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_scrollstylepicker_speedwheelpicker_formattedlabel", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/ScrollStylePicker.swift", + "source_location": "L167", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_scrollstylepicker_speedwheelpicker", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_scrollstylepicker_speedwheelpicker_haptic", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/ScrollStylePicker.swift", + "source_location": "L126", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_scrollstylepicker_speedwheelpicker", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_scrollstylepicker_speedwheelpicker_index", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/ScrollStylePicker.swift", + "source_location": "L21", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_scrollstylepicker_speedwheelpicker", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_scrollstylepicker_speedwheelpicker_init", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/ScrollStylePicker.swift", + "source_location": "L140", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_scrollstylepicker_speedwheelpicker", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_scrollstylepicker_speedwheelpicker_roundedtoonedecimal", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/ScrollStylePicker.swift", + "source_location": "L145", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_scrollstylepicker_speedwheelpicker", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_scrollstylepicker_speedwheelpicker_stepdown", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/ScrollStylePicker.swift", + "source_location": "L156", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_scrollstylepicker_speedwheelpicker", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_scrollstylepicker_speedwheelpicker_stepup", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/ScrollStylePicker.swift", + "source_location": "L106", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_scrollstylepicker_speedwheelpicker", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_scrollstylepicker_swift_binding", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/ScrollStylePicker.swift", + "source_location": "L17", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_scrollstylepicker_speedwheelpicker", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_scrollstylepicker_swift_cgfloat", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/ScrollStylePicker.swift", + "source_location": "L8", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_scrollstylepicker_speedwheelpicker", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_scrollstylepicker_swift_double", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/ScrollStylePicker.swift", + "source_location": "L106", + "weight": 1.0, + "context": "generic_arg", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_scrollstylepicker_speedwheelpicker", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_scrollstylepicker_swift_int", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/ScrollStylePicker.swift", + "source_location": "L12", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_scrollstylepicker_speedwheelpicker", + "target": "righticon", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/ScrollStylePicker.swift", + "source_location": "L132", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_scrollstylepicker_speedwheelpicker_formattedlabel", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_scrollstylepicker_swift_double", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/ScrollStylePicker.swift", + "source_location": "L126", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_scrollstylepicker_speedwheelpicker_index", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_scrollstylepicker_swift_double", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/ScrollStylePicker.swift", + "source_location": "L21", + "weight": 1.0, + "context": "generic_arg", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_scrollstylepicker_speedwheelpicker_init", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_scrollstylepicker_swift_double", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/ScrollStylePicker.swift", + "source_location": "L140", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_scrollstylepicker_speedwheelpicker_roundedtoonedecimal", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_scrollstylepicker_swift_double", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/ScrollStylePicker.swift", + "source_location": "L175", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_scrollstylepicker_wrapper", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_scrollstylepicker_swift_double", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/ScrollStylePicker.swift", + "source_location": "L21", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_scrollstylepicker_speedwheelpicker_init", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_scrollstylepicker_swift_cgfloat", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/ScrollStylePicker.swift", + "source_location": "L21", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_scrollstylepicker_speedwheelpicker_init", + "target": "lefticon", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/ScrollStylePicker.swift", + "source_location": "L21", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_scrollstylepicker_speedwheelpicker_init", + "target": "righticon", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/ScrollStylePicker.swift", + "source_location": "L126", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_scrollstylepicker_speedwheelpicker_index", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_scrollstylepicker_swift_int", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/ScrollStylePicker.swift", + "source_location": "L21", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_scrollstylepicker_speedwheelpicker_init", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_scrollstylepicker_swift_binding", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/ScrollStylePicker.swift", + "source_location": "L132", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_scrollstylepicker_speedwheelpicker_formattedlabel", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_scrollstylepicker_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/ScrollStylePicker.swift", + "source_location": "L148", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_scrollstylepicker_speedwheelpicker_stepdown", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_scrollstylepicker_speedwheelpicker_roundedtoonedecimal", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/ScrollStylePicker.swift", + "source_location": "L159", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_scrollstylepicker_speedwheelpicker_stepup", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_scrollstylepicker_speedwheelpicker_roundedtoonedecimal", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/ScrollStylePicker.swift", + "source_location": "L152", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_scrollstylepicker_speedwheelpicker_stepdown", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_scrollstylepicker_speedwheelpicker_haptic", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/ScrollStylePicker.swift", + "source_location": "L163", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_scrollstylepicker_speedwheelpicker_stepup", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_scrollstylepicker_speedwheelpicker_haptic", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/Ticker.swift", + "source_location": "L39", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_ticker", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_ticker_ticker", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/Ticker.swift", + "source_location": "L7", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_ticker_ticker", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_ticker_swift_cgfloat", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/Ticker.swift", + "source_location": "L5", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_ticker_ticker", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_ticker_swift_double", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/Ticker.swift", + "source_location": "L4", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_ticker_ticker", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_ticker_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/Ticker.swift", + "source_location": "L45", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_ticker_ticker", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_ticker_ticker_calculateoffset", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/Ticker.swift", + "source_location": "L40", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_ticker_ticker", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_ticker_ticker_update", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/Ticker.swift", + "source_location": "L45", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_ticker_ticker_calculateoffset", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_helpers_ticker_swift_cgfloat", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/MiniPlayerView.swift", + "source_location": "L80", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_miniplayerview", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_miniplayerview_miniplayerview", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/MiniPlayerView.swift", + "source_location": "L60", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_miniplayerview_miniplayerview", + "target": "gesture", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/MiniPlayerView.swift", + "source_location": "L143", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_miniplayerview_miniplayerview", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_miniplayerview_miniplayerview_artwork", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/MiniPlayerView.swift", + "source_location": "L67", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_miniplayerview_miniplayerview", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_miniplayerview_miniplayerview_closeminiplayer", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/MiniPlayerView.swift", + "source_location": "L29", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_miniplayerview_miniplayerview", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_miniplayerview_miniplayerview_init", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/MiniPlayerView.swift", + "source_location": "L8", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_miniplayerview_miniplayerview", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_miniplayerview_swift_analyticsmanager", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/MiniPlayerView.swift", + "source_location": "L18", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_miniplayerview_miniplayerview", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_miniplayerview_swift_color", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/MiniPlayerView.swift", + "source_location": "L15", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_miniplayerview_miniplayerview", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_miniplayerview_swift_podcastdb", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/MiniPlayerView.swift", + "source_location": "L16", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_miniplayerview_miniplayerview", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_colorscheme_colorscheme", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/MiniPlayerView.swift", + "source_location": "L29", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_miniplayerview_miniplayerview_init", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_miniplayerview_swift_podcastdb", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/MiniPlayerView.swift", + "source_location": "L29", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_miniplayerview_miniplayerview_init", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_colorscheme_colorscheme", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/MiniPlayerView.swift", + "source_location": "L143", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_player_miniplayerview_miniplayerview_artwork", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_player_miniplayerview_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/PodcastView.swift", + "source_location": "L69", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_podcastview", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_podcastview_podcastview", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/PodcastView.swift", + "source_location": "L26", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_podcastview_podcastview", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_podcastview_podcastview_init", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/PodcastView.swift", + "source_location": "L15", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_podcastview_podcastview", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_podcastview_swift_analyticsmanager", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/PodcastView.swift", + "source_location": "L19", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_podcastview_podcastview", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_podcastview_swift_bool", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/PodcastView.swift", + "source_location": "L24", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_podcastview_podcastview", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_podcastview_swift_podcastdb", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/PodcastView.swift", + "source_location": "L20", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_podcastview_podcastview", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_podcastview_swift_scrollposition", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/PodcastView.swift", + "source_location": "L22", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_podcastview_podcastview", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_podcastview_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/PodcastView.swift", + "source_location": "L26", + "weight": 1.0, + "context": "generic_arg", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_podcastview_podcastview_init", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_podcastview_swift_bool", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/PodcastView.swift", + "source_location": "L26", + "weight": 1.0, + "context": "generic_arg", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_podcastview_podcastview_init", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_podcastview_swift_scrollposition", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/PodcastView.swift", + "source_location": "L26", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_podcastview_podcastview_init", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_podcastview_swift_binding", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/PodcastView.swift", + "source_location": "L26", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_podcastlibrary_sources_podcast_views_podcastview_podcastview_init", + "target": "macmagazine_features_podcastlibrary_sources_podcast_views_podcastview_swift_database", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastChapterTests.swift", + "source_location": "L331", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests", + "target": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_createchapter", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastChapterTests.swift", + "source_location": "L7", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests", + "target": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_podcastchaptertests", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastChapterTests.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests", + "target": "podcastlibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastPlayerManagerTests.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastplayermanagertests", + "target": "podcastlibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastViewModelTests.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests", + "target": "podcastlibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchResultsList.swift", + "source_location": "L6", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist", + "target": "podcastlibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchView.swift", + "source_location": "L5", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchview", + "target": "podcastlibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/Features/Social/SocialView.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_macmagazine_features_social_socialview", + "target": "podcastlibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/MacMagazineApp.swift", + "source_location": "L5", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_macmagazineapp", + "target": "podcastlibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/Sizecalss/MainView+sidebar.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_sizecalss_mainview_sidebar", + "target": "podcastlibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/Sizecalss/MainView+tabbar.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_sizecalss_mainview_tabbar", + "target": "podcastlibrary", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastChapterTests.swift", + "source_location": "L179", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_podcastchaptertests", + "target": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_podcastchaptertests_backgroundcolorafterchapter", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastChapterTests.swift", + "source_location": "L211", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_podcastchaptertests", + "target": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_podcastchaptertests_backgroundcoloratexactend", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastChapterTests.swift", + "source_location": "L195", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_podcastchaptertests", + "target": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_podcastchaptertests_backgroundcoloratexactstart", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastChapterTests.swift", + "source_location": "L163", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_podcastchaptertests", + "target": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_podcastchaptertests_backgroundcolorbeforechapter", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastChapterTests.swift", + "source_location": "L146", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_podcastchaptertests", + "target": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_podcastchaptertests_backgroundcolorduringchapter", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastChapterTests.swift", + "source_location": "L227", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_podcastchaptertests", + "target": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_podcastchaptertests_backgroundcoloremptyarrayduringchapter", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastChapterTests.swift", + "source_location": "L243", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_podcastchaptertests", + "target": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_podcastchaptertests_backgroundcoloremptyarrayoutsidechapter", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastChapterTests.swift", + "source_location": "L313", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_podcastchaptertests", + "target": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_podcastchaptertests_backgroundcolorpreciseposition", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastChapterTests.swift", + "source_location": "L48", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_podcastchaptertests", + "target": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_podcastchaptertests_formatexactly1hour", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastChapterTests.swift", + "source_location": "L24", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_podcastchaptertests", + "target": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_podcastchaptertests_formatexactly1minute", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastChapterTests.swift", + "source_location": "L291", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_podcastchaptertests", + "target": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_podcastchaptertests_formatfractionalseconds", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastChapterTests.swift", + "source_location": "L84", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_podcastchaptertests", + "target": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_podcastchaptertests_formatjustover1hour", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastChapterTests.swift", + "source_location": "L72", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_podcastchaptertests", + "target": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_podcastchaptertests_formatjustunder1hour", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastChapterTests.swift", + "source_location": "L120", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_podcastchaptertests", + "target": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_podcastchaptertests_formatmultihourduration", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastChapterTests.swift", + "source_location": "L60", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_podcastchaptertests", + "target": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_podcastchaptertests_formatover1hour", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastChapterTests.swift", + "source_location": "L96", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_podcastchaptertests", + "target": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_podcastchaptertests_formatstarttime", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastChapterTests.swift", + "source_location": "L36", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_podcastchaptertests", + "target": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_podcastchaptertests_formatunder1hour", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastChapterTests.swift", + "source_location": "L12", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_podcastchaptertests", + "target": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_podcastchaptertests_formatunder1minute", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastChapterTests.swift", + "source_location": "L132", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_podcastchaptertests", + "target": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_podcastchaptertests_formatverylongduration", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastChapterTests.swift", + "source_location": "L108", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_podcastchaptertests", + "target": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_podcastchaptertests_formatzeroduration", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastChapterTests.swift", + "source_location": "L261", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_podcastchaptertests", + "target": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_podcastchaptertests_hashablewithuniqueids", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastChapterTests.swift", + "source_location": "L272", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_podcastchaptertests", + "target": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_podcastchaptertests_usableinset", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastChapterTests.swift", + "source_location": "L15", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_podcastchaptertests_formatunder1minute", + "target": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_createchapter", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastChapterTests.swift", + "source_location": "L27", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_podcastchaptertests_formatexactly1minute", + "target": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_createchapter", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastChapterTests.swift", + "source_location": "L39", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_podcastchaptertests_formatunder1hour", + "target": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_createchapter", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastChapterTests.swift", + "source_location": "L51", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_podcastchaptertests_formatexactly1hour", + "target": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_createchapter", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastChapterTests.swift", + "source_location": "L63", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_podcastchaptertests_formatover1hour", + "target": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_createchapter", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastChapterTests.swift", + "source_location": "L75", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_podcastchaptertests_formatjustunder1hour", + "target": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_createchapter", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastChapterTests.swift", + "source_location": "L87", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_podcastchaptertests_formatjustover1hour", + "target": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_createchapter", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastChapterTests.swift", + "source_location": "L99", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_podcastchaptertests_formatstarttime", + "target": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_createchapter", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastChapterTests.swift", + "source_location": "L111", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_podcastchaptertests_formatzeroduration", + "target": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_createchapter", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastChapterTests.swift", + "source_location": "L123", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_podcastchaptertests_formatmultihourduration", + "target": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_createchapter", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastChapterTests.swift", + "source_location": "L135", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_podcastchaptertests_formatverylongduration", + "target": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_createchapter", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastChapterTests.swift", + "source_location": "L150", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_podcastchaptertests_backgroundcolorduringchapter", + "target": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_createchapter", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastChapterTests.swift", + "source_location": "L167", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_podcastchaptertests_backgroundcolorbeforechapter", + "target": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_createchapter", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastChapterTests.swift", + "source_location": "L183", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_podcastchaptertests_backgroundcolorafterchapter", + "target": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_createchapter", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastChapterTests.swift", + "source_location": "L199", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_podcastchaptertests_backgroundcoloratexactstart", + "target": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_createchapter", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastChapterTests.swift", + "source_location": "L215", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_podcastchaptertests_backgroundcoloratexactend", + "target": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_createchapter", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastChapterTests.swift", + "source_location": "L231", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_podcastchaptertests_backgroundcoloremptyarrayduringchapter", + "target": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_createchapter", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastChapterTests.swift", + "source_location": "L247", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_podcastchaptertests_backgroundcoloremptyarrayoutsidechapter", + "target": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_createchapter", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastChapterTests.swift", + "source_location": "L264", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_podcastchaptertests_hashablewithuniqueids", + "target": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_createchapter", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastChapterTests.swift", + "source_location": "L275", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_podcastchaptertests_usableinset", + "target": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_createchapter", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastChapterTests.swift", + "source_location": "L317", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_podcastchaptertests_backgroundcolorpreciseposition", + "target": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_createchapter", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastChapterTests.swift", + "source_location": "L331", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_createchapter", + "target": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_swift_double", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastChapterTests.swift", + "source_location": "L331", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_createchapter", + "target": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastchaptertests_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastPlayerManagerTests.swift", + "source_location": "L298", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastplayermanagertests", + "target": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastplayermanagertests_createchapter", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastPlayerManagerTests.swift", + "source_location": "L312", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastplayermanagertests", + "target": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastplayermanagertests_createtestchapters", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastPlayerManagerTests.swift", + "source_location": "L7", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastplayermanagertests", + "target": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastplayermanagertests_podcastplayermanagertests", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastPlayerManagerTests.swift", + "source_location": "L44", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastplayermanagertests_podcastplayermanagertests", + "target": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastplayermanagertests_podcastplayermanagertests_currentchapterafterall", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastPlayerManagerTests.swift", + "source_location": "L72", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastplayermanagertests_podcastplayermanagertests", + "target": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastplayermanagertests_podcastplayermanagertests_currentchapteratexactend", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastPlayerManagerTests.swift", + "source_location": "L58", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastplayermanagertests_podcastplayermanagertests", + "target": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastplayermanagertests_podcastplayermanagertests_currentchapteratexactstart", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastPlayerManagerTests.swift", + "source_location": "L27", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastplayermanagertests_podcastplayermanagertests", + "target": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastplayermanagertests_podcastplayermanagertests_currentchapterbeforeall", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastPlayerManagerTests.swift", + "source_location": "L87", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastplayermanagertests_podcastplayermanagertests", + "target": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastplayermanagertests_podcastplayermanagertests_currentchapterlast", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastPlayerManagerTests.swift", + "source_location": "L101", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastplayermanagertests_podcastplayermanagertests", + "target": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastplayermanagertests_podcastplayermanagertests_currentchapternochapters", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastPlayerManagerTests.swift", + "source_location": "L13", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastplayermanagertests_podcastplayermanagertests", + "target": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastplayermanagertests_podcastplayermanagertests_currentchapterwithinrange", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastPlayerManagerTests.swift", + "source_location": "L220", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastplayermanagertests_podcastplayermanagertests", + "target": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastplayermanagertests_podcastplayermanagertests_navigatewithmanychapters", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastPlayerManagerTests.swift", + "source_location": "L194", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastplayermanagertests_podcastplayermanagertests", + "target": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastplayermanagertests_podcastplayermanagertests_navigatewithnochapters", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastPlayerManagerTests.swift", + "source_location": "L243", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastplayermanagertests_podcastplayermanagertests", + "target": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastplayermanagertests_podcastplayermanagertests_navigatewithoverlappingchapters", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastPlayerManagerTests.swift", + "source_location": "L260", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastplayermanagertests_podcastplayermanagertests", + "target": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastplayermanagertests_podcastplayermanagertests_navigatewithprecisetime", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastPlayerManagerTests.swift", + "source_location": "L206", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastplayermanagertests_podcastplayermanagertests", + "target": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastplayermanagertests_podcastplayermanagertests_navigatewithsinglechapter", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastPlayerManagerTests.swift", + "source_location": "L274", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastplayermanagertests_podcastplayermanagertests", + "target": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastplayermanagertests_podcastplayermanagertests_navigatewithzerodurationchapter", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastPlayerManagerTests.swift", + "source_location": "L162", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastplayermanagertests_podcastplayermanagertests", + "target": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastplayermanagertests_podcastplayermanagertests_skipbackwardpaststart", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastPlayerManagerTests.swift", + "source_location": "L147", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastplayermanagertests_podcastplayermanagertests", + "target": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastplayermanagertests_podcastplayermanagertests_skipbackwardwithinbounds", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastPlayerManagerTests.swift", + "source_location": "L177", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastplayermanagertests_podcastplayermanagertests", + "target": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastplayermanagertests_podcastplayermanagertests_skipbyzero", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastPlayerManagerTests.swift", + "source_location": "L132", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastplayermanagertests_podcastplayermanagertests", + "target": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastplayermanagertests_podcastplayermanagertests_skipforwardpastend", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastPlayerManagerTests.swift", + "source_location": "L117", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastplayermanagertests_podcastplayermanagertests", + "target": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastplayermanagertests_podcastplayermanagertests_skipforwardwithinbounds", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastPlayerManagerTests.swift", + "source_location": "L17", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastplayermanagertests_podcastplayermanagertests_currentchapterwithinrange", + "target": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastplayermanagertests_createtestchapters", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastPlayerManagerTests.swift", + "source_location": "L32", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastplayermanagertests_podcastplayermanagertests_currentchapterbeforeall", + "target": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastplayermanagertests_createchapter", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastPlayerManagerTests.swift", + "source_location": "L48", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastplayermanagertests_podcastplayermanagertests_currentchapterafterall", + "target": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastplayermanagertests_createtestchapters", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastPlayerManagerTests.swift", + "source_location": "L62", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastplayermanagertests_podcastplayermanagertests_currentchapteratexactstart", + "target": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastplayermanagertests_createtestchapters", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastPlayerManagerTests.swift", + "source_location": "L76", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastplayermanagertests_podcastplayermanagertests_currentchapteratexactend", + "target": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastplayermanagertests_createtestchapters", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastPlayerManagerTests.swift", + "source_location": "L91", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastplayermanagertests_podcastplayermanagertests_currentchapterlast", + "target": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastplayermanagertests_createtestchapters", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastPlayerManagerTests.swift", + "source_location": "L210", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastplayermanagertests_podcastplayermanagertests_navigatewithsinglechapter", + "target": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastplayermanagertests_createchapter", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastPlayerManagerTests.swift", + "source_location": "L227", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastplayermanagertests_podcastplayermanagertests_navigatewithmanychapters", + "target": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastplayermanagertests_createchapter", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastPlayerManagerTests.swift", + "source_location": "L226", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastplayermanagertests_podcastplayermanagertests_navigatewithmanychapters", + "target": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastplayermanagertests_swift_double", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastPlayerManagerTests.swift", + "source_location": "L248", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastplayermanagertests_podcastplayermanagertests_navigatewithoverlappingchapters", + "target": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastplayermanagertests_createchapter", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastPlayerManagerTests.swift", + "source_location": "L264", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastplayermanagertests_podcastplayermanagertests_navigatewithprecisetime", + "target": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastplayermanagertests_createtestchapters", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastPlayerManagerTests.swift", + "source_location": "L279", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastplayermanagertests_podcastplayermanagertests_navigatewithzerodurationchapter", + "target": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastplayermanagertests_createchapter", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastPlayerManagerTests.swift", + "source_location": "L298", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastplayermanagertests_createchapter", + "target": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastplayermanagertests_swift_double", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastPlayerManagerTests.swift", + "source_location": "L298", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastplayermanagertests_createchapter", + "target": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastplayermanagertests_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastPlayerManagerTests.swift", + "source_location": "L314", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastplayermanagertests_createtestchapters", + "target": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastplayermanagertests_createchapter", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastViewModelTests.swift", + "source_location": "L350", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests", + "target": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_createmocknetwork", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastViewModelTests.swift", + "source_location": "L332", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests", + "target": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_podcastviewmodeltests", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastViewModelTests.swift", + "source_location": "L145", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_podcastviewmodeltests", + "target": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_podcastviewmodeltests_correctpagecalculation", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastViewModelTests.swift", + "source_location": "L217", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_podcastviewmodeltests", + "target": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_podcastviewmodeltests_handlerapidscrolling", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastViewModelTests.swift", + "source_location": "L304", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_podcastviewmodeltests", + "target": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_podcastviewmodeltests_initialoptionishome", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastViewModelTests.swift", + "source_location": "L242", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_podcastviewmodeltests", + "target": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_podcastviewmodeltests_initialstatusisidle", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastViewModelTests.swift", + "source_location": "L45", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_podcastviewmodeltests", + "target": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_podcastviewmodeltests_loadpage2atthreshold", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastViewModelTests.swift", + "source_location": "L68", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_podcastviewmodeltests", + "target": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_podcastviewmodeltests_loadpage3atsecondthreshold", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastViewModelTests.swift", + "source_location": "L15", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_podcastviewmodeltests", + "target": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_podcastviewmodeltests_noloadatindexzero", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastViewModelTests.swift", + "source_location": "L29", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_podcastviewmodeltests", + "target": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_podcastviewmodeltests_noloadbelowthreshold", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastViewModelTests.swift", + "source_location": "L122", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_podcastviewmodeltests", + "target": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_podcastviewmodeltests_noreloadsamepage", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastViewModelTests.swift", + "source_location": "L96", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_podcastviewmodeltests", + "target": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_podcastviewmodeltests_onlyloadatexactmultiples", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastViewModelTests.swift", + "source_location": "L188", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_podcastviewmodeltests", + "target": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_podcastviewmodeltests_onlyloadwhenindexincreases", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastViewModelTests.swift", + "source_location": "L288", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_podcastviewmodeltests", + "target": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_podcastviewmodeltests_preservecustomstatus", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastViewModelTests.swift", + "source_location": "L266", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_podcastviewmodeltests", + "target": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_podcastviewmodeltests_statusupdatesonerror", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastViewModelTests.swift", + "source_location": "L252", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_podcastviewmodeltests", + "target": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_podcastviewmodeltests_statusupdatesonsuccess", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastViewModelTests.swift", + "source_location": "L314", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_podcastviewmodeltests", + "target": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_podcastviewmodeltests_supportssearchoption", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastViewModelTests.swift", + "source_location": "L333", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_podcastviewmodeltests", + "target": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_podcastviewmodeltests_waitforstatuschange", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastViewModelTests.swift", + "source_location": "L19", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_podcastviewmodeltests_noloadatindexzero", + "target": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_createmocknetwork", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastViewModelTests.swift", + "source_location": "L33", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_podcastviewmodeltests_noloadbelowthreshold", + "target": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_createmocknetwork", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastViewModelTests.swift", + "source_location": "L49", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_podcastviewmodeltests_loadpage2atthreshold", + "target": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_createmocknetwork", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastViewModelTests.swift", + "source_location": "L56", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_podcastviewmodeltests_loadpage2atthreshold", + "target": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_podcastviewmodeltests_waitforstatuschange", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastViewModelTests.swift", + "source_location": "L72", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_podcastviewmodeltests_loadpage3atsecondthreshold", + "target": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_createmocknetwork", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastViewModelTests.swift", + "source_location": "L77", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_podcastviewmodeltests_loadpage3atsecondthreshold", + "target": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_podcastviewmodeltests_waitforstatuschange", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastViewModelTests.swift", + "source_location": "L100", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_podcastviewmodeltests_onlyloadatexactmultiples", + "target": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_createmocknetwork", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastViewModelTests.swift", + "source_location": "L111", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_podcastviewmodeltests_onlyloadatexactmultiples", + "target": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_podcastviewmodeltests_waitforstatuschange", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastViewModelTests.swift", + "source_location": "L126", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_podcastviewmodeltests_noreloadsamepage", + "target": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_createmocknetwork", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastViewModelTests.swift", + "source_location": "L149", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_podcastviewmodeltests_correctpagecalculation", + "target": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_createmocknetwork", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastViewModelTests.swift", + "source_location": "L159", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_podcastviewmodeltests_correctpagecalculation", + "target": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_podcastviewmodeltests_waitforstatuschange", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastViewModelTests.swift", + "source_location": "L192", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_podcastviewmodeltests_onlyloadwhenindexincreases", + "target": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_createmocknetwork", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastViewModelTests.swift", + "source_location": "L197", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_podcastviewmodeltests_onlyloadwhenindexincreases", + "target": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_podcastviewmodeltests_waitforstatuschange", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastViewModelTests.swift", + "source_location": "L221", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_podcastviewmodeltests_handlerapidscrolling", + "target": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_createmocknetwork", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastViewModelTests.swift", + "source_location": "L229", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_podcastviewmodeltests_handlerapidscrolling", + "target": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_podcastviewmodeltests_waitforstatuschange", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastViewModelTests.swift", + "source_location": "L256", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_podcastviewmodeltests_statusupdatesonsuccess", + "target": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_createmocknetwork", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastViewModelTests.swift", + "source_location": "L292", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_podcastviewmodeltests_preservecustomstatus", + "target": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_createmocknetwork", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastViewModelTests.swift", + "source_location": "L333", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_podcastviewmodeltests_waitforstatuschange", + "target": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_swift_apistatus", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastViewModelTests.swift", + "source_location": "L333", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_podcastviewmodeltests_waitforstatuschange", + "target": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_swift_bool", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastViewModelTests.swift", + "source_location": "L333", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_podcastviewmodeltests_waitforstatuschange", + "target": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_swift_duration", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastViewModelTests.swift", + "source_location": "L350", + "weight": 1.0, + "source": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_createmocknetwork", + "target": "macmagazine_features_podcastlibrary_tests_podcasttests_podcastviewmodeltests_swift_networkmockdata", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Models/RecentSearchDB.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_models_recentsearchdb", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_models_recentsearchdb_recentsearchdb", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Models/RecentSearchDB.swift", + "source_location": "L9", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_models_recentsearchdb_recentsearchdb", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_models_recentsearchdb_recentsearchdb_init", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Models/RecentSearchDB.swift", + "source_location": "L6", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_models_recentsearchdb_recentsearchdb", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_models_recentsearchdb_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/ViewModel/SearchViewModel.swift", + "source_location": "L18", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_viewmodel_searchviewmodel_searchviewmodel", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_models_recentsearchdb_recentsearchdb", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/ViewModel/SearchViewModel.swift", + "source_location": "L114", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_viewmodel_searchviewmodel_searchviewmodel_removerecentsearch", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_models_recentsearchdb_recentsearchdb", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/ViewModel/SearchViewModel.swift", + "source_location": "L161", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_viewmodel_searchviewmodel_searchviewmodel_saverecentsearch", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_models_recentsearchdb_recentsearchdb", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/ViewModel/SearchViewModel.swift", + "source_location": "L100", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_viewmodel_searchviewmodel_searchviewmodel_selectrecentsearch", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_models_recentsearchdb_recentsearchdb", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/RecentSearchesView.swift", + "source_location": "L7", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_views_recentsearchesview_recentsearchesview", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_models_recentsearchdb_recentsearchdb", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Models/RecentSearchDB.swift", + "source_location": "L9", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_models_recentsearchdb_recentsearchdb_init", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_models_recentsearchdb_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Models/SearchResult.swift", + "source_location": "L39", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_models_searchresult", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_models_searchresult_feeddb", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Models/SearchResult.swift", + "source_location": "L51", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_models_searchresult", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_models_searchresult_podcastdb", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Models/SearchResult.swift", + "source_location": "L11", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_models_searchresult", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_models_searchresult_searchresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Models/SearchResult.swift", + "source_location": "L5", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_models_searchresult", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_models_searchresult_searchresulttype", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Models/SearchResult.swift", + "source_location": "L63", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_models_searchresult", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_models_searchresult_videodb", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Models/SearchResult.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_models_searchresult", + "target": "youtubelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Services/LocalSearchService.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_services_localsearchservice", + "target": "youtubelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchResultsList.swift", + "source_location": "L10", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist", + "target": "youtubelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchView.swift", + "source_location": "L10", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchview", + "target": "youtubelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/Card/AdaptiveVideoCard.swift", + "source_location": "L6", + "weight": 1.0, + "source": "macmagazine_features_videoslibrary_sources_videos_card_adaptivevideocard", + "target": "youtubelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/Model/VideoDBExtensions.swift", + "source_location": "L6", + "weight": 1.0, + "source": "macmagazine_features_videoslibrary_sources_videos_model_videodbextensions", + "target": "youtubelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/VideosView.swift", + "source_location": "L6", + "weight": 1.0, + "source": "macmagazine_features_videoslibrary_sources_videos_videosview", + "target": "youtubelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/VideosViewModel.swift", + "source_location": "L6", + "weight": 1.0, + "source": "macmagazine_features_videoslibrary_sources_videos_videosviewmodel", + "target": "youtubelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/VideosLibrary/Tests/VideosLibraryTests/VideosViewModelTests.swift", + "source_location": "L5", + "weight": 1.0, + "source": "macmagazine_features_videoslibrary_tests_videoslibrarytests_videosviewmodeltests", + "target": "youtubelibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/MainViewModel.swift", + "source_location": "L12", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_mainviewmodel", + "target": "youtubelibrary", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Models/SearchResult.swift", + "source_location": "L13", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_models_searchresult_searchresult", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_models_searchresult_searchresulttype", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Models/SearchResult.swift", + "source_location": "L20", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_models_searchresult_searchresult_init", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_models_searchresult_searchresulttype", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Models/SearchResult.swift", + "source_location": "L6", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_models_searchresult_searchresulttype", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_models_searchresult_searchresulttype_news", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Models/SearchResult.swift", + "source_location": "L7", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_models_searchresult_searchresulttype", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_models_searchresult_searchresulttype_podcast", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Models/SearchResult.swift", + "source_location": "L8", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_models_searchresult_searchresulttype", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_models_searchresult_searchresulttype_video", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Services/RemoteFeedSearchService.swift", + "source_location": "L56", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_services_remotefeedsearchservice_remotefeedsearchservice_resulttype", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_models_searchresult_searchresulttype", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/RemoteFeedSearchServiceTests.swift", + "source_location": "L158", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_remotefeedsearchservicetests_remotefeedsearchservicetests_resulttype", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_models_searchresult_searchresulttype", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchResultMergerTests.swift", + "source_location": "L10", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchresultmergertests_searchresultmergertests_makeresult", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_models_searchresult_searchresulttype", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchViewModelTests.swift", + "source_location": "L33", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_makeresult", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_models_searchresult_searchresulttype", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Models/SearchResult.swift", + "source_location": "L40", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_models_searchresult_feeddb_tosearchresult", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_models_searchresult_searchresult", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Models/SearchResult.swift", + "source_location": "L52", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_models_searchresult_podcastdb_tosearchresult", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_models_searchresult_searchresult", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Models/SearchResult.swift", + "source_location": "L20", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_models_searchresult_searchresult", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_models_searchresult_searchresult_init", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Models/SearchResult.swift", + "source_location": "L15", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_models_searchresult_searchresult", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_models_searchresult_swift_double", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Models/SearchResult.swift", + "source_location": "L16", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_models_searchresult_searchresult", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_models_searchresult_swift_feeddb", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Models/SearchResult.swift", + "source_location": "L17", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_models_searchresult_searchresult", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_models_searchresult_swift_podcastdb", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Models/SearchResult.swift", + "source_location": "L12", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_models_searchresult_searchresult", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_models_searchresult_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Models/SearchResult.swift", + "source_location": "L18", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_models_searchresult_searchresult", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_models_searchresult_swift_videodb", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Models/SearchResult.swift", + "source_location": "L64", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_models_searchresult_videodb_tosearchresult", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_models_searchresult_searchresult", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Models/SearchResult.swift", + "source_location": "L20", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_models_searchresult_searchresult_init", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_models_searchresult_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Models/SearchResult.swift", + "source_location": "L40", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_models_searchresult_feeddb_tosearchresult", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_models_searchresult_swift_double", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Models/SearchResult.swift", + "source_location": "L52", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_models_searchresult_podcastdb_tosearchresult", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_models_searchresult_swift_double", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Models/SearchResult.swift", + "source_location": "L20", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_models_searchresult_searchresult_init", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_models_searchresult_swift_double", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Models/SearchResult.swift", + "source_location": "L64", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_models_searchresult_videodb_tosearchresult", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_models_searchresult_swift_double", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Models/SearchResult.swift", + "source_location": "L20", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_models_searchresult_searchresult_init", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_models_searchresult_swift_feeddb", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Models/SearchResult.swift", + "source_location": "L20", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_models_searchresult_searchresult_init", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_models_searchresult_swift_podcastdb", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Models/SearchResult.swift", + "source_location": "L20", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_models_searchresult_searchresult_init", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_models_searchresult_swift_videodb", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Models/SearchResult.swift", + "source_location": "L40", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_models_searchresult_feeddb", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_models_searchresult_feeddb_tosearchresult", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/RelevanceScorerTests.swift", + "source_location": "L19", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_relevancescorertests_relevancescorertests_makeresult", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_models_searchresult_feeddb" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Models/SearchResult.swift", + "source_location": "L52", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_models_searchresult_podcastdb", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_models_searchresult_podcastdb_tosearchresult", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Models/SearchResult.swift", + "source_location": "L64", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_models_searchresult_videodb", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_models_searchresult_videodb_tosearchresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/NLP/PortugueseLexicon.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_portugueselexicon", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_portugueselexicon_portugueselexicon", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/NLP/PortugueseLexicon.swift", + "source_location": "L63", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_portugueselexicon_portugueselexicon", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_portugueselexicon_portugueselexicon_matchcategories", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/NLP/PortugueseLexicon.swift", + "source_location": "L78", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_portugueselexicon_portugueselexicon", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_portugueselexicon_portugueselexicon_matchcontenttypes", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/NLP/PortugueseLexicon.swift", + "source_location": "L87", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_portugueselexicon_portugueselexicon", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_portugueselexicon_portugueselexicon_matchrecency", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/NLP/PortugueseLexicon.swift", + "source_location": "L91", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_portugueselexicon_portugueselexicon", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_portugueselexicon_portugueselexicon_removestopwords", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/NLP/PortugueseLexicon.swift", + "source_location": "L7", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_portugueselexicon_portugueselexicon", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_portugueselexicon_swift_newscategory", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/NLP/PortugueseLexicon.swift", + "source_location": "L53", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_portugueselexicon_portugueselexicon", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_portugueselexicon_swift_set", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/NLP/PortugueseLexicon.swift", + "source_location": "L53", + "weight": 1.0, + "context": "generic_arg", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_portugueselexicon_portugueselexicon", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_portugueselexicon_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/NLP/PortugueseLexicon.swift", + "source_location": "L63", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_portugueselexicon_portugueselexicon_matchcategories", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_portugueselexicon_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/NLP/PortugueseLexicon.swift", + "source_location": "L78", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_portugueselexicon_portugueselexicon_matchcontenttypes", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_portugueselexicon_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/NLP/PortugueseLexicon.swift", + "source_location": "L87", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_portugueselexicon_portugueselexicon_matchrecency", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_portugueselexicon_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/NLP/PortugueseLexicon.swift", + "source_location": "L91", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_portugueselexicon_portugueselexicon_removestopwords", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_portugueselexicon_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/NLP/PortugueseLexicon.swift", + "source_location": "L63", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_portugueselexicon_portugueselexicon_matchcategories", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_portugueselexicon_swift_newscategory", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/NLP/PortugueseLexicon.swift", + "source_location": "L78", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_portugueselexicon_portugueselexicon_matchcontenttypes", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_portugueselexicon_swift_set", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/NLP/QueryProcessor.swift", + "source_location": "L28", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryprocessor_queryprocessor_process", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_portugueselexicon_portugueselexicon_matchcategories" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/NLP/PortugueseLexicon.swift", + "source_location": "L78", + "weight": 1.0, + "context": "generic_arg", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_portugueselexicon_portugueselexicon_matchcontenttypes", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryintent_contenttype", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/NLP/QueryProcessor.swift", + "source_location": "L31", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryprocessor_queryprocessor_process", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_portugueselexicon_portugueselexicon_matchcontenttypes" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/NLP/PortugueseLexicon.swift", + "source_location": "L87", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_portugueselexicon_portugueselexicon_matchrecency", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_portugueselexicon_swift_bool", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/NLP/QueryProcessor.swift", + "source_location": "L32", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryprocessor_queryprocessor_process", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_portugueselexicon_portugueselexicon_matchrecency" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/NLP/QueryProcessor.swift", + "source_location": "L30", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryprocessor_queryprocessor_process", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_portugueselexicon_portugueselexicon_removestopwords" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/NLP/QueryIntent.swift", + "source_location": "L9", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryintent", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryintent_contenttype", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/NLP/QueryIntent.swift", + "source_location": "L15", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryintent", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryintent_queryintent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/NLP/QueryIntent.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryintent", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryintent_sortpreference", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/NLP/QueryIntent.swift", + "source_location": "L20", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryintent_queryintent", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryintent_sortpreference", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/NLP/QueryIntent.swift", + "source_location": "L6", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryintent_sortpreference", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryintent_sortpreference_recent", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/NLP/QueryIntent.swift", + "source_location": "L5", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryintent_sortpreference", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryintent_sortpreference_relevance", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/NLP/QueryIntent.swift", + "source_location": "L10", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryintent_contenttype", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryintent_contenttype_news", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/NLP/QueryIntent.swift", + "source_location": "L11", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryintent_contenttype", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryintent_contenttype_podcast", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/NLP/QueryIntent.swift", + "source_location": "L12", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryintent_contenttype", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryintent_contenttype_video", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/NLP/QueryIntent.swift", + "source_location": "L21", + "weight": 1.0, + "context": "generic_arg", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryintent_queryintent", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryintent_contenttype", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/NLP/QueryIntent.swift", + "source_location": "L19", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryintent_queryintent", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryintent_swift_newscategory", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/NLP/QueryIntent.swift", + "source_location": "L21", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryintent_queryintent", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryintent_swift_set", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/NLP/QueryIntent.swift", + "source_location": "L22", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryintent_queryintent", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryintent_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/NLP/QueryProcessor.swift", + "source_location": "L6", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryprocessor_queryprocessor_process", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryintent_queryintent", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Services/LocalSearchService.swift", + "source_location": "L14", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_services_localsearchservice_localsearchservice_search", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryintent_queryintent", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Services/LocalSearchService.swift", + "source_location": "L53", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_services_localsearchservice_localsearchservice_searchfeed", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryintent_queryintent", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Services/LocalSearchService.swift", + "source_location": "L70", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_services_localsearchservice_localsearchservice_searchpodcasts", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryintent_queryintent", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Services/LocalSearchService.swift", + "source_location": "L86", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_services_localsearchservice_localsearchservice_searchvideos", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryintent_queryintent", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Services/RelevanceScorer.swift", + "source_location": "L4", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_services_relevancescorer_relevancescorer_score", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryintent_queryintent", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Services/SearchResultMerger.swift", + "source_location": "L10", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_services_searchresultmerger_searchresultmerger_merge", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryintent_queryintent", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/ViewModel/SearchViewModel.swift", + "source_location": "L126", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_viewmodel_searchviewmodel_searchviewmodel_searchremote", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryintent_queryintent", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchViewModelTests.swift", + "source_location": "L11", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_mocklocalsearchservice_search", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryintent_queryintent", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchViewModelTests.swift", + "source_location": "L28", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_mockmerger_merge", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryintent_queryintent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/NLP/QueryProcessor.swift", + "source_location": "L53", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryprocessor", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryprocessor_queryprocessor", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/NLP/QueryProcessor.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryprocessor", + "target": "naturallanguage", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/NLP/QueryProcessor.swift", + "source_location": "L110", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryprocessor_queryprocessor", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryprocessor_queryprocessor_buildremotesearchterm", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/NLP/QueryProcessor.swift", + "source_location": "L86", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryprocessor_queryprocessor", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryprocessor_queryprocessor_extractentities", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/NLP/QueryProcessor.swift", + "source_location": "L68", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryprocessor_queryprocessor", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryprocessor_queryprocessor_lemmatize", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/NLP/QueryProcessor.swift", + "source_location": "L6", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryprocessor_queryprocessor", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryprocessor_queryprocessor_process", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/NLP/QueryProcessor.swift", + "source_location": "L55", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryprocessor_queryprocessor", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryprocessor_queryprocessor_tokenize", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/ViewModel/SearchViewModel.swift", + "source_location": "L20", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_viewmodel_searchviewmodel_searchviewmodel", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryprocessor_queryprocessor", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/ViewModel/SearchViewModel.swift", + "source_location": "L31", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_viewmodel_searchviewmodel_searchviewmodel_init", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryprocessor_queryprocessor", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/QueryProcessorTests.swift", + "source_location": "L6", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_queryprocessortests_queryprocessortests", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryprocessor_queryprocessor" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/RelevanceScorerTests.swift", + "source_location": "L9", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_relevancescorertests_relevancescorertests", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryprocessor_queryprocessor" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchResultMergerTests.swift", + "source_location": "L8", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchresultmergertests_searchresultmergertests", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryprocessor_queryprocessor" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/NLP/QueryProcessor.swift", + "source_location": "L34", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryprocessor_queryprocessor_process", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryprocessor_queryprocessor_buildremotesearchterm", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/NLP/QueryProcessor.swift", + "source_location": "L22", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryprocessor_queryprocessor_process", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryprocessor_queryprocessor_extractentities", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/NLP/QueryProcessor.swift", + "source_location": "L21", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryprocessor_queryprocessor_process", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryprocessor_queryprocessor_lemmatize", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/NLP/QueryProcessor.swift", + "source_location": "L20", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryprocessor_queryprocessor_process", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryprocessor_queryprocessor_tokenize", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/NLP/QueryProcessor.swift", + "source_location": "L6", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryprocessor_queryprocessor_process", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryprocessor_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/ViewModel/SearchViewModel.swift", + "source_location": "L70", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_viewmodel_searchviewmodel_searchviewmodel_performsearch", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryprocessor_queryprocessor_process" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/QueryProcessorTests.swift", + "source_location": "L67", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_queryprocessortests_queryprocessortests_comofazercategory", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryprocessor_queryprocessor_process" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/QueryProcessorTests.swift", + "source_location": "L61", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_queryprocessortests_queryprocessortests_defaultsortpreference", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryprocessor_queryprocessor_process" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/QueryProcessorTests.swift", + "source_location": "L10", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_queryprocessortests_queryprocessortests_emptyquery", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryprocessor_queryprocessor_process" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/QueryProcessorTests.swift", + "source_location": "L49", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_queryprocessortests_queryprocessortests_podcastcontenttype", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryprocessor_queryprocessor_process" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/QueryProcessorTests.swift", + "source_location": "L55", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_queryprocessortests_queryprocessortests_recencysortpreference", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryprocessor_queryprocessor_process" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/QueryProcessorTests.swift", + "source_location": "L73", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_queryprocessortests_queryprocessortests_remotesearchtermcleaned", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryprocessor_queryprocessor_process" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/QueryProcessorTests.swift", + "source_location": "L37", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_queryprocessortests_queryprocessortests_reviewcategory", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryprocessor_queryprocessor_process" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/QueryProcessorTests.swift", + "source_location": "L31", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_queryprocessortests_queryprocessortests_rumorcategory", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryprocessor_queryprocessor_process" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/QueryProcessorTests.swift", + "source_location": "L18", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_queryprocessortests_queryprocessortests_simplequery", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryprocessor_queryprocessor_process" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/QueryProcessorTests.swift", + "source_location": "L25", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_queryprocessortests_queryprocessortests_tutorialcategory", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryprocessor_queryprocessor_process" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/QueryProcessorTests.swift", + "source_location": "L43", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_queryprocessortests_queryprocessortests_videocontenttype", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryprocessor_queryprocessor_process" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/RelevanceScorerTests.swift", + "source_location": "L63", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_relevancescorertests_relevancescorertests_nomatchminimalscore", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryprocessor_queryprocessor_process" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/RelevanceScorerTests.swift", + "source_location": "L51", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_relevancescorertests_relevancescorertests_recencyboost", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryprocessor_queryprocessor_process" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/RelevanceScorerTests.swift", + "source_location": "L39", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_relevancescorertests_relevancescorertests_titlehigherthanexcerpt", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryprocessor_queryprocessor_process" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchResultMergerTests.swift", + "source_location": "L30", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchresultmergertests_searchresultmergertests_deduplication", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryprocessor_queryprocessor_process" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchResultMergerTests.swift", + "source_location": "L84", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchresultmergertests_searchresultmergertests_emptymerge", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryprocessor_queryprocessor_process" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchResultMergerTests.swift", + "source_location": "L40", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchresultmergertests_searchresultmergertests_localprecedence", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryprocessor_queryprocessor_process" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchResultMergerTests.swift", + "source_location": "L50", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchresultmergertests_searchresultmergertests_mergesdifferenttypes", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryprocessor_queryprocessor_process" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchResultMergerTests.swift", + "source_location": "L72", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchresultmergertests_searchresultmergertests_relevancesortprioritizesscore", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryprocessor_queryprocessor_process" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchResultMergerTests.swift", + "source_location": "L60", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchresultmergertests_searchresultmergertests_sortedbypubdate", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryprocessor_queryprocessor_process" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/NLP/QueryProcessor.swift", + "source_location": "L110", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryprocessor_queryprocessor_buildremotesearchterm", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryprocessor_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/NLP/QueryProcessor.swift", + "source_location": "L86", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryprocessor_queryprocessor_extractentities", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryprocessor_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/NLP/QueryProcessor.swift", + "source_location": "L68", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryprocessor_queryprocessor_lemmatize", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryprocessor_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/NLP/QueryProcessor.swift", + "source_location": "L55", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryprocessor_queryprocessor_tokenize", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_nlp_queryprocessor_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Services/LocalSearchService.swift", + "source_location": "L51", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_services_localsearchservice", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_services_localsearchservice_localsearchservice", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Services/LocalSearchService.swift", + "source_location": "L6", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_services_localsearchservice", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_services_localsearchservice_localsearchserviceprotocol", + "confidence_score": 1.0 + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Services/LocalSearchService.swift", + "source_location": "L11", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_services_localsearchservice_localsearchservice", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_services_localsearchservice_localsearchserviceprotocol", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/ViewModel/SearchViewModel.swift", + "source_location": "L21", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_viewmodel_searchviewmodel_searchviewmodel", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_services_localsearchservice_localsearchserviceprotocol", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/ViewModel/SearchViewModel.swift", + "source_location": "L38", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_viewmodel_searchviewmodel_searchviewmodel_init", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_services_localsearchservice_localsearchserviceprotocol", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/ViewModel/SearchViewModel.swift", + "source_location": "L72", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_viewmodel_searchviewmodel_searchviewmodel_performsearch", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_services_localsearchservice_localsearchserviceprotocol" + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchViewModelTests.swift", + "source_location": "L7", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_mocklocalsearchservice", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_services_localsearchservice_localsearchserviceprotocol", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Services/LocalSearchService.swift", + "source_location": "L14", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_services_localsearchservice_localsearchservice", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_services_localsearchservice_localsearchservice_search", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Services/LocalSearchService.swift", + "source_location": "L53", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_services_localsearchservice_localsearchservice", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_services_localsearchservice_localsearchservice_searchfeed", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Services/LocalSearchService.swift", + "source_location": "L70", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_services_localsearchservice_localsearchservice", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_services_localsearchservice_localsearchservice_searchpodcasts", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Services/LocalSearchService.swift", + "source_location": "L86", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_services_localsearchservice_localsearchservice", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_services_localsearchservice_localsearchservice_searchvideos", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Services/LocalSearchService.swift", + "source_location": "L12", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_services_localsearchservice_localsearchservice", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_services_relevancescorer_relevancescorer" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/ViewModel/SearchViewModel.swift", + "source_location": "L32", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_viewmodel_searchviewmodel_searchviewmodel_init", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_services_localsearchservice_localsearchservice" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Services/LocalSearchService.swift", + "source_location": "L26", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_services_localsearchservice_localsearchservice_search", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_services_localsearchservice_localsearchservice_searchfeed", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Services/LocalSearchService.swift", + "source_location": "L29", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_services_localsearchservice_localsearchservice_search", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_services_localsearchservice_localsearchservice_searchpodcasts", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Services/LocalSearchService.swift", + "source_location": "L32", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_services_localsearchservice_localsearchservice_search", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_services_localsearchservice_localsearchservice_searchvideos", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Services/LocalSearchService.swift", + "source_location": "L14", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_services_localsearchservice_localsearchservice_search", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_services_localsearchservice_swift_modelcontext", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Services/LocalSearchService.swift", + "source_location": "L14", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_services_localsearchservice_localsearchservice_search", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_services_localsearchservice_swift_searchresult", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Services/LocalSearchService.swift", + "source_location": "L37", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_services_localsearchservice_localsearchservice_search", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_services_relevancescorer_relevancescorer_score" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Services/LocalSearchService.swift", + "source_location": "L53", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_services_localsearchservice_localsearchservice_searchfeed", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_services_localsearchservice_swift_modelcontext", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Services/LocalSearchService.swift", + "source_location": "L70", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_services_localsearchservice_localsearchservice_searchpodcasts", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_services_localsearchservice_swift_modelcontext", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Services/LocalSearchService.swift", + "source_location": "L86", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_services_localsearchservice_localsearchservice_searchvideos", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_services_localsearchservice_swift_modelcontext", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Services/LocalSearchService.swift", + "source_location": "L53", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_services_localsearchservice_localsearchservice_searchfeed", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_services_localsearchservice_swift_searchresult", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Services/LocalSearchService.swift", + "source_location": "L70", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_services_localsearchservice_localsearchservice_searchpodcasts", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_services_localsearchservice_swift_searchresult", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Services/LocalSearchService.swift", + "source_location": "L86", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_services_localsearchservice_localsearchservice_searchvideos", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_services_localsearchservice_swift_searchresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Services/RelevanceScorer.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_services_relevancescorer", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_services_relevancescorer_relevancescorer", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Services/RelevanceScorer.swift", + "source_location": "L30", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_services_relevancescorer", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_services_relevancescorer_searchresult", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Services/RelevanceScorer.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_services_relevancescorer_relevancescorer", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_services_relevancescorer_relevancescorer_score", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Services/SearchResultMerger.swift", + "source_location": "L8", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_services_searchresultmerger_searchresultmerger", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_services_relevancescorer_relevancescorer" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/RelevanceScorerTests.swift", + "source_location": "L8", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_relevancescorertests_relevancescorertests", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_services_relevancescorer_relevancescorer" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Services/RelevanceScorer.swift", + "source_location": "L4", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_services_relevancescorer_relevancescorer_score", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_services_relevancescorer_swift_double", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Services/RelevanceScorer.swift", + "source_location": "L4", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_services_relevancescorer_relevancescorer_score", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_services_relevancescorer_swift_searchresult", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Services/SearchResultMerger.swift", + "source_location": "L33", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_services_searchresultmerger_searchresultmerger_merge", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_services_relevancescorer_relevancescorer_score" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/RelevanceScorerTests.swift", + "source_location": "L66", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_relevancescorertests_relevancescorertests_nomatchminimalscore", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_services_relevancescorer_relevancescorer_score" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/RelevanceScorerTests.swift", + "source_location": "L55", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_relevancescorertests_relevancescorertests_recencyboost", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_services_relevancescorer_relevancescorer_score" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/RelevanceScorerTests.swift", + "source_location": "L43", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_relevancescorertests_relevancescorertests_titlehigherthanexcerpt", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_services_relevancescorer_relevancescorer_score" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Services/RelevanceScorer.swift", + "source_location": "L39", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_services_relevancescorer_searchresult", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_services_relevancescorer_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Services/RemoteFeedSearchService.swift", + "source_location": "L55", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_services_remotefeedsearchservice", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_services_remotefeedsearchservice_remotefeedsearchservice", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Services/RemoteFeedSearchService.swift", + "source_location": "L6", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_services_remotefeedsearchservice", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_services_remotefeedsearchservice_remotesearchserviceprotocol", + "confidence_score": 1.0 + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Services/RemoteFeedSearchService.swift", + "source_location": "L10", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_services_remotefeedsearchservice_remotefeedsearchservice", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_services_remotefeedsearchservice_remotesearchserviceprotocol", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/ViewModel/SearchViewModel.swift", + "source_location": "L24", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_viewmodel_searchviewmodel_searchviewmodel", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_services_remotefeedsearchservice_remotesearchserviceprotocol", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/ViewModel/SearchViewModel.swift", + "source_location": "L38", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_viewmodel_searchviewmodel_searchviewmodel_init", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_services_remotefeedsearchservice_remotesearchserviceprotocol", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/ViewModel/SearchViewModel.swift", + "source_location": "L130", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_viewmodel_searchviewmodel_searchviewmodel_searchremote", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_services_remotefeedsearchservice_remotesearchserviceprotocol" + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchViewModelTests.swift", + "source_location": "L16", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_mockremotesearchservice", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_services_remotefeedsearchservice_remotesearchserviceprotocol", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Services/RemoteFeedSearchService.swift", + "source_location": "L18", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_services_remotefeedsearchservice_remotefeedsearchservice", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_services_remotefeedsearchservice_remotefeedsearchservice_init", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Services/RemoteFeedSearchService.swift", + "source_location": "L56", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_services_remotefeedsearchservice_remotefeedsearchservice", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_services_remotefeedsearchservice_remotefeedsearchservice_resulttype", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Services/RemoteFeedSearchService.swift", + "source_location": "L23", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_services_remotefeedsearchservice_remotefeedsearchservice", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_services_remotefeedsearchservice_remotefeedsearchservice_search", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/ViewModel/SearchViewModel.swift", + "source_location": "L34", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_viewmodel_searchviewmodel_searchviewmodel_init", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_services_remotefeedsearchservice_remotefeedsearchservice" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Services/RemoteFeedSearchService.swift", + "source_location": "L18", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_services_remotefeedsearchservice_remotefeedsearchservice_init", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_services_remotefeedsearchservice_swift_database", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Services/RemoteFeedSearchService.swift", + "source_location": "L30", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_services_remotefeedsearchservice_remotefeedsearchservice_search", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_services_remotefeedsearchservice_remotefeedsearchservice_resulttype", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Services/RemoteFeedSearchService.swift", + "source_location": "L23", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_services_remotefeedsearchservice_remotefeedsearchservice_search", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_services_remotefeedsearchservice_swift_int", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Services/RemoteFeedSearchService.swift", + "source_location": "L23", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_services_remotefeedsearchservice_remotefeedsearchservice_search", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_services_remotefeedsearchservice_swift_searchresult", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Services/RemoteFeedSearchService.swift", + "source_location": "L23", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_services_remotefeedsearchservice_remotefeedsearchservice_search", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_services_remotefeedsearchservice_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Services/RemoteFeedSearchService.swift", + "source_location": "L56", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_services_remotefeedsearchservice_remotefeedsearchservice_resulttype", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_services_remotefeedsearchservice_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Services/SearchResultMerger.swift", + "source_location": "L47", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_services_searchresultmerger", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_services_searchresultmerger_searchresultmerger", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Services/SearchResultMerger.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_services_searchresultmerger", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_services_searchresultmerger_searchresultmergerprotocol", + "confidence_score": 1.0 + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Services/SearchResultMerger.swift", + "source_location": "L7", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_services_searchresultmerger_searchresultmerger", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_services_searchresultmerger_searchresultmergerprotocol", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/ViewModel/SearchViewModel.swift", + "source_location": "L22", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_viewmodel_searchviewmodel_searchviewmodel", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_services_searchresultmerger_searchresultmergerprotocol", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/ViewModel/SearchViewModel.swift", + "source_location": "L38", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_viewmodel_searchviewmodel_searchviewmodel_init", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_services_searchresultmerger_searchresultmergerprotocol", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/ViewModel/SearchViewModel.swift", + "source_location": "L132", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_viewmodel_searchviewmodel_searchviewmodel_searchremote", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_services_searchresultmerger_searchresultmergerprotocol" + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchViewModelTests.swift", + "source_location": "L27", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_mockmerger", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_services_searchresultmerger_searchresultmergerprotocol", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Services/SearchResultMerger.swift", + "source_location": "L49", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_services_searchresultmerger_searchresultmerger", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_services_searchresultmerger_searchresultmerger_deduplicationkey", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Services/SearchResultMerger.swift", + "source_location": "L63", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_services_searchresultmerger_searchresultmerger", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_services_searchresultmerger_searchresultmerger_extractid", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Services/SearchResultMerger.swift", + "source_location": "L10", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_services_searchresultmerger_searchresultmerger", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_services_searchresultmerger_searchresultmerger_merge", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/ViewModel/SearchViewModel.swift", + "source_location": "L33", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_viewmodel_searchviewmodel_searchviewmodel_init", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_services_searchresultmerger_searchresultmerger" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchResultMergerTests.swift", + "source_location": "L7", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchresultmergertests_searchresultmergertests", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_services_searchresultmerger_searchresultmerger" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Services/SearchResultMerger.swift", + "source_location": "L19", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_services_searchresultmerger_searchresultmerger_merge", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_services_searchresultmerger_searchresultmerger_deduplicationkey", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Services/SearchResultMerger.swift", + "source_location": "L10", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_services_searchresultmerger_searchresultmerger_merge", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_services_searchresultmerger_swift_searchresult", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchResultMergerTests.swift", + "source_location": "L34", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchresultmergertests_searchresultmergertests_deduplication", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_services_searchresultmerger_searchresultmerger_merge" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchResultMergerTests.swift", + "source_location": "L85", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchresultmergertests_searchresultmergertests_emptymerge", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_services_searchresultmerger_searchresultmerger_merge" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchResultMergerTests.swift", + "source_location": "L44", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchresultmergertests_searchresultmergertests_localprecedence", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_services_searchresultmerger_searchresultmerger_merge" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchResultMergerTests.swift", + "source_location": "L54", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchresultmergertests_searchresultmergertests_mergesdifferenttypes", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_services_searchresultmerger_searchresultmerger_merge" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchResultMergerTests.swift", + "source_location": "L78", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchresultmergertests_searchresultmergertests_relevancesortprioritizesscore", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_services_searchresultmerger_searchresultmerger_merge" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchResultMergerTests.swift", + "source_location": "L64", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchresultmergertests_searchresultmergertests_sortedbypubdate", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_services_searchresultmerger_searchresultmerger_merge" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Services/SearchResultMerger.swift", + "source_location": "L49", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_services_searchresultmerger_searchresultmerger_deduplicationkey", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_services_searchresultmerger_swift_searchresult", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Services/SearchResultMerger.swift", + "source_location": "L52", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_services_searchresultmerger_searchresultmerger_deduplicationkey", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_services_searchresultmerger_searchresultmerger_extractid", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Services/SearchResultMerger.swift", + "source_location": "L49", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_services_searchresultmerger_searchresultmerger_deduplicationkey", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_services_searchresultmerger_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Services/SearchResultMerger.swift", + "source_location": "L63", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_services_searchresultmerger_searchresultmerger_extractid", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_services_searchresultmerger_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/ViewModel/SearchViewModel.swift", + "source_location": "L5", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_viewmodel_searchviewmodel", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_viewmodel_searchviewmodel_searchstatus", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/ViewModel/SearchViewModel.swift", + "source_location": "L142", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_viewmodel_searchviewmodel", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_viewmodel_searchviewmodel_searchviewmodel", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/ViewModel/SearchViewModel.swift", + "source_location": "L9", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_viewmodel_searchviewmodel_searchstatus", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_viewmodel_searchviewmodel_searchstatus_done", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/ViewModel/SearchViewModel.swift", + "source_location": "L10", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_viewmodel_searchviewmodel_searchstatus", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_viewmodel_searchviewmodel_searchstatus_error", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/ViewModel/SearchViewModel.swift", + "source_location": "L6", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_viewmodel_searchviewmodel_searchstatus", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_viewmodel_searchviewmodel_searchstatus_idle", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/ViewModel/SearchViewModel.swift", + "source_location": "L8", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_viewmodel_searchviewmodel_searchstatus", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_viewmodel_searchviewmodel_searchstatus_localresults", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/ViewModel/SearchViewModel.swift", + "source_location": "L7", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_viewmodel_searchviewmodel_searchstatus", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_viewmodel_searchviewmodel_searchstatus_searching", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/ViewModel/SearchViewModel.swift", + "source_location": "L10", + "weight": 1.0, + "context": "type", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_viewmodel_searchviewmodel_searchstatus", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_viewmodel_searchviewmodel_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/ViewModel/SearchViewModel.swift", + "source_location": "L16", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_viewmodel_searchviewmodel_searchviewmodel", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_viewmodel_searchviewmodel_searchstatus", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchView.swift", + "source_location": "L255", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchview_searchview_announcesearchstatus", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_viewmodel_searchviewmodel_searchstatus", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchView.swift", + "source_location": "L243", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchview_searchview_tracksearchcompletion", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_viewmodel_searchviewmodel_searchstatus", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/ViewModel/SearchViewModel.swift", + "source_location": "L15", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_viewmodel_searchviewmodel_searchviewmodel", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_viewmodel_searchviewmodel_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/ViewModel/SearchViewModel.swift", + "source_location": "L152", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_viewmodel_searchviewmodel_searchviewmodel_saverecentsearch", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_viewmodel_searchviewmodel_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/ViewModel/SearchViewModel.swift", + "source_location": "L105", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_viewmodel_searchviewmodel_searchviewmodel", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_viewmodel_searchviewmodel_searchviewmodel_clearrecentsearches", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/ViewModel/SearchViewModel.swift", + "source_location": "L93", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_viewmodel_searchviewmodel_searchviewmodel", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_viewmodel_searchviewmodel_searchviewmodel_clearsearch", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/ViewModel/SearchViewModel.swift", + "source_location": "L38", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_viewmodel_searchviewmodel_searchviewmodel", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_viewmodel_searchviewmodel_searchviewmodel_init", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/ViewModel/SearchViewModel.swift", + "source_location": "L144", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_viewmodel_searchviewmodel_searchviewmodel", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_viewmodel_searchviewmodel_searchviewmodel_loadrecentsearches", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/ViewModel/SearchViewModel.swift", + "source_location": "L52", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_viewmodel_searchviewmodel_searchviewmodel", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_viewmodel_searchviewmodel_searchviewmodel_performsearch", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/ViewModel/SearchViewModel.swift", + "source_location": "L114", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_viewmodel_searchviewmodel_searchviewmodel", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_viewmodel_searchviewmodel_searchviewmodel_removerecentsearch", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/ViewModel/SearchViewModel.swift", + "source_location": "L152", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_viewmodel_searchviewmodel_searchviewmodel", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_viewmodel_searchviewmodel_searchviewmodel_saverecentsearch", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/ViewModel/SearchViewModel.swift", + "source_location": "L126", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_viewmodel_searchviewmodel_searchviewmodel", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_viewmodel_searchviewmodel_searchviewmodel_searchremote", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/ViewModel/SearchViewModel.swift", + "source_location": "L100", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_viewmodel_searchviewmodel_searchviewmodel", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_viewmodel_searchviewmodel_searchviewmodel_selectrecentsearch", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/ViewModel/SearchViewModel.swift", + "source_location": "L23", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_viewmodel_searchviewmodel_searchviewmodel", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_viewmodel_searchviewmodel_swift_database", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/ViewModel/SearchViewModel.swift", + "source_location": "L26", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_viewmodel_searchviewmodel_searchviewmodel", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_viewmodel_searchviewmodel_swift_duration", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/ViewModel/SearchViewModel.swift", + "source_location": "L27", + "weight": 1.0, + "context": "generic_arg", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_viewmodel_searchviewmodel_searchviewmodel", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_viewmodel_searchviewmodel_swift_never", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/ViewModel/SearchViewModel.swift", + "source_location": "L17", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_viewmodel_searchviewmodel_searchviewmodel", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_viewmodel_searchviewmodel_swift_searchresult", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/ViewModel/SearchViewModel.swift", + "source_location": "L27", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_viewmodel_searchviewmodel_searchviewmodel", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_viewmodel_searchviewmodel_swift_task", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/ViewModel/SearchViewModel.swift", + "source_location": "L27", + "weight": 1.0, + "context": "generic_arg", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_viewmodel_searchviewmodel_searchviewmodel", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_viewmodel_searchviewmodel_swift_void", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchViewModelTests.swift", + "source_location": "L54", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_searchviewmodeltests_makeviewmodel", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_viewmodel_searchviewmodel_searchviewmodel", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/MainViewModel.swift", + "source_location": "L44", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_mainviewmodel_mainviewmodel", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_viewmodel_searchviewmodel_searchviewmodel", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/ViewModel/SearchViewModel.swift", + "source_location": "L38", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_viewmodel_searchviewmodel_searchviewmodel_init", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_viewmodel_searchviewmodel_swift_database", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/ViewModel/SearchViewModel.swift", + "source_location": "L62", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_viewmodel_searchviewmodel_searchviewmodel_performsearch", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_viewmodel_searchviewmodel_swift_task", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/ViewModel/SearchViewModel.swift", + "source_location": "L35", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_viewmodel_searchviewmodel_searchviewmodel_init", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_viewmodel_searchviewmodel_searchviewmodel_loadrecentsearches", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/ViewModel/SearchViewModel.swift", + "source_location": "L89", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_viewmodel_searchviewmodel_searchviewmodel_performsearch", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_viewmodel_searchviewmodel_searchviewmodel_saverecentsearch", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/ViewModel/SearchViewModel.swift", + "source_location": "L83", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_viewmodel_searchviewmodel_searchviewmodel_performsearch", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_viewmodel_searchviewmodel_searchviewmodel_searchremote", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/ViewModel/SearchViewModel.swift", + "source_location": "L52", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_viewmodel_searchviewmodel_searchviewmodel_performsearch", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_viewmodel_searchviewmodel_swift_bool", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/ViewModel/SearchViewModel.swift", + "source_location": "L102", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_viewmodel_searchviewmodel_searchviewmodel_selectrecentsearch", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_viewmodel_searchviewmodel_searchviewmodel_performsearch", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/ViewModel/SearchViewModel.swift", + "source_location": "L164", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_viewmodel_searchviewmodel_searchviewmodel_saverecentsearch", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_viewmodel_searchviewmodel_searchviewmodel_loadrecentsearches", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/RecentSearchesView.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_views_recentsearchesview", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_views_recentsearchesview_recentsearchesview", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/RecentSearchesView.swift", + "source_location": "L7", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_views_recentsearchesview_recentsearchesview", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_views_recentsearchesview_swift_void", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchResultsList.swift", + "source_location": "L48", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist_searchresultslist", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchResultsList.swift", + "source_location": "L9", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist", + "target": "videoslibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/VideosLibrary/Tests/VideosLibraryTests/VideosViewModelTests.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_features_videoslibrary_tests_videoslibrarytests_videosviewmodeltests", + "target": "videoslibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/Features/Social/SocialView.swift", + "source_location": "L9", + "weight": 1.0, + "source": "macmagazine_macmagazine_features_social_socialview", + "target": "videoslibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/MainViewModel.swift", + "source_location": "L11", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_mainviewmodel", + "target": "videoslibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/Sizecalss/MainView+sidebar.swift", + "source_location": "L8", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_sizecalss_mainview_sidebar", + "target": "videoslibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/Sizecalss/MainView+tabbar.swift", + "source_location": "L8", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_sizecalss_mainview_tabbar", + "target": "videoslibrary", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchResultsList.swift", + "source_location": "L50", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist_searchresultslist", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist_searchresultslist_newscard", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchResultsList.swift", + "source_location": "L71", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist_searchresultslist", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist_searchresultslist_podcastcard", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchResultsList.swift", + "source_location": "L33", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist_searchresultslist", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist_searchresultslist_resultcard", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchResultsList.swift", + "source_location": "L86", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist_searchresultslist", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist_searchresultslist_videocard", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchResultsList.swift", + "source_location": "L14", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist_searchresultslist", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist_swift_analyticsmanager", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchResultsList.swift", + "source_location": "L17", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist_searchresultslist", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist_swift_feeddb", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchResultsList.swift", + "source_location": "L18", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist_searchresultslist", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist_swift_podcastdb", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchResultsList.swift", + "source_location": "L16", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist_searchresultslist", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist_swift_searchresult", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchResultsList.swift", + "source_location": "L20", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist_searchresultslist", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchResultsList.swift", + "source_location": "L19", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist_searchresultslist", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist_swift_videodb", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchResultsList.swift", + "source_location": "L20", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist_searchresultslist", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist_swift_void", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchResultsList.swift", + "source_location": "L50", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist_searchresultslist_newscard", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist_swift_searchresult", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchResultsList.swift", + "source_location": "L71", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist_searchresultslist_podcastcard", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist_swift_searchresult", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchResultsList.swift", + "source_location": "L33", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist_searchresultslist_resultcard", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist_swift_searchresult", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchResultsList.swift", + "source_location": "L86", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist_searchresultslist_videocard", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist_swift_searchresult", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchResultsList.swift", + "source_location": "L37", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist_searchresultslist_resultcard", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist_searchresultslist_newscard", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchResultsList.swift", + "source_location": "L39", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist_searchresultslist_resultcard", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist_searchresultslist_podcastcard", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchResultsList.swift", + "source_location": "L41", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist_searchresultslist_resultcard", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist_searchresultslist_videocard", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchResultsList.swift", + "source_location": "L89", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist_searchresultslist_videocard", + "target": "macmagazine_features_videoslibrary_sources_videos_card_adaptivevideocard_adaptivevideocard" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchView.swift", + "source_location": "L285", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchview", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchview_searchview", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchView.swift", + "source_location": "L255", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchview_searchview", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchview_searchview_announcesearchstatus", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchView.swift", + "source_location": "L185", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchview_searchview", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchview_searchview_errorcontent", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchView.swift", + "source_location": "L230", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchview_searchview", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchview_searchview_handlelinkselection", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchView.swift", + "source_location": "L209", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchview_searchview", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchview_searchview_handlenewsselection", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchView.swift", + "source_location": "L220", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchview_searchview", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchview_searchview_handlepodcastselection", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchView.swift", + "source_location": "L29", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchview_searchview", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchview_searchview_init", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchView.swift", + "source_location": "L243", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchview_searchview", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchview_searchview_tracksearchcompletion", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchView.swift", + "source_location": "L18", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchview_searchview", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchview_swift_analyticsmanager", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchView.swift", + "source_location": "L278", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchview_searchview", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchview_swift_bool", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchView.swift", + "source_location": "L197", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchview_searchview", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchview_swift_griditem", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchView.swift", + "source_location": "L22", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchview_searchview", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchview_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchView.swift", + "source_location": "L25", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchview_searchview", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchview_swift_videodb", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchView.swift", + "source_location": "L27", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchview_searchview", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchview_swift_youtubeapi", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchView.swift", + "source_location": "L24", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchview_searchview", + "target": "youtubeplayeraction", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/MacMagazine/MainApp/Sizecalss/MainView+sidebar.swift", + "source_location": "L132", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_sizecalss_mainview_sidebar_mainview_animatecontentstackview", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchview_searchview" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/MacMagazine/MainApp/Sizecalss/MainView+sidebar.swift", + "source_location": "L149", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_sizecalss_mainview_sidebar_mainview_contentview", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchview_searchview" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/MacMagazine/MainApp/Sizecalss/MainView+tabbar.swift", + "source_location": "L49", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_sizecalss_mainview_tabbar_mainview_contentview", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchview_searchview" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchView.swift", + "source_location": "L185", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchview_searchview_errorcontent", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchview_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchView.swift", + "source_location": "L230", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchview_searchview_handlelinkselection", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchview_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchView.swift", + "source_location": "L29", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchview_searchview_init", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchview_swift_youtubeapi", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchView.swift", + "source_location": "L189", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchview_searchview_errorcontent", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_views_extensions_plainbuttontextstyle_text" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchView.swift", + "source_location": "L209", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchview_searchview_handlenewsselection", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchview_swift_feeddb", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchView.swift", + "source_location": "L220", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchview_searchview_handlepodcastselection", + "target": "macmagazine_features_searchlibrary_sources_searchlibrary_views_searchview_swift_podcastdb", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/QueryProcessorTests.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_queryprocessortests", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_queryprocessortests_queryprocessortests", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/QueryProcessorTests.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_queryprocessortests", + "target": "searchlibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/RelevanceScorerTests.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_relevancescorertests", + "target": "searchlibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/RemoteFeedSearchServiceTests.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_remotefeedsearchservicetests", + "target": "searchlibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchResultMergerTests.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchresultmergertests", + "target": "searchlibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchViewModelTests.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests", + "target": "searchlibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/MacMagazineApp.swift", + "source_location": "L6", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_macmagazineapp", + "target": "searchlibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/MainViewModel.swift", + "source_location": "L6", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_mainviewmodel", + "target": "searchlibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/Sizecalss/MainView+sidebar.swift", + "source_location": "L5", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_sizecalss_mainview_sidebar", + "target": "searchlibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/Sizecalss/MainView+tabbar.swift", + "source_location": "L5", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_sizecalss_mainview_tabbar", + "target": "searchlibrary", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/QueryProcessorTests.swift", + "source_location": "L65", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_queryprocessortests_queryprocessortests", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_queryprocessortests_queryprocessortests_comofazercategory", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/QueryProcessorTests.swift", + "source_location": "L59", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_queryprocessortests_queryprocessortests", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_queryprocessortests_queryprocessortests_defaultsortpreference", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/QueryProcessorTests.swift", + "source_location": "L8", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_queryprocessortests_queryprocessortests", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_queryprocessortests_queryprocessortests_emptyquery", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/QueryProcessorTests.swift", + "source_location": "L47", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_queryprocessortests_queryprocessortests", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_queryprocessortests_queryprocessortests_podcastcontenttype", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/QueryProcessorTests.swift", + "source_location": "L53", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_queryprocessortests_queryprocessortests", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_queryprocessortests_queryprocessortests_recencysortpreference", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/QueryProcessorTests.swift", + "source_location": "L71", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_queryprocessortests_queryprocessortests", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_queryprocessortests_queryprocessortests_remotesearchtermcleaned", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/QueryProcessorTests.swift", + "source_location": "L35", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_queryprocessortests_queryprocessortests", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_queryprocessortests_queryprocessortests_reviewcategory", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/QueryProcessorTests.swift", + "source_location": "L29", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_queryprocessortests_queryprocessortests", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_queryprocessortests_queryprocessortests_rumorcategory", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/QueryProcessorTests.swift", + "source_location": "L16", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_queryprocessortests_queryprocessortests", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_queryprocessortests_queryprocessortests_simplequery", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/QueryProcessorTests.swift", + "source_location": "L23", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_queryprocessortests_queryprocessortests", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_queryprocessortests_queryprocessortests_tutorialcategory", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/QueryProcessorTests.swift", + "source_location": "L41", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_queryprocessortests_queryprocessortests", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_queryprocessortests_queryprocessortests_videocontenttype", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/RelevanceScorerTests.swift", + "source_location": "L6", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_relevancescorertests", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_relevancescorertests_relevancescorertests", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/RelevanceScorerTests.swift", + "source_location": "L13", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_relevancescorertests_relevancescorertests", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_relevancescorertests_relevancescorertests_makeresult", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/RelevanceScorerTests.swift", + "source_location": "L61", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_relevancescorertests_relevancescorertests", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_relevancescorertests_relevancescorertests_nomatchminimalscore", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/RelevanceScorerTests.swift", + "source_location": "L49", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_relevancescorertests_relevancescorertests", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_relevancescorertests_relevancescorertests_recencyboost", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/RelevanceScorerTests.swift", + "source_location": "L37", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_relevancescorertests_relevancescorertests", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_relevancescorertests_relevancescorertests_titlehigherthanexcerpt", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/RelevanceScorerTests.swift", + "source_location": "L13", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_relevancescorertests_relevancescorertests_makeresult", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_relevancescorertests_swift_searchresult", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/RelevanceScorerTests.swift", + "source_location": "L13", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_relevancescorertests_relevancescorertests_makeresult", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_relevancescorertests_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/RelevanceScorerTests.swift", + "source_location": "L64", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_relevancescorertests_relevancescorertests_nomatchminimalscore", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_relevancescorertests_relevancescorertests_makeresult", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/RelevanceScorerTests.swift", + "source_location": "L52", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_relevancescorertests_relevancescorertests_recencyboost", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_relevancescorertests_relevancescorertests_makeresult", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/RelevanceScorerTests.swift", + "source_location": "L40", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_relevancescorertests_relevancescorertests_titlehigherthanexcerpt", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_relevancescorertests_relevancescorertests_makeresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/RemoteFeedSearchServiceTests.swift", + "source_location": "L136", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_remotefeedsearchservicetests", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_remotefeedsearchservicetests_remotefeedsearchservicetests", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/RemoteFeedSearchServiceTests.swift", + "source_location": "L137", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_remotefeedsearchservicetests_remotefeedsearchservicetests", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_remotefeedsearchservicetests_remotefeedsearchservicetests_classifyfeed", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/RemoteFeedSearchServiceTests.swift", + "source_location": "L148", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_remotefeedsearchservicetests_remotefeedsearchservicetests", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_remotefeedsearchservicetests_remotefeedsearchservicetests_classifypodcast", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/RemoteFeedSearchServiceTests.swift", + "source_location": "L44", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_remotefeedsearchservicetests_remotefeedsearchservicetests", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_remotefeedsearchservicetests_remotefeedsearchservicetests_emptycategoriesclassifiedasnews", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/RemoteFeedSearchServiceTests.swift", + "source_location": "L117", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_remotefeedsearchservicetests_remotefeedsearchservicetests", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_remotefeedsearchservicetests_remotefeedsearchservicetests_feedresultcarriesfeeddb", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/RemoteFeedSearchServiceTests.swift", + "source_location": "L102", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_remotefeedsearchservicetests_remotefeedsearchservicetests", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_remotefeedsearchservicetests_remotefeedsearchservicetests_feedresultpreservespostid", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/RemoteFeedSearchServiceTests.swift", + "source_location": "L109", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_remotefeedsearchservicetests_remotefeedsearchservicetests", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_remotefeedsearchservicetests_remotefeedsearchservicetests_feedresultpreservespubdate", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/RemoteFeedSearchServiceTests.swift", + "source_location": "L66", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_remotefeedsearchservicetests_remotefeedsearchservicetests", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_remotefeedsearchservicetests_remotefeedsearchservicetests_mixedcategorieswithmmtvisvideo", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/RemoteFeedSearchServiceTests.swift", + "source_location": "L11", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_remotefeedsearchservicetests_remotefeedsearchservicetests", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_remotefeedsearchservicetests_remotefeedsearchservicetests_mmtvcategoryclassifiedasvideo", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/RemoteFeedSearchServiceTests.swift", + "source_location": "L33", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_remotefeedsearchservicetests_remotefeedsearchservicetests", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_remotefeedsearchservicetests_remotefeedsearchservicetests_newscategoriesclassifiedasnews", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/RemoteFeedSearchServiceTests.swift", + "source_location": "L55", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_remotefeedsearchservicetests_remotefeedsearchservicetests", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_remotefeedsearchservicetests_remotefeedsearchservicetests_podcastcategorywithouturlisnews", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/RemoteFeedSearchServiceTests.swift", + "source_location": "L79", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_remotefeedsearchservicetests_remotefeedsearchservicetests", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_remotefeedsearchservicetests_remotefeedsearchservicetests_podcastdbalwaysclassifiedaspodcast", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/RemoteFeedSearchServiceTests.swift", + "source_location": "L90", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_remotefeedsearchservicetests_remotefeedsearchservicetests", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_remotefeedsearchservicetests_remotefeedsearchservicetests_podcastdbwithemptyurlstillpodcast", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/RemoteFeedSearchServiceTests.swift", + "source_location": "L125", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_remotefeedsearchservicetests_remotefeedsearchservicetests", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_remotefeedsearchservicetests_remotefeedsearchservicetests_podcastresultcarriespodcastdb", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/RemoteFeedSearchServiceTests.swift", + "source_location": "L158", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_remotefeedsearchservicetests_remotefeedsearchservicetests", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_remotefeedsearchservicetests_remotefeedsearchservicetests_resulttype", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/RemoteFeedSearchServiceTests.swift", + "source_location": "L22", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_remotefeedsearchservicetests_remotefeedsearchservicetests", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_remotefeedsearchservicetests_remotefeedsearchservicetests_youtuberawvalueclassifiedasvideo", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/RemoteFeedSearchServiceTests.swift", + "source_location": "L18", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_remotefeedsearchservicetests_remotefeedsearchservicetests_mmtvcategoryclassifiedasvideo", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_remotefeedsearchservicetests_remotefeedsearchservicetests_classifyfeed", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/RemoteFeedSearchServiceTests.swift", + "source_location": "L13", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_remotefeedsearchservicetests_remotefeedsearchservicetests_mmtvcategoryclassifiedasvideo", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_remotefeedsearchservicetests_swift_feeddb", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/RemoteFeedSearchServiceTests.swift", + "source_location": "L29", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_remotefeedsearchservicetests_remotefeedsearchservicetests_youtuberawvalueclassifiedasvideo", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_remotefeedsearchservicetests_remotefeedsearchservicetests_classifyfeed", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/RemoteFeedSearchServiceTests.swift", + "source_location": "L24", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_remotefeedsearchservicetests_remotefeedsearchservicetests_youtuberawvalueclassifiedasvideo", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_remotefeedsearchservicetests_swift_feeddb", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/RemoteFeedSearchServiceTests.swift", + "source_location": "L40", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_remotefeedsearchservicetests_remotefeedsearchservicetests_newscategoriesclassifiedasnews", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_remotefeedsearchservicetests_remotefeedsearchservicetests_classifyfeed", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/RemoteFeedSearchServiceTests.swift", + "source_location": "L35", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_remotefeedsearchservicetests_remotefeedsearchservicetests_newscategoriesclassifiedasnews", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_remotefeedsearchservicetests_swift_feeddb", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/RemoteFeedSearchServiceTests.swift", + "source_location": "L51", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_remotefeedsearchservicetests_remotefeedsearchservicetests_emptycategoriesclassifiedasnews", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_remotefeedsearchservicetests_remotefeedsearchservicetests_classifyfeed", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/RemoteFeedSearchServiceTests.swift", + "source_location": "L46", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_remotefeedsearchservicetests_remotefeedsearchservicetests_emptycategoriesclassifiedasnews", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_remotefeedsearchservicetests_swift_feeddb", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/RemoteFeedSearchServiceTests.swift", + "source_location": "L62", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_remotefeedsearchservicetests_remotefeedsearchservicetests_podcastcategorywithouturlisnews", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_remotefeedsearchservicetests_remotefeedsearchservicetests_classifyfeed", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/RemoteFeedSearchServiceTests.swift", + "source_location": "L57", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_remotefeedsearchservicetests_remotefeedsearchservicetests_podcastcategorywithouturlisnews", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_remotefeedsearchservicetests_swift_feeddb", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/RemoteFeedSearchServiceTests.swift", + "source_location": "L73", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_remotefeedsearchservicetests_remotefeedsearchservicetests_mixedcategorieswithmmtvisvideo", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_remotefeedsearchservicetests_remotefeedsearchservicetests_classifyfeed", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/RemoteFeedSearchServiceTests.swift", + "source_location": "L68", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_remotefeedsearchservicetests_remotefeedsearchservicetests_mixedcategorieswithmmtvisvideo", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_remotefeedsearchservicetests_swift_feeddb", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/RemoteFeedSearchServiceTests.swift", + "source_location": "L86", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_remotefeedsearchservicetests_remotefeedsearchservicetests_podcastdbalwaysclassifiedaspodcast", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_remotefeedsearchservicetests_remotefeedsearchservicetests_classifypodcast", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/RemoteFeedSearchServiceTests.swift", + "source_location": "L81", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_remotefeedsearchservicetests_remotefeedsearchservicetests_podcastdbalwaysclassifiedaspodcast", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_remotefeedsearchservicetests_swift_podcastdb", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/RemoteFeedSearchServiceTests.swift", + "source_location": "L96", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_remotefeedsearchservicetests_remotefeedsearchservicetests_podcastdbwithemptyurlstillpodcast", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_remotefeedsearchservicetests_remotefeedsearchservicetests_classifypodcast", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/RemoteFeedSearchServiceTests.swift", + "source_location": "L92", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_remotefeedsearchservicetests_remotefeedsearchservicetests_podcastdbwithemptyurlstillpodcast", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_remotefeedsearchservicetests_swift_podcastdb", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/RemoteFeedSearchServiceTests.swift", + "source_location": "L105", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_remotefeedsearchservicetests_remotefeedsearchservicetests_feedresultpreservespostid", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_remotefeedsearchservicetests_remotefeedsearchservicetests_classifyfeed", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/RemoteFeedSearchServiceTests.swift", + "source_location": "L104", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_remotefeedsearchservicetests_remotefeedsearchservicetests_feedresultpreservespostid", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_remotefeedsearchservicetests_swift_feeddb", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/RemoteFeedSearchServiceTests.swift", + "source_location": "L113", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_remotefeedsearchservicetests_remotefeedsearchservicetests_feedresultpreservespubdate", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_remotefeedsearchservicetests_remotefeedsearchservicetests_classifyfeed", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/RemoteFeedSearchServiceTests.swift", + "source_location": "L112", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_remotefeedsearchservicetests_remotefeedsearchservicetests_feedresultpreservespubdate", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_remotefeedsearchservicetests_swift_feeddb", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/RemoteFeedSearchServiceTests.swift", + "source_location": "L120", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_remotefeedsearchservicetests_remotefeedsearchservicetests_feedresultcarriesfeeddb", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_remotefeedsearchservicetests_remotefeedsearchservicetests_classifyfeed", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/RemoteFeedSearchServiceTests.swift", + "source_location": "L119", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_remotefeedsearchservicetests_remotefeedsearchservicetests_feedresultcarriesfeeddb", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_remotefeedsearchservicetests_swift_feeddb", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/RemoteFeedSearchServiceTests.swift", + "source_location": "L128", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_remotefeedsearchservicetests_remotefeedsearchservicetests_podcastresultcarriespodcastdb", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_remotefeedsearchservicetests_remotefeedsearchservicetests_classifypodcast", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/RemoteFeedSearchServiceTests.swift", + "source_location": "L127", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_remotefeedsearchservicetests_remotefeedsearchservicetests_podcastresultcarriespodcastdb", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_remotefeedsearchservicetests_swift_podcastdb", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/RemoteFeedSearchServiceTests.swift", + "source_location": "L138", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_remotefeedsearchservicetests_remotefeedsearchservicetests_classifyfeed", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_remotefeedsearchservicetests_remotefeedsearchservicetests_resulttype", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/RemoteFeedSearchServiceTests.swift", + "source_location": "L137", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_remotefeedsearchservicetests_remotefeedsearchservicetests_classifyfeed", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_remotefeedsearchservicetests_swift_feeddb", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/RemoteFeedSearchServiceTests.swift", + "source_location": "L137", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_remotefeedsearchservicetests_remotefeedsearchservicetests_classifyfeed", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_remotefeedsearchservicetests_swift_searchresult", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/RemoteFeedSearchServiceTests.swift", + "source_location": "L148", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_remotefeedsearchservicetests_remotefeedsearchservicetests_classifypodcast", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_remotefeedsearchservicetests_swift_searchresult", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/RemoteFeedSearchServiceTests.swift", + "source_location": "L148", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_remotefeedsearchservicetests_remotefeedsearchservicetests_classifypodcast", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_remotefeedsearchservicetests_swift_podcastdb", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/RemoteFeedSearchServiceTests.swift", + "source_location": "L158", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_remotefeedsearchservicetests_remotefeedsearchservicetests_resulttype", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_remotefeedsearchservicetests_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchResultMergerTests.swift", + "source_location": "L5", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchresultmergertests", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchresultmergertests_searchresultmergertests", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchResultMergerTests.swift", + "source_location": "L28", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchresultmergertests_searchresultmergertests", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchresultmergertests_searchresultmergertests_deduplication", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchResultMergerTests.swift", + "source_location": "L82", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchresultmergertests_searchresultmergertests", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchresultmergertests_searchresultmergertests_emptymerge", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchResultMergerTests.swift", + "source_location": "L38", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchresultmergertests_searchresultmergertests", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchresultmergertests_searchresultmergertests_localprecedence", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchResultMergerTests.swift", + "source_location": "L10", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchresultmergertests_searchresultmergertests", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchresultmergertests_searchresultmergertests_makeresult", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchResultMergerTests.swift", + "source_location": "L48", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchresultmergertests_searchresultmergertests", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchresultmergertests_searchresultmergertests_mergesdifferenttypes", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchResultMergerTests.swift", + "source_location": "L70", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchresultmergertests_searchresultmergertests", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchresultmergertests_searchresultmergertests_relevancesortprioritizesscore", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchResultMergerTests.swift", + "source_location": "L58", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchresultmergertests_searchresultmergertests", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchresultmergertests_searchresultmergertests_sortedbypubdate", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchResultMergerTests.swift", + "source_location": "L31", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchresultmergertests_searchresultmergertests_deduplication", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchresultmergertests_searchresultmergertests_makeresult", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchResultMergerTests.swift", + "source_location": "L41", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchresultmergertests_searchresultmergertests_localprecedence", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchresultmergertests_searchresultmergertests_makeresult", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchResultMergerTests.swift", + "source_location": "L10", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchresultmergertests_searchresultmergertests_makeresult", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchresultmergertests_swift_bool", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchResultMergerTests.swift", + "source_location": "L10", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchresultmergertests_searchresultmergertests_makeresult", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchresultmergertests_swift_searchresult", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchResultMergerTests.swift", + "source_location": "L10", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchresultmergertests_searchresultmergertests_makeresult", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchresultmergertests_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchResultMergerTests.swift", + "source_location": "L51", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchresultmergertests_searchresultmergertests_mergesdifferenttypes", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchresultmergertests_searchresultmergertests_makeresult", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchResultMergerTests.swift", + "source_location": "L75", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchresultmergertests_searchresultmergertests_relevancesortprioritizesscore", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchresultmergertests_searchresultmergertests_makeresult", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchResultMergerTests.swift", + "source_location": "L61", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchresultmergertests_searchresultmergertests_sortedbypubdate", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchresultmergertests_searchresultmergertests_makeresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchViewModelTests.swift", + "source_location": "L33", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_makeresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchViewModelTests.swift", + "source_location": "L7", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_mocklocalsearchservice", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchViewModelTests.swift", + "source_location": "L27", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_mockmerger", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchViewModelTests.swift", + "source_location": "L16", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_mockremotesearchservice", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchViewModelTests.swift", + "source_location": "L50", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_searchviewmodeltests", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchViewModelTests.swift", + "source_location": "L11", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_mocklocalsearchservice", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_mocklocalsearchservice_search", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchViewModelTests.swift", + "source_location": "L9", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_mocklocalsearchservice", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_swift_searchresult", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchViewModelTests.swift", + "source_location": "L63", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_searchviewmodeltests_makeviewmodel", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_mocklocalsearchservice", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchViewModelTests.swift", + "source_location": "L33", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_makeresult", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_swift_searchresult", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchViewModelTests.swift", + "source_location": "L11", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_mocklocalsearchservice_search", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_swift_searchresult", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchViewModelTests.swift", + "source_location": "L28", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_mockmerger_merge", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_swift_searchresult", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchViewModelTests.swift", + "source_location": "L17", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_mockremotesearchservice", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_swift_searchresult", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchViewModelTests.swift", + "source_location": "L20", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_mockremotesearchservice_search", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_swift_searchresult", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchViewModelTests.swift", + "source_location": "L54", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_searchviewmodeltests_makeviewmodel", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_swift_searchresult", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchViewModelTests.swift", + "source_location": "L11", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_mocklocalsearchservice_search", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_swift_modelcontext", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchViewModelTests.swift", + "source_location": "L20", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_mockremotesearchservice", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_mockremotesearchservice_search", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchViewModelTests.swift", + "source_location": "L18", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_mockremotesearchservice", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_swift_error", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchViewModelTests.swift", + "source_location": "L64", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_searchviewmodeltests_makeviewmodel", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_mockremotesearchservice", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchViewModelTests.swift", + "source_location": "L54", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_searchviewmodeltests_makeviewmodel", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_swift_error", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchViewModelTests.swift", + "source_location": "L20", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_mockremotesearchservice_search", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_swift_int", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchViewModelTests.swift", + "source_location": "L20", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_mockremotesearchservice_search", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchViewModelTests.swift", + "source_location": "L33", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_makeresult", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchViewModelTests.swift", + "source_location": "L28", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_mockmerger", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_mockmerger_merge", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchViewModelTests.swift", + "source_location": "L72", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_searchviewmodeltests_makeviewmodel", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_mockmerger", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchViewModelTests.swift", + "source_location": "L143", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_searchviewmodeltests_searchmergesresults", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_makeresult", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchViewModelTests.swift", + "source_location": "L111", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_searchviewmodeltests_searchshowslocalthendone", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_makeresult", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchViewModelTests.swift", + "source_location": "L176", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_searchviewmodeltests", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_searchviewmodeltests_clearrecentsearches", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchViewModelTests.swift", + "source_location": "L99", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_searchviewmodeltests", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_searchviewmodeltests_clearsearchresetsstate", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchViewModelTests.swift", + "source_location": "L90", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_searchviewmodeltests", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_searchviewmodeltests_emptysearchresetstoidle", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchViewModelTests.swift", + "source_location": "L82", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_searchviewmodeltests", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_searchviewmodeltests_initialstate", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchViewModelTests.swift", + "source_location": "L54", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_searchviewmodeltests", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_searchviewmodeltests_makeviewmodel", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchViewModelTests.swift", + "source_location": "L214", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_searchviewmodeltests", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_searchviewmodeltests_rapidsearchescancelprevious", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchViewModelTests.swift", + "source_location": "L158", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_searchviewmodeltests", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_searchviewmodeltests_recentsearchesempty", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchViewModelTests.swift", + "source_location": "L189", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_searchviewmodeltests", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_searchviewmodeltests_removespecificrecentsearch", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchViewModelTests.swift", + "source_location": "L141", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_searchviewmodeltests", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_searchviewmodeltests_searchmergesresults", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchViewModelTests.swift", + "source_location": "L164", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_searchviewmodeltests", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_searchviewmodeltests_searchsavestorecent", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchViewModelTests.swift", + "source_location": "L109", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_searchviewmodeltests", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_searchviewmodeltests_searchshowslocalthendone", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchViewModelTests.swift", + "source_location": "L230", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_searchviewmodeltests", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_searchviewmodeltests_searchtransitionstoterminalstatus", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchViewModelTests.swift", + "source_location": "L123", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_searchviewmodeltests", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_searchviewmodeltests_searchwithremoteerror", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchViewModelTests.swift", + "source_location": "L76", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_searchviewmodeltests", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_searchviewmodeltests_waitfortask", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchViewModelTests.swift", + "source_location": "L178", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_searchviewmodeltests_clearrecentsearches", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_searchviewmodeltests_makeviewmodel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchViewModelTests.swift", + "source_location": "L101", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_searchviewmodeltests_clearsearchresetsstate", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_searchviewmodeltests_makeviewmodel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchViewModelTests.swift", + "source_location": "L92", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_searchviewmodeltests_emptysearchresetstoidle", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_searchviewmodeltests_makeviewmodel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchViewModelTests.swift", + "source_location": "L84", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_searchviewmodeltests_initialstate", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_searchviewmodeltests_makeviewmodel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchViewModelTests.swift", + "source_location": "L216", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_searchviewmodeltests_rapidsearchescancelprevious", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_searchviewmodeltests_makeviewmodel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchViewModelTests.swift", + "source_location": "L160", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_searchviewmodeltests_recentsearchesempty", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_searchviewmodeltests_makeviewmodel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchViewModelTests.swift", + "source_location": "L191", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_searchviewmodeltests_removespecificrecentsearch", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_searchviewmodeltests_makeviewmodel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchViewModelTests.swift", + "source_location": "L145", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_searchviewmodeltests_searchmergesresults", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_searchviewmodeltests_makeviewmodel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchViewModelTests.swift", + "source_location": "L166", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_searchviewmodeltests_searchsavestorecent", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_searchviewmodeltests_makeviewmodel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchViewModelTests.swift", + "source_location": "L112", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_searchviewmodeltests_searchshowslocalthendone", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_searchviewmodeltests_makeviewmodel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchViewModelTests.swift", + "source_location": "L232", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_searchviewmodeltests_searchtransitionstoterminalstatus", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_searchviewmodeltests_makeviewmodel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchViewModelTests.swift", + "source_location": "L125", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_searchviewmodeltests_searchwithremoteerror", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_searchviewmodeltests_makeviewmodel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchViewModelTests.swift", + "source_location": "L182", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_searchviewmodeltests_clearrecentsearches", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_searchviewmodeltests_waitfortask", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchViewModelTests.swift", + "source_location": "L224", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_searchviewmodeltests_rapidsearchescancelprevious", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_searchviewmodeltests_waitfortask", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchViewModelTests.swift", + "source_location": "L195", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_searchviewmodeltests_removespecificrecentsearch", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_searchviewmodeltests_waitfortask", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchViewModelTests.swift", + "source_location": "L150", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_searchviewmodeltests_searchmergesresults", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_searchviewmodeltests_waitfortask", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchViewModelTests.swift", + "source_location": "L170", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_searchviewmodeltests_searchsavestorecent", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_searchviewmodeltests_waitfortask", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchViewModelTests.swift", + "source_location": "L117", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_searchviewmodeltests_searchshowslocalthendone", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_searchviewmodeltests_waitfortask", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchViewModelTests.swift", + "source_location": "L236", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_searchviewmodeltests_searchtransitionstoterminalstatus", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_searchviewmodeltests_waitfortask", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchViewModelTests.swift", + "source_location": "L132", + "weight": 1.0, + "source": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_searchviewmodeltests_searchwithremoteerror", + "target": "macmagazine_features_searchlibrary_tests_searchlibrarytests_searchviewmodeltests_searchviewmodeltests_waitfortask", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/Cache.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_cache", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_cache_cache", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/Cache.swift", + "source_location": "L5", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_cache_cache", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_cache_cache_cleanall", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/Cache.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_cache_cache", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_cache_cache_keepfavoritesandstatus", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/PostsVisibilityViewModel.swift", + "source_location": "L23", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_postsvisibilityviewmodel_postsvisibilityviewmodel_flush", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_cache_cache", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/ColorScheme.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_colorscheme", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_colorscheme_colorscheme", + "confidence_score": 1.0 + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/ColorScheme.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_colorscheme_colorscheme", + "target": "int", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/ColorScheme.swift", + "source_location": "L17", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_colorscheme_colorscheme", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_colorscheme_colorscheme_accessibilitytext", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/ColorScheme.swift", + "source_location": "L6", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_colorscheme_colorscheme", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_colorscheme_colorscheme_dark", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/ColorScheme.swift", + "source_location": "L5", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_colorscheme_colorscheme", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_colorscheme_colorscheme_light", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/ColorScheme.swift", + "source_location": "L7", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_colorscheme_colorscheme", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_colorscheme_colorscheme_system", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/Databases/SettingsDB.swift", + "source_location": "L15", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_databases_settingsdb_settingsdb_init", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_colorscheme_colorscheme", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/AppearanceViewModel.swift", + "source_location": "L6", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_appearanceviewmodel_appearanceviewmodel", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_colorscheme_colorscheme", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/AppearanceViewModel.swift", + "source_location": "L16", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_appearanceviewmodel_appearanceviewmodel_change", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_colorscheme_colorscheme", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/Extensions/Database.swift", + "source_location": "L20", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_extensions_database_database_update", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_colorscheme_colorscheme", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/ColorScheme.swift", + "source_location": "L17", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_colorscheme_colorscheme_accessibilitytext", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_colorscheme_swift_bool", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/ColorScheme.swift", + "source_location": "L17", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_colorscheme_colorscheme_accessibilitytext", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_colorscheme_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/Databases/CustomizationDB.swift", + "source_location": "L33", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_databases_customizationdb", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_databases_customizationdb_customizationdb", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/Databases/CustomizationDB.swift", + "source_location": "L34", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_databases_customizationdb_customizationdb", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_databases_customizationdb_customizationdb_deduplicate", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/Databases/CustomizationDB.swift", + "source_location": "L13", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_databases_customizationdb_customizationdb", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_databases_customizationdb_customizationdb_init", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/Databases/CustomizationDB.swift", + "source_location": "L28", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_databases_customizationdb_customizationdb", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_databases_customizationdb_swift_bool", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/Databases/CustomizationDB.swift", + "source_location": "L9", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_databases_customizationdb_customizationdb", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_databases_customizationdb_swift_news", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/Databases/CustomizationDB.swift", + "source_location": "L7", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_databases_customizationdb_customizationdb", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_databases_customizationdb_swift_uuid", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/Extensions/Database.swift", + "source_location": "L93", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_extensions_database_database", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_databases_customizationdb_customizationdb", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/Extensions/Database.swift", + "source_location": "L110", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_extensions_database_database_update", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_databases_customizationdb_customizationdb", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/DatabaseExtensionsTests.swift", + "source_location": "L98", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_databaseextensionstests_databaseextensionstests_customizationdeleteduplicates", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_databases_customizationdb_customizationdb" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/DatabaseExtensionsTests.swift", + "source_location": "L80", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_databaseextensionstests_databaseextensionstests_customizationreturnfirstwhensingle", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_databases_customizationdb_customizationdb" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/Databases/CustomizationDB.swift", + "source_location": "L13", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_databases_customizationdb_customizationdb_init", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_databases_customizationdb_swift_uuid", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/Databases/CustomizationDB.swift", + "source_location": "L13", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_databases_customizationdb_customizationdb_init", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_databases_customizationdb_swift_news", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/Databases/CustomizationDB.swift", + "source_location": "L34", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_databases_customizationdb_customizationdb_deduplicate", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_databases_customizationdb_swift_modelcontext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/Databases/SettingsDB.swift", + "source_location": "L42", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_databases_settingsdb", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_databases_settingsdb_settingsdb", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/Databases/SettingsDB.swift", + "source_location": "L43", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_databases_settingsdb_settingsdb", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_databases_settingsdb_settingsdb_deduplicate", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/Databases/SettingsDB.swift", + "source_location": "L15", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_databases_settingsdb_settingsdb", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_databases_settingsdb_settingsdb_init", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/Databases/SettingsDB.swift", + "source_location": "L37", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_databases_settingsdb_settingsdb", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_databases_settingsdb_swift_bool", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/Databases/SettingsDB.swift", + "source_location": "L10", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_databases_settingsdb_settingsdb", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_databases_settingsdb_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/Databases/SettingsDB.swift", + "source_location": "L7", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_databases_settingsdb_settingsdb", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_databases_settingsdb_swift_uuid", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/Databases/SettingsDB.swift", + "source_location": "L12", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_databases_settingsdb_settingsdb", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_subscription_subscription", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/Extensions/Database.swift", + "source_location": "L9", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_extensions_database_database", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_databases_settingsdb_settingsdb", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/Extensions/Database.swift", + "source_location": "L26", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_extensions_database_database_update", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_databases_settingsdb_settingsdb", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/DatabaseExtensionsTests.swift", + "source_location": "L46", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_databaseextensionstests_databaseextensionstests_settingsdeleteduplicates", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_databases_settingsdb_settingsdb" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/DatabaseExtensionsTests.swift", + "source_location": "L28", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_databaseextensionstests_databaseextensionstests_settingsreturnfirstwhensingle", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_databases_settingsdb_settingsdb" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/Databases/SettingsDB.swift", + "source_location": "L15", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_databases_settingsdb_settingsdb_init", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_databases_settingsdb_swift_uuid", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/Databases/SettingsDB.swift", + "source_location": "L15", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_databases_settingsdb_settingsdb_init", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_databases_settingsdb_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/Databases/SettingsDB.swift", + "source_location": "L15", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_databases_settingsdb_settingsdb_init", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_databases_settingsdb_swift_bool", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/Databases/SettingsDB.swift", + "source_location": "L15", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_databases_settingsdb_settingsdb_init", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_icontype_icontype", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/Databases/SettingsDB.swift", + "source_location": "L15", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_databases_settingsdb_settingsdb_init", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_subscription_subscription", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/Databases/SettingsDB.swift", + "source_location": "L43", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_databases_settingsdb_settingsdb_deduplicate", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_databases_settingsdb_swift_modelcontext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/IconType.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_icontype", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_icontype_icontype", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/IconType.swift", + "source_location": "L15", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_icontype_icontype", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_icontype_icontype_accessibilitytext", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/IconType.swift", + "source_location": "L6", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_icontype_icontype", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_icontype_icontype_alternative", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/IconType.swift", + "source_location": "L5", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_icontype_icontype", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_icontype_icontype_normal", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/Extensions/Database.swift", + "source_location": "L31", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_extensions_database_database_update", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_icontype_icontype", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/IconsViewModel.swift", + "source_location": "L6", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_iconsviewmodel_iconsviewmodel", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_icontype_icontype", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/IconsViewModel.swift", + "source_location": "L17", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_iconsviewmodel_iconsviewmodel_change", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_icontype_icontype", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/IconType.swift", + "source_location": "L15", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_icontype_icontype_accessibilitytext", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_icontype_swift_bool", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/PushPreferences.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_pushpreferences", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_pushpreferences_pushpreferences", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/PushPreferences.swift", + "source_location": "L7", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_pushpreferences_pushpreferences", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_pushpreferences_pushpreferences_accessibilitytext", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/PushPreferences.swift", + "source_location": "L5", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_pushpreferences_pushpreferences", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_pushpreferences_pushpreferences_all", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/PushPreferences.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_pushpreferences_pushpreferences", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_pushpreferences_pushpreferences_featured", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/PushOptionsViewModel.swift", + "source_location": "L7", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_pushoptionsviewmodel_pushoptionsviewmodel", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_pushpreferences_pushpreferences", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/PushOptionsViewModel.swift", + "source_location": "L17", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_pushoptionsviewmodel_pushoptionsviewmodel_change", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_pushpreferences_pushpreferences", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/PushOptionsViewModel.swift", + "source_location": "L14", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_pushoptionsviewmodel_pushoptionsviewmodel_get", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_pushpreferences_pushpreferences", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/PushPreferences.swift", + "source_location": "L7", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_pushpreferences_pushpreferences_accessibilitytext", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_pushpreferences_swift_bool", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/Subscription.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_subscription", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_subscription_subscription", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/Subscription.swift", + "source_location": "L11", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_subscription_subscription", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_subscription_swift_bool", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/Extensions/Database.swift", + "source_location": "L68", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_extensions_database_database_update", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_subscription_subscription" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SubscriptionTests.swift", + "source_location": "L149", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_subscriptiontests_subscriptiontests_codableconformance", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_subscription_subscription" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SubscriptionTests.swift", + "source_location": "L170", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_subscriptiontests_subscriptiontests_handlemaximumdate", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_subscription_subscription" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SubscriptionTests.swift", + "source_location": "L181", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_subscriptiontests_subscriptiontests_handleminimumdate", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_subscription_subscription" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SubscriptionTests.swift", + "source_location": "L34", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_subscriptiontests_subscriptiontests_invalidatexactexpirationtime", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_subscription_subscription" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SubscriptionTests.swift", + "source_location": "L55", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_subscriptiontests_subscriptiontests_invalidonesecondafterexpiration", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_subscription_subscription" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SubscriptionTests.swift", + "source_location": "L24", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_subscriptiontests_subscriptiontests_invalidwhenpastdate", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_subscription_subscription" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SubscriptionTests.swift", + "source_location": "L75", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_subscriptiontests_subscriptiontests_invalidwithdistantpast", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_subscription_subscription" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SubscriptionTests.swift", + "source_location": "L117", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_subscriptiontests_subscriptiontests_noremoveadswhenbothfalse", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_subscription_subscription" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SubscriptionTests.swift", + "source_location": "L127", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_subscriptiontests_subscriptiontests_removeadspatraowithexpired", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_subscription_subscription" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SubscriptionTests.swift", + "source_location": "L137", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_subscriptiontests_subscriptiontests_removeadsvalidwithoutpatrao", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_subscription_subscription" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SubscriptionTests.swift", + "source_location": "L107", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_subscriptiontests_subscriptiontests_removeadswhenbothtrue", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_subscription_subscription" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SubscriptionTests.swift", + "source_location": "L87", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_subscriptiontests_subscriptiontests_removeadswhenpatraotrue", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_subscription_subscription" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SubscriptionTests.swift", + "source_location": "L97", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_subscriptiontests_subscriptiontests_removeadswhenvalidsubscription", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_subscription_subscription" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SubscriptionTests.swift", + "source_location": "L192", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_subscriptiontests_subscriptiontests_typicalmonthlysubscription", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_subscription_subscription" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SubscriptionTests.swift", + "source_location": "L203", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_subscriptiontests_subscriptiontests_typicalyearlysubscription", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_subscription_subscription" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SubscriptionTests.swift", + "source_location": "L45", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_subscriptiontests_subscriptiontests_validonesecondbeforeexpiration", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_subscription_subscription" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SubscriptionTests.swift", + "source_location": "L14", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_subscriptiontests_subscriptiontests_validwhenfuturedate", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_subscription_subscription" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SubscriptionTests.swift", + "source_location": "L65", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_subscriptiontests_subscriptiontests_validwithdistantfuture", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_subscription_subscription" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/URLs.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_urls", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_definitions_urls_urls", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/AboutViewModel.swift", + "source_location": "L29", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_aboutviewmodel", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_aboutviewmodel_aboutviewmodel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/AboutViewModel.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_aboutviewmodel", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_aboutviewmodel_buttonaction", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/AboutViewModel.swift", + "source_location": "L74", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_aboutviewmodel", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_aboutviewmodel_maildelegate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/AboutViewModel.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_aboutviewmodel", + "target": "messageui", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/AboutViewModel.swift", + "source_location": "L30", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_aboutviewmodel_aboutviewmodel", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_aboutviewmodel_aboutviewmodel_composemessage", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/AboutViewModel.swift", + "source_location": "L26", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_aboutviewmodel_aboutviewmodel", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_aboutviewmodel_maildelegate", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/AboutView.swift", + "source_location": "L11", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_aboutview_aboutview", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_aboutviewmodel_aboutviewmodel", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/AboutViewModel.swift", + "source_location": "L7", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_aboutviewmodel_buttonaction", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_aboutviewmodel_buttonaction_none", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/AboutViewModel.swift", + "source_location": "L6", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_aboutviewmodel_buttonaction", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_aboutviewmodel_buttonaction_privacy", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/AboutViewModel.swift", + "source_location": "L5", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_aboutviewmodel_buttonaction", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_aboutviewmodel_buttonaction_terms", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/AboutViewModel.swift", + "source_location": "L17", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_aboutviewmodel_buttonaction", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_aboutviewmodel_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/AboutViewModel.swift", + "source_location": "L60", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_aboutviewmodel_aboutviewmodel_composemessage", + "target": "mfmailcomposeviewcontroller", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/AboutViewModel.swift", + "source_location": "L75", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_aboutviewmodel_maildelegate", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_aboutviewmodel_maildelegate_mailcomposecontroller", + "confidence_score": 1.0 + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/AboutViewModel.swift", + "source_location": "L74", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_aboutviewmodel_maildelegate", + "target": "mfmailcomposeviewcontrollerdelegate", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/AboutViewModel.swift", + "source_location": "L75", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_aboutviewmodel_maildelegate_mailcomposecontroller", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_aboutviewmodel_swift_error", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/AboutViewModel.swift", + "source_location": "L75", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_aboutviewmodel_maildelegate_mailcomposecontroller", + "target": "mfmailcomposeresult", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/AboutViewModel.swift", + "source_location": "L75", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_aboutviewmodel_maildelegate_mailcomposecontroller", + "target": "mfmailcomposeviewcontroller", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/AppearanceViewModel.swift", + "source_location": "L10", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_appearanceviewmodel", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_appearanceviewmodel_appearanceviewmodel", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/AppearanceViewModel.swift", + "source_location": "L16", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_appearanceviewmodel_appearanceviewmodel", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_appearanceviewmodel_appearanceviewmodel_change", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/AppearanceViewModel.swift", + "source_location": "L11", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_appearanceviewmodel_appearanceviewmodel", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_appearanceviewmodel_appearanceviewmodel_get", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/AppearanceViewModel.swift", + "source_location": "L7", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_appearanceviewmodel_appearanceviewmodel", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_appearanceviewmodel_swift_database", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/AppearanceView.swift", + "source_location": "L9", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_appearanceview_appearanceview", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_appearanceviewmodel_appearanceviewmodel" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/CustomizationViewModel.swift", + "source_location": "L14", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_customizationviewmodel", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_customizationviewmodel_customizationviewmodel", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/CustomizationViewModel.swift", + "source_location": "L32", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_customizationviewmodel_customizationviewmodel", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_customizationviewmodel_customizationviewmodel_change", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/CustomizationViewModel.swift", + "source_location": "L15", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_customizationviewmodel_customizationviewmodel", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_customizationviewmodel_customizationviewmodel_get", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/CustomizationViewModel.swift", + "source_location": "L11", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_customizationviewmodel_customizationviewmodel", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_customizationviewmodel_swift_database", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/CustomSocialView.swift", + "source_location": "L9", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_customsocialview_customsocialview", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_customizationviewmodel_customizationviewmodel" + }, + { + "relation": "references", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/CustomSocialView.swift", + "source_location": "L48", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_customsocialview_customsocialview_moveitems", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_customizationviewmodel_customizationviewmodel" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/CustomTabView.swift", + "source_location": "L10", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_customtabview_customtabview", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_customizationviewmodel_customizationviewmodel" + }, + { + "relation": "references", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/CustomTabView.swift", + "source_location": "L50", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_customtabview_customtabview_moveitems", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_customizationviewmodel_customizationviewmodel" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/CustomizationViewModel.swift", + "source_location": "L32", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_customizationviewmodel_customizationviewmodel_change", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_customizationviewmodel_swift_news", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/CustomSocialView.swift", + "source_location": "L50", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_customsocialview_customsocialview_moveitems", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_customizationviewmodel_customizationviewmodel_change" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/CustomTabView.swift", + "source_location": "L52", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_customtabview_customtabview_moveitems", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_customizationviewmodel_customizationviewmodel_change" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/Extensions/Database.swift", + "source_location": "L92", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_extensions_database", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_extensions_database_database", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/Extensions/Database.swift", + "source_location": "L126", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_extensions_database_database", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_extensions_database_database_update", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/DatabaseExtensionsTests.swift", + "source_location": "L95", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_databaseextensionstests_databaseextensionstests_customizationdeleteduplicates", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_extensions_database_database" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/DatabaseExtensionsTests.swift", + "source_location": "L67", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_databaseextensionstests_databaseextensionstests_customizationnilwhenempty", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_extensions_database_database" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/DatabaseExtensionsTests.swift", + "source_location": "L79", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_databaseextensionstests_databaseextensionstests_customizationreturnfirstwhensingle", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_extensions_database_database" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/DatabaseExtensionsTests.swift", + "source_location": "L345", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_databaseextensionstests_databaseextensionstests_multiplerapidupdates", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_extensions_database_database" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/DatabaseExtensionsTests.swift", + "source_location": "L361", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_databaseextensionstests_databaseextensionstests_preserveotherfieldsonupdate", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_extensions_database_database" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/DatabaseExtensionsTests.swift", + "source_location": "L43", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_databaseextensionstests_databaseextensionstests_settingsdeleteduplicates", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_extensions_database_database" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/DatabaseExtensionsTests.swift", + "source_location": "L15", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_databaseextensionstests_databaseextensionstests_settingsnilwhenempty", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_extensions_database_database" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/DatabaseExtensionsTests.swift", + "source_location": "L27", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_databaseextensionstests_databaseextensionstests_settingsreturnfirstwhensingle", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_extensions_database_database" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/DatabaseExtensionsTests.swift", + "source_location": "L257", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_databaseextensionstests_databaseextensionstests_updateappicon", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_extensions_database_database" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/DatabaseExtensionsTests.swift", + "source_location": "L283", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_databaseextensionstests_databaseextensionstests_updateexpirationdate", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_extensions_database_database" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/DatabaseExtensionsTests.swift", + "source_location": "L142", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_databaseextensionstests_databaseextensionstests_updateispatraofalsesubtracts1day", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_extensions_database_database" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/DatabaseExtensionsTests.swift", + "source_location": "L119", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_databaseextensionstests_databaseextensionstests_updateispatraotrueadds30days", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_extensions_database_database" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/DatabaseExtensionsTests.swift", + "source_location": "L165", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_databaseextensionstests_databaseextensionstests_updateispatraoupdatesexisting", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_extensions_database_database" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/DatabaseExtensionsTests.swift", + "source_location": "L185", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_databaseextensionstests_databaseextensionstests_updatemodeinsertswhenempty", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_extensions_database_database" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/DatabaseExtensionsTests.swift", + "source_location": "L201", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_databaseextensionstests_databaseextensionstests_updatemodeupdatesexisting", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_extensions_database_database" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/DatabaseExtensionsTests.swift", + "source_location": "L313", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_databaseextensionstests_databaseextensionstests_updatenews", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_extensions_database_database" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/DatabaseExtensionsTests.swift", + "source_location": "L270", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_databaseextensionstests_databaseextensionstests_updatenotification", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_extensions_database_database" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/DatabaseExtensionsTests.swift", + "source_location": "L300", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_databaseextensionstests_databaseextensionstests_updatesocial", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_extensions_database_database" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/DatabaseExtensionsTests.swift", + "source_location": "L220", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_databaseextensionstests_databaseextensionstests_updatetabsinsertswhenempty", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_extensions_database_database" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/DatabaseExtensionsTests.swift", + "source_location": "L236", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_databaseextensionstests_databaseextensionstests_updatetabsupdatesexisting", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_extensions_database_database" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/DatabaseExtensionsTests.swift", + "source_location": "L328", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_databaseextensionstests_databaseextensionstests_updatewithemptyarrays", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_extensions_database_database" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SettingsViewModelTests.swift", + "source_location": "L160", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_settingsviewmodeltests_settingsviewmodeltests_darkcolorschema", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_extensions_database_database" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SettingsViewModelTests.swift", + "source_location": "L231", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_settingsviewmodeltests_settingsviewmodeltests_emptynewsoptions", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_extensions_database_database" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SettingsViewModelTests.swift", + "source_location": "L202", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_settingsviewmodeltests_settingsviewmodeltests_emptysocialoptions", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_extensions_database_database" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SettingsViewModelTests.swift", + "source_location": "L15", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_settingsviewmodeltests_settingsviewmodeltests_initialcolorschemaisnil", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_extensions_database_database" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SettingsViewModelTests.swift", + "source_location": "L48", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_settingsviewmodeltests_settingsviewmodeltests_initialisliveisfalse", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_extensions_database_database" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SettingsViewModelTests.swift", + "source_location": "L37", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_settingsviewmodeltests_settingsviewmodeltests_initialnewsoptionsareall", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_extensions_database_database" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SettingsViewModelTests.swift", + "source_location": "L59", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_settingsviewmodeltests_settingsviewmodeltests_initialremoveadsisfalse", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_extensions_database_database" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SettingsViewModelTests.swift", + "source_location": "L26", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_settingsviewmodeltests_settingsviewmodeltests_initialsocialoptionsareall", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_extensions_database_database" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SettingsViewModelTests.swift", + "source_location": "L147", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_settingsviewmodeltests_settingsviewmodeltests_lightcolorschema", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_extensions_database_database" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SettingsViewModelTests.swift", + "source_location": "L274", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_settingsviewmodeltests_settingsviewmodeltests_livestatusaffectstabs", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_extensions_database_database" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SettingsViewModelTests.swift", + "source_location": "L173", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_settingsviewmodeltests_settingsviewmodeltests_systemcolorschema", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_extensions_database_database" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SettingsViewModelTests.swift", + "source_location": "L98", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_settingsviewmodeltests_settingsviewmodeltests_tabsalwaysincludenonlive", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_extensions_database_database" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SettingsViewModelTests.swift", + "source_location": "L132", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_settingsviewmodeltests_settingsviewmodeltests_tabscountlive", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_extensions_database_database" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SettingsViewModelTests.swift", + "source_location": "L119", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_settingsviewmodeltests_settingsviewmodeltests_tabscountnotlive", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_extensions_database_database" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SettingsViewModelTests.swift", + "source_location": "L72", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_settingsviewmodeltests_settingsviewmodeltests_tabsfilterlivewhennotlive", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_extensions_database_database" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SettingsViewModelTests.swift", + "source_location": "L85", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_settingsviewmodeltests_settingsviewmodeltests_tabsincludelivewhenlive", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_extensions_database_database" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SettingsViewModelTests.swift", + "source_location": "L261", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_settingsviewmodeltests_settingsviewmodeltests_updateislive", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_extensions_database_database" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SettingsViewModelTests.swift", + "source_location": "L217", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_settingsviewmodeltests_settingsviewmodeltests_updatenewsoptions", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_extensions_database_database" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SettingsViewModelTests.swift", + "source_location": "L246", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_settingsviewmodeltests_settingsviewmodeltests_updateremoveads", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_extensions_database_database" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SettingsViewModelTests.swift", + "source_location": "L188", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_settingsviewmodeltests_settingsviewmodeltests_updatesocialoptions", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_extensions_database_database" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/Extensions/Database.swift", + "source_location": "L64", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_extensions_database_database_update", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_extensions_database_swift_bool", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/Extensions/Database.swift", + "source_location": "L126", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_extensions_database_database_update", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_extensions_database_swift_news", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/Extensions/Database.swift", + "source_location": "L42", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_extensions_database_database_update", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_extensions_database_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/IconsViewModel.swift", + "source_location": "L11", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_iconsviewmodel", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_iconsviewmodel_iconsviewmodel", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/IconsViewModel.swift", + "source_location": "L17", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_iconsviewmodel_iconsviewmodel", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_iconsviewmodel_iconsviewmodel_change", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/IconsViewModel.swift", + "source_location": "L12", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_iconsviewmodel_iconsviewmodel", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_iconsviewmodel_iconsviewmodel_get", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/IconsViewModel.swift", + "source_location": "L8", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_iconsviewmodel_iconsviewmodel", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_iconsviewmodel_swift_database", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/IconsView.swift", + "source_location": "L9", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_iconsview_iconsview", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_iconsviewmodel_iconsviewmodel" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/PostsVisibilityViewModel.swift", + "source_location": "L32", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_postsvisibilityviewmodel", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_postsvisibilityviewmodel_postsvisibilityviewmodel", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/PostsVisibilityViewModel.swift", + "source_location": "L33", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_postsvisibilityviewmodel_postsvisibilityviewmodel", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_postsvisibilityviewmodel_postsvisibilityviewmodel_cleanall", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/PostsVisibilityViewModel.swift", + "source_location": "L23", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_postsvisibilityviewmodel_postsvisibilityviewmodel", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_postsvisibilityviewmodel_postsvisibilityviewmodel_flush", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/PostsVisibilityViewModel.swift", + "source_location": "L42", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_postsvisibilityviewmodel_postsvisibilityviewmodel", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_postsvisibilityviewmodel_postsvisibilityviewmodel_keepfavoritesandstatus", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/PostsVisibilityViewModel.swift", + "source_location": "L13", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_postsvisibilityviewmodel_postsvisibilityviewmodel", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_postsvisibilityviewmodel_postsvisibilityviewmodel_set", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/PostsVisibilityViewModel.swift", + "source_location": "L8", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_postsvisibilityviewmodel_postsvisibilityviewmodel", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_postsvisibilityviewmodel_swift_database", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/PostsVisibilityViewModel.swift", + "source_location": "L9", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_postsvisibilityviewmodel_postsvisibilityviewmodel", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_postsvisibilityviewmodel_swift_persistentmodel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/PostsVisibilityView.swift", + "source_location": "L10", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_postsvisibilityview_postsvisibilityview", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_postsvisibilityviewmodel_postsvisibilityviewmodel" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/PostsVisibilityViewModel.swift", + "source_location": "L13", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_postsvisibilityviewmodel_postsvisibilityviewmodel_set", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_postsvisibilityviewmodel_swift_database", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/PostsVisibilityViewModel.swift", + "source_location": "L13", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_postsvisibilityviewmodel_postsvisibilityviewmodel_set", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_postsvisibilityviewmodel_swift_persistentmodel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/PostsVisibilityViewModel.swift", + "source_location": "L26", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_postsvisibilityviewmodel_postsvisibilityviewmodel_flush", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_postsvisibilityviewmodel_postsvisibilityviewmodel_cleanall", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/PostsVisibilityViewModel.swift", + "source_location": "L27", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_postsvisibilityviewmodel_postsvisibilityviewmodel_flush", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_postsvisibilityviewmodel_postsvisibilityviewmodel_keepfavoritesandstatus", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/PushOptionsViewModel.swift", + "source_location": "L11", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_pushoptionsviewmodel", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_pushoptionsviewmodel_pushoptionsviewmodel", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/PushOptionsViewModel.swift", + "source_location": "L17", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_pushoptionsviewmodel_pushoptionsviewmodel", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_pushoptionsviewmodel_pushoptionsviewmodel_change", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/PushOptionsViewModel.swift", + "source_location": "L12", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_pushoptionsviewmodel_pushoptionsviewmodel", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_pushoptionsviewmodel_pushoptionsviewmodel_get", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/PushOptionsViewModel.swift", + "source_location": "L8", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_pushoptionsviewmodel_pushoptionsviewmodel", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_pushoptionsviewmodel_swift_database", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/PushOptionsView.swift", + "source_location": "L10", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_pushoptionsview_pushoptionsview", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_pushoptionsviewmodel_pushoptionsviewmodel" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/ReadingPreferencesViewModel.swift", + "source_location": "L25", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_readingpreferencesviewmodel", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_readingpreferencesviewmodel_readingpreferencesviewmodel", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/ReadingPreferencesViewModel.swift", + "source_location": "L26", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_readingpreferencesviewmodel_readingpreferencesviewmodel", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_readingpreferencesviewmodel_readingpreferencesviewmodel_change", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/ReadingPreferencesViewModel.swift", + "source_location": "L31", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_readingpreferencesviewmodel_readingpreferencesviewmodel", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_readingpreferencesviewmodel_readingpreferencesviewmodel_markallasread", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/ReadingPreferencesViewModel.swift", + "source_location": "L14", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_readingpreferencesviewmodel_readingpreferencesviewmodel", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_readingpreferencesviewmodel_readingpreferencesviewmodel_set", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/ReadingPreferencesViewModel.swift", + "source_location": "L8", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_readingpreferencesviewmodel_readingpreferencesviewmodel", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_readingpreferencesviewmodel_swift_bool", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/ReadingPreferencesViewModel.swift", + "source_location": "L9", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_readingpreferencesviewmodel_readingpreferencesviewmodel", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_readingpreferencesviewmodel_swift_database", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/ReadingPreferencesViewModel.swift", + "source_location": "L10", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_readingpreferencesviewmodel_readingpreferencesviewmodel", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_readingpreferencesviewmodel_swift_persistentmodel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/ReadingPreferencesView.swift", + "source_location": "L10", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_readingpreferencesview_readingpreferencesview", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_readingpreferencesviewmodel_readingpreferencesviewmodel" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/ReadingPreferencesViewModel.swift", + "source_location": "L26", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_readingpreferencesviewmodel_readingpreferencesviewmodel_change", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_readingpreferencesviewmodel_swift_bool", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/ReadingPreferencesViewModel.swift", + "source_location": "L14", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_readingpreferencesviewmodel_readingpreferencesviewmodel_set", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_readingpreferencesviewmodel_swift_database", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/ReadingPreferencesViewModel.swift", + "source_location": "L14", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_readingpreferencesviewmodel_readingpreferencesviewmodel_set", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_readingpreferencesviewmodel_swift_persistentmodel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/SettingsViewModel.swift", + "source_location": "L75", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_settingsviewmodel", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_settingsviewmodel_settingsviewmodel", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/SettingsViewModel.swift", + "source_location": "L31", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_settingsviewmodel_settingsviewmodel", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_settingsviewmodel_settingsviewmodel_init", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/SettingsViewModel.swift", + "source_location": "L76", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_settingsviewmodel_settingsviewmodel", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_settingsviewmodel_settingsviewmodel_updateschema", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/SettingsViewModel.swift", + "source_location": "L63", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_settingsviewmodel_settingsviewmodel", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_settingsviewmodel_settingsviewmodel_updatetabs", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/SettingsViewModel.swift", + "source_location": "L26", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_settingsviewmodel_settingsviewmodel", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_settingsviewmodel_swift_database", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/SettingsViewModel.swift", + "source_location": "L12", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_settingsviewmodel_settingsviewmodel", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_settingsviewmodel_swift_news", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/SettingsViewModel.swift", + "source_location": "L27", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_settingsviewmodel_settingsviewmodel", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_settingsviewmodel_swift_persistentmodel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SettingsViewModelTests.swift", + "source_location": "L164", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_settingsviewmodeltests_settingsviewmodeltests_darkcolorschema", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_settingsviewmodel_settingsviewmodel" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SettingsViewModelTests.swift", + "source_location": "L235", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_settingsviewmodeltests_settingsviewmodeltests_emptynewsoptions", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_settingsviewmodel_settingsviewmodel" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SettingsViewModelTests.swift", + "source_location": "L206", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_settingsviewmodeltests_settingsviewmodeltests_emptysocialoptions", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_settingsviewmodel_settingsviewmodel" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SettingsViewModelTests.swift", + "source_location": "L19", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_settingsviewmodeltests_settingsviewmodeltests_initialcolorschemaisnil", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_settingsviewmodel_settingsviewmodel" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SettingsViewModelTests.swift", + "source_location": "L52", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_settingsviewmodeltests_settingsviewmodeltests_initialisliveisfalse", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_settingsviewmodel_settingsviewmodel" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SettingsViewModelTests.swift", + "source_location": "L41", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_settingsviewmodeltests_settingsviewmodeltests_initialnewsoptionsareall", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_settingsviewmodel_settingsviewmodel" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SettingsViewModelTests.swift", + "source_location": "L63", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_settingsviewmodeltests_settingsviewmodeltests_initialremoveadsisfalse", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_settingsviewmodel_settingsviewmodel" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SettingsViewModelTests.swift", + "source_location": "L30", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_settingsviewmodeltests_settingsviewmodeltests_initialsocialoptionsareall", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_settingsviewmodel_settingsviewmodel" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SettingsViewModelTests.swift", + "source_location": "L151", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_settingsviewmodeltests_settingsviewmodeltests_lightcolorschema", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_settingsviewmodel_settingsviewmodel" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SettingsViewModelTests.swift", + "source_location": "L278", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_settingsviewmodeltests_settingsviewmodeltests_livestatusaffectstabs", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_settingsviewmodel_settingsviewmodel" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SettingsViewModelTests.swift", + "source_location": "L177", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_settingsviewmodeltests_settingsviewmodeltests_systemcolorschema", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_settingsviewmodel_settingsviewmodel" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SettingsViewModelTests.swift", + "source_location": "L102", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_settingsviewmodeltests_settingsviewmodeltests_tabsalwaysincludenonlive", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_settingsviewmodel_settingsviewmodel" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SettingsViewModelTests.swift", + "source_location": "L136", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_settingsviewmodeltests_settingsviewmodeltests_tabscountlive", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_settingsviewmodel_settingsviewmodel" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SettingsViewModelTests.swift", + "source_location": "L123", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_settingsviewmodeltests_settingsviewmodeltests_tabscountnotlive", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_settingsviewmodel_settingsviewmodel" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SettingsViewModelTests.swift", + "source_location": "L76", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_settingsviewmodeltests_settingsviewmodeltests_tabsfilterlivewhennotlive", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_settingsviewmodel_settingsviewmodel" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SettingsViewModelTests.swift", + "source_location": "L89", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_settingsviewmodeltests_settingsviewmodeltests_tabsincludelivewhenlive", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_settingsviewmodel_settingsviewmodel" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SettingsViewModelTests.swift", + "source_location": "L265", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_settingsviewmodeltests_settingsviewmodeltests_updateislive", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_settingsviewmodel_settingsviewmodel" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SettingsViewModelTests.swift", + "source_location": "L221", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_settingsviewmodeltests_settingsviewmodeltests_updatenewsoptions", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_settingsviewmodel_settingsviewmodel" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SettingsViewModelTests.swift", + "source_location": "L250", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_settingsviewmodeltests_settingsviewmodeltests_updateremoveads", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_settingsviewmodel_settingsviewmodel" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SettingsViewModelTests.swift", + "source_location": "L192", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_settingsviewmodeltests_settingsviewmodeltests_updatesocialoptions", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_settingsviewmodel_settingsviewmodel" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/MainViewModel.swift", + "source_location": "L18", + "weight": 1.0, + "context": "field", + "source": "macmagazine_macmagazine_mainapp_mainviewmodel_mainviewmodel", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_settingsviewmodel_settingsviewmodel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/MainViewModel.swift", + "source_location": "L72", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_mainviewmodel_mainviewmodel_init", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_settingsviewmodel_settingsviewmodel", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/SettingsViewModel.swift", + "source_location": "L31", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_settingsviewmodel_settingsviewmodel_init", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_settingsviewmodel_swift_database", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/SettingsViewModel.swift", + "source_location": "L31", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_settingsviewmodel_settingsviewmodel_init", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_settingsviewmodel_swift_persistentmodel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/SettingsViewModel.swift", + "source_location": "L45", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_settingsviewmodel_settingsviewmodel_init", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_settingsviewmodel_settingsviewmodel_updateschema", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/SettingsViewModel.swift", + "source_location": "L63", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_settingsviewmodel_settingsviewmodel_updatetabs", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_settingsviewmodel_swift_binding", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/SubscriptionViewModel.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_subscriptionviewmodel", + "target": "inapplibrary", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/SubscriptionViewModel.swift", + "source_location": "L14", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_subscriptionviewmodel", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_subscriptionviewmodel_status", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/SubscriptionViewModel.swift", + "source_location": "L116", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_subscriptionviewmodel", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_subscriptionviewmodel_subscriptionviewmodel", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/SubscriptionViewModel.swift", + "source_location": "L5", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_subscriptionviewmodel", + "target": "os", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/SubscriptionViewModel.swift", + "source_location": "L35", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_subscriptionviewmodel_subscriptionviewmodel", + "target": "inappmanager", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/SubscriptionViewModel.swift", + "source_location": "L31", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_subscriptionviewmodel_subscriptionviewmodel", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_subscriptionviewmodel_status", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/SubscriptionViewModel.swift", + "source_location": "L75", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_subscriptionviewmodel_subscriptionviewmodel", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_subscriptionviewmodel_subscriptionviewmodel_change", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/SubscriptionViewModel.swift", + "source_location": "L62", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_subscriptionviewmodel_subscriptionviewmodel", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_subscriptionviewmodel_subscriptionviewmodel_get", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/SubscriptionViewModel.swift", + "source_location": "L81", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_subscriptionviewmodel_subscriptionviewmodel", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_subscriptionviewmodel_subscriptionviewmodel_getpurchasableproducts", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/SubscriptionViewModel.swift", + "source_location": "L38", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_subscriptionviewmodel_subscriptionviewmodel", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_subscriptionviewmodel_subscriptionviewmodel_init", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/SubscriptionViewModel.swift", + "source_location": "L117", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_subscriptionviewmodel_subscriptionviewmodel", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_subscriptionviewmodel_subscriptionviewmodel_process", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/SubscriptionViewModel.swift", + "source_location": "L99", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_subscriptionviewmodel_subscriptionviewmodel", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_subscriptionviewmodel_subscriptionviewmodel_purchase", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/SubscriptionViewModel.swift", + "source_location": "L93", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_subscriptionviewmodel_subscriptionviewmodel", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_subscriptionviewmodel_subscriptionviewmodel_restore", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/SubscriptionViewModel.swift", + "source_location": "L43", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_subscriptionviewmodel_subscriptionviewmodel", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_subscriptionviewmodel_subscriptionviewmodel_setuplisteners", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/SubscriptionViewModel.swift", + "source_location": "L33", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_subscriptionviewmodel_subscriptionviewmodel", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_subscriptionviewmodel_swift_analyticsmanager", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/SubscriptionViewModel.swift", + "source_location": "L32", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_subscriptionviewmodel_subscriptionviewmodel", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_subscriptionviewmodel_swift_database", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/SubscriptionViewModel.swift", + "source_location": "L36", + "weight": 1.0, + "context": "generic_arg", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_subscriptionviewmodel_subscriptionviewmodel", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_subscriptionviewmodel_swift_never", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/SubscriptionViewModel.swift", + "source_location": "L36", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_subscriptionviewmodel_subscriptionviewmodel", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_subscriptionviewmodel_swift_task", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/SubscriptionViewModel.swift", + "source_location": "L36", + "weight": 1.0, + "context": "generic_arg", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_subscriptionviewmodel_subscriptionviewmodel", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_subscriptionviewmodel_swift_void", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/SubscriptionView.swift", + "source_location": "L13", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_subscriptionview_subscriptionview", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_subscriptionviewmodel_subscriptionviewmodel" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/SubscriptionViewModel.swift", + "source_location": "L17", + "weight": 1.0, + "context": "type", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_subscriptionviewmodel_status", + "target": "inappproduct", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/SubscriptionViewModel.swift", + "source_location": "L18", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_subscriptionviewmodel_status", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_subscriptionviewmodel_status_error", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/SubscriptionViewModel.swift", + "source_location": "L15", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_subscriptionviewmodel_status", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_subscriptionviewmodel_status_idle", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/SubscriptionViewModel.swift", + "source_location": "L16", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_subscriptionviewmodel_status", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_subscriptionviewmodel_status_loading", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/SubscriptionViewModel.swift", + "source_location": "L20", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_subscriptionviewmodel_status", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_subscriptionviewmodel_status_product", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/SubscriptionViewModel.swift", + "source_location": "L17", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_subscriptionviewmodel_status", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_subscriptionviewmodel_status_purchasable", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/SubscriptionViewModel.swift", + "source_location": "L18", + "weight": 1.0, + "context": "type", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_subscriptionviewmodel_status", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_subscriptionviewmodel_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/SubscriptionViewModel.swift", + "source_location": "L20", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_subscriptionviewmodel_status_product", + "target": "inappproduct", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/SubscriptionViewModel.swift", + "source_location": "L136", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_subscriptionviewmodel_subscriptionviewmodel_process", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_subscriptionviewmodel_status_error", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/SubscriptionViewModel.swift", + "source_location": "L20", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_subscriptionviewmodel_status_product", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_subscriptionviewmodel_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/SubscriptionViewModel.swift", + "source_location": "L99", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_subscriptionviewmodel_subscriptionviewmodel_purchase", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_subscriptionviewmodel_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/SubscriptionViewModel.swift", + "source_location": "L125", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_subscriptionviewmodel_subscriptionviewmodel_process", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_subscriptionviewmodel_status_product", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/SubscriptionViewModel.swift", + "source_location": "L103", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_subscriptionviewmodel_subscriptionviewmodel_purchase", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_subscriptionviewmodel_status_product", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/SubscriptionViewModel.swift", + "source_location": "L99", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_subscriptionviewmodel_subscriptionviewmodel_purchase", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_subscriptionviewmodel_swift_analyticsmanager", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/SubscriptionViewModel.swift", + "source_location": "L38", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_subscriptionviewmodel_subscriptionviewmodel_init", + "target": "inappmanager", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/SubscriptionViewModel.swift", + "source_location": "L106", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_subscriptionviewmodel_subscriptionviewmodel_purchase", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_subscriptionviewmodel_swift_task", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/SubscriptionViewModel.swift", + "source_location": "L94", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_subscriptionviewmodel_subscriptionviewmodel_restore", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_subscriptionviewmodel_swift_task", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/SubscriptionViewModel.swift", + "source_location": "L44", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_subscriptionviewmodel_subscriptionviewmodel_setuplisteners", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_subscriptionviewmodel_swift_task", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/SubscriptionViewModel.swift", + "source_location": "L40", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_subscriptionviewmodel_subscriptionviewmodel_init", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_subscriptionviewmodel_subscriptionviewmodel_setuplisteners", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/SubscriptionViewModel.swift", + "source_location": "L55", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_subscriptionviewmodel_subscriptionviewmodel_setuplisteners", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_subscriptionviewmodel_subscriptionviewmodel_process", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/SubscriptionViewModel.swift", + "source_location": "L67", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_subscriptionviewmodel_subscriptionviewmodel_get", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_subscriptionviewmodel_subscriptionviewmodel_change", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/SubscriptionViewModel.swift", + "source_location": "L71", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_subscriptionviewmodel_subscriptionviewmodel_change", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_subscriptionviewmodel_swift_bool", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/SubscriptionViewModel.swift", + "source_location": "L131", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_subscriptionviewmodel_subscriptionviewmodel_process", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_subscriptionviewmodel_subscriptionviewmodel_change", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/SubscriptionView.swift", + "source_location": "L106", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_subscriptionview_subscriptionview_subscriptions", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_subscriptionviewmodel_subscriptionviewmodel_purchase" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/SubscriptionViewModel.swift", + "source_location": "L117", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_subscriptionviewmodel_subscriptionviewmodel_process", + "target": "inappstatus", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Extensions/CustomProductViewStyle.swift", + "source_location": "L43", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_extensions_customproductviewstyle", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_views_extensions_customproductviewstyle_customproductviewstyle", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Extensions/CustomProductViewStyle.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_extensions_customproductviewstyle", + "target": "storekit", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/SubscriptionView.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_subscriptionview", + "target": "storekit", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Extensions/CustomProductViewStyle.swift", + "source_location": "L44", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_extensions_customproductviewstyle_customproductviewstyle", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_views_extensions_customproductviewstyle_customproductviewstyle_content", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Extensions/CustomProductViewStyle.swift", + "source_location": "L12", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_extensions_customproductviewstyle_customproductviewstyle", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_views_extensions_customproductviewstyle_customproductviewstyle_makebody", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Extensions/CustomProductViewStyle.swift", + "source_location": "L9", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_extensions_customproductviewstyle_customproductviewstyle", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_views_extensions_customproductviewstyle_swift_themeable", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Extensions/CustomProductViewStyle.swift", + "source_location": "L10", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_extensions_customproductviewstyle_customproductviewstyle", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_views_extensions_customproductviewstyle_swift_void", + "confidence_score": 1.0 + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Extensions/CustomProductViewStyle.swift", + "source_location": "L8", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_extensions_customproductviewstyle_customproductviewstyle", + "target": "productviewstyle", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/SubscriptionView.swift", + "source_location": "L105", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_subscriptionview_subscriptionview_subscriptions", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_views_extensions_customproductviewstyle_customproductviewstyle" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Extensions/CustomProductViewStyle.swift", + "source_location": "L44", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_extensions_customproductviewstyle_customproductviewstyle_content", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_views_extensions_customproductviewstyle_swift_void", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Extensions/CustomProductViewStyle.swift", + "source_location": "L12", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_extensions_customproductviewstyle_customproductviewstyle_makebody", + "target": "configuration", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Extensions/CustomProductViewStyle.swift", + "source_location": "L15", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_extensions_customproductviewstyle_customproductviewstyle_makebody", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_views_extensions_customproductviewstyle_customproductviewstyle_content", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Extensions/CustomProductViewStyle.swift", + "source_location": "L12", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_extensions_customproductviewstyle_customproductviewstyle_makebody", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_views_extensions_customproductviewstyle_swift_view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Extensions/CustomProductViewStyle.swift", + "source_location": "L44", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_extensions_customproductviewstyle_customproductviewstyle_content", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_views_extensions_customproductviewstyle_swift_view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Extensions/CustomProductViewStyle.swift", + "source_location": "L44", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_extensions_customproductviewstyle_customproductviewstyle_content", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_views_extensions_customproductviewstyle_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Extensions/CustomProductViewStyle.swift", + "source_location": "L54", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_extensions_customproductviewstyle_customproductviewstyle_content", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_views_extensions_plainbuttontextstyle_text" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Extensions/PlainButtonTextStyle.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_extensions_plainbuttontextstyle", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_views_extensions_plainbuttontextstyle_plainbuttontextstyle", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Extensions/PlainButtonTextStyle.swift", + "source_location": "L15", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_extensions_plainbuttontextstyle", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_views_extensions_plainbuttontextstyle_text", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Extensions/PlainButtonTextStyle.swift", + "source_location": "L7", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_extensions_plainbuttontextstyle_plainbuttontextstyle", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_views_extensions_plainbuttontextstyle_plainbuttontextstyle_body", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Extensions/PlainButtonTextStyle.swift", + "source_location": "L4", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_extensions_plainbuttontextstyle_plainbuttontextstyle", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_views_extensions_plainbuttontextstyle_swift_color", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Extensions/PlainButtonTextStyle.swift", + "source_location": "L5", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_extensions_plainbuttontextstyle_plainbuttontextstyle", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_views_extensions_plainbuttontextstyle_swift_font", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Extensions/PlainButtonTextStyle.swift", + "source_location": "L19", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_extensions_plainbuttontextstyle_text_plain", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_views_extensions_plainbuttontextstyle_plainbuttontextstyle", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Extensions/PlainButtonTextStyle.swift", + "source_location": "L16", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_extensions_plainbuttontextstyle_text_plain", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_views_extensions_plainbuttontextstyle_swift_color", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Extensions/PlainButtonTextStyle.swift", + "source_location": "L16", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_extensions_plainbuttontextstyle_text_plain", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_views_extensions_plainbuttontextstyle_swift_font", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Extensions/PlainButtonTextStyle.swift", + "source_location": "L7", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_extensions_plainbuttontextstyle_plainbuttontextstyle_body", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_views_extensions_plainbuttontextstyle_swift_content", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Extensions/PlainButtonTextStyle.swift", + "source_location": "L7", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_extensions_plainbuttontextstyle_plainbuttontextstyle_body", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_views_extensions_plainbuttontextstyle_swift_view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Extensions/PlainButtonTextStyle.swift", + "source_location": "L16", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_extensions_plainbuttontextstyle_text_plain", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_views_extensions_plainbuttontextstyle_swift_view", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Extensions/PlainButtonTextStyle.swift", + "source_location": "L16", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_extensions_plainbuttontextstyle_text", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_views_extensions_plainbuttontextstyle_text_plain", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/MacMagazine/MainApp/Sizecalss/MainView+sidebar.swift", + "source_location": "L165", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_sizecalss_mainview_sidebar_mainview_contentview", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_views_extensions_plainbuttontextstyle_text" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/MacMagazine/MainApp/Sizecalss/MainView+sidebar.swift", + "source_location": "L105", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_sizecalss_mainview_sidebar_mainview_news", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_views_extensions_plainbuttontextstyle_text" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/MacMagazine/MainApp/Sizecalss/MainView+sidebar.swift", + "source_location": "L92", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_sizecalss_mainview_sidebar_mainview_social", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_views_extensions_plainbuttontextstyle_text" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/WatchApp/Views/FeedMainView.swift", + "source_location": "L93", + "weight": 1.0, + "source": "macmagazine_watchapp_views_feedmainview_feedmainview_navigationtitle", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_views_extensions_plainbuttontextstyle_text" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/WatchApp/Views/FeedMainView.swift", + "source_location": "L156", + "weight": 1.0, + "source": "macmagazine_watchapp_views_feedmainview_feedmainview_statusscreen", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_views_extensions_plainbuttontextstyle_text" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/SettingsView.swift", + "source_location": "L113", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_settingsview", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_views_settingsview_contentsheet", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/SettingsView.swift", + "source_location": "L161", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_settingsview", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_views_settingsview_patronloginsheet", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/SettingsView.swift", + "source_location": "L44", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_settingsview", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_views_settingsview_settingsview", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/SettingsView.swift", + "source_location": "L17", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_settingsview_settingsview", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_views_settingsview_settingsview_init", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/SettingsView.swift", + "source_location": "L8", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_settingsview_settingsview", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_views_settingsview_swift_analyticsmanager", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/SettingsView.swift", + "source_location": "L15", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_settingsview_settingsview", + "target": "macmagazine_widget_models_widgetdata_url", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/MacMagazine/MainApp/Sizecalss/MainView+sidebar.swift", + "source_location": "L148", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_sizecalss_mainview_sidebar_mainview_contentview", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_views_settingsview_settingsview" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/MacMagazine/MainApp/Sizecalss/MainView+tabbar.swift", + "source_location": "L48", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_sizecalss_mainview_tabbar_mainview_contentview", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_views_settingsview_settingsview" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/SettingsView.swift", + "source_location": "L120", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_settingsview_contentsheet", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_views_settingsview_swift_analyticsmanager", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/SettingsView.swift", + "source_location": "L166", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_settingsview_patronloginsheet", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_views_settingsview_swift_analyticsmanager", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/SettingsView.swift", + "source_location": "L118", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_settingsview_contentsheet", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_views_settingsview_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/SettingsView.swift", + "source_location": "L119", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_settingsview_contentsheet", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_views_settingsview_swift_void", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/SettingsView.swift", + "source_location": "L115", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_settingsview_contentsheet", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_views_settingsview_swift_webpage", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/SettingsView.swift", + "source_location": "L162", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_settingsview_patronloginsheet", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_views_settingsview_swift_webpage", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/SettingsView.swift", + "source_location": "L207", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_settingsview_patronloginsheet_makeloginpage", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_views_settingsview_swift_webpage", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/SettingsView.swift", + "source_location": "L165", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_settingsview_patronloginsheet", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_views_settingsview_swift_void", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/SettingsView.swift", + "source_location": "L207", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_settingsview_patronloginsheet", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_views_settingsview_patronloginsheet_makeloginpage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/AboutView.swift", + "source_location": "L35", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_aboutview", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_aboutview_aboutview", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/AboutView.swift", + "source_location": "L7", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_aboutview_aboutview", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_aboutview_swift_analyticsmanager", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/AppearanceView.swift", + "source_location": "L33", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_appearanceview", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_appearanceview_appearanceview", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/AppearanceView.swift", + "source_location": "L6", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_appearanceview_appearanceview", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_appearanceview_swift_analyticsmanager", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/CustomSocialView.swift", + "source_location": "L46", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_customsocialview", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_customsocialview_customsocialview", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/CustomSocialView.swift", + "source_location": "L47", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_customsocialview_customsocialview", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_customsocialview_customsocialview_moveitems", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/CustomSocialView.swift", + "source_location": "L6", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_customsocialview_customsocialview", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_customsocialview_swift_analyticsmanager", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/CustomSocialView.swift", + "source_location": "L47", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_customsocialview_customsocialview_moveitems", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_customsocialview_swift_indexset", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/CustomSocialView.swift", + "source_location": "L47", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_customsocialview_customsocialview_moveitems", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_customsocialview_swift_int", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/CustomTabView.swift", + "source_location": "L48", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_customtabview", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_customtabview_customtabview", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/CustomTabView.swift", + "source_location": "L49", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_customtabview_customtabview", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_customtabview_customtabview_moveitems", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/CustomTabView.swift", + "source_location": "L57", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_customtabview_customtabview", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_customtabview_customtabview_shoulddisablemove", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/CustomTabView.swift", + "source_location": "L6", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_customtabview_customtabview", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_customtabview_swift_analyticsmanager", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/CustomTabView.swift", + "source_location": "L49", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_customtabview_customtabview_moveitems", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_customtabview_swift_indexset", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/CustomTabView.swift", + "source_location": "L49", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_customtabview_customtabview_moveitems", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_customtabview_swift_int", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/CustomTabView.swift", + "source_location": "L57", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_customtabview_customtabview_shoulddisablemove", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_customtabview_swift_bool", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/IconsView.swift", + "source_location": "L37", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_iconsview", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_iconsview_iconsview", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/IconsView.swift", + "source_location": "L6", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_iconsview_iconsview", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_iconsview_swift_analyticsmanager", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/PostsVisibilityView.swift", + "source_location": "L24", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_postsvisibilityview", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_postsvisibilityview_postsvisibilityview", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/PostsVisibilityView.swift", + "source_location": "L7", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_postsvisibilityview_postsvisibilityview", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_postsvisibilityview_swift_analyticsmanager", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/PushOptionsView.swift", + "source_location": "L25", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_pushoptionsview", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_pushoptionsview_pushoptionsview", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/PushOptionsView.swift", + "source_location": "L7", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_pushoptionsview_pushoptionsview", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_pushoptionsview_swift_analyticsmanager", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/ReadingPreferencesView.swift", + "source_location": "L6", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_readingpreferencesview", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_readingpreferencesview_readingpreferencesview", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/ReadingPreferencesView.swift", + "source_location": "L7", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_readingpreferencesview_readingpreferencesview", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_readingpreferencesview_swift_analyticsmanager", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/SubscriptionView.swift", + "source_location": "L148", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_subscriptionview", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_subscriptionview_subscriptionview", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/SubscriptionView.swift", + "source_location": "L101", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_subscriptionview_subscriptionview", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_subscriptionview_subscriptionview_subscriptions", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/SubscriptionView.swift", + "source_location": "L9", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_subscriptionview_subscriptionview", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_subscriptionview_swift_analyticsmanager", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/SubscriptionView.swift", + "source_location": "L18", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_subscriptionview_subscriptionview", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_subscriptionview_swift_bool", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/SubscriptionView.swift", + "source_location": "L15", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_subscriptionview_subscriptionview", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_subscriptionview_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/SubscriptionView.swift", + "source_location": "L19", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_subscriptionview_subscriptionview", + "target": "macmagazine_widget_models_widgetdata_url", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/SubscriptionView.swift", + "source_location": "L101", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_subscriptionview_subscriptionview_subscriptions", + "target": "macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_subscriptionview_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/DatabaseExtensionsTests.swift", + "source_location": "L6", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_databaseextensionstests", + "target": "macmagazine_features_settingslibrary_tests_settingslibrarytests_databaseextensionstests_databaseextensionstests", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/DatabaseExtensionsTests.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_databaseextensionstests", + "target": "settingslibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SettingsViewModelTests.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_settingsviewmodeltests", + "target": "settingslibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SubscriptionTests.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_subscriptiontests", + "target": "settingslibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/Features/News/NewsView.swift", + "source_location": "L5", + "weight": 1.0, + "source": "macmagazine_macmagazine_features_news_newsview", + "target": "settingslibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/Features/Social/SocialView.swift", + "source_location": "L5", + "weight": 1.0, + "source": "macmagazine_macmagazine_features_social_socialview", + "target": "settingslibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/MacMagazineApp.swift", + "source_location": "L7", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_macmagazineapp", + "target": "settingslibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/MainView.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_mainview", + "target": "settingslibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/MainViewModel.swift", + "source_location": "L7", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_mainviewmodel", + "target": "settingslibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/NavigationState.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_navigationstate", + "target": "settingslibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/Sizecalss/MainView+sidebar.swift", + "source_location": "L6", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_sizecalss_mainview_sidebar", + "target": "settingslibrary", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/Sizecalss/MainView+tabbar.swift", + "source_location": "L6", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_sizecalss_mainview_tabbar", + "target": "settingslibrary", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/DatabaseExtensionsTests.swift", + "source_location": "L92", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_databaseextensionstests_databaseextensionstests", + "target": "macmagazine_features_settingslibrary_tests_settingslibrarytests_databaseextensionstests_databaseextensionstests_customizationdeleteduplicates", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/DatabaseExtensionsTests.swift", + "source_location": "L64", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_databaseextensionstests_databaseextensionstests", + "target": "macmagazine_features_settingslibrary_tests_settingslibrarytests_databaseextensionstests_databaseextensionstests_customizationnilwhenempty", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/DatabaseExtensionsTests.swift", + "source_location": "L76", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_databaseextensionstests_databaseextensionstests", + "target": "macmagazine_features_settingslibrary_tests_settingslibrarytests_databaseextensionstests_databaseextensionstests_customizationreturnfirstwhensingle", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/DatabaseExtensionsTests.swift", + "source_location": "L342", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_databaseextensionstests_databaseextensionstests", + "target": "macmagazine_features_settingslibrary_tests_settingslibrarytests_databaseextensionstests_databaseextensionstests_multiplerapidupdates", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/DatabaseExtensionsTests.swift", + "source_location": "L358", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_databaseextensionstests_databaseextensionstests", + "target": "macmagazine_features_settingslibrary_tests_settingslibrarytests_databaseextensionstests_databaseextensionstests_preserveotherfieldsonupdate", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/DatabaseExtensionsTests.swift", + "source_location": "L40", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_databaseextensionstests_databaseextensionstests", + "target": "macmagazine_features_settingslibrary_tests_settingslibrarytests_databaseextensionstests_databaseextensionstests_settingsdeleteduplicates", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/DatabaseExtensionsTests.swift", + "source_location": "L12", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_databaseextensionstests_databaseextensionstests", + "target": "macmagazine_features_settingslibrary_tests_settingslibrarytests_databaseextensionstests_databaseextensionstests_settingsnilwhenempty", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/DatabaseExtensionsTests.swift", + "source_location": "L24", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_databaseextensionstests_databaseextensionstests", + "target": "macmagazine_features_settingslibrary_tests_settingslibrarytests_databaseextensionstests_databaseextensionstests_settingsreturnfirstwhensingle", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/DatabaseExtensionsTests.swift", + "source_location": "L254", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_databaseextensionstests_databaseextensionstests", + "target": "macmagazine_features_settingslibrary_tests_settingslibrarytests_databaseextensionstests_databaseextensionstests_updateappicon", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/DatabaseExtensionsTests.swift", + "source_location": "L280", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_databaseextensionstests_databaseextensionstests", + "target": "macmagazine_features_settingslibrary_tests_settingslibrarytests_databaseextensionstests_databaseextensionstests_updateexpirationdate", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/DatabaseExtensionsTests.swift", + "source_location": "L139", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_databaseextensionstests_databaseextensionstests", + "target": "macmagazine_features_settingslibrary_tests_settingslibrarytests_databaseextensionstests_databaseextensionstests_updateispatraofalsesubtracts1day", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/DatabaseExtensionsTests.swift", + "source_location": "L116", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_databaseextensionstests_databaseextensionstests", + "target": "macmagazine_features_settingslibrary_tests_settingslibrarytests_databaseextensionstests_databaseextensionstests_updateispatraotrueadds30days", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/DatabaseExtensionsTests.swift", + "source_location": "L162", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_databaseextensionstests_databaseextensionstests", + "target": "macmagazine_features_settingslibrary_tests_settingslibrarytests_databaseextensionstests_databaseextensionstests_updateispatraoupdatesexisting", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/DatabaseExtensionsTests.swift", + "source_location": "L182", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_databaseextensionstests_databaseextensionstests", + "target": "macmagazine_features_settingslibrary_tests_settingslibrarytests_databaseextensionstests_databaseextensionstests_updatemodeinsertswhenempty", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/DatabaseExtensionsTests.swift", + "source_location": "L198", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_databaseextensionstests_databaseextensionstests", + "target": "macmagazine_features_settingslibrary_tests_settingslibrarytests_databaseextensionstests_databaseextensionstests_updatemodeupdatesexisting", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/DatabaseExtensionsTests.swift", + "source_location": "L310", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_databaseextensionstests_databaseextensionstests", + "target": "macmagazine_features_settingslibrary_tests_settingslibrarytests_databaseextensionstests_databaseextensionstests_updatenews", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/DatabaseExtensionsTests.swift", + "source_location": "L267", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_databaseextensionstests_databaseextensionstests", + "target": "macmagazine_features_settingslibrary_tests_settingslibrarytests_databaseextensionstests_databaseextensionstests_updatenotification", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/DatabaseExtensionsTests.swift", + "source_location": "L297", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_databaseextensionstests_databaseextensionstests", + "target": "macmagazine_features_settingslibrary_tests_settingslibrarytests_databaseextensionstests_databaseextensionstests_updatesocial", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/DatabaseExtensionsTests.swift", + "source_location": "L217", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_databaseextensionstests_databaseextensionstests", + "target": "macmagazine_features_settingslibrary_tests_settingslibrarytests_databaseextensionstests_databaseextensionstests_updatetabsinsertswhenempty", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/DatabaseExtensionsTests.swift", + "source_location": "L233", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_databaseextensionstests_databaseextensionstests", + "target": "macmagazine_features_settingslibrary_tests_settingslibrarytests_databaseextensionstests_databaseextensionstests_updatetabsupdatesexisting", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/DatabaseExtensionsTests.swift", + "source_location": "L325", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_databaseextensionstests_databaseextensionstests", + "target": "macmagazine_features_settingslibrary_tests_settingslibrarytests_databaseextensionstests_databaseextensionstests_updatewithemptyarrays", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SettingsViewModelTests.swift", + "source_location": "L7", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_settingsviewmodeltests", + "target": "macmagazine_features_settingslibrary_tests_settingslibrarytests_settingsviewmodeltests_settingsviewmodeltests", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SettingsViewModelTests.swift", + "source_location": "L158", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_settingsviewmodeltests_settingsviewmodeltests", + "target": "macmagazine_features_settingslibrary_tests_settingslibrarytests_settingsviewmodeltests_settingsviewmodeltests_darkcolorschema", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SettingsViewModelTests.swift", + "source_location": "L229", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_settingsviewmodeltests_settingsviewmodeltests", + "target": "macmagazine_features_settingslibrary_tests_settingslibrarytests_settingsviewmodeltests_settingsviewmodeltests_emptynewsoptions", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SettingsViewModelTests.swift", + "source_location": "L200", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_settingsviewmodeltests_settingsviewmodeltests", + "target": "macmagazine_features_settingslibrary_tests_settingslibrarytests_settingsviewmodeltests_settingsviewmodeltests_emptysocialoptions", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SettingsViewModelTests.swift", + "source_location": "L13", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_settingsviewmodeltests_settingsviewmodeltests", + "target": "macmagazine_features_settingslibrary_tests_settingslibrarytests_settingsviewmodeltests_settingsviewmodeltests_initialcolorschemaisnil", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SettingsViewModelTests.swift", + "source_location": "L46", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_settingsviewmodeltests_settingsviewmodeltests", + "target": "macmagazine_features_settingslibrary_tests_settingslibrarytests_settingsviewmodeltests_settingsviewmodeltests_initialisliveisfalse", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SettingsViewModelTests.swift", + "source_location": "L35", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_settingsviewmodeltests_settingsviewmodeltests", + "target": "macmagazine_features_settingslibrary_tests_settingslibrarytests_settingsviewmodeltests_settingsviewmodeltests_initialnewsoptionsareall", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SettingsViewModelTests.swift", + "source_location": "L57", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_settingsviewmodeltests_settingsviewmodeltests", + "target": "macmagazine_features_settingslibrary_tests_settingslibrarytests_settingsviewmodeltests_settingsviewmodeltests_initialremoveadsisfalse", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SettingsViewModelTests.swift", + "source_location": "L24", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_settingsviewmodeltests_settingsviewmodeltests", + "target": "macmagazine_features_settingslibrary_tests_settingslibrarytests_settingsviewmodeltests_settingsviewmodeltests_initialsocialoptionsareall", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SettingsViewModelTests.swift", + "source_location": "L145", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_settingsviewmodeltests_settingsviewmodeltests", + "target": "macmagazine_features_settingslibrary_tests_settingslibrarytests_settingsviewmodeltests_settingsviewmodeltests_lightcolorschema", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SettingsViewModelTests.swift", + "source_location": "L272", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_settingsviewmodeltests_settingsviewmodeltests", + "target": "macmagazine_features_settingslibrary_tests_settingslibrarytests_settingsviewmodeltests_settingsviewmodeltests_livestatusaffectstabs", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SettingsViewModelTests.swift", + "source_location": "L171", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_settingsviewmodeltests_settingsviewmodeltests", + "target": "macmagazine_features_settingslibrary_tests_settingslibrarytests_settingsviewmodeltests_settingsviewmodeltests_systemcolorschema", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SettingsViewModelTests.swift", + "source_location": "L96", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_settingsviewmodeltests_settingsviewmodeltests", + "target": "macmagazine_features_settingslibrary_tests_settingslibrarytests_settingsviewmodeltests_settingsviewmodeltests_tabsalwaysincludenonlive", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SettingsViewModelTests.swift", + "source_location": "L130", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_settingsviewmodeltests_settingsviewmodeltests", + "target": "macmagazine_features_settingslibrary_tests_settingslibrarytests_settingsviewmodeltests_settingsviewmodeltests_tabscountlive", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SettingsViewModelTests.swift", + "source_location": "L117", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_settingsviewmodeltests_settingsviewmodeltests", + "target": "macmagazine_features_settingslibrary_tests_settingslibrarytests_settingsviewmodeltests_settingsviewmodeltests_tabscountnotlive", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SettingsViewModelTests.swift", + "source_location": "L70", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_settingsviewmodeltests_settingsviewmodeltests", + "target": "macmagazine_features_settingslibrary_tests_settingslibrarytests_settingsviewmodeltests_settingsviewmodeltests_tabsfilterlivewhennotlive", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SettingsViewModelTests.swift", + "source_location": "L83", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_settingsviewmodeltests_settingsviewmodeltests", + "target": "macmagazine_features_settingslibrary_tests_settingslibrarytests_settingsviewmodeltests_settingsviewmodeltests_tabsincludelivewhenlive", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SettingsViewModelTests.swift", + "source_location": "L259", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_settingsviewmodeltests_settingsviewmodeltests", + "target": "macmagazine_features_settingslibrary_tests_settingslibrarytests_settingsviewmodeltests_settingsviewmodeltests_updateislive", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SettingsViewModelTests.swift", + "source_location": "L215", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_settingsviewmodeltests_settingsviewmodeltests", + "target": "macmagazine_features_settingslibrary_tests_settingslibrarytests_settingsviewmodeltests_settingsviewmodeltests_updatenewsoptions", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SettingsViewModelTests.swift", + "source_location": "L244", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_settingsviewmodeltests_settingsviewmodeltests", + "target": "macmagazine_features_settingslibrary_tests_settingslibrarytests_settingsviewmodeltests_settingsviewmodeltests_updateremoveads", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SettingsViewModelTests.swift", + "source_location": "L186", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_settingsviewmodeltests_settingsviewmodeltests", + "target": "macmagazine_features_settingslibrary_tests_settingslibrarytests_settingsviewmodeltests_settingsviewmodeltests_updatesocialoptions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SubscriptionTests.swift", + "source_location": "L5", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_subscriptiontests", + "target": "macmagazine_features_settingslibrary_tests_settingslibrarytests_subscriptiontests_subscriptiontests", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SubscriptionTests.swift", + "source_location": "L145", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_subscriptiontests_subscriptiontests", + "target": "macmagazine_features_settingslibrary_tests_settingslibrarytests_subscriptiontests_subscriptiontests_codableconformance", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SubscriptionTests.swift", + "source_location": "L166", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_subscriptiontests_subscriptiontests", + "target": "macmagazine_features_settingslibrary_tests_settingslibrarytests_subscriptiontests_subscriptiontests_handlemaximumdate", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SubscriptionTests.swift", + "source_location": "L177", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_subscriptiontests_subscriptiontests", + "target": "macmagazine_features_settingslibrary_tests_settingslibrarytests_subscriptiontests_subscriptiontests_handleminimumdate", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SubscriptionTests.swift", + "source_location": "L30", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_subscriptiontests_subscriptiontests", + "target": "macmagazine_features_settingslibrary_tests_settingslibrarytests_subscriptiontests_subscriptiontests_invalidatexactexpirationtime", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SubscriptionTests.swift", + "source_location": "L51", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_subscriptiontests_subscriptiontests", + "target": "macmagazine_features_settingslibrary_tests_settingslibrarytests_subscriptiontests_subscriptiontests_invalidonesecondafterexpiration", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SubscriptionTests.swift", + "source_location": "L20", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_subscriptiontests_subscriptiontests", + "target": "macmagazine_features_settingslibrary_tests_settingslibrarytests_subscriptiontests_subscriptiontests_invalidwhenpastdate", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SubscriptionTests.swift", + "source_location": "L71", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_subscriptiontests_subscriptiontests", + "target": "macmagazine_features_settingslibrary_tests_settingslibrarytests_subscriptiontests_subscriptiontests_invalidwithdistantpast", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SubscriptionTests.swift", + "source_location": "L113", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_subscriptiontests_subscriptiontests", + "target": "macmagazine_features_settingslibrary_tests_settingslibrarytests_subscriptiontests_subscriptiontests_noremoveadswhenbothfalse", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SubscriptionTests.swift", + "source_location": "L123", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_subscriptiontests_subscriptiontests", + "target": "macmagazine_features_settingslibrary_tests_settingslibrarytests_subscriptiontests_subscriptiontests_removeadspatraowithexpired", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SubscriptionTests.swift", + "source_location": "L133", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_subscriptiontests_subscriptiontests", + "target": "macmagazine_features_settingslibrary_tests_settingslibrarytests_subscriptiontests_subscriptiontests_removeadsvalidwithoutpatrao", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SubscriptionTests.swift", + "source_location": "L103", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_subscriptiontests_subscriptiontests", + "target": "macmagazine_features_settingslibrary_tests_settingslibrarytests_subscriptiontests_subscriptiontests_removeadswhenbothtrue", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SubscriptionTests.swift", + "source_location": "L83", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_subscriptiontests_subscriptiontests", + "target": "macmagazine_features_settingslibrary_tests_settingslibrarytests_subscriptiontests_subscriptiontests_removeadswhenpatraotrue", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SubscriptionTests.swift", + "source_location": "L93", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_subscriptiontests_subscriptiontests", + "target": "macmagazine_features_settingslibrary_tests_settingslibrarytests_subscriptiontests_subscriptiontests_removeadswhenvalidsubscription", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SubscriptionTests.swift", + "source_location": "L188", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_subscriptiontests_subscriptiontests", + "target": "macmagazine_features_settingslibrary_tests_settingslibrarytests_subscriptiontests_subscriptiontests_typicalmonthlysubscription", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SubscriptionTests.swift", + "source_location": "L199", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_subscriptiontests_subscriptiontests", + "target": "macmagazine_features_settingslibrary_tests_settingslibrarytests_subscriptiontests_subscriptiontests_typicalyearlysubscription", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SubscriptionTests.swift", + "source_location": "L41", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_subscriptiontests_subscriptiontests", + "target": "macmagazine_features_settingslibrary_tests_settingslibrarytests_subscriptiontests_subscriptiontests_validonesecondbeforeexpiration", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SubscriptionTests.swift", + "source_location": "L10", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_subscriptiontests_subscriptiontests", + "target": "macmagazine_features_settingslibrary_tests_settingslibrarytests_subscriptiontests_subscriptiontests_validwhenfuturedate", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SubscriptionTests.swift", + "source_location": "L61", + "weight": 1.0, + "source": "macmagazine_features_settingslibrary_tests_settingslibrarytests_subscriptiontests_subscriptiontests", + "target": "macmagazine_features_settingslibrary_tests_settingslibrarytests_subscriptiontests_subscriptiontests_validwithdistantfuture", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/Card/AdaptiveVideoCard.swift", + "source_location": "L30", + "weight": 1.0, + "source": "macmagazine_features_videoslibrary_sources_videos_card_adaptivevideocard", + "target": "macmagazine_features_videoslibrary_sources_videos_card_adaptivevideocard_adaptivebody", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/Card/AdaptiveVideoCard.swift", + "source_location": "L8", + "weight": 1.0, + "source": "macmagazine_features_videoslibrary_sources_videos_card_adaptivevideocard", + "target": "macmagazine_features_videoslibrary_sources_videos_card_adaptivevideocard_adaptivevideocard", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/Card/AdaptiveVideoCard.swift", + "source_location": "L53", + "weight": 1.0, + "source": "macmagazine_features_videoslibrary_sources_videos_card_adaptivevideocard", + "target": "macmagazine_features_videoslibrary_sources_videos_card_adaptivevideocard_mmvideodbpreview", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/Card/AdaptiveVideoCard.swift", + "source_location": "L11", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_videoslibrary_sources_videos_card_adaptivevideocard_adaptivevideocard", + "target": "cardbutton", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/Card/AdaptiveVideoCard.swift", + "source_location": "L10", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_videoslibrary_sources_videos_card_adaptivevideocard_adaptivevideocard", + "target": "cardlabel", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/Card/AdaptiveVideoCard.swift", + "source_location": "L18", + "weight": 1.0, + "source": "macmagazine_features_videoslibrary_sources_videos_card_adaptivevideocard_adaptivevideocard", + "target": "macmagazine_features_videoslibrary_sources_videos_card_adaptivevideocard_adaptivevideocard_init", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/Card/AdaptiveVideoCard.swift", + "source_location": "L26", + "weight": 1.0, + "source": "macmagazine_features_videoslibrary_sources_videos_card_adaptivevideocard_adaptivevideocard", + "target": "macmagazine_features_videoslibrary_sources_videos_card_adaptivevideocard_adaptivevideocard_makebody", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/Card/AdaptiveVideoCard.swift", + "source_location": "L14", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_videoslibrary_sources_videos_card_adaptivevideocard_adaptivevideocard", + "target": "macmagazine_features_videoslibrary_sources_videos_card_adaptivevideocard_swift_analyticsmanager", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/Card/AdaptiveVideoCard.swift", + "source_location": "L13", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_videoslibrary_sources_videos_card_adaptivevideocard_adaptivevideocard", + "target": "macmagazine_features_videoslibrary_sources_videos_card_adaptivevideocard_swift_modelcontext", + "confidence_score": 1.0 + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/Card/AdaptiveVideoCard.swift", + "source_location": "L8", + "weight": 1.0, + "source": "macmagazine_features_videoslibrary_sources_videos_card_adaptivevideocard_adaptivevideocard", + "target": "videocard", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/Card/AdaptiveVideoCard.swift", + "source_location": "L35", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_videoslibrary_sources_videos_card_adaptivevideocard_adaptivebody", + "target": "macmagazine_features_videoslibrary_sources_videos_card_adaptivevideocard_swift_modelcontext", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/Card/AdaptiveVideoCard.swift", + "source_location": "L18", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_videoslibrary_sources_videos_card_adaptivevideocard_adaptivevideocard_init", + "target": "macmagazine_features_videoslibrary_sources_videos_card_adaptivevideocard_swift_modelcontext", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/Card/AdaptiveVideoCard.swift", + "source_location": "L36", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_videoslibrary_sources_videos_card_adaptivevideocard_adaptivebody", + "target": "macmagazine_features_videoslibrary_sources_videos_card_adaptivevideocard_swift_analyticsmanager", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/Card/AdaptiveVideoCard.swift", + "source_location": "L18", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_videoslibrary_sources_videos_card_adaptivevideocard_adaptivevideocard_init", + "target": "macmagazine_features_videoslibrary_sources_videos_card_adaptivevideocard_swift_analyticsmanager", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/Card/AdaptiveVideoCard.swift", + "source_location": "L27", + "weight": 1.0, + "source": "macmagazine_features_videoslibrary_sources_videos_card_adaptivevideocard_adaptivevideocard_makebody", + "target": "macmagazine_features_videoslibrary_sources_videos_card_adaptivevideocard_adaptivebody", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/Card/AdaptiveVideoCard.swift", + "source_location": "L26", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_videoslibrary_sources_videos_card_adaptivevideocard_adaptivevideocard_makebody", + "target": "macmagazine_features_videoslibrary_sources_videos_card_adaptivevideocard_swift_videodb", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/Card/AdaptiveVideoCard.swift", + "source_location": "L26", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_features_videoslibrary_sources_videos_card_adaptivevideocard_adaptivevideocard_makebody", + "target": "macmagazine_features_videoslibrary_sources_videos_card_adaptivevideocard_swift_view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/Card/AdaptiveVideoCard.swift", + "source_location": "L34", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_videoslibrary_sources_videos_card_adaptivevideocard_adaptivebody", + "target": "macmagazine_features_videoslibrary_sources_videos_card_adaptivevideocard_swift_videodb", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/Card/AdaptiveVideoCard.swift", + "source_location": "L55", + "weight": 1.0, + "source": "macmagazine_features_videoslibrary_sources_videos_card_adaptivevideocard_mmvideodbpreview", + "target": "macmagazine_features_videoslibrary_sources_videos_card_adaptivevideocard_swift_videodb", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/Card/AdaptiveVideoCard.swift", + "source_location": "L38", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_videoslibrary_sources_videos_card_adaptivevideocard_adaptivebody", + "target": "macmagazine_features_videoslibrary_sources_videos_card_adaptivevideocard_swift_view", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/Model/VideoDBExtensions.swift", + "source_location": "L54", + "weight": 1.0, + "source": "macmagazine_features_videoslibrary_sources_videos_model_videodbextensions", + "target": "macmagazine_features_videoslibrary_sources_videos_model_videodbextensions_videodb", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/Model/VideoDBExtensions.swift", + "source_location": "L9", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_videoslibrary_sources_videos_model_videodbextensions_videodb", + "target": "macmagazine_features_videoslibrary_sources_videos_model_videodbextensions_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/Model/VideoDBExtensions.swift", + "source_location": "L55", + "weight": 1.0, + "source": "macmagazine_features_videoslibrary_sources_videos_model_videodbextensions_videodb", + "target": "macmagazine_features_videoslibrary_sources_videos_model_videodbextensions_videodb_deduplicate", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/Model/VideoDBExtensions.swift", + "source_location": "L45", + "weight": 1.0, + "source": "macmagazine_features_videoslibrary_sources_videos_model_videodbextensions_videodb", + "target": "macmagazine_features_videoslibrary_sources_videos_model_videodbextensions_videodb_deletenonfavorites", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/Model/VideoDBExtensions.swift", + "source_location": "L13", + "weight": 1.0, + "source": "macmagazine_features_videoslibrary_sources_videos_model_videodbextensions_videodb", + "target": "macmagazine_features_videoslibrary_sources_videos_model_videodbextensions_videodb_tocardcontent", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/Model/VideoDBExtensions.swift", + "source_location": "L13", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_videoslibrary_sources_videos_model_videodbextensions_videodb_tocardcontent", + "target": "macmagazine_features_videoslibrary_sources_videos_model_videodbextensions_swift_analyticsmanager", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/Model/VideoDBExtensions.swift", + "source_location": "L13", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_videoslibrary_sources_videos_model_videodbextensions_videodb_tocardcontent", + "target": "macmagazine_features_videoslibrary_sources_videos_model_videodbextensions_swift_modelcontext", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/Model/VideoDBExtensions.swift", + "source_location": "L55", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_videoslibrary_sources_videos_model_videodbextensions_videodb_deduplicate", + "target": "macmagazine_features_videoslibrary_sources_videos_model_videodbextensions_swift_modelcontext", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/Model/VideoDBExtensions.swift", + "source_location": "L45", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_videoslibrary_sources_videos_model_videodbextensions_videodb_deletenonfavorites", + "target": "macmagazine_features_videoslibrary_sources_videos_model_videodbextensions_swift_modelcontext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/VideosView.swift", + "source_location": "L8", + "weight": 1.0, + "source": "macmagazine_features_videoslibrary_sources_videos_videosview", + "target": "macmagazine_features_videoslibrary_sources_videos_videosview_videosview", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/VideosView.swift", + "source_location": "L10", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_videoslibrary_sources_videos_videosview_videosview", + "target": "macmagazine_features_videoslibrary_sources_videos_videosview_swift_analyticsmanager", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/VideosView.swift", + "source_location": "L13", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_videoslibrary_sources_videos_videosview_videosview", + "target": "macmagazine_features_videoslibrary_sources_videos_videosview_swift_bool", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/VideosView.swift", + "source_location": "L14", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_videoslibrary_sources_videos_videosview_videosview", + "target": "macmagazine_features_videoslibrary_sources_videos_videosview_swift_scrollposition", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/VideosView.swift", + "source_location": "L12", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_videoslibrary_sources_videos_videosview_videosview", + "target": "macmagazine_features_videoslibrary_sources_videos_videosview_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/VideosView.swift", + "source_location": "L26", + "weight": 1.0, + "source": "macmagazine_features_videoslibrary_sources_videos_videosview_videosview", + "target": "macmagazine_features_videoslibrary_sources_videos_videosview_videosview_init", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/VideosView.swift", + "source_location": "L11", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_videoslibrary_sources_videos_videosview_videosview", + "target": "macmagazine_features_videoslibrary_sources_videos_videosviewmodel_videosviewmodel", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/VideosView.swift", + "source_location": "L26", + "weight": 1.0, + "context": "generic_arg", + "source": "macmagazine_features_videoslibrary_sources_videos_videosview_videosview_init", + "target": "macmagazine_features_videoslibrary_sources_videos_videosview_swift_bool", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/VideosView.swift", + "source_location": "L26", + "weight": 1.0, + "context": "generic_arg", + "source": "macmagazine_features_videoslibrary_sources_videos_videosview_videosview_init", + "target": "macmagazine_features_videoslibrary_sources_videos_videosview_swift_scrollposition", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/VideosView.swift", + "source_location": "L26", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_videoslibrary_sources_videos_videosview_videosview_init", + "target": "macmagazine_features_videoslibrary_sources_videos_videosview_swift_binding", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/VideosView.swift", + "source_location": "L16", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_videoslibrary_sources_videos_videosview_videosview_init", + "target": "macmagazine_features_videoslibrary_sources_videos_videosview_swift_database", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/VideosView.swift", + "source_location": "L26", + "weight": 1.0, + "source": "macmagazine_features_videoslibrary_sources_videos_videosview_videosview_init", + "target": "macmagazine_features_videoslibrary_sources_videos_videosviewmodel_videosviewmodel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/VideosViewModel.swift", + "source_location": "L13", + "weight": 1.0, + "source": "macmagazine_features_videoslibrary_sources_videos_videosviewmodel", + "target": "macmagazine_features_videoslibrary_sources_videos_videosviewmodel_options", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/VideosViewModel.swift", + "source_location": "L8", + "weight": 1.0, + "source": "macmagazine_features_videoslibrary_sources_videos_videosviewmodel", + "target": "macmagazine_features_videoslibrary_sources_videos_videosviewmodel_videosviewmodel", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/VideosViewModel.swift", + "source_location": "L11", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_videoslibrary_sources_videos_videosviewmodel_videosviewmodel", + "target": "macmagazine_features_videoslibrary_sources_videos_videosviewmodel_swift_apistatus", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/VideosViewModel.swift", + "source_location": "L18", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_videoslibrary_sources_videos_videosviewmodel_videosviewmodel", + "target": "macmagazine_features_videoslibrary_sources_videos_videosviewmodel_swift_database", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/VideosViewModel.swift", + "source_location": "L30", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_videoslibrary_sources_videos_videosviewmodel_videosviewmodel", + "target": "macmagazine_features_videoslibrary_sources_videos_videosviewmodel_swift_modelcontext", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/VideosViewModel.swift", + "source_location": "L19", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_videoslibrary_sources_videos_videosviewmodel_videosviewmodel", + "target": "macmagazine_features_videoslibrary_sources_videos_videosviewmodel_swift_networkmockdata", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/VideosViewModel.swift", + "source_location": "L10", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_videoslibrary_sources_videos_videosviewmodel_videosviewmodel", + "target": "macmagazine_features_videoslibrary_sources_videos_videosviewmodel_swift_options", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/VideosViewModel.swift", + "source_location": "L21", + "weight": 1.0, + "context": "field", + "source": "macmagazine_features_videoslibrary_sources_videos_videosviewmodel_videosviewmodel", + "target": "macmagazine_features_videoslibrary_sources_videos_videosviewmodel_swift_youtubeapi", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/VideosViewModel.swift", + "source_location": "L33", + "weight": 1.0, + "source": "macmagazine_features_videoslibrary_sources_videos_videosviewmodel_videosviewmodel", + "target": "macmagazine_features_videoslibrary_sources_videos_videosviewmodel_videosviewmodel_init", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/VideosLibrary/Tests/VideosLibraryTests/VideosViewModelTests.swift", + "source_location": "L16", + "weight": 1.0, + "source": "macmagazine_features_videoslibrary_tests_videoslibrarytests_videosviewmodeltests_videosviewmodeltests_initialoptionishome", + "target": "macmagazine_features_videoslibrary_sources_videos_videosviewmodel_videosviewmodel" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/VideosLibrary/Tests/VideosLibraryTests/VideosViewModelTests.swift", + "source_location": "L24", + "weight": 1.0, + "source": "macmagazine_features_videoslibrary_tests_videoslibrarytests_videosviewmodeltests_videosviewmodeltests_initialstatusisloading", + "target": "macmagazine_features_videoslibrary_sources_videos_videosviewmodel_videosviewmodel" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/VideosLibrary/Tests/VideosLibraryTests/VideosViewModelTests.swift", + "source_location": "L154", + "weight": 1.0, + "source": "macmagazine_features_videoslibrary_tests_videoslibrarytests_videosviewmodeltests_videosviewmodeltests_longsearchtext", + "target": "macmagazine_features_videoslibrary_sources_videos_videosviewmodel_videosviewmodel" + }, + { + "relation": "references", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "MacMagazine/Features/VideosLibrary/Tests/VideosLibraryTests/VideosViewModelTests.swift", + "source_location": "L80", + "weight": 1.0, + "source": "macmagazine_features_videoslibrary_tests_videoslibrarytests_videosviewmodeltests_videosviewmodeltests_optionsequatable", + "target": "macmagazine_features_videoslibrary_sources_videos_videosviewmodel_videosviewmodel" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/VideosLibrary/Tests/VideosLibraryTests/VideosViewModelTests.swift", + "source_location": "L126", + "weight": 1.0, + "source": "macmagazine_features_videoslibrary_tests_videoslibrarytests_videosviewmodeltests_videosviewmodeltests_specialcharactersinsearch", + "target": "macmagazine_features_videoslibrary_sources_videos_videosviewmodel_videosviewmodel" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/VideosLibrary/Tests/VideosLibraryTests/VideosViewModelTests.swift", + "source_location": "L48", + "weight": 1.0, + "source": "macmagazine_features_videoslibrary_tests_videoslibrarytests_videosviewmodeltests_videosviewmodeltests_supportsemptysearchtext", + "target": "macmagazine_features_videoslibrary_sources_videos_videosviewmodel_videosviewmodel" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/VideosLibrary/Tests/VideosLibraryTests/VideosViewModelTests.swift", + "source_location": "L110", + "weight": 1.0, + "source": "macmagazine_features_videoslibrary_tests_videoslibrarytests_videosviewmodeltests_videosviewmodeltests_supportserrorstatus", + "target": "macmagazine_features_videoslibrary_sources_videos_videosviewmodel_videosviewmodel" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/VideosLibrary/Tests/VideosLibraryTests/VideosViewModelTests.swift", + "source_location": "L100", + "weight": 1.0, + "source": "macmagazine_features_videoslibrary_tests_videoslibrarytests_videosviewmodeltests_videosviewmodeltests_supportsidlestatus", + "target": "macmagazine_features_videoslibrary_sources_videos_videosviewmodel_videosviewmodel" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/VideosLibrary/Tests/VideosLibraryTests/VideosViewModelTests.swift", + "source_location": "L34", + "weight": 1.0, + "source": "macmagazine_features_videoslibrary_tests_videoslibrarytests_videosviewmodeltests_videosviewmodeltests_supportssearchoption", + "target": "macmagazine_features_videoslibrary_sources_videos_videosviewmodel_videosviewmodel" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/VideosLibrary/Tests/VideosLibraryTests/VideosViewModelTests.swift", + "source_location": "L62", + "weight": 1.0, + "source": "macmagazine_features_videoslibrary_tests_videoslibrarytests_videosviewmodeltests_videosviewmodeltests_transitionbetweenoptions", + "target": "macmagazine_features_videoslibrary_sources_videos_videosviewmodel_videosviewmodel" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/VideosLibrary/Tests/VideosLibraryTests/VideosViewModelTests.swift", + "source_location": "L140", + "weight": 1.0, + "source": "macmagazine_features_videoslibrary_tests_videoslibrarytests_videosviewmodeltests_videosviewmodeltests_unicodeinsearch", + "target": "macmagazine_features_videoslibrary_sources_videos_videosviewmodel_videosviewmodel" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Features/VideosLibrary/Tests/VideosLibraryTests/VideosViewModelTests.swift", + "source_location": "L90", + "weight": 1.0, + "source": "macmagazine_features_videoslibrary_tests_videoslibrarytests_videosviewmodeltests_videosviewmodeltests_updatestatus", + "target": "macmagazine_features_videoslibrary_sources_videos_videosviewmodel_videosviewmodel" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/MainViewModel.swift", + "source_location": "L17", + "weight": 1.0, + "context": "field", + "source": "macmagazine_macmagazine_mainapp_mainviewmodel_mainviewmodel", + "target": "macmagazine_features_videoslibrary_sources_videos_videosviewmodel_videosviewmodel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/MainViewModel.swift", + "source_location": "L75", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_mainviewmodel_mainviewmodel_init", + "target": "macmagazine_features_videoslibrary_sources_videos_videosviewmodel_videosviewmodel", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/VideosViewModel.swift", + "source_location": "L14", + "weight": 1.0, + "source": "macmagazine_features_videoslibrary_sources_videos_videosviewmodel_options", + "target": "macmagazine_features_videoslibrary_sources_videos_videosviewmodel_options_home", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/VideosViewModel.swift", + "source_location": "L15", + "weight": 1.0, + "source": "macmagazine_features_videoslibrary_sources_videos_videosviewmodel_options", + "target": "macmagazine_features_videoslibrary_sources_videos_videosviewmodel_options_search", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/VideosViewModel.swift", + "source_location": "L15", + "weight": 1.0, + "context": "type", + "source": "macmagazine_features_videoslibrary_sources_videos_videosviewmodel_options", + "target": "macmagazine_features_videoslibrary_sources_videos_videosviewmodel_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/VideosViewModel.swift", + "source_location": "L33", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_videoslibrary_sources_videos_videosviewmodel_videosviewmodel_init", + "target": "macmagazine_features_videoslibrary_sources_videos_videosviewmodel_swift_database", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/VideosViewModel.swift", + "source_location": "L33", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_features_videoslibrary_sources_videos_videosviewmodel_videosviewmodel_init", + "target": "macmagazine_features_videoslibrary_sources_videos_videosviewmodel_swift_networkmockdata", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/VideosViewModel.swift", + "source_location": "L39", + "weight": 1.0, + "source": "macmagazine_features_videoslibrary_sources_videos_videosviewmodel_videosviewmodel_init", + "target": "macmagazine_features_videoslibrary_sources_videos_videosviewmodel_swift_youtubeapi", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/VideosLibrary/Tests/VideosLibraryTests/VideosViewModelTests.swift", + "source_location": "L7", + "weight": 1.0, + "source": "macmagazine_features_videoslibrary_tests_videoslibrarytests_videosviewmodeltests", + "target": "macmagazine_features_videoslibrary_tests_videoslibrarytests_videosviewmodeltests_videosviewmodeltests", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/VideosLibrary/Tests/VideosLibraryTests/VideosViewModelTests.swift", + "source_location": "L13", + "weight": 1.0, + "source": "macmagazine_features_videoslibrary_tests_videoslibrarytests_videosviewmodeltests_videosviewmodeltests", + "target": "macmagazine_features_videoslibrary_tests_videoslibrarytests_videosviewmodeltests_videosviewmodeltests_initialoptionishome", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/VideosLibrary/Tests/VideosLibraryTests/VideosViewModelTests.swift", + "source_location": "L21", + "weight": 1.0, + "source": "macmagazine_features_videoslibrary_tests_videoslibrarytests_videosviewmodeltests_videosviewmodeltests", + "target": "macmagazine_features_videoslibrary_tests_videoslibrarytests_videosviewmodeltests_videosviewmodeltests_initialstatusisloading", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/VideosLibrary/Tests/VideosLibraryTests/VideosViewModelTests.swift", + "source_location": "L151", + "weight": 1.0, + "source": "macmagazine_features_videoslibrary_tests_videoslibrarytests_videosviewmodeltests_videosviewmodeltests", + "target": "macmagazine_features_videoslibrary_tests_videoslibrarytests_videosviewmodeltests_videosviewmodeltests_longsearchtext", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/VideosLibrary/Tests/VideosLibraryTests/VideosViewModelTests.swift", + "source_location": "L77", + "weight": 1.0, + "source": "macmagazine_features_videoslibrary_tests_videoslibrarytests_videosviewmodeltests_videosviewmodeltests", + "target": "macmagazine_features_videoslibrary_tests_videoslibrarytests_videosviewmodeltests_videosviewmodeltests_optionsequatable", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/VideosLibrary/Tests/VideosLibraryTests/VideosViewModelTests.swift", + "source_location": "L123", + "weight": 1.0, + "source": "macmagazine_features_videoslibrary_tests_videoslibrarytests_videosviewmodeltests_videosviewmodeltests", + "target": "macmagazine_features_videoslibrary_tests_videoslibrarytests_videosviewmodeltests_videosviewmodeltests_specialcharactersinsearch", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/VideosLibrary/Tests/VideosLibraryTests/VideosViewModelTests.swift", + "source_location": "L45", + "weight": 1.0, + "source": "macmagazine_features_videoslibrary_tests_videoslibrarytests_videosviewmodeltests_videosviewmodeltests", + "target": "macmagazine_features_videoslibrary_tests_videoslibrarytests_videosviewmodeltests_videosviewmodeltests_supportsemptysearchtext", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/VideosLibrary/Tests/VideosLibraryTests/VideosViewModelTests.swift", + "source_location": "L107", + "weight": 1.0, + "source": "macmagazine_features_videoslibrary_tests_videoslibrarytests_videosviewmodeltests_videosviewmodeltests", + "target": "macmagazine_features_videoslibrary_tests_videoslibrarytests_videosviewmodeltests_videosviewmodeltests_supportserrorstatus", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/VideosLibrary/Tests/VideosLibraryTests/VideosViewModelTests.swift", + "source_location": "L97", + "weight": 1.0, + "source": "macmagazine_features_videoslibrary_tests_videoslibrarytests_videosviewmodeltests_videosviewmodeltests", + "target": "macmagazine_features_videoslibrary_tests_videoslibrarytests_videosviewmodeltests_videosviewmodeltests_supportsidlestatus", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/VideosLibrary/Tests/VideosLibraryTests/VideosViewModelTests.swift", + "source_location": "L31", + "weight": 1.0, + "source": "macmagazine_features_videoslibrary_tests_videoslibrarytests_videosviewmodeltests_videosviewmodeltests", + "target": "macmagazine_features_videoslibrary_tests_videoslibrarytests_videosviewmodeltests_videosviewmodeltests_supportssearchoption", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/VideosLibrary/Tests/VideosLibraryTests/VideosViewModelTests.swift", + "source_location": "L59", + "weight": 1.0, + "source": "macmagazine_features_videoslibrary_tests_videoslibrarytests_videosviewmodeltests_videosviewmodeltests", + "target": "macmagazine_features_videoslibrary_tests_videoslibrarytests_videosviewmodeltests_videosviewmodeltests_transitionbetweenoptions", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/VideosLibrary/Tests/VideosLibraryTests/VideosViewModelTests.swift", + "source_location": "L137", + "weight": 1.0, + "source": "macmagazine_features_videoslibrary_tests_videoslibrarytests_videosviewmodeltests_videosviewmodeltests", + "target": "macmagazine_features_videoslibrary_tests_videoslibrarytests_videosviewmodeltests_videosviewmodeltests_unicodeinsearch", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Features/VideosLibrary/Tests/VideosLibraryTests/VideosViewModelTests.swift", + "source_location": "L87", + "weight": 1.0, + "source": "macmagazine_features_videoslibrary_tests_videoslibrarytests_videosviewmodeltests_videosviewmodeltests", + "target": "macmagazine_features_videoslibrary_tests_videoslibrarytests_videosviewmodeltests_videosviewmodeltests_updatestatus", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/Features/News/DeepLinkNewsDetailView.swift", + "source_location": "L8", + "weight": 1.0, + "source": "macmagazine_macmagazine_features_news_deeplinknewsdetailview", + "target": "macmagazine_macmagazine_features_news_deeplinknewsdetailview_deeplinknewsdetailview", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/Features/News/DeepLinkNewsDetailView.swift", + "source_location": "L10", + "weight": 1.0, + "context": "field", + "source": "macmagazine_macmagazine_features_news_deeplinknewsdetailview_deeplinknewsdetailview", + "target": "macmagazine_macmagazine_features_news_deeplinknewsdetailview_swift_analyticsmanager", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/Features/News/DeepLinkNewsDetailView.swift", + "source_location": "L17", + "weight": 1.0, + "context": "field", + "source": "macmagazine_macmagazine_features_news_deeplinknewsdetailview_deeplinknewsdetailview", + "target": "macmagazine_macmagazine_features_news_deeplinknewsdetailview_swift_feeddb", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/Features/News/DeepLinkNewsDetailView.swift", + "source_location": "L14", + "weight": 1.0, + "context": "field", + "source": "macmagazine_macmagazine_features_news_deeplinknewsdetailview_deeplinknewsdetailview", + "target": "macmagazine_macmagazine_features_news_deeplinknewsdetailview_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/Features/News/DeepLinkNewsDetailView.swift", + "source_location": "L15", + "weight": 1.0, + "context": "field", + "source": "macmagazine_macmagazine_features_news_deeplinknewsdetailview_deeplinknewsdetailview", + "target": "macmagazine_macmagazine_features_news_deeplinknewsdetailview_swift_void", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/Features/News/NewsView.swift", + "source_location": "L95", + "weight": 1.0, + "source": "macmagazine_macmagazine_features_news_newsview", + "target": "macmagazine_macmagazine_features_news_newsview_newsview", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/Features/News/NewsView.swift", + "source_location": "L96", + "weight": 1.0, + "context": "field", + "source": "macmagazine_macmagazine_features_news_newsview_newsview", + "target": "macmagazine_macmagazine_features_news_toolbarmodifier_toolbartype", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/MacMagazine/MainApp/Sizecalss/MainView+sidebar.swift", + "source_location": "L146", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_sizecalss_mainview_sidebar_mainview_contentview", + "target": "macmagazine_macmagazine_features_news_newsview_newsview" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/MacMagazine/MainApp/Sizecalss/MainView+tabbar.swift", + "source_location": "L46", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_sizecalss_mainview_tabbar_mainview_contentview", + "target": "macmagazine_macmagazine_features_news_newsview_newsview" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/Features/News/ToolbarModifier.swift", + "source_location": "L22", + "weight": 1.0, + "source": "macmagazine_macmagazine_features_news_toolbarmodifier", + "target": "macmagazine_macmagazine_features_news_toolbarmodifier_toolbarmodifier", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/Features/News/ToolbarModifier.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_macmagazine_features_news_toolbarmodifier", + "target": "macmagazine_macmagazine_features_news_toolbarmodifier_toolbartype", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/Features/News/ToolbarModifier.swift", + "source_location": "L8", + "weight": 1.0, + "source": "macmagazine_macmagazine_features_news_toolbarmodifier", + "target": "macmagazine_macmagazine_features_news_toolbarmodifier_view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/Features/News/ToolbarModifier.swift", + "source_location": "L23", + "weight": 1.0, + "context": "field", + "source": "macmagazine_macmagazine_features_news_toolbarmodifier_toolbarmodifier", + "target": "macmagazine_macmagazine_features_news_toolbarmodifier_toolbartype", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/Features/News/ToolbarModifier.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_macmagazine_features_news_toolbarmodifier_toolbartype", + "target": "macmagazine_macmagazine_features_news_toolbarmodifier_toolbartype_compact", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/Features/News/ToolbarModifier.swift", + "source_location": "L5", + "weight": 1.0, + "source": "macmagazine_macmagazine_features_news_toolbarmodifier_toolbartype", + "target": "macmagazine_macmagazine_features_news_toolbarmodifier_toolbartype_normal", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/Features/News/ToolbarModifier.swift", + "source_location": "L9", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_macmagazine_features_news_toolbarmodifier_view_toolbar", + "target": "macmagazine_macmagazine_features_news_toolbarmodifier_toolbartype", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/Features/News/ToolbarModifier.swift", + "source_location": "L27", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_macmagazine_features_news_toolbarmodifier_toolbarmodifier_body", + "target": "macmagazine_macmagazine_features_news_toolbarmodifier_view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/Features/News/ToolbarModifier.swift", + "source_location": "L9", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_macmagazine_features_news_toolbarmodifier_view_toolbar", + "target": "macmagazine_macmagazine_features_news_toolbarmodifier_view", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/Features/News/ToolbarModifier.swift", + "source_location": "L30", + "weight": 1.0, + "source": "macmagazine_macmagazine_features_news_toolbarmodifier_toolbarmodifier_body", + "target": "macmagazine_macmagazine_features_news_toolbarmodifier_view_toolbar", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/Features/News/ToolbarModifier.swift", + "source_location": "L9", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_macmagazine_features_news_toolbarmodifier_view_toolbar", + "target": "macmagazine_macmagazine_features_news_toolbarmodifier_swift_options", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/Features/News/ToolbarModifier.swift", + "source_location": "L14", + "weight": 1.0, + "source": "macmagazine_macmagazine_features_news_toolbarmodifier_view_toolbar", + "target": "macmagazine_macmagazine_features_news_toolbarmodifier_toolbarmodifier", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/Features/News/ToolbarModifier.swift", + "source_location": "L9", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_macmagazine_features_news_toolbarmodifier_view_toolbar", + "target": "menu", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/Features/News/ToolbarModifier.swift", + "source_location": "L24", + "weight": 1.0, + "context": "field", + "source": "macmagazine_macmagazine_features_news_toolbarmodifier_toolbarmodifier", + "target": "menu", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/Features/News/ToolbarModifier.swift", + "source_location": "L25", + "weight": 1.0, + "context": "field", + "source": "macmagazine_macmagazine_features_news_toolbarmodifier_toolbarmodifier", + "target": "macmagazine_macmagazine_features_news_toolbarmodifier_swift_options", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/Features/News/ToolbarModifier.swift", + "source_location": "L27", + "weight": 1.0, + "source": "macmagazine_macmagazine_features_news_toolbarmodifier_toolbarmodifier", + "target": "macmagazine_macmagazine_features_news_toolbarmodifier_toolbarmodifier_body", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/Features/News/ToolbarModifier.swift", + "source_location": "L27", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_macmagazine_features_news_toolbarmodifier_toolbarmodifier_body", + "target": "macmagazine_macmagazine_features_news_toolbarmodifier_swift_content", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/Features/Shortcuts/ShortcutActions.swift", + "source_location": "L3", + "weight": 1.0, + "source": "macmagazine_macmagazine_features_shortcuts_shortcutactions", + "target": "macmagazine_macmagazine_features_shortcuts_shortcutactions_shortcutactions", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/Features/Shortcuts/ShortcutActions.swift", + "source_location": "L7", + "weight": 1.0, + "source": "macmagazine_macmagazine_features_shortcuts_shortcutactions_shortcutactions", + "target": "macmagazine_macmagazine_features_shortcuts_shortcutactions_shortcutactions_none", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/Features/Shortcuts/ShortcutActions.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_macmagazine_features_shortcuts_shortcutactions_shortcutactions", + "target": "macmagazine_macmagazine_features_shortcuts_shortcutactions_shortcutactions_openlastseenpost", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/Features/Shortcuts/ShortcutActions.swift", + "source_location": "L5", + "weight": 1.0, + "source": "macmagazine_macmagazine_features_shortcuts_shortcutactions_shortcutactions", + "target": "macmagazine_macmagazine_features_shortcuts_shortcutactions_shortcutactions_openmostrecentpost", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/Features/Shortcuts/ShortcutActions.swift", + "source_location": "L6", + "weight": 1.0, + "source": "macmagazine_macmagazine_features_shortcuts_shortcutactions_shortcutactions", + "target": "macmagazine_macmagazine_features_shortcuts_shortcutactions_shortcutactions_opensearchpost", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/MacMagazine/Features/Shortcuts/ShortcutManager.swift", + "source_location": "L18", + "weight": 1.0, + "source": "macmagazine_macmagazine_features_shortcuts_shortcutmanager_shortcutmanager_process", + "target": "macmagazine_macmagazine_features_shortcuts_shortcutactions_shortcutactions" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/Features/Shortcuts/ShortcutManager.swift", + "source_location": "L6", + "weight": 1.0, + "source": "macmagazine_macmagazine_features_shortcuts_shortcutmanager", + "target": "macmagazine_macmagazine_features_shortcuts_shortcutmanager_shortcutmanager", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/Features/Shortcuts/ShortcutManager.swift", + "source_location": "L17", + "weight": 1.0, + "source": "macmagazine_macmagazine_features_shortcuts_shortcutmanager_shortcutmanager", + "target": "macmagazine_macmagazine_features_shortcuts_shortcutmanager_shortcutmanager_process", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/Features/Shortcuts/ShortcutManager.swift", + "source_location": "L39", + "weight": 1.0, + "source": "macmagazine_macmagazine_features_shortcuts_shortcutmanager_shortcutmanager", + "target": "macmagazine_macmagazine_features_shortcuts_shortcutmanager_shortcutmanager_processpendingshortcut", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/Features/Shortcuts/ShortcutManager.swift", + "source_location": "L10", + "weight": 1.0, + "context": "field", + "source": "macmagazine_macmagazine_features_shortcuts_shortcutmanager_shortcutmanager", + "target": "macmagazine_macmagazine_features_shortcuts_shortcutmanager_swift_modelcontext", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/Features/Shortcuts/ShortcutManager.swift", + "source_location": "L13", + "weight": 1.0, + "context": "field", + "source": "macmagazine_macmagazine_features_shortcuts_shortcutmanager_shortcutmanager", + "target": "macmagazine_macmagazine_features_shortcuts_shortcutmanager_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/Features/Shortcuts/ShortcutManager.swift", + "source_location": "L15", + "weight": 1.0, + "context": "field", + "source": "macmagazine_macmagazine_features_shortcuts_shortcutmanager_shortcutmanager", + "target": "macmagazine_macmagazine_features_shortcuts_shortcutmanager_swift_uiapplicationshortcutitem", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/Features/Shortcuts/ShortcutManager.swift", + "source_location": "L17", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_macmagazine_features_shortcuts_shortcutmanager_shortcutmanager_process", + "target": "macmagazine_macmagazine_features_shortcuts_shortcutmanager_swift_uiapplicationshortcutitem", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/Features/Shortcuts/ShortcutManager.swift", + "source_location": "L42", + "weight": 1.0, + "source": "macmagazine_macmagazine_features_shortcuts_shortcutmanager_shortcutmanager_processpendingshortcut", + "target": "macmagazine_macmagazine_features_shortcuts_shortcutmanager_shortcutmanager_process", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "MacMagazine/MacMagazine/MainApp/SceneDelegate.swift", + "source_location": "L32", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_scenedelegate_scenedelegate_windowscene", + "target": "macmagazine_macmagazine_features_shortcuts_shortcutmanager_shortcutmanager_process" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/Features/Social/SocialView.swift", + "source_location": "L52", + "weight": 1.0, + "source": "macmagazine_macmagazine_features_social_socialview", + "target": "macmagazine_macmagazine_features_social_socialview_socialview", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/MacMagazine/MainApp/Sizecalss/MainView+sidebar.swift", + "source_location": "L147", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_sizecalss_mainview_sidebar_mainview_contentview", + "target": "macmagazine_macmagazine_features_social_socialview_socialview" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/MacMagazine/MainApp/Sizecalss/MainView+tabbar.swift", + "source_location": "L47", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_sizecalss_mainview_tabbar_mainview_contentview", + "target": "macmagazine_macmagazine_features_social_socialview_socialview" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/AppDelegate.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_appdelegate", + "target": "firebasecore", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/AppDelegate.swift", + "source_location": "L58", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_appdelegate", + "target": "macmagazine_macmagazine_mainapp_appdelegate_appdelegate", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/AppDelegate.swift", + "source_location": "L69", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_appdelegate_appdelegate", + "target": "macmagazine_macmagazine_mainapp_appdelegate_appdelegate_application", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/AppDelegate.swift", + "source_location": "L32", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_appdelegate_appdelegate", + "target": "macmagazine_macmagazine_mainapp_appdelegate_appdelegate_applicationdidbecomeactive", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/AppDelegate.swift", + "source_location": "L40", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_appdelegate_appdelegate", + "target": "macmagazine_macmagazine_mainapp_appdelegate_appdelegate_configurefirebaseifavailable", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/AppDelegate.swift", + "source_location": "L9", + "weight": 1.0, + "context": "field", + "source": "macmagazine_macmagazine_mainapp_appdelegate_appdelegate", + "target": "macmagazine_macmagazine_mainapp_appdelegate_swift_loggerprotocol", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/AppDelegate.swift", + "source_location": "L8", + "weight": 1.0, + "context": "field", + "source": "macmagazine_macmagazine_mainapp_appdelegate_appdelegate", + "target": "macmagazine_macmagazine_mainapp_appdelegate_swift_pushnotification", + "confidence_score": 1.0 + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/AppDelegate.swift", + "source_location": "L7", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_appdelegate_appdelegate", + "target": "uiapplicationdelegate", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/MacMagazineApp.swift", + "source_location": "L29", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_macmagazine_mainapp_macmagazineapp_sceneview_init", + "target": "macmagazine_macmagazine_mainapp_appdelegate_appdelegate", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/AppDelegate.swift", + "source_location": "L13", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_appdelegate_appdelegate_application", + "target": "macmagazine_macmagazine_mainapp_appdelegate_appdelegate_configurefirebaseifavailable", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/AppDelegate.swift", + "source_location": "L69", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_macmagazine_mainapp_appdelegate_appdelegate_application", + "target": "macmagazine_macmagazine_mainapp_appdelegate_swift_any", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/AppDelegate.swift", + "source_location": "L69", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_macmagazine_mainapp_appdelegate_appdelegate_application", + "target": "macmagazine_macmagazine_mainapp_appdelegate_swift_anyhashable", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/AppDelegate.swift", + "source_location": "L11", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_macmagazine_mainapp_appdelegate_appdelegate_application", + "target": "macmagazine_macmagazine_mainapp_appdelegate_swift_bool", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/AppDelegate.swift", + "source_location": "L59", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_macmagazine_mainapp_appdelegate_appdelegate_application", + "target": "macmagazine_macmagazine_mainapp_appdelegate_swift_data", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/AppDelegate.swift", + "source_location": "L64", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_macmagazine_mainapp_appdelegate_appdelegate_application", + "target": "macmagazine_macmagazine_mainapp_appdelegate_swift_error", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/AppDelegate.swift", + "source_location": "L69", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_macmagazine_mainapp_appdelegate_appdelegate_application", + "target": "macmagazine_macmagazine_mainapp_appdelegate_swift_uiapplication", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/AppDelegate.swift", + "source_location": "L23", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_macmagazine_mainapp_appdelegate_appdelegate_application", + "target": "macmagazine_macmagazine_mainapp_appdelegate_swift_uiscene", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/AppDelegate.swift", + "source_location": "L23", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_macmagazine_mainapp_appdelegate_appdelegate_application", + "target": "macmagazine_macmagazine_mainapp_appdelegate_swift_uiscenesession", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/AppDelegate.swift", + "source_location": "L69", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_macmagazine_mainapp_appdelegate_appdelegate_application", + "target": "macmagazine_macmagazine_mainapp_appdelegate_swift_void", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/AppDelegate.swift", + "source_location": "L69", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_macmagazine_mainapp_appdelegate_appdelegate_application", + "target": "uibackgroundfetchresult", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/AppDelegate.swift", + "source_location": "L23", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_appdelegate_appdelegate_application", + "target": "uisceneconfiguration", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/AppDelegate.swift", + "source_location": "L32", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_macmagazine_mainapp_appdelegate_appdelegate_applicationdidbecomeactive", + "target": "notification", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/MacMagazineApp.swift", + "source_location": "L12", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_macmagazineapp", + "target": "macmagazine_macmagazine_mainapp_macmagazineapp_macmagazineapp", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/MacMagazineApp.swift", + "source_location": "L125", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_macmagazineapp", + "target": "macmagazine_macmagazine_mainapp_macmagazineapp_sceneview", + "confidence_score": 1.0 + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/MacMagazineApp.swift", + "source_location": "L12", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_macmagazineapp_macmagazineapp", + "target": "app", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/MacMagazineApp.swift", + "source_location": "L16", + "weight": 1.0, + "context": "field", + "source": "macmagazine_macmagazine_mainapp_macmagazineapp_macmagazineapp", + "target": "macmagazine_macmagazine_mainapp_macmagazineapp_swift_scene", + "confidence_score": 1.0 + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/MainApp/WatchApp.swift", + "source_location": "L7", + "weight": 1.0, + "source": "macmagazine_watchapp_mainapp_watchapp_watchapp", + "target": "app", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/MacMagazineApp.swift", + "source_location": "L29", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_macmagazineapp_sceneview", + "target": "macmagazine_macmagazine_mainapp_macmagazineapp_sceneview_init", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/MacMagazineApp.swift", + "source_location": "L27", + "weight": 1.0, + "context": "field", + "source": "macmagazine_macmagazine_mainapp_macmagazineapp_sceneview", + "target": "macmagazine_macmagazine_mainapp_macmagazineapp_swift_pushnotification", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/MacMagazineApp.swift", + "source_location": "L26", + "weight": 1.0, + "context": "field", + "source": "macmagazine_macmagazine_mainapp_macmagazineapp_sceneview", + "target": "macmagazine_macmagazine_mainapp_mainviewmodel_mainviewmodel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/MacMagazine/MainApp/SceneDelegate.swift", + "source_location": "L21", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_scenedelegate_scenedelegate_scene", + "target": "macmagazine_macmagazine_mainapp_macmagazineapp_sceneview" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/MacMagazineApp.swift", + "source_location": "L37", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_macmagazineapp_sceneview_init", + "target": "macmagazine_macmagazine_mainapp_macmagazineapp_swift_pushnotification", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/MacMagazineApp.swift", + "source_location": "L29", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_macmagazineapp_sceneview_init", + "target": "macmagazine_macmagazine_mainapp_mainviewmodel_mainviewmodel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/MainView.swift", + "source_location": "L7", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_mainview", + "target": "macmagazine_macmagazine_mainapp_mainview_layouttype", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/MainView.swift", + "source_location": "L6", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_mainview", + "target": "macmagazine_macmagazine_mainapp_mainview_mainview", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/MainView.swift", + "source_location": "L21", + "weight": 1.0, + "context": "field", + "source": "macmagazine_macmagazine_mainapp_mainview_mainview", + "target": "macmagazine_macmagazine_mainapp_mainview_layouttype", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/MacMagazine/MainApp/MainView.swift", + "source_location": "L12", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_mainview_mainview", + "target": "macmagazine_macmagazine_mainapp_navigationstate_navigationstate" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/MainView.swift", + "source_location": "L19", + "weight": 1.0, + "context": "field", + "source": "macmagazine_macmagazine_mainapp_mainview_mainview", + "target": "navigationsplitviewvisibility", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/MainView.swift", + "source_location": "L8", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_mainview_layouttype", + "target": "macmagazine_macmagazine_mainapp_mainview_layouttype_sidebar", + "confidence_score": 1.0 + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/MainView.swift", + "source_location": "L9", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_mainview_layouttype", + "target": "macmagazine_macmagazine_mainapp_mainview_layouttype_tabbar", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/MainViewModel.swift", + "source_location": "L110", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_mainviewmodel", + "target": "macmagazine_macmagazine_mainapp_mainviewmodel_mainviewmodel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/MainViewModel.swift", + "source_location": "L138", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_mainviewmodel", + "target": "macmagazine_macmagazine_mainapp_mainviewmodel_news", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/MainViewModel.swift", + "source_location": "L131", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_mainviewmodel_mainviewmodel", + "target": "macmagazine_macmagazine_mainapp_mainviewmodel_mainviewmodel_deduplicate", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/MainViewModel.swift", + "source_location": "L48", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_mainviewmodel_mainviewmodel", + "target": "macmagazine_macmagazine_mainapp_mainviewmodel_mainviewmodel_init", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/MainViewModel.swift", + "source_location": "L93", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_mainviewmodel_mainviewmodel", + "target": "macmagazine_macmagazine_mainapp_mainviewmodel_mainviewmodel_initializeonboarding", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/MainViewModel.swift", + "source_location": "L111", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_mainviewmodel_mainviewmodel", + "target": "macmagazine_macmagazine_mainapp_mainviewmodel_mainviewmodel_observestoragestatus", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/MainViewModel.swift", + "source_location": "L91", + "weight": 1.0, + "context": "field", + "source": "macmagazine_macmagazine_mainapp_mainviewmodel_mainviewmodel", + "target": "macmagazine_macmagazine_mainapp_mainviewmodel_swift_bool", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/MainViewModel.swift", + "source_location": "L38", + "weight": 1.0, + "context": "field", + "source": "macmagazine_macmagazine_mainapp_mainviewmodel_mainviewmodel", + "target": "macmagazine_macmagazine_mainapp_mainviewmodel_swift_database", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/MainViewModel.swift", + "source_location": "L40", + "weight": 1.0, + "context": "field", + "source": "macmagazine_macmagazine_mainapp_mainviewmodel_mainviewmodel", + "target": "macmagazine_macmagazine_mainapp_mainviewmodel_swift_loggerprotocol", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/MainViewModel.swift", + "source_location": "L30", + "weight": 1.0, + "context": "field", + "source": "macmagazine_macmagazine_mainapp_mainviewmodel_mainviewmodel", + "target": "macmagazine_macmagazine_mainapp_mainviewmodel_swift_news", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/MainViewModel.swift", + "source_location": "L46", + "weight": 1.0, + "context": "field", + "source": "macmagazine_macmagazine_mainapp_mainviewmodel_mainviewmodel", + "target": "macmagazine_macmagazine_mainapp_mainviewmodel_swift_persistentmodel", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/MainViewModel.swift", + "source_location": "L36", + "weight": 1.0, + "context": "field", + "source": "macmagazine_macmagazine_mainapp_mainviewmodel_mainviewmodel", + "target": "macmagazine_macmagazine_mainapp_mainviewmodel_swift_pushnotification", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/MainViewModel.swift", + "source_location": "L33", + "weight": 1.0, + "context": "field", + "source": "macmagazine_macmagazine_mainapp_mainviewmodel_mainviewmodel", + "target": "macmagazine_macmagazine_mainapp_mainviewmodel_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/NavigationState.swift", + "source_location": "L16", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_macmagazine_mainapp_navigationstate_navigationstate_navigate", + "target": "macmagazine_macmagazine_mainapp_mainviewmodel_mainviewmodel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/MacMagazine/MainApp/SceneDelegate.swift", + "source_location": "L18", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_scenedelegate_scenedelegate_scene", + "target": "macmagazine_macmagazine_mainapp_mainviewmodel_mainviewmodel" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/MainViewModel.swift", + "source_location": "L48", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_macmagazine_mainapp_mainviewmodel_mainviewmodel_init", + "target": "macmagazine_macmagazine_mainapp_mainviewmodel_swift_pushnotification", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/MainViewModel.swift", + "source_location": "L65", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_mainviewmodel_mainviewmodel_init", + "target": "macmagazine_macmagazine_mainapp_mainviewmodel_swift_database", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/MainViewModel.swift", + "source_location": "L48", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_macmagazine_mainapp_mainviewmodel_mainviewmodel_init", + "target": "macmagazine_macmagazine_mainapp_mainviewmodel_swift_loggerprotocol", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/MainViewModel.swift", + "source_location": "L84", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_mainviewmodel_mainviewmodel_init", + "target": "macmagazine_macmagazine_mainapp_mainviewmodel_mainviewmodel_observestoragestatus", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/MainViewModel.swift", + "source_location": "L48", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_macmagazine_mainapp_mainviewmodel_mainviewmodel_init", + "target": "macmagazine_macmagazine_mainapp_mainviewmodel_swift_bool", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/MainViewModel.swift", + "source_location": "L139", + "weight": 1.0, + "context": "field", + "source": "macmagazine_macmagazine_mainapp_mainviewmodel_news", + "target": "macmagazine_macmagazine_mainapp_mainviewmodel_swift_newscategory", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/NavigationState.swift", + "source_location": "L5", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_navigationstate", + "target": "macmagazine_macmagazine_mainapp_navigationstate_navigationstate", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/NavigationState.swift", + "source_location": "L16", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_navigationstate_navigationstate", + "target": "macmagazine_macmagazine_mainapp_navigationstate_navigationstate_navigate", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/NavigationState.swift", + "source_location": "L9", + "weight": 1.0, + "context": "field", + "source": "macmagazine_macmagazine_mainapp_navigationstate_navigationstate", + "target": "macmagazine_macmagazine_mainapp_navigationstate_swift_caseiterable", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/NavigationState.swift", + "source_location": "L11", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_macmagazine_mainapp_navigationstate_navigationstate_navigate", + "target": "macmagazine_macmagazine_mainapp_navigationstate_swift_caseiterable", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/NavigationState.swift", + "source_location": "L16", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_macmagazine_mainapp_navigationstate_navigationstate_navigate", + "target": "userinterfacesizeclass", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/SceneDelegate.swift", + "source_location": "L6", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_scenedelegate", + "target": "macmagazine_macmagazine_mainapp_scenedelegate_scenedelegate", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/SceneDelegate.swift", + "source_location": "L10", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_scenedelegate_scenedelegate", + "target": "macmagazine_macmagazine_mainapp_scenedelegate_scenedelegate_scene", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/SceneDelegate.swift", + "source_location": "L36", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_scenedelegate_scenedelegate", + "target": "macmagazine_macmagazine_mainapp_scenedelegate_scenedelegate_scenedidbecomeactive", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/SceneDelegate.swift", + "source_location": "L29", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_scenedelegate_scenedelegate", + "target": "macmagazine_macmagazine_mainapp_scenedelegate_scenedelegate_windowscene", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/SceneDelegate.swift", + "source_location": "L6", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_scenedelegate_scenedelegate", + "target": "uiresponder", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/SceneDelegate.swift", + "source_location": "L7", + "weight": 1.0, + "context": "field", + "source": "macmagazine_macmagazine_mainapp_scenedelegate_scenedelegate", + "target": "uiwindow", + "confidence_score": 1.0 + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/SceneDelegate.swift", + "source_location": "L6", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_scenedelegate_scenedelegate", + "target": "uiwindowscenedelegate", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/SceneDelegate.swift", + "source_location": "L20", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_scenedelegate_scenedelegate_scene", + "target": "uiwindow", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/SceneDelegate.swift", + "source_location": "L10", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_macmagazine_mainapp_scenedelegate_scenedelegate_scene", + "target": "macmagazine_macmagazine_mainapp_scenedelegate_swift_uiscene", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/SceneDelegate.swift", + "source_location": "L10", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_macmagazine_mainapp_scenedelegate_scenedelegate_scene", + "target": "macmagazine_macmagazine_mainapp_scenedelegate_swift_uiscenesession", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/SceneDelegate.swift", + "source_location": "L36", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_macmagazine_mainapp_scenedelegate_scenedelegate_scenedidbecomeactive", + "target": "macmagazine_macmagazine_mainapp_scenedelegate_swift_uiscene", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/SceneDelegate.swift", + "source_location": "L29", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_macmagazine_mainapp_scenedelegate_scenedelegate_windowscene", + "target": "macmagazine_macmagazine_mainapp_scenedelegate_swift_bool", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/SceneDelegate.swift", + "source_location": "L29", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_macmagazine_mainapp_scenedelegate_scenedelegate_windowscene", + "target": "macmagazine_macmagazine_mainapp_scenedelegate_swift_uiapplicationshortcutitem", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/SceneDelegate.swift", + "source_location": "L29", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_macmagazine_mainapp_scenedelegate_scenedelegate_windowscene", + "target": "macmagazine_macmagazine_mainapp_scenedelegate_swift_void", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/SceneDelegate.swift", + "source_location": "L29", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_macmagazine_mainapp_scenedelegate_scenedelegate_windowscene", + "target": "uiwindowscene", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/Sizecalss/MainView+sidebar.swift", + "source_location": "L171", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_sizecalss_mainview_sidebar", + "target": "macmagazine_macmagazine_mainapp_sizecalss_mainview_sidebar_mainview", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/Sizecalss/MainView+sidebar.swift", + "source_location": "L129", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_sizecalss_mainview_sidebar_mainview", + "target": "macmagazine_macmagazine_mainapp_sizecalss_mainview_sidebar_mainview_animatecontentstackview", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/Sizecalss/MainView+sidebar.swift", + "source_location": "L143", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_sizecalss_mainview_sidebar_mainview", + "target": "macmagazine_macmagazine_mainapp_sizecalss_mainview_sidebar_mainview_contentview", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/Sizecalss/MainView+sidebar.swift", + "source_location": "L206", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_sizecalss_mainview_sidebar_mainview", + "target": "macmagazine_macmagazine_mainapp_sizecalss_mainview_sidebar_mainview_id", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/Sizecalss/MainView+sidebar.swift", + "source_location": "L178", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_sizecalss_mainview_sidebar_mainview", + "target": "macmagazine_macmagazine_mainapp_sizecalss_mainview_sidebar_mainview_navigatebackfromsearch", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/Sizecalss/MainView+sidebar.swift", + "source_location": "L172", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_sizecalss_mainview_sidebar_mainview", + "target": "macmagazine_macmagazine_mainapp_sizecalss_mainview_sidebar_mainview_navigatetosearch", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/Sizecalss/MainView+sidebar.swift", + "source_location": "L98", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_sizecalss_mainview_sidebar_mainview", + "target": "macmagazine_macmagazine_mainapp_sizecalss_mainview_sidebar_mainview_news", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/Sizecalss/MainView+sidebar.swift", + "source_location": "L185", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_sizecalss_mainview_sidebar_mainview", + "target": "macmagazine_macmagazine_mainapp_sizecalss_mainview_sidebar_mainview_process", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/Sizecalss/MainView+sidebar.swift", + "source_location": "L111", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_sizecalss_mainview_sidebar_mainview", + "target": "macmagazine_macmagazine_mainapp_sizecalss_mainview_sidebar_mainview_show", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/Sizecalss/MainView+sidebar.swift", + "source_location": "L85", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_sizecalss_mainview_sidebar_mainview", + "target": "macmagazine_macmagazine_mainapp_sizecalss_mainview_sidebar_mainview_social", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/Sizecalss/MainView+sidebar.swift", + "source_location": "L41", + "weight": 1.0, + "context": "field", + "source": "macmagazine_macmagazine_mainapp_sizecalss_mainview_sidebar_mainview", + "target": "macmagazine_macmagazine_mainapp_sizecalss_mainview_sidebar_swift_view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/Sizecalss/MainView+sidebar.swift", + "source_location": "L129", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_macmagazine_mainapp_sizecalss_mainview_sidebar_mainview_animatecontentstackview", + "target": "macmagazine_macmagazine_mainapp_sizecalss_mainview_sidebar_swift_view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/Sizecalss/MainView+sidebar.swift", + "source_location": "L143", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_macmagazine_mainapp_sizecalss_mainview_sidebar_mainview_contentview", + "target": "macmagazine_macmagazine_mainapp_sizecalss_mainview_sidebar_swift_view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/Sizecalss/MainView+sidebar.swift", + "source_location": "L98", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_macmagazine_mainapp_sizecalss_mainview_sidebar_mainview_news", + "target": "macmagazine_macmagazine_mainapp_sizecalss_mainview_sidebar_swift_view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/Sizecalss/MainView+sidebar.swift", + "source_location": "L111", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_macmagazine_mainapp_sizecalss_mainview_sidebar_mainview_show", + "target": "macmagazine_macmagazine_mainapp_sizecalss_mainview_sidebar_swift_view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/Sizecalss/MainView+sidebar.swift", + "source_location": "L85", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_macmagazine_mainapp_sizecalss_mainview_sidebar_mainview_social", + "target": "macmagazine_macmagazine_mainapp_sizecalss_mainview_sidebar_swift_view", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/Sizecalss/MainView+sidebar.swift", + "source_location": "L88", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_sizecalss_mainview_sidebar_mainview_social", + "target": "macmagazine_macmagazine_mainapp_sizecalss_mainview_sidebar_mainview_show", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/Sizecalss/MainView+sidebar.swift", + "source_location": "L101", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_sizecalss_mainview_sidebar_mainview_news", + "target": "macmagazine_macmagazine_mainapp_sizecalss_mainview_sidebar_mainview_show", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/Sizecalss/MainView+sidebar.swift", + "source_location": "L117", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_sizecalss_mainview_sidebar_mainview_show", + "target": "macmagazine_macmagazine_mainapp_sizecalss_mainview_sidebar_mainview_process", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/Sizecalss/MainView+sidebar.swift", + "source_location": "L111", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_macmagazine_mainapp_sizecalss_mainview_sidebar_mainview_show", + "target": "macmagazine_macmagazine_mainapp_sizecalss_mainview_sidebar_swift_caseiterable", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/Sizecalss/MainView+sidebar.swift", + "source_location": "L111", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_macmagazine_mainapp_sizecalss_mainview_sidebar_mainview_show", + "target": "macmagazine_macmagazine_mainapp_sizecalss_mainview_sidebar_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/Sizecalss/MainView+sidebar.swift", + "source_location": "L129", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_macmagazine_mainapp_sizecalss_mainview_sidebar_mainview_animatecontentstackview", + "target": "macmagazine_macmagazine_mainapp_sizecalss_mainview_sidebar_swift_caseiterable", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/Sizecalss/MainView+sidebar.swift", + "source_location": "L143", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_macmagazine_mainapp_sizecalss_mainview_sidebar_mainview_contentview", + "target": "macmagazine_macmagazine_mainapp_sizecalss_mainview_sidebar_swift_caseiterable", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/Sizecalss/MainView+sidebar.swift", + "source_location": "L206", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_macmagazine_mainapp_sizecalss_mainview_sidebar_mainview_id", + "target": "macmagazine_macmagazine_mainapp_sizecalss_mainview_sidebar_swift_caseiterable", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/Sizecalss/MainView+sidebar.swift", + "source_location": "L185", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_macmagazine_mainapp_sizecalss_mainview_sidebar_mainview_process", + "target": "macmagazine_macmagazine_mainapp_sizecalss_mainview_sidebar_swift_caseiterable", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/Sizecalss/MainView+sidebar.swift", + "source_location": "L206", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_macmagazine_mainapp_sizecalss_mainview_sidebar_mainview_id", + "target": "macmagazine_macmagazine_mainapp_sizecalss_mainview_sidebar_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/Sizecalss/MainView+sidebar.swift", + "source_location": "L138", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_sizecalss_mainview_sidebar_mainview_animatecontentstackview", + "target": "macmagazine_macmagazine_mainapp_sizecalss_mainview_sidebar_mainview_contentview", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/Sizecalss/MainView+tabbar.swift", + "source_location": "L10", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_sizecalss_mainview_tabbar", + "target": "macmagazine_macmagazine_mainapp_sizecalss_mainview_tabbar_mainview", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/Sizecalss/MainView+tabbar.swift", + "source_location": "L43", + "weight": 1.0, + "source": "macmagazine_macmagazine_mainapp_sizecalss_mainview_tabbar_mainview", + "target": "macmagazine_macmagazine_mainapp_sizecalss_mainview_tabbar_mainview_contentview", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/Sizecalss/MainView+tabbar.swift", + "source_location": "L12", + "weight": 1.0, + "context": "field", + "source": "macmagazine_macmagazine_mainapp_sizecalss_mainview_tabbar_mainview", + "target": "macmagazine_macmagazine_mainapp_sizecalss_mainview_tabbar_swift_view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/MainApp/Sizecalss/MainView+tabbar.swift", + "source_location": "L43", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_macmagazine_mainapp_sizecalss_mainview_tabbar_mainview_contentview", + "target": "macmagazine_macmagazine_mainapp_sizecalss_mainview_tabbar_swift_view", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/Modifiers/NavigationModifier.swift", + "source_location": "L16", + "weight": 1.0, + "source": "macmagazine_macmagazine_modifiers_navigationmodifier", + "target": "macmagazine_macmagazine_modifiers_navigationmodifier_navigationmodifier", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/Modifiers/NavigationModifier.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_macmagazine_modifiers_navigationmodifier", + "target": "macmagazine_macmagazine_modifiers_navigationmodifier_view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/Modifiers/NavigationModifier.swift", + "source_location": "L22", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_macmagazine_modifiers_navigationmodifier_navigationmodifier_body", + "target": "macmagazine_macmagazine_modifiers_navigationmodifier_view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/Modifiers/NavigationModifier.swift", + "source_location": "L5", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_macmagazine_modifiers_navigationmodifier_view_navigation", + "target": "macmagazine_macmagazine_modifiers_navigationmodifier_view", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/Modifiers/NavigationModifier.swift", + "source_location": "L9", + "weight": 1.0, + "source": "macmagazine_macmagazine_modifiers_navigationmodifier_view_navigation", + "target": "macmagazine_macmagazine_modifiers_navigationmodifier_navigationmodifier", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/Modifiers/NavigationModifier.swift", + "source_location": "L5", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_macmagazine_modifiers_navigationmodifier_view_navigation", + "target": "macmagazine_macmagazine_modifiers_navigationmodifier_swift_bool", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/Modifiers/NavigationModifier.swift", + "source_location": "L5", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_macmagazine_modifiers_navigationmodifier_view_navigation", + "target": "macmagazine_macmagazine_modifiers_navigationmodifier_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/Modifiers/NavigationModifier.swift", + "source_location": "L17", + "weight": 1.0, + "context": "field", + "source": "macmagazine_macmagazine_modifiers_navigationmodifier_navigationmodifier", + "target": "macmagazine_macmagazine_modifiers_navigationmodifier_swift_bool", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/Modifiers/NavigationModifier.swift", + "source_location": "L18", + "weight": 1.0, + "context": "field", + "source": "macmagazine_macmagazine_modifiers_navigationmodifier_navigationmodifier", + "target": "macmagazine_macmagazine_modifiers_navigationmodifier_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/Modifiers/NavigationModifier.swift", + "source_location": "L22", + "weight": 1.0, + "source": "macmagazine_macmagazine_modifiers_navigationmodifier_navigationmodifier", + "target": "macmagazine_macmagazine_modifiers_navigationmodifier_navigationmodifier_body", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazine/Modifiers/NavigationModifier.swift", + "source_location": "L22", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_macmagazine_modifiers_navigationmodifier_navigationmodifier_body", + "target": "macmagazine_macmagazine_modifiers_navigationmodifier_swift_content", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazineNotificationServiceExtension/NotificationService.swift", + "source_location": "L5", + "weight": 1.0, + "source": "macmagazine_macmagazinenotificationserviceextension_notificationservice", + "target": "macmagazine_macmagazinenotificationserviceextension_notificationservice_notificationservice", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazineNotificationServiceExtension/NotificationService.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_macmagazinenotificationserviceextension_notificationservice", + "target": "onesignalextension", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazineNotificationServiceExtension/NotificationService.swift", + "source_location": "L11", + "weight": 1.0, + "source": "macmagazine_macmagazinenotificationserviceextension_notificationservice_notificationservice", + "target": "macmagazine_macmagazinenotificationserviceextension_notificationservice_notificationservice_didreceive", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazineNotificationServiceExtension/NotificationService.swift", + "source_location": "L24", + "weight": 1.0, + "source": "macmagazine_macmagazinenotificationserviceextension_notificationservice_notificationservice", + "target": "macmagazine_macmagazinenotificationserviceextension_notificationservice_notificationservice_serviceextensiontimewillexpire", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazineNotificationServiceExtension/NotificationService.swift", + "source_location": "L7", + "weight": 1.0, + "context": "field", + "source": "macmagazine_macmagazinenotificationserviceextension_notificationservice_notificationservice", + "target": "macmagazine_macmagazinenotificationserviceextension_notificationservice_swift_void", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazineNotificationServiceExtension/NotificationService.swift", + "source_location": "L9", + "weight": 1.0, + "context": "field", + "source": "macmagazine_macmagazinenotificationserviceextension_notificationservice_notificationservice", + "target": "unmutablenotificationcontent", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazineNotificationServiceExtension/NotificationService.swift", + "source_location": "L7", + "weight": 1.0, + "context": "field", + "source": "macmagazine_macmagazinenotificationserviceextension_notificationservice_notificationservice", + "target": "unnotificationcontent", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazineNotificationServiceExtension/NotificationService.swift", + "source_location": "L8", + "weight": 1.0, + "context": "field", + "source": "macmagazine_macmagazinenotificationserviceextension_notificationservice_notificationservice", + "target": "unnotificationrequest", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazineNotificationServiceExtension/NotificationService.swift", + "source_location": "L5", + "weight": 1.0, + "source": "macmagazine_macmagazinenotificationserviceextension_notificationservice_notificationservice", + "target": "unnotificationserviceextension", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazineNotificationServiceExtension/NotificationService.swift", + "source_location": "L11", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_macmagazinenotificationserviceextension_notificationservice_notificationservice_didreceive", + "target": "unnotificationcontent", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazineNotificationServiceExtension/NotificationService.swift", + "source_location": "L11", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_macmagazinenotificationserviceextension_notificationservice_notificationservice_didreceive", + "target": "macmagazine_macmagazinenotificationserviceextension_notificationservice_swift_void", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/MacMagazineNotificationServiceExtension/NotificationService.swift", + "source_location": "L11", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_macmagazinenotificationserviceextension_notificationservice_notificationservice_didreceive", + "target": "unnotificationrequest", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/Extension/FeedDB.swift", + "source_location": "L34", + "weight": 1.0, + "source": "macmagazine_watchapp_extension_feeddb", + "target": "macmagazine_watchapp_extension_feeddb_feeddb", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/Extension/FeedDB.swift", + "source_location": "L21", + "weight": 1.0, + "context": "field", + "source": "macmagazine_watchapp_extension_feeddb_feeddb", + "target": "macmagazine_watchapp_extension_feeddb_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/Extension/FeedDB.swift", + "source_location": "L27", + "weight": 1.0, + "context": "field", + "source": "macmagazine_watchapp_extension_feeddb_feeddb", + "target": "macmagazine_widget_models_widgetdata_url", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/Helper/FeedDotsIndicatorView.swift", + "source_location": "L5", + "weight": 1.0, + "source": "macmagazine_watchapp_helper_feeddotsindicatorview", + "target": "macmagazine_watchapp_helper_feeddotsindicatorview_feeddotsindicatorview", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/Helper/FeedDotsIndicatorView.swift", + "source_location": "L28", + "weight": 1.0, + "source": "macmagazine_watchapp_helper_feeddotsindicatorview_feeddotsindicatorview", + "target": "macmagazine_watchapp_helper_feeddotsindicatorview_feeddotsindicatorview_dotcolor", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/Helper/FeedDotsIndicatorView.swift", + "source_location": "L32", + "weight": 1.0, + "source": "macmagazine_watchapp_helper_feeddotsindicatorview_feeddotsindicatorview", + "target": "macmagazine_watchapp_helper_feeddotsindicatorview_feeddotsindicatorview_dotsize", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/Helper/FeedDotsIndicatorView.swift", + "source_location": "L7", + "weight": 1.0, + "context": "field", + "source": "macmagazine_watchapp_helper_feeddotsindicatorview_feeddotsindicatorview", + "target": "macmagazine_watchapp_helper_feeddotsindicatorview_swift_int", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/WatchApp/Views/FeedMainView.swift", + "source_location": "L215", + "weight": 1.0, + "source": "macmagazine_watchapp_views_feedmainview_feedmainview_carouselrowscreen", + "target": "macmagazine_watchapp_helper_feeddotsindicatorview_feeddotsindicatorview" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/Helper/FeedDotsIndicatorView.swift", + "source_location": "L28", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_watchapp_helper_feeddotsindicatorview_feeddotsindicatorview_dotcolor", + "target": "macmagazine_watchapp_helper_feeddotsindicatorview_swift_int", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/Helper/FeedDotsIndicatorView.swift", + "source_location": "L32", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_watchapp_helper_feeddotsindicatorview_feeddotsindicatorview_dotsize", + "target": "macmagazine_watchapp_helper_feeddotsindicatorview_swift_int", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/Helper/FeedDotsIndicatorView.swift", + "source_location": "L28", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_watchapp_helper_feeddotsindicatorview_feeddotsindicatorview_dotcolor", + "target": "macmagazine_watchapp_helper_feeddotsindicatorview_swift_color", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/Helper/FeedDotsIndicatorView.swift", + "source_location": "L32", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_watchapp_helper_feeddotsindicatorview_feeddotsindicatorview_dotsize", + "target": "macmagazine_watchapp_helper_feeddotsindicatorview_swift_cgfloat", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/MainApp/WatchApp.swift", + "source_location": "L7", + "weight": 1.0, + "source": "macmagazine_watchapp_mainapp_watchapp", + "target": "macmagazine_watchapp_mainapp_watchapp_watchapp", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/MainApp/WatchApp.swift", + "source_location": "L5", + "weight": 1.0, + "source": "macmagazine_watchapp_mainapp_watchapp", + "target": "watchkit", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/MainApp/WatchNotificationsDelegate.swift", + "source_location": "L5", + "weight": 1.0, + "source": "macmagazine_watchapp_mainapp_watchnotificationsdelegate", + "target": "watchkit", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/ViewModel/FeedMainViewModel.swift", + "source_location": "L5", + "weight": 1.0, + "source": "macmagazine_watchapp_viewmodel_feedmainviewmodel", + "target": "watchkit", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/ViewModel/FeedScrollPositionKey.swift", + "source_location": "L2", + "weight": 1.0, + "source": "macmagazine_watchapp_viewmodel_feedscrollpositionkey", + "target": "watchkit", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/Views/FeedMainView.swift", + "source_location": "L5", + "weight": 1.0, + "source": "macmagazine_watchapp_views_feedmainview", + "target": "watchkit", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/MainApp/WatchApp.swift", + "source_location": "L10", + "weight": 1.0, + "context": "field", + "source": "macmagazine_watchapp_mainapp_watchapp_watchapp", + "target": "macmagazine_watchapp_mainapp_watchapp_swift_database", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/MainApp/WatchApp.swift", + "source_location": "L11", + "weight": 1.0, + "context": "field", + "source": "macmagazine_watchapp_mainapp_watchapp_watchapp", + "target": "macmagazine_watchapp_mainapp_watchapp_swift_feedmainviewmodel", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/MainApp/WatchApp.swift", + "source_location": "L25", + "weight": 1.0, + "context": "field", + "source": "macmagazine_watchapp_mainapp_watchapp_watchapp", + "target": "macmagazine_watchapp_mainapp_watchapp_swift_scene", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/MainApp/WatchApp.swift", + "source_location": "L16", + "weight": 1.0, + "source": "macmagazine_watchapp_mainapp_watchapp_watchapp", + "target": "macmagazine_watchapp_mainapp_watchapp_watchapp_init", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/MainApp/WatchApp.swift", + "source_location": "L17", + "weight": 1.0, + "source": "macmagazine_watchapp_mainapp_watchapp_watchapp_init", + "target": "macmagazine_watchapp_mainapp_watchapp_swift_database", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/MainApp/WatchApp.swift", + "source_location": "L19", + "weight": 1.0, + "source": "macmagazine_watchapp_mainapp_watchapp_watchapp_init", + "target": "macmagazine_watchapp_mainapp_watchapp_swift_feedmainviewmodel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/MainApp/WatchNotificationsDelegate.swift", + "source_location": "L35", + "weight": 1.0, + "source": "macmagazine_watchapp_mainapp_watchnotificationsdelegate", + "target": "macmagazine_watchapp_mainapp_watchnotificationsdelegate_watchnotificationsdelegate", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/MainApp/WatchNotificationsDelegate.swift", + "source_location": "L10", + "weight": 1.0, + "context": "field", + "source": "macmagazine_watchapp_mainapp_watchnotificationsdelegate_watchnotificationsdelegate", + "target": "macmagazine_watchapp_mainapp_watchnotificationsdelegate_swift_feedmainviewmodel", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/MainApp/WatchNotificationsDelegate.swift", + "source_location": "L13", + "weight": 1.0, + "context": "field", + "source": "macmagazine_watchapp_mainapp_watchnotificationsdelegate_watchnotificationsdelegate", + "target": "macmagazine_watchapp_mainapp_watchnotificationsdelegate_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/MainApp/WatchNotificationsDelegate.swift", + "source_location": "L15", + "weight": 1.0, + "source": "macmagazine_watchapp_mainapp_watchnotificationsdelegate_watchnotificationsdelegate", + "target": "macmagazine_watchapp_mainapp_watchnotificationsdelegate_watchnotificationsdelegate_applicationdidfinishlaunching", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/MainApp/WatchNotificationsDelegate.swift", + "source_location": "L62", + "weight": 1.0, + "source": "macmagazine_watchapp_mainapp_watchnotificationsdelegate_watchnotificationsdelegate", + "target": "macmagazine_watchapp_mainapp_watchnotificationsdelegate_watchnotificationsdelegate_deliverpendinglink", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/MainApp/WatchNotificationsDelegate.swift", + "source_location": "L29", + "weight": 1.0, + "source": "macmagazine_watchapp_mainapp_watchnotificationsdelegate_watchnotificationsdelegate", + "target": "macmagazine_watchapp_mainapp_watchnotificationsdelegate_watchnotificationsdelegate_didregisterforremotenotifications", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/MainApp/WatchNotificationsDelegate.swift", + "source_location": "L44", + "weight": 1.0, + "source": "macmagazine_watchapp_mainapp_watchnotificationsdelegate_watchnotificationsdelegate", + "target": "macmagazine_watchapp_mainapp_watchnotificationsdelegate_watchnotificationsdelegate_handlepush", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/MainApp/WatchNotificationsDelegate.swift", + "source_location": "L36", + "weight": 1.0, + "source": "macmagazine_watchapp_mainapp_watchnotificationsdelegate_watchnotificationsdelegate", + "target": "macmagazine_watchapp_mainapp_watchnotificationsdelegate_watchnotificationsdelegate_usernotificationcenter", + "confidence_score": 1.0 + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/MainApp/WatchNotificationsDelegate.swift", + "source_location": "L8", + "weight": 1.0, + "source": "macmagazine_watchapp_mainapp_watchnotificationsdelegate_watchnotificationsdelegate", + "target": "wkapplicationdelegate", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/MainApp/WatchNotificationsDelegate.swift", + "source_location": "L29", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_watchapp_mainapp_watchnotificationsdelegate_watchnotificationsdelegate_didregisterforremotenotifications", + "target": "macmagazine_watchapp_mainapp_watchnotificationsdelegate_swift_data", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/MainApp/WatchNotificationsDelegate.swift", + "source_location": "L36", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_watchapp_mainapp_watchnotificationsdelegate_watchnotificationsdelegate_usernotificationcenter", + "target": "macmagazine_watchapp_mainapp_watchnotificationsdelegate_swift_unnotificationresponse", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/MainApp/WatchNotificationsDelegate.swift", + "source_location": "L36", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_watchapp_mainapp_watchnotificationsdelegate_watchnotificationsdelegate_usernotificationcenter", + "target": "macmagazine_watchapp_mainapp_watchnotificationsdelegate_swift_unusernotificationcenter", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/MainApp/WatchNotificationsDelegate.swift", + "source_location": "L41", + "weight": 1.0, + "source": "macmagazine_watchapp_mainapp_watchnotificationsdelegate_watchnotificationsdelegate_usernotificationcenter", + "target": "macmagazine_watchapp_mainapp_watchnotificationsdelegate_watchnotificationsdelegate_handlepush", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/MainApp/WatchNotificationsDelegate.swift", + "source_location": "L44", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_watchapp_mainapp_watchnotificationsdelegate_watchnotificationsdelegate_handlepush", + "target": "macmagazine_watchapp_mainapp_watchnotificationsdelegate_swift_any", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/MainApp/WatchNotificationsDelegate.swift", + "source_location": "L44", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_watchapp_mainapp_watchnotificationsdelegate_watchnotificationsdelegate_handlepush", + "target": "macmagazine_watchapp_mainapp_watchnotificationsdelegate_swift_anyhashable", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/ViewModel/FeedMainViewModel.swift", + "source_location": "L113", + "weight": 1.0, + "source": "macmagazine_watchapp_viewmodel_feedmainviewmodel", + "target": "macmagazine_watchapp_viewmodel_feedmainviewmodel_feedmainviewmodel", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/ViewModel/FeedMainViewModel.swift", + "source_location": "L71", + "weight": 1.0, + "source": "macmagazine_watchapp_viewmodel_feedmainviewmodel_feedmainviewmodel", + "target": "macmagazine_watchapp_viewmodel_feedmainviewmodel_feedmainviewmodel_clampindex", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/ViewModel/FeedMainViewModel.swift", + "source_location": "L50", + "weight": 1.0, + "source": "macmagazine_watchapp_viewmodel_feedmainviewmodel_feedmainviewmodel", + "target": "macmagazine_watchapp_viewmodel_feedmainviewmodel_feedmainviewmodel_computeselectedindexbymidy", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/ViewModel/FeedMainViewModel.swift", + "source_location": "L28", + "weight": 1.0, + "source": "macmagazine_watchapp_viewmodel_feedmainviewmodel_feedmainviewmodel", + "target": "macmagazine_watchapp_viewmodel_feedmainviewmodel_feedmainviewmodel_init", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/ViewModel/FeedMainViewModel.swift", + "source_location": "L88", + "weight": 1.0, + "source": "macmagazine_watchapp_viewmodel_feedmainviewmodel_feedmainviewmodel", + "target": "macmagazine_watchapp_viewmodel_feedmainviewmodel_feedmainviewmodel_openpost", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/ViewModel/FeedMainViewModel.swift", + "source_location": "L35", + "weight": 1.0, + "source": "macmagazine_watchapp_viewmodel_feedmainviewmodel_feedmainviewmodel", + "target": "macmagazine_watchapp_viewmodel_feedmainviewmodel_feedmainviewmodel_refresh", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/ViewModel/FeedMainViewModel.swift", + "source_location": "L102", + "weight": 1.0, + "source": "macmagazine_watchapp_viewmodel_feedmainviewmodel_feedmainviewmodel", + "target": "macmagazine_watchapp_viewmodel_feedmainviewmodel_feedmainviewmodel_resolvependingdeeplinks", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/ViewModel/FeedMainViewModel.swift", + "source_location": "L114", + "weight": 1.0, + "source": "macmagazine_watchapp_viewmodel_feedmainviewmodel_feedmainviewmodel", + "target": "macmagazine_watchapp_viewmodel_feedmainviewmodel_feedmainviewmodel_setstatusforpreview", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/ViewModel/FeedMainViewModel.swift", + "source_location": "L18", + "weight": 1.0, + "context": "field", + "source": "macmagazine_watchapp_viewmodel_feedmainviewmodel_feedmainviewmodel", + "target": "macmagazine_watchapp_viewmodel_feedmainviewmodel_swift_bool", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/ViewModel/FeedMainViewModel.swift", + "source_location": "L17", + "weight": 1.0, + "context": "field", + "source": "macmagazine_watchapp_viewmodel_feedmainviewmodel_feedmainviewmodel", + "target": "macmagazine_watchapp_viewmodel_feedmainviewmodel_swift_feeddb", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/ViewModel/FeedMainViewModel.swift", + "source_location": "L15", + "weight": 1.0, + "context": "field", + "source": "macmagazine_watchapp_viewmodel_feedmainviewmodel_feedmainviewmodel", + "target": "macmagazine_watchapp_viewmodel_feedmainviewmodel_swift_int", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/ViewModel/FeedMainViewModel.swift", + "source_location": "L24", + "weight": 1.0, + "context": "field", + "source": "macmagazine_watchapp_viewmodel_feedmainviewmodel_feedmainviewmodel", + "target": "macmagazine_watchapp_viewmodel_feedmainviewmodel_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/ViewModel/FeedMainViewModel.swift", + "source_location": "L71", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_watchapp_viewmodel_feedmainviewmodel_feedmainviewmodel_clampindex", + "target": "macmagazine_watchapp_viewmodel_feedmainviewmodel_swift_int", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/ViewModel/FeedMainViewModel.swift", + "source_location": "L50", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_watchapp_viewmodel_feedmainviewmodel_feedmainviewmodel_computeselectedindexbymidy", + "target": "macmagazine_watchapp_viewmodel_feedmainviewmodel_swift_int", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/ViewModel/FeedMainViewModel.swift", + "source_location": "L50", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_watchapp_viewmodel_feedmainviewmodel_feedmainviewmodel_computeselectedindexbymidy", + "target": "macmagazine_watchapp_viewmodel_feedmainviewmodel_swift_feeddb", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/ViewModel/FeedMainViewModel.swift", + "source_location": "L50", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_watchapp_viewmodel_feedmainviewmodel_feedmainviewmodel_computeselectedindexbymidy", + "target": "macmagazine_watchapp_viewmodel_feedmainviewmodel_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/ViewModel/FeedMainViewModel.swift", + "source_location": "L88", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_watchapp_viewmodel_feedmainviewmodel_feedmainviewmodel_openpost", + "target": "macmagazine_watchapp_viewmodel_feedmainviewmodel_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/ViewModel/FeedMainViewModel.swift", + "source_location": "L43", + "weight": 1.0, + "source": "macmagazine_watchapp_viewmodel_feedmainviewmodel_feedmainviewmodel_refresh", + "target": "macmagazine_watchapp_viewmodel_feedmainviewmodel_feedmainviewmodel_resolvependingdeeplinks", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/ViewModel/FeedMainViewModel.swift", + "source_location": "L35", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_watchapp_viewmodel_feedmainviewmodel_feedmainviewmodel_refresh", + "target": "macmagazine_watchapp_viewmodel_feedmainviewmodel_swift_modelcontext", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/ViewModel/FeedMainViewModel.swift", + "source_location": "L88", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_watchapp_viewmodel_feedmainviewmodel_feedmainviewmodel_openpost", + "target": "macmagazine_watchapp_viewmodel_feedmainviewmodel_swift_modelcontext", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/ViewModel/FeedMainViewModel.swift", + "source_location": "L102", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_watchapp_viewmodel_feedmainviewmodel_feedmainviewmodel_resolvependingdeeplinks", + "target": "macmagazine_watchapp_viewmodel_feedmainviewmodel_swift_modelcontext", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/ViewModel/FeedMainViewModel.swift", + "source_location": "L50", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_watchapp_viewmodel_feedmainviewmodel_feedmainviewmodel_computeselectedindexbymidy", + "target": "macmagazine_watchapp_viewmodel_feedmainviewmodel_swift_cgpoint", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/ViewModel/FeedMainViewModel.swift", + "source_location": "L104", + "weight": 1.0, + "source": "macmagazine_watchapp_viewmodel_feedmainviewmodel_feedmainviewmodel_resolvependingdeeplinks", + "target": "macmagazine_watchapp_viewmodel_feedmainviewmodel_feedmainviewmodel_openpost", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/ViewModel/FeedScrollPositionKey.swift", + "source_location": "L12", + "weight": 1.0, + "source": "macmagazine_watchapp_viewmodel_feedscrollpositionkey", + "target": "macmagazine_watchapp_viewmodel_feedscrollpositionkey_feedrowpositionreporter", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/ViewModel/FeedScrollPositionKey.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_watchapp_viewmodel_feedscrollpositionkey", + "target": "macmagazine_watchapp_viewmodel_feedscrollpositionkey_feedscrollpositionkey", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/ViewModel/FeedScrollPositionKey.swift", + "source_location": "L32", + "weight": 1.0, + "source": "macmagazine_watchapp_viewmodel_feedscrollpositionkey", + "target": "macmagazine_watchapp_viewmodel_feedscrollpositionkey_view", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/ViewModel/FeedScrollPositionKey.swift", + "source_location": "L7", + "weight": 1.0, + "source": "macmagazine_watchapp_viewmodel_feedscrollpositionkey_feedscrollpositionkey", + "target": "macmagazine_watchapp_viewmodel_feedscrollpositionkey_feedscrollpositionkey_reduce", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/ViewModel/FeedScrollPositionKey.swift", + "source_location": "L5", + "weight": 1.0, + "context": "field", + "source": "macmagazine_watchapp_viewmodel_feedscrollpositionkey_feedscrollpositionkey", + "target": "macmagazine_watchapp_viewmodel_feedscrollpositionkey_swift_cgpoint", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/ViewModel/FeedScrollPositionKey.swift", + "source_location": "L5", + "weight": 1.0, + "context": "field", + "source": "macmagazine_watchapp_viewmodel_feedscrollpositionkey_feedscrollpositionkey", + "target": "macmagazine_watchapp_viewmodel_feedscrollpositionkey_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/ViewModel/FeedScrollPositionKey.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_watchapp_viewmodel_feedscrollpositionkey_feedscrollpositionkey", + "target": "preferencekey", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/ViewModel/FeedScrollPositionKey.swift", + "source_location": "L13", + "weight": 1.0, + "context": "field", + "source": "macmagazine_watchapp_viewmodel_feedscrollpositionkey_feedrowpositionreporter", + "target": "macmagazine_watchapp_viewmodel_feedscrollpositionkey_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/ViewModel/FeedScrollPositionKey.swift", + "source_location": "L7", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_watchapp_viewmodel_feedscrollpositionkey_feedscrollpositionkey_reduce", + "target": "macmagazine_watchapp_viewmodel_feedscrollpositionkey_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/ViewModel/FeedScrollPositionKey.swift", + "source_location": "L33", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_watchapp_viewmodel_feedscrollpositionkey_view_reportfeedrowposition", + "target": "macmagazine_watchapp_viewmodel_feedscrollpositionkey_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/ViewModel/FeedScrollPositionKey.swift", + "source_location": "L20", + "weight": 1.0, + "source": "macmagazine_watchapp_viewmodel_feedscrollpositionkey_feedrowpositionreporter_body", + "target": "macmagazine_watchapp_viewmodel_feedscrollpositionkey_swift_cgpoint", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/ViewModel/FeedScrollPositionKey.swift", + "source_location": "L7", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_watchapp_viewmodel_feedscrollpositionkey_feedscrollpositionkey_reduce", + "target": "macmagazine_watchapp_viewmodel_feedscrollpositionkey_swift_cgpoint", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/ViewModel/FeedScrollPositionKey.swift", + "source_location": "L15", + "weight": 1.0, + "source": "macmagazine_watchapp_viewmodel_feedscrollpositionkey_feedrowpositionreporter", + "target": "macmagazine_watchapp_viewmodel_feedscrollpositionkey_feedrowpositionreporter_body", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/ViewModel/FeedScrollPositionKey.swift", + "source_location": "L34", + "weight": 1.0, + "source": "macmagazine_watchapp_viewmodel_feedscrollpositionkey_view_reportfeedrowposition", + "target": "macmagazine_watchapp_viewmodel_feedscrollpositionkey_feedrowpositionreporter", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/ViewModel/FeedScrollPositionKey.swift", + "source_location": "L15", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_watchapp_viewmodel_feedscrollpositionkey_feedrowpositionreporter_body", + "target": "macmagazine_watchapp_viewmodel_feedscrollpositionkey_swift_content", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/ViewModel/FeedScrollPositionKey.swift", + "source_location": "L15", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_watchapp_viewmodel_feedscrollpositionkey_feedrowpositionreporter_body", + "target": "macmagazine_watchapp_viewmodel_feedscrollpositionkey_swift_view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/ViewModel/FeedScrollPositionKey.swift", + "source_location": "L33", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_watchapp_viewmodel_feedscrollpositionkey_view_reportfeedrowposition", + "target": "macmagazine_watchapp_viewmodel_feedscrollpositionkey_view", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/Views/FeedDetailView.swift", + "source_location": "L5", + "weight": 1.0, + "source": "macmagazine_watchapp_views_feeddetailview", + "target": "macmagazine_watchapp_views_feeddetailview_feeddetailview", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/Views/FeedDetailView.swift", + "source_location": "L17", + "weight": 1.0, + "source": "macmagazine_watchapp_views_feeddetailview_feeddetailview", + "target": "macmagazine_watchapp_views_feeddetailview_feeddetailview_init", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/Views/FeedDetailView.swift", + "source_location": "L11", + "weight": 1.0, + "context": "field", + "source": "macmagazine_watchapp_views_feeddetailview_feeddetailview", + "target": "macmagazine_watchapp_views_feeddetailview_swift_feeddb", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/Views/FeedDetailView.swift", + "source_location": "L13", + "weight": 1.0, + "context": "field", + "source": "macmagazine_watchapp_views_feeddetailview_feeddetailview", + "target": "macmagazine_watchapp_views_feeddetailview_swift_feedmainviewmodel", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/Views/FeedDetailView.swift", + "source_location": "L17", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_watchapp_views_feeddetailview_feeddetailview_init", + "target": "macmagazine_watchapp_views_feeddetailview_swift_feeddb", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/Views/FeedDetailView.swift", + "source_location": "L17", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_watchapp_views_feeddetailview_feeddetailview_init", + "target": "macmagazine_watchapp_views_feeddetailview_swift_feedmainviewmodel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/Views/FeedMainView.swift", + "source_location": "L7", + "weight": 1.0, + "source": "macmagazine_watchapp_views_feedmainview", + "target": "macmagazine_watchapp_views_feedmainview_feedmainview", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/Views/FeedMainView.swift", + "source_location": "L275", + "weight": 1.0, + "source": "macmagazine_watchapp_views_feedmainview", + "target": "macmagazine_watchapp_views_feedmainview_feedmainviewmodel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/Views/FeedMainView.swift", + "source_location": "L287", + "weight": 1.0, + "source": "macmagazine_watchapp_views_feedmainview", + "target": "macmagazine_watchapp_views_feedmainview_feedpreviewhost", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/Views/FeedMainView.swift", + "source_location": "L185", + "weight": 1.0, + "source": "macmagazine_watchapp_views_feedmainview_feedmainview", + "target": "macmagazine_watchapp_views_feedmainview_feedmainview_carouselrowscreen", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/Views/FeedMainView.swift", + "source_location": "L237", + "weight": 1.0, + "source": "macmagazine_watchapp_views_feedmainview_feedmainview", + "target": "macmagazine_watchapp_views_feedmainview_feedmainview_contextmenusheet", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/Views/FeedMainView.swift", + "source_location": "L265", + "weight": 1.0, + "source": "macmagazine_watchapp_views_feedmainview_feedmainview", + "target": "macmagazine_watchapp_views_feedmainview_feedmainview_currentpost", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/Views/FeedMainView.swift", + "source_location": "L114", + "weight": 1.0, + "source": "macmagazine_watchapp_views_feedmainview_feedmainview", + "target": "macmagazine_watchapp_views_feedmainview_feedmainview_errorscreen", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/Views/FeedMainView.swift", + "source_location": "L21", + "weight": 1.0, + "source": "macmagazine_watchapp_views_feedmainview_feedmainview", + "target": "macmagazine_watchapp_views_feedmainview_feedmainview_init", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/Views/FeedMainView.swift", + "source_location": "L91", + "weight": 1.0, + "source": "macmagazine_watchapp_views_feedmainview_feedmainview", + "target": "macmagazine_watchapp_views_feedmainview_feedmainview_navigationtitle", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/Views/FeedMainView.swift", + "source_location": "L142", + "weight": 1.0, + "source": "macmagazine_watchapp_views_feedmainview_feedmainview", + "target": "macmagazine_watchapp_views_feedmainview_feedmainview_statusscreen", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/Views/FeedMainView.swift", + "source_location": "L13", + "weight": 1.0, + "context": "field", + "source": "macmagazine_watchapp_views_feedmainview_feedmainview", + "target": "macmagazine_watchapp_views_feedmainview_swift_feeddb", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/Views/FeedMainView.swift", + "source_location": "L19", + "weight": 1.0, + "context": "field", + "source": "macmagazine_watchapp_views_feedmainview_feedmainview", + "target": "macmagazine_watchapp_views_feedmainview_swift_feedmainviewmodel", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/Views/FeedMainView.swift", + "source_location": "L185", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_watchapp_views_feedmainview_feedmainview_carouselrowscreen", + "target": "macmagazine_watchapp_views_feedmainview_swift_feeddb", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/Views/FeedMainView.swift", + "source_location": "L237", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_watchapp_views_feedmainview_feedmainview_contextmenusheet", + "target": "macmagazine_watchapp_views_feedmainview_swift_feeddb", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/Views/FeedMainView.swift", + "source_location": "L265", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_watchapp_views_feedmainview_feedmainview_currentpost", + "target": "macmagazine_watchapp_views_feedmainview_swift_feeddb", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/Views/FeedMainView.swift", + "source_location": "L21", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_watchapp_views_feedmainview_feedmainview_init", + "target": "macmagazine_watchapp_views_feedmainview_swift_feedmainviewmodel", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/Views/FeedMainView.swift", + "source_location": "L91", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_watchapp_views_feedmainview_feedmainview_navigationtitle", + "target": "macmagazine_watchapp_views_feedmainview_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/Views/FeedMainView.swift", + "source_location": "L114", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_watchapp_views_feedmainview_feedmainview_errorscreen", + "target": "macmagazine_watchapp_views_feedmainview_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/Views/FeedMainView.swift", + "source_location": "L142", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_watchapp_views_feedmainview_feedmainview_statusscreen", + "target": "macmagazine_watchapp_views_feedmainview_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/Views/FeedMainView.swift", + "source_location": "L115", + "weight": 1.0, + "source": "macmagazine_watchapp_views_feedmainview_feedmainview_errorscreen", + "target": "macmagazine_watchapp_views_feedmainview_feedmainview_statusscreen", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/Views/FeedMainView.swift", + "source_location": "L142", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_watchapp_views_feedmainview_feedmainview_statusscreen", + "target": "macmagazine_watchapp_views_feedmainview_swift_void", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/Views/FeedMainView.swift", + "source_location": "L229", + "weight": 1.0, + "source": "macmagazine_watchapp_views_feedmainview_feedmainview_carouselrowscreen", + "target": "macmagazine_watchapp_views_feedmainview_feedmainview_contextmenusheet", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/WatchApp/Views/FeedMainView.swift", + "source_location": "L192", + "weight": 1.0, + "source": "macmagazine_watchapp_views_feedmainview_feedmainview_carouselrowscreen", + "target": "macmagazine_watchapp_views_row_feedrowview_feedrowview" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/Views/FeedMainView.swift", + "source_location": "L276", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_watchapp_views_feedmainview_feedmainviewmodel_preview", + "target": "macmagazine_watchapp_views_feedmainview_feedmainviewmodel", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/Views/FeedMainView.swift", + "source_location": "L289", + "weight": 1.0, + "context": "field", + "source": "macmagazine_watchapp_views_feedmainview_feedpreviewhost", + "target": "macmagazine_watchapp_views_feedmainview_feedmainviewmodel", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/Views/FeedMainView.swift", + "source_location": "L291", + "weight": 1.0, + "source": "macmagazine_watchapp_views_feedmainview_feedpreviewhost", + "target": "macmagazine_watchapp_views_feedmainview_feedpreviewhost_init", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/Views/FeedMainView.swift", + "source_location": "L288", + "weight": 1.0, + "context": "field", + "source": "macmagazine_watchapp_views_feedmainview_feedpreviewhost", + "target": "modelcontainer", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/Views/FeedMainView.swift", + "source_location": "L299", + "weight": 1.0, + "source": "macmagazine_watchapp_views_feedmainview_feedpreviewhost_init", + "target": "modelcontainer", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/Views/FeedMainView.swift", + "source_location": "L291", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_watchapp_views_feedmainview_feedpreviewhost_init", + "target": "macmagazine_watchapp_views_feedmainview_swift_bool", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/Views/Row/FeedRowView.swift", + "source_location": "L6", + "weight": 1.0, + "source": "macmagazine_watchapp_views_row_feedrowview", + "target": "macmagazine_watchapp_views_row_feedrowview_feedrowview", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/Views/Row/FeedRowView.swift", + "source_location": "L20", + "weight": 1.0, + "source": "macmagazine_watchapp_views_row_feedrowview_feedrowview", + "target": "macmagazine_watchapp_views_row_feedrowview_feedrowview_background", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/Views/Row/FeedRowView.swift", + "source_location": "L7", + "weight": 1.0, + "context": "field", + "source": "macmagazine_watchapp_views_row_feedrowview_feedrowview", + "target": "macmagazine_watchapp_views_row_feedrowview_swift_feeddb", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchApp/Views/Row/FeedRowView.swift", + "source_location": "L20", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_watchapp_views_row_feedrowview_feedrowview_background", + "target": "cgsize", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchWidget/Extensions/WidgetAccessibility+View.swift", + "source_location": "L11", + "weight": 1.0, + "source": "macmagazine_watchwidget_extensions_widgetaccessibility_view", + "target": "macmagazine_watchwidget_extensions_widgetaccessibility_view_view", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchWidget/Extensions/WidgetAccessibility+View.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_watchwidget_extensions_widgetaccessibility_view", + "target": "macmagazine_watchwidget_extensions_widgetaccessibility_view_widgetaccessibility", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchWidget/Extensions/WidgetAccessibility+View.swift", + "source_location": "L13", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_watchwidget_extensions_widgetaccessibility_view_view_widgetaccessibility", + "target": "macmagazine_watchwidget_extensions_widgetaccessibility_view_view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchWidget/Extensions/WidgetAccessibility+View.swift", + "source_location": "L37", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_watchwidget_extensions_widgetaccessibility_view_view_widgetcircularaccessibility", + "target": "macmagazine_watchwidget_extensions_widgetaccessibility_view_view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchWidget/Extensions/WidgetAccessibility+View.swift", + "source_location": "L50", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_watchwidget_extensions_widgetaccessibility_view_view_widgetrectangularaccessibility", + "target": "macmagazine_watchwidget_extensions_widgetaccessibility_view_view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchWidget/Extensions/WidgetAccessibility+View.swift", + "source_location": "L13", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_watchwidget_extensions_widgetaccessibility_view_view_widgetaccessibility", + "target": "macmagazine_watchwidget_extensions_widgetaccessibility_view_swift_accessibilitychildbehavior", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchWidget/Extensions/WidgetAccessibility+View.swift", + "source_location": "L13", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_watchwidget_extensions_widgetaccessibility_view_view_widgetaccessibility", + "target": "macmagazine_watchwidget_extensions_widgetaccessibility_view_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchWidget/Extensions/WidgetAccessibility+View.swift", + "source_location": "L13", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_watchwidget_extensions_widgetaccessibility_view_view_widgetaccessibility", + "target": "macmagazine_widget_models_widgetdata_url", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchWidget/Extensions/WidgetAccessibility+View.swift", + "source_location": "L50", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_watchwidget_extensions_widgetaccessibility_view_view_widgetrectangularaccessibility", + "target": "macmagazine_watchwidget_extensions_widgetaccessibility_view_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchWidget/Extensions/WidgetAccessibility+View.swift", + "source_location": "L37", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_watchwidget_extensions_widgetaccessibility_view_view_widgetcircularaccessibility", + "target": "macmagazine_widget_models_widgetdata_url", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchWidget/Extensions/WidgetAccessibility+View.swift", + "source_location": "L50", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_watchwidget_extensions_widgetaccessibility_view_view_widgetrectangularaccessibility", + "target": "macmagazine_widget_models_widgetdata_url", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchWidget/Model/WidgetEntry.swift", + "source_location": "L26", + "weight": 1.0, + "source": "macmagazine_watchwidget_model_widgetentry", + "target": "macmagazine_watchwidget_model_widgetentry_widgetdata", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchWidget/Model/WidgetEntry.swift", + "source_location": "L5", + "weight": 1.0, + "source": "macmagazine_watchwidget_model_widgetentry", + "target": "macmagazine_watchwidget_model_widgetentry_widgetentry", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchWidget/Model/WidgetEntry.swift", + "source_location": "L7", + "weight": 1.0, + "context": "field", + "source": "macmagazine_watchwidget_model_widgetentry_widgetentry", + "target": "macmagazine_watchwidget_model_widgetentry_swift_widgetdata", + "confidence_score": 1.0 + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchWidget/Model/WidgetEntry.swift", + "source_location": "L5", + "weight": 1.0, + "source": "macmagazine_watchwidget_model_widgetentry_widgetentry", + "target": "timelineentry", + "confidence_score": 1.0 + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/Timeline/WidgetEntry.swift", + "source_location": "L5", + "weight": 1.0, + "source": "macmagazine_widget_timeline_widgetentry_widgetentry", + "target": "timelineentry", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchWidget/Model/WidgetEntry.swift", + "source_location": "L11", + "weight": 1.0, + "source": "macmagazine_watchwidget_model_widgetentry_widgetdata", + "target": "macmagazine_watchwidget_model_widgetentry_widgetdata_init", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchWidget/Model/WidgetEntry.swift", + "source_location": "L11", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_watchwidget_model_widgetentry_widgetdata_init", + "target": "macmagazine_watchwidget_model_widgetentry_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchWidget/Views/WatchWidgetEntryView.swift", + "source_location": "L37", + "weight": 1.0, + "source": "macmagazine_watchwidget_views_watchwidgetentryview", + "target": "macmagazine_watchwidget_views_watchwidgetentryview_watchwidgetentryview", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchWidget/Views/WatchWidgetEntryView.swift", + "source_location": "L11", + "weight": 1.0, + "context": "field", + "source": "macmagazine_watchwidget_views_watchwidgetentryview_watchwidgetentryview", + "target": "macmagazine_watchwidget_views_watchwidgetentryview_swift_widgetentry", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchWidget/Views/WatchWidgetEntryView.swift", + "source_location": "L121", + "weight": 1.0, + "source": "macmagazine_watchwidget_views_watchwidgetentryview_watchwidgetentryview", + "target": "macmagazine_watchwidget_views_watchwidgetentryview_watchwidgetentryview_accessibilityvalueforrectangular", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchWidget/Views/WatchWidgetEntryView.swift", + "source_location": "L113", + "weight": 1.0, + "source": "macmagazine_watchwidget_views_watchwidgetentryview_watchwidgetentryview", + "target": "macmagazine_watchwidget_views_watchwidgetentryview_watchwidgetentryview_widgetposturl", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchWidget/Views/WatchWidgetEntryView.swift", + "source_location": "L113", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_watchwidget_views_watchwidgetentryview_watchwidgetentryview_widgetposturl", + "target": "macmagazine_widget_models_widgetdata_url", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchWidget/Views/WatchWidgetEntryView.swift", + "source_location": "L121", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_watchwidget_views_watchwidgetentryview_watchwidgetentryview_accessibilityvalueforrectangular", + "target": "macmagazine_watchwidget_views_watchwidgetentryview_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchWidget/Widget/WatchWidget.swift", + "source_location": "L5", + "weight": 1.0, + "source": "macmagazine_watchwidget_widget_watchwidget", + "target": "macmagazine_watchwidget_widget_watchwidget_watchwidget", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchWidget/Widget/WatchWidget.swift", + "source_location": "L6", + "weight": 1.0, + "context": "field", + "source": "macmagazine_watchwidget_widget_watchwidget_watchwidget", + "target": "macmagazine_watchwidget_widget_watchwidget_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchWidget/Widget/WatchWidget.swift", + "source_location": "L8", + "weight": 1.0, + "context": "field", + "source": "macmagazine_watchwidget_widget_watchwidget_watchwidget", + "target": "macmagazine_watchwidget_widget_watchwidget_swift_widgetconfiguration", + "confidence_score": 1.0 + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchWidget/Widget/WatchWidget.swift", + "source_location": "L5", + "weight": 1.0, + "source": "macmagazine_watchwidget_widget_watchwidget_watchwidget", + "target": "widget", + "confidence_score": 1.0 + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/MacMagazineWidget.swift", + "source_location": "L5", + "weight": 1.0, + "source": "macmagazine_widget_macmagazinewidget_macmagazinewidget", + "target": "widget", + "confidence_score": 1.0 + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/MacMagazineWidgetLiveActivity.swift", + "source_location": "L15", + "weight": 1.0, + "source": "macmagazine_widget_macmagazinewidgetliveactivity_macmagazinewidgetliveactivity", + "target": "widget", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchWidget/Widget/WatchWidgetBundle.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_watchwidget_widget_watchwidgetbundle", + "target": "macmagazine_watchwidget_widget_watchwidgetbundle_watchwidgetbundle", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchWidget/Widget/WatchWidgetBundle.swift", + "source_location": "L6", + "weight": 1.0, + "context": "field", + "source": "macmagazine_watchwidget_widget_watchwidgetbundle_watchwidgetbundle", + "target": "macmagazine_watchwidget_widget_watchwidgetbundle_swift_widget", + "confidence_score": 1.0 + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchWidget/Widget/WatchWidgetBundle.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_watchwidget_widget_watchwidgetbundle_watchwidgetbundle", + "target": "widgetbundle", + "confidence_score": 1.0 + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/MacMagazineWidgetBundle.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_widget_macmagazinewidgetbundle_macmagazinewidgetbundle", + "target": "widgetbundle", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchWidget/Widget/WatchWidgetProvider.swift", + "source_location": "L37", + "weight": 1.0, + "source": "macmagazine_watchwidget_widget_watchwidgetprovider", + "target": "macmagazine_watchwidget_widget_watchwidgetprovider_watchwidgetprovider", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchWidget/Widget/WatchWidgetProvider.swift", + "source_location": "L14", + "weight": 1.0, + "source": "macmagazine_watchwidget_widget_watchwidgetprovider_watchwidgetprovider", + "target": "macmagazine_watchwidget_widget_watchwidgetprovider_watchwidgetprovider_getsnapshot", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchWidget/Widget/WatchWidgetProvider.swift", + "source_location": "L22", + "weight": 1.0, + "source": "macmagazine_watchwidget_widget_watchwidgetprovider_watchwidgetprovider", + "target": "macmagazine_watchwidget_widget_watchwidgetprovider_watchwidgetprovider_gettimeline", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchWidget/Widget/WatchWidgetProvider.swift", + "source_location": "L38", + "weight": 1.0, + "source": "macmagazine_watchwidget_widget_watchwidgetprovider_watchwidgetprovider", + "target": "macmagazine_watchwidget_widget_watchwidgetprovider_watchwidgetprovider_getwidgetcontent", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchWidget/Widget/WatchWidgetProvider.swift", + "source_location": "L10", + "weight": 1.0, + "source": "macmagazine_watchwidget_widget_watchwidgetprovider_watchwidgetprovider", + "target": "macmagazine_watchwidget_widget_watchwidgetprovider_watchwidgetprovider_placeholder", + "confidence_score": 1.0 + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchWidget/Widget/WatchWidgetProvider.swift", + "source_location": "L6", + "weight": 1.0, + "source": "macmagazine_watchwidget_widget_watchwidgetprovider_watchwidgetprovider", + "target": "timelineprovider", + "confidence_score": 1.0 + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/Timeline/MacMagazineTimelineProvider.swift", + "source_location": "L6", + "weight": 1.0, + "source": "macmagazine_widget_timeline_macmagazinetimelineprovider_macmagazinetimelineprovider", + "target": "timelineprovider", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchWidget/Widget/WatchWidgetProvider.swift", + "source_location": "L10", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_watchwidget_widget_watchwidgetprovider_watchwidgetprovider_placeholder", + "target": "macmagazine_watchwidget_widget_watchwidgetprovider_swift_context", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchWidget/Widget/WatchWidgetProvider.swift", + "source_location": "L10", + "weight": 1.0, + "source": "macmagazine_watchwidget_widget_watchwidgetprovider_watchwidgetprovider_placeholder", + "target": "macmagazine_watchwidget_widget_watchwidgetprovider_swift_widgetentry", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchWidget/Widget/WatchWidgetProvider.swift", + "source_location": "L14", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_watchwidget_widget_watchwidgetprovider_watchwidgetprovider_getsnapshot", + "target": "macmagazine_watchwidget_widget_watchwidgetprovider_swift_context", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchWidget/Widget/WatchWidgetProvider.swift", + "source_location": "L22", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_watchwidget_widget_watchwidgetprovider_watchwidgetprovider_gettimeline", + "target": "macmagazine_watchwidget_widget_watchwidgetprovider_swift_context", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchWidget/Widget/WatchWidgetProvider.swift", + "source_location": "L17", + "weight": 1.0, + "source": "macmagazine_watchwidget_widget_watchwidgetprovider_watchwidgetprovider_getsnapshot", + "target": "macmagazine_watchwidget_widget_watchwidgetprovider_swift_widgetentry", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchWidget/Widget/WatchWidgetProvider.swift", + "source_location": "L26", + "weight": 1.0, + "source": "macmagazine_watchwidget_widget_watchwidgetprovider_watchwidgetprovider_gettimeline", + "target": "macmagazine_watchwidget_widget_watchwidgetprovider_swift_widgetentry", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchWidget/Widget/WatchWidgetProvider.swift", + "source_location": "L14", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_watchwidget_widget_watchwidgetprovider_watchwidgetprovider_getsnapshot", + "target": "macmagazine_watchwidget_widget_watchwidgetprovider_swift_sendable", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchWidget/Widget/WatchWidgetProvider.swift", + "source_location": "L16", + "weight": 1.0, + "source": "macmagazine_watchwidget_widget_watchwidgetprovider_watchwidgetprovider_getsnapshot", + "target": "macmagazine_watchwidget_widget_watchwidgetprovider_watchwidgetprovider_getwidgetcontent", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchWidget/Widget/WatchWidgetProvider.swift", + "source_location": "L22", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_watchwidget_widget_watchwidgetprovider_watchwidgetprovider_gettimeline", + "target": "macmagazine_watchwidget_widget_watchwidgetprovider_swift_sendable", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchWidget/Widget/WatchWidgetProvider.swift", + "source_location": "L24", + "weight": 1.0, + "source": "macmagazine_watchwidget_widget_watchwidgetprovider_watchwidgetprovider_gettimeline", + "target": "macmagazine_watchwidget_widget_watchwidgetprovider_watchwidgetprovider_getwidgetcontent", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/WatchWidget/Widget/WatchWidgetProvider.swift", + "source_location": "L26", + "weight": 1.0, + "source": "macmagazine_watchwidget_widget_watchwidgetprovider_watchwidgetprovider_gettimeline", + "target": "timeline" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/WatchWidget/Widget/WatchWidgetProvider.swift", + "source_location": "L38", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_watchwidget_widget_watchwidgetprovider_watchwidgetprovider_getwidgetcontent", + "target": "macmagazine_watchwidget_widget_watchwidgetprovider_swift_widgetdata", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/Extensions/WidgetAccessibility+View.swift", + "source_location": "L11", + "weight": 1.0, + "source": "macmagazine_widget_extensions_widgetaccessibility_view", + "target": "macmagazine_widget_extensions_widgetaccessibility_view_view", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/Extensions/WidgetAccessibility+View.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_widget_extensions_widgetaccessibility_view", + "target": "macmagazine_widget_extensions_widgetaccessibility_view_widgetaccessibility", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/Extensions/WidgetAccessibility+View.swift", + "source_location": "L13", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_widget_extensions_widgetaccessibility_view_view_widgetaccessibility", + "target": "macmagazine_widget_extensions_widgetaccessibility_view_view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/Extensions/WidgetAccessibility+View.swift", + "source_location": "L37", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_widget_extensions_widgetaccessibility_view_view_widgetrectangularaccessibility", + "target": "macmagazine_widget_extensions_widgetaccessibility_view_view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/Extensions/WidgetAccessibility+View.swift", + "source_location": "L13", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_widget_extensions_widgetaccessibility_view_view_widgetaccessibility", + "target": "macmagazine_widget_extensions_widgetaccessibility_view_swift_accessibilitychildbehavior", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/Extensions/WidgetAccessibility+View.swift", + "source_location": "L13", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_widget_extensions_widgetaccessibility_view_view_widgetaccessibility", + "target": "macmagazine_widget_extensions_widgetaccessibility_view_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/Extensions/WidgetAccessibility+View.swift", + "source_location": "L13", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_widget_extensions_widgetaccessibility_view_view_widgetaccessibility", + "target": "macmagazine_widget_models_widgetdata_url", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/Extensions/WidgetAccessibility+View.swift", + "source_location": "L37", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_widget_extensions_widgetaccessibility_view_view_widgetrectangularaccessibility", + "target": "macmagazine_widget_extensions_widgetaccessibility_view_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/Extensions/WidgetAccessibility+View.swift", + "source_location": "L37", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_widget_extensions_widgetaccessibility_view_view_widgetrectangularaccessibility", + "target": "macmagazine_widget_models_widgetdata_url", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/MacMagazineWidget.swift", + "source_location": "L5", + "weight": 1.0, + "source": "macmagazine_widget_macmagazinewidget", + "target": "macmagazine_widget_macmagazinewidget_macmagazinewidget", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/MacMagazineWidget.swift", + "source_location": "L6", + "weight": 1.0, + "context": "field", + "source": "macmagazine_widget_macmagazinewidget_macmagazinewidget", + "target": "macmagazine_widget_macmagazinewidget_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/MacMagazineWidget.swift", + "source_location": "L22", + "weight": 1.0, + "context": "field", + "source": "macmagazine_widget_macmagazinewidget_macmagazinewidget", + "target": "macmagazine_widget_macmagazinewidget_swift_widgetconfiguration", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/MacMagazineWidget.swift", + "source_location": "L9", + "weight": 1.0, + "context": "field", + "source": "macmagazine_widget_macmagazinewidget_macmagazinewidget", + "target": "macmagazine_widget_views_widgetview_widgetfamily", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/MacMagazineWidgetBundle.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_widget_macmagazinewidgetbundle", + "target": "macmagazine_widget_macmagazinewidgetbundle_macmagazinewidgetbundle", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/MacMagazineWidgetBundle.swift", + "source_location": "L6", + "weight": 1.0, + "context": "field", + "source": "macmagazine_widget_macmagazinewidgetbundle_macmagazinewidgetbundle", + "target": "macmagazine_widget_macmagazinewidgetbundle_swift_widget", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/MacMagazineWidgetLiveActivity.swift", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_widget_macmagazinewidgetliveactivity", + "target": "activitykit", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/MacMagazineWidgetLiveActivity.swift", + "source_location": "L6", + "weight": 1.0, + "source": "macmagazine_widget_macmagazinewidgetliveactivity", + "target": "macmagazine_widget_macmagazinewidgetliveactivity_contentstate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/MacMagazineWidgetLiveActivity.swift", + "source_location": "L15", + "weight": 1.0, + "source": "macmagazine_widget_macmagazinewidgetliveactivity", + "target": "macmagazine_widget_macmagazinewidgetliveactivity_macmagazinewidgetliveactivity", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/MacMagazineWidgetLiveActivity.swift", + "source_location": "L52", + "weight": 1.0, + "source": "macmagazine_widget_macmagazinewidgetliveactivity", + "target": "macmagazine_widget_macmagazinewidgetliveactivity_widgetattributes", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/MacMagazineWidgetLiveActivity.swift", + "source_location": "L58", + "weight": 1.0, + "source": "macmagazine_widget_macmagazinewidgetliveactivity", + "target": "macmagazine_widget_macmagazinewidgetliveactivity_widgetattributes_contentstate", + "confidence_score": 1.0 + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/MacMagazineWidgetLiveActivity.swift", + "source_location": "L5", + "weight": 1.0, + "source": "macmagazine_widget_macmagazinewidgetliveactivity_widgetattributes", + "target": "activityattributes", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/MacMagazineWidgetLiveActivity.swift", + "source_location": "L12", + "weight": 1.0, + "context": "field", + "source": "macmagazine_widget_macmagazinewidgetliveactivity_widgetattributes", + "target": "macmagazine_widget_macmagazinewidgetliveactivity_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/MacMagazineWidgetLiveActivity.swift", + "source_location": "L63", + "weight": 1.0, + "context": "field", + "source": "macmagazine_widget_macmagazinewidgetliveactivity_widgetattributes_contentstate", + "target": "macmagazine_widget_macmagazinewidgetliveactivity_widgetattributes", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/MacMagazineWidgetLiveActivity.swift", + "source_location": "L8", + "weight": 1.0, + "context": "field", + "source": "macmagazine_widget_macmagazinewidgetliveactivity_contentstate", + "target": "macmagazine_widget_macmagazinewidgetliveactivity_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/MacMagazineWidgetLiveActivity.swift", + "source_location": "L16", + "weight": 1.0, + "context": "field", + "source": "macmagazine_widget_macmagazinewidgetliveactivity_macmagazinewidgetliveactivity", + "target": "macmagazine_widget_macmagazinewidgetliveactivity_swift_widgetconfiguration", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/Models/WidgetData.swift", + "source_location": "L19", + "weight": 1.0, + "source": "macmagazine_widget_models_widgetdata", + "target": "macmagazine_widget_models_widgetdata_url", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/Models/WidgetData.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_widget_models_widgetdata", + "target": "macmagazine_widget_models_widgetdata_widgetdata", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/Models/WidgetData.swift", + "source_location": "L14", + "weight": 1.0, + "context": "field", + "source": "macmagazine_widget_models_widgetdata_widgetdata", + "target": "macmagazine_widget_models_widgetdata_url", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/Models/WidgetData.swift", + "source_location": "L20", + "weight": 1.0, + "source": "macmagazine_widget_models_widgetdata_url", + "target": "macmagazine_widget_models_widgetdata_url_init", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/Models/WidgetData.swift", + "source_location": "L20", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_widget_models_widgetdata_url_init", + "target": "macmagazine_widget_models_widgetdata_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/Timeline/MacMagazineTimelineProvider.swift", + "source_location": "L32", + "weight": 1.0, + "source": "macmagazine_widget_timeline_macmagazinetimelineprovider", + "target": "macmagazine_widget_timeline_macmagazinetimelineprovider_macmagazinetimelineprovider", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/Timeline/MacMagazineTimelineProvider.swift", + "source_location": "L16", + "weight": 1.0, + "source": "macmagazine_widget_timeline_macmagazinetimelineprovider_macmagazinetimelineprovider", + "target": "macmagazine_widget_timeline_macmagazinetimelineprovider_macmagazinetimelineprovider_getsnapshot", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/Timeline/MacMagazineTimelineProvider.swift", + "source_location": "L23", + "weight": 1.0, + "source": "macmagazine_widget_timeline_macmagazinetimelineprovider_macmagazinetimelineprovider", + "target": "macmagazine_widget_timeline_macmagazinetimelineprovider_macmagazinetimelineprovider_gettimeline", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/Timeline/MacMagazineTimelineProvider.swift", + "source_location": "L33", + "weight": 1.0, + "source": "macmagazine_widget_timeline_macmagazinetimelineprovider_macmagazinetimelineprovider", + "target": "macmagazine_widget_timeline_macmagazinetimelineprovider_macmagazinetimelineprovider_getwidgetcontent", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/Timeline/MacMagazineTimelineProvider.swift", + "source_location": "L12", + "weight": 1.0, + "source": "macmagazine_widget_timeline_macmagazinetimelineprovider_macmagazinetimelineprovider", + "target": "macmagazine_widget_timeline_macmagazinetimelineprovider_macmagazinetimelineprovider_placeholder", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/Timeline/MacMagazineTimelineProvider.swift", + "source_location": "L12", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_widget_timeline_macmagazinetimelineprovider_macmagazinetimelineprovider_placeholder", + "target": "macmagazine_widget_timeline_macmagazinetimelineprovider_swift_context", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/Timeline/MacMagazineTimelineProvider.swift", + "source_location": "L12", + "weight": 1.0, + "source": "macmagazine_widget_timeline_macmagazinetimelineprovider_macmagazinetimelineprovider_placeholder", + "target": "macmagazine_widget_timeline_macmagazinetimelineprovider_swift_widgetentry", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/Timeline/MacMagazineTimelineProvider.swift", + "source_location": "L16", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_widget_timeline_macmagazinetimelineprovider_macmagazinetimelineprovider_getsnapshot", + "target": "macmagazine_widget_timeline_macmagazinetimelineprovider_swift_context", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/Timeline/MacMagazineTimelineProvider.swift", + "source_location": "L23", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_widget_timeline_macmagazinetimelineprovider_macmagazinetimelineprovider_gettimeline", + "target": "macmagazine_widget_timeline_macmagazinetimelineprovider_swift_context", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/Timeline/MacMagazineTimelineProvider.swift", + "source_location": "L16", + "weight": 1.0, + "source": "macmagazine_widget_timeline_macmagazinetimelineprovider_macmagazinetimelineprovider_getsnapshot", + "target": "macmagazine_widget_timeline_macmagazinetimelineprovider_swift_widgetentry", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/Timeline/MacMagazineTimelineProvider.swift", + "source_location": "L23", + "weight": 1.0, + "source": "macmagazine_widget_timeline_macmagazinetimelineprovider_macmagazinetimelineprovider_gettimeline", + "target": "macmagazine_widget_timeline_macmagazinetimelineprovider_swift_widgetentry", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/Timeline/MacMagazineTimelineProvider.swift", + "source_location": "L18", + "weight": 1.0, + "source": "macmagazine_widget_timeline_macmagazinetimelineprovider_macmagazinetimelineprovider_getsnapshot", + "target": "macmagazine_widget_timeline_macmagazinetimelineprovider_macmagazinetimelineprovider_getwidgetcontent", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/Timeline/MacMagazineTimelineProvider.swift", + "source_location": "L16", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_widget_timeline_macmagazinetimelineprovider_macmagazinetimelineprovider_getsnapshot", + "target": "macmagazine_widget_timeline_macmagazinetimelineprovider_swift_void", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/Timeline/MacMagazineTimelineProvider.swift", + "source_location": "L23", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_widget_timeline_macmagazinetimelineprovider_macmagazinetimelineprovider_gettimeline", + "target": "macmagazine_widget_timeline_macmagazinetimelineprovider_swift_void", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/Timeline/MacMagazineTimelineProvider.swift", + "source_location": "L25", + "weight": 1.0, + "source": "macmagazine_widget_timeline_macmagazinetimelineprovider_macmagazinetimelineprovider_gettimeline", + "target": "macmagazine_widget_timeline_macmagazinetimelineprovider_macmagazinetimelineprovider_getwidgetcontent", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/Timeline/MacMagazineTimelineProvider.swift", + "source_location": "L23", + "weight": 1.0, + "source": "macmagazine_widget_timeline_macmagazinetimelineprovider_macmagazinetimelineprovider_gettimeline", + "target": "timeline", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/Timeline/MacMagazineTimelineProvider.swift", + "source_location": "L33", + "weight": 1.0, + "source": "macmagazine_widget_timeline_macmagazinetimelineprovider_macmagazinetimelineprovider_getwidgetcontent", + "target": "macmagazine_widget_timeline_macmagazinetimelineprovider_swift_widgetdata", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/Timeline/WidgetEntry.swift", + "source_location": "L5", + "weight": 1.0, + "source": "macmagazine_widget_timeline_widgetentry", + "target": "macmagazine_widget_timeline_widgetentry_widgetentry", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/Timeline/WidgetEntry.swift", + "source_location": "L7", + "weight": 1.0, + "context": "field", + "source": "macmagazine_widget_timeline_widgetentry_widgetentry", + "target": "macmagazine_widget_timeline_widgetentry_swift_widgetdata", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/Views/Modifiers/HeaderWidgetModifier.swift", + "source_location": "L14", + "weight": 1.0, + "source": "macmagazine_widget_views_modifiers_headerwidgetmodifier", + "target": "macmagazine_widget_views_modifiers_headerwidgetmodifier_headerwidgetmodifier", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/Views/Modifiers/HeaderWidgetModifier.swift", + "source_location": "L43", + "weight": 1.0, + "source": "macmagazine_widget_views_modifiers_headerwidgetmodifier", + "target": "macmagazine_widget_views_modifiers_headerwidgetmodifier_overlayheaderwidgetmodifier", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/Views/Modifiers/HeaderWidgetModifier.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_widget_views_modifiers_headerwidgetmodifier", + "target": "macmagazine_widget_views_modifiers_headerwidgetmodifier_view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/Views/Modifiers/HeaderWidgetModifier.swift", + "source_location": "L27", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_widget_views_modifiers_headerwidgetmodifier_headerwidgetmodifier_body", + "target": "macmagazine_widget_views_modifiers_headerwidgetmodifier_view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/Views/Modifiers/HeaderWidgetModifier.swift", + "source_location": "L54", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_widget_views_modifiers_headerwidgetmodifier_overlayheaderwidgetmodifier_body", + "target": "macmagazine_widget_views_modifiers_headerwidgetmodifier_view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/Views/Modifiers/HeaderWidgetModifier.swift", + "source_location": "L9", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_widget_views_modifiers_headerwidgetmodifier_view_header", + "target": "macmagazine_widget_views_modifiers_headerwidgetmodifier_view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/Views/Modifiers/HeaderWidgetModifier.swift", + "source_location": "L5", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_widget_views_modifiers_headerwidgetmodifier_view_overlayheader", + "target": "macmagazine_widget_views_modifiers_headerwidgetmodifier_view", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/Views/Modifiers/HeaderWidgetModifier.swift", + "source_location": "L6", + "weight": 1.0, + "source": "macmagazine_widget_views_modifiers_headerwidgetmodifier_view_overlayheader", + "target": "macmagazine_widget_views_modifiers_headerwidgetmodifier_overlayheaderwidgetmodifier", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/Views/Modifiers/HeaderWidgetModifier.swift", + "source_location": "L10", + "weight": 1.0, + "source": "macmagazine_widget_views_modifiers_headerwidgetmodifier_view_header", + "target": "macmagazine_widget_views_modifiers_headerwidgetmodifier_headerwidgetmodifier", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/Views/Modifiers/HeaderWidgetModifier.swift", + "source_location": "L9", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_widget_views_modifiers_headerwidgetmodifier_view_header", + "target": "macmagazine_widget_views_modifiers_headerwidgetmodifier_swift_cgfloat", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/Views/Modifiers/HeaderWidgetModifier.swift", + "source_location": "L9", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_widget_views_modifiers_headerwidgetmodifier_view_header", + "target": "macmagazine_widget_views_modifiers_headerwidgetmodifier_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/Views/Modifiers/HeaderWidgetModifier.swift", + "source_location": "L19", + "weight": 1.0, + "context": "field", + "source": "macmagazine_widget_views_modifiers_headerwidgetmodifier_headerwidgetmodifier", + "target": "macmagazine_widget_views_modifiers_headerwidgetmodifier_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/Views/Modifiers/HeaderWidgetModifier.swift", + "source_location": "L46", + "weight": 1.0, + "context": "field", + "source": "macmagazine_widget_views_modifiers_headerwidgetmodifier_overlayheaderwidgetmodifier", + "target": "macmagazine_widget_views_modifiers_headerwidgetmodifier_swift_string", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/Views/Modifiers/HeaderWidgetModifier.swift", + "source_location": "L17", + "weight": 1.0, + "context": "field", + "source": "macmagazine_widget_views_modifiers_headerwidgetmodifier_headerwidgetmodifier", + "target": "macmagazine_widget_views_modifiers_headerwidgetmodifier_swift_cgfloat", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/Views/Modifiers/HeaderWidgetModifier.swift", + "source_location": "L27", + "weight": 1.0, + "source": "macmagazine_widget_views_modifiers_headerwidgetmodifier_headerwidgetmodifier", + "target": "macmagazine_widget_views_modifiers_headerwidgetmodifier_headerwidgetmodifier_body", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/Views/Modifiers/HeaderWidgetModifier.swift", + "source_location": "L27", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_widget_views_modifiers_headerwidgetmodifier_headerwidgetmodifier_body", + "target": "macmagazine_widget_views_modifiers_headerwidgetmodifier_swift_content", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/Views/Modifiers/HeaderWidgetModifier.swift", + "source_location": "L54", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_widget_views_modifiers_headerwidgetmodifier_overlayheaderwidgetmodifier_body", + "target": "macmagazine_widget_views_modifiers_headerwidgetmodifier_swift_content", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/Views/Modifiers/HeaderWidgetModifier.swift", + "source_location": "L54", + "weight": 1.0, + "source": "macmagazine_widget_views_modifiers_headerwidgetmodifier_overlayheaderwidgetmodifier", + "target": "macmagazine_widget_views_modifiers_headerwidgetmodifier_overlayheaderwidgetmodifier_body", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/Views/Modifiers/SmallWidgetStyleModifier.swift", + "source_location": "L10", + "weight": 1.0, + "source": "macmagazine_widget_views_modifiers_smallwidgetstylemodifier", + "target": "macmagazine_widget_views_modifiers_smallwidgetstylemodifier_smallwidgetstylemodifier", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/Views/Modifiers/SmallWidgetStyleModifier.swift", + "source_location": "L4", + "weight": 1.0, + "source": "macmagazine_widget_views_modifiers_smallwidgetstylemodifier", + "target": "macmagazine_widget_views_modifiers_smallwidgetstylemodifier_view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/Views/Modifiers/SmallWidgetStyleModifier.swift", + "source_location": "L14", + "weight": 1.0, + "context": "field", + "source": "macmagazine_widget_views_modifiers_smallwidgetstylemodifier_smallwidgetstylemodifier", + "target": "macmagazine_widget_views_modifiers_smallwidgetstylemodifier_view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/Views/Modifiers/SmallWidgetStyleModifier.swift", + "source_location": "L25", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_widget_views_modifiers_smallwidgetstylemodifier_smallwidgetstylemodifier_body", + "target": "macmagazine_widget_views_modifiers_smallwidgetstylemodifier_view", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/Views/Modifiers/SmallWidgetStyleModifier.swift", + "source_location": "L5", + "weight": 1.0, + "context": "return_type", + "source": "macmagazine_widget_views_modifiers_smallwidgetstylemodifier_view_smallwidgetstyle", + "target": "macmagazine_widget_views_modifiers_smallwidgetstylemodifier_view", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/Views/Modifiers/SmallWidgetStyleModifier.swift", + "source_location": "L6", + "weight": 1.0, + "source": "macmagazine_widget_views_modifiers_smallwidgetstylemodifier_view_smallwidgetstyle", + "target": "macmagazine_widget_views_modifiers_smallwidgetstylemodifier_smallwidgetstylemodifier", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/Views/Modifiers/SmallWidgetStyleModifier.swift", + "source_location": "L5", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_widget_views_modifiers_smallwidgetstylemodifier_view_smallwidgetstyle", + "target": "macmagazine_widget_views_modifiers_smallwidgetstylemodifier_swift_image", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/Views/Modifiers/SmallWidgetStyleModifier.swift", + "source_location": "L12", + "weight": 1.0, + "context": "field", + "source": "macmagazine_widget_views_modifiers_smallwidgetstylemodifier_smallwidgetstylemodifier", + "target": "macmagazine_widget_views_modifiers_smallwidgetstylemodifier_swift_image", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/Views/Modifiers/SmallWidgetStyleModifier.swift", + "source_location": "L25", + "weight": 1.0, + "source": "macmagazine_widget_views_modifiers_smallwidgetstylemodifier_smallwidgetstylemodifier", + "target": "macmagazine_widget_views_modifiers_smallwidgetstylemodifier_smallwidgetstylemodifier_body", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/Views/Modifiers/SmallWidgetStyleModifier.swift", + "source_location": "L25", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_widget_views_modifiers_smallwidgetstylemodifier_smallwidgetstylemodifier_body", + "target": "macmagazine_widget_views_modifiers_smallwidgetstylemodifier_swift_content", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/Views/WidgetElementView.swift", + "source_location": "L144", + "weight": 1.0, + "source": "macmagazine_widget_views_widgetelementview", + "target": "macmagazine_widget_views_widgetelementview_widgetelementview", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/Views/WidgetElementView.swift", + "source_location": "L145", + "weight": 1.0, + "context": "field", + "source": "macmagazine_widget_views_widgetelementview_widgetelementview", + "target": "macmagazine_widget_views_widgetelementview_swift_cgfloat", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/Views/WidgetElementView.swift", + "source_location": "L79", + "weight": 1.0, + "context": "field", + "source": "macmagazine_widget_views_widgetelementview_widgetelementview", + "target": "macmagazine_widget_views_widgetelementview_swift_image", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/Views/WidgetElementView.swift", + "source_location": "L14", + "weight": 1.0, + "context": "field", + "source": "macmagazine_widget_views_widgetelementview_widgetelementview", + "target": "macmagazine_widget_views_widgetelementview_swift_widgetdata", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "MacMagazine/Widget/Views/WidgetView.swift", + "source_location": "L41", + "weight": 1.0, + "source": "macmagazine_widget_views_widgetview_widgetview_content", + "target": "macmagazine_widget_views_widgetelementview_widgetelementview" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/Views/WidgetView.swift", + "source_location": "L51", + "weight": 1.0, + "source": "macmagazine_widget_views_widgetview", + "target": "macmagazine_widget_views_widgetview_widgetfamily", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/Views/WidgetView.swift", + "source_location": "L7", + "weight": 1.0, + "source": "macmagazine_widget_views_widgetview", + "target": "macmagazine_widget_views_widgetview_widgetview", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/Views/WidgetView.swift", + "source_location": "L8", + "weight": 1.0, + "context": "field", + "source": "macmagazine_widget_views_widgetview_widgetview", + "target": "macmagazine_widget_views_widgetview_swift_analyticsmanager", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/Views/WidgetView.swift", + "source_location": "L11", + "weight": 1.0, + "context": "field", + "source": "macmagazine_widget_views_widgetview_widgetview", + "target": "macmagazine_widget_views_widgetview_swift_widgetdata", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/Views/WidgetView.swift", + "source_location": "L10", + "weight": 1.0, + "context": "field", + "source": "macmagazine_widget_views_widgetview_widgetview", + "target": "macmagazine_widget_views_widgetview_swift_widgetentry", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/Views/WidgetView.swift", + "source_location": "L38", + "weight": 1.0, + "source": "macmagazine_widget_views_widgetview_widgetview", + "target": "macmagazine_widget_views_widgetview_widgetview_content", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/Views/WidgetView.swift", + "source_location": "L38", + "weight": 1.0, + "context": "parameter_type", + "source": "macmagazine_widget_views_widgetview_widgetview_content", + "target": "macmagazine_widget_views_widgetview_swift_int", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/Widget/Views/WidgetView.swift", + "source_location": "L52", + "weight": 1.0, + "context": "field", + "source": "macmagazine_widget_views_widgetview_widgetfamily", + "target": "macmagazine_widget_views_widgetview_swift_cgfloat", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "MacMagazine/ci_scripts/ci_post_clone.sh", + "source_location": "L1", + "weight": 1.0, + "source": "macmagazine_ci_scripts_ci_post_clone", + "target": "macmagazine_ci_scripts_ci_post_clone_sh__entry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "Support/Scripts/clean-build-folders.sh", + "source_location": "L1", + "weight": 1.0, + "source": "support_scripts_clean_build_folders", + "target": "support_scripts_clean_build_folders_sh__entry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "Support/Scripts/generate-firebase-config.sh", + "source_location": "L1", + "weight": 1.0, + "source": "support_scripts_generate_firebase_config", + "target": "support_scripts_generate_firebase_config_sh__entry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "Support/Scripts/setup-firebase.sh", + "source_location": "L1", + "weight": 1.0, + "source": "support_scripts_setup_firebase", + "target": "support_scripts_setup_firebase_sh__entry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "Support/Scripts/updateBuildVersion.sh", + "source_location": "L1", + "weight": 1.0, + "source": "support_scripts_updatebuildversion", + "target": "support_scripts_updatebuildversion_sh__entry", + "confidence_score": 1.0 + } + ], + "hyperedges": [], + "built_at_commit": "8e9dff49a8b3fd5546ad0560aa4dc9cdf6aa8ae8" +} \ No newline at end of file diff --git a/graphify-out/2026-07-18/manifest.json b/graphify-out/2026-07-18/manifest.json new file mode 100644 index 00000000..92e46351 --- /dev/null +++ b/graphify-out/2026-07-18/manifest.json @@ -0,0 +1,1882 @@ +{ + ".claude/hooks/post-tool-use.sh": { + "mtime": 1781684529.396093, + "ast_hash": "87556854751c781ed5b14332e8d43efc", + "semantic_hash": "87556854751c781ed5b14332e8d43efc" + }, + ".claude/hooks/pre-tool-use.sh": { + "mtime": 1783719971.1995022, + "ast_hash": "6eecad45912b3feaa2529e7a27f50d8d", + "semantic_hash": "6eecad45912b3feaa2529e7a27f50d8d" + }, + ".claude/hooks/stop.sh": { + "mtime": 1781684529.396937, + "ast_hash": "e78b2b991b7b9a689c44fa3f19b29829", + "semantic_hash": "e78b2b991b7b9a689c44fa3f19b29829" + }, + ".claude/settings.json": { + "mtime": 1783794015.789434, + "ast_hash": "0e113078c601ae9dde0b6ee9c9944ca2", + "semantic_hash": "0e113078c601ae9dde0b6ee9c9944ca2" + }, + "MacMagazine/Features/FeedLibrary/Package.swift": { + "mtime": 1765557225.8204718, + "ast_hash": "b3250fcc6f96d8583dabca29a5e23ee0", + "semantic_hash": "b3250fcc6f96d8583dabca29a5e23ee0" + }, + "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Database/FeedDB.swift": { + "mtime": 1778008694.118154, + "ast_hash": "b612b401b029d026029c3d6992fc7df0", + "semantic_hash": "b612b401b029d026029c3d6992fc7df0" + }, + "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Database/PodcastDB.swift": { + "mtime": 1772834671.3109405, + "ast_hash": "d11addc0033d17788b3b2e96711da138", + "semantic_hash": "d11addc0033d17788b3b2e96711da138" + }, + "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Extensions/StringExtensions.swift": { + "mtime": 1772824345.3780828, + "ast_hash": "bb41283685bb5f6b9c4832f3cabaaf0e", + "semantic_hash": "bb41283685bb5f6b9c4832f3cabaaf0e" + }, + "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Models/NewsCategoryExtensions.swift": { + "mtime": 1766840448.9977179, + "ast_hash": "9ff259567883749bb8f8f061ec4ad6f4", + "semantic_hash": "9ff259567883749bb8f8f061ec4ad6f4" + }, + "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Models/WidgetData.swift": { + "mtime": 1766185900.7509432, + "ast_hash": "c765d5cae8ef8e1d141b04c5f033cc94", + "semantic_hash": "c765d5cae8ef8e1d141b04c5f033cc94" + }, + "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/FeedEndpoint.swift": { + "mtime": 1765018927.0982459, + "ast_hash": "d4a4e5cd6ec981e92303977a3440a308", + "semantic_hash": "d4a4e5cd6ec981e92303977a3440a308" + }, + "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/NetworkService.swift": { + "mtime": 1772824345.3784075, + "ast_hash": "4d0362e2fbb1982243955bc943041dac", + "semantic_hash": "4d0362e2fbb1982243955bc943041dac" + }, + "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/Parser/APIXMLParser.swift": { + "mtime": 1766840448.9994295, + "ast_hash": "34d549b9606ca5a0f5d7c6f2eeb4c731", + "semantic_hash": "34d549b9606ca5a0f5d7c6f2eeb4c731" + }, + "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/Parser/DateParser.swift": { + "mtime": 1772795253.8916323, + "ast_hash": "36ad66ff7622a3256e381abcc64ccefa", + "semantic_hash": "36ad66ff7622a3256e381abcc64ccefa" + }, + "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/Parser/XMLPost.swift": { + "mtime": 1772824345.378611, + "ast_hash": "b1e23dd1d8c42bafa2d660c898af2bc6", + "semantic_hash": "b1e23dd1d8c42bafa2d660c898af2bc6" + }, + "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/StorageService.swift": { + "mtime": 1773698736.9183264, + "ast_hash": "2b4ef2eda8e34cfcc3a1d8a30817ea46", + "semantic_hash": "2b4ef2eda8e34cfcc3a1d8a30817ea46" + }, + "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift": { + "mtime": 1773735451.9389453, + "ast_hash": "61130c34930d761bc96071a0c399ef82", + "semantic_hash": "61130c34930d761bc96071a0c399ef82" + }, + "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/CategoryTests.swift": { + "mtime": 1766864993.0238323, + "ast_hash": "c1dde159dd9a46214120226e6951cdfc", + "semantic_hash": "c1dde159dd9a46214120226e6951cdfc" + }, + "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/DateParserTests.swift": { + "mtime": 1766864993.0250247, + "ast_hash": "084688bcb94d772656fd365ce228744c", + "semantic_hash": "084688bcb94d772656fd365ce228744c" + }, + "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedDBTests.swift": { + "mtime": 1778008694.119014, + "ast_hash": "8a88154bd608d3dee96ca91a3089d0b1", + "semantic_hash": "8a88154bd608d3dee96ca91a3089d0b1" + }, + "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedEndpointTests.swift": { + "mtime": 1766840449.002973, + "ast_hash": "8dd9b7841794a36db2cf6a764fba56e3", + "semantic_hash": "8dd9b7841794a36db2cf6a764fba56e3" + }, + "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedViewModelTests.swift": { + "mtime": 1772824345.379522, + "ast_hash": "46bf236e1fd5a79c1992e21b0b1aa8a8", + "semantic_hash": "46bf236e1fd5a79c1992e21b0b1aa8a8" + }, + "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/PodcastDBTests.swift": { + "mtime": 1773260916.5354462, + "ast_hash": "00c6b15003bd927ceea4be71f77f479c", + "semantic_hash": "00c6b15003bd927ceea4be71f77f479c" + }, + "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/Resources/feed.json": { + "mtime": 1765040951.9808369, + "ast_hash": "e2cb4efeb2ad9b8e66bcde2907ac7bac", + "semantic_hash": "e2cb4efeb2ad9b8e66bcde2907ac7bac" + }, + "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/Resources/podcasts.json": { + "mtime": 1764786915.369913, + "ast_hash": "8db88add925e6cf693d4138c382fc644", + "semantic_hash": "8db88add925e6cf693d4138c382fc644" + }, + "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift": { + "mtime": 1773260916.5359604, + "ast_hash": "be3d6bbd127b2612cdac761c17d11a90", + "semantic_hash": "be3d6bbd127b2612cdac761c17d11a90" + }, + "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StringExtensionsTests.swift": { + "mtime": 1772824345.3799622, + "ast_hash": "4dd04aa4e5670ee27700d4d728b381d1", + "semantic_hash": "4dd04aa4e5670ee27700d4d728b381d1" + }, + "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/WidgetDataTests.swift": { + "mtime": 1766105925.4205234, + "ast_hash": "b3f808739034967d66adf2f3ccb1ec76", + "semantic_hash": "b3f808739034967d66adf2f3ccb1ec76" + }, + "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/XMLParserTests.swift": { + "mtime": 1764788006.4061906, + "ast_hash": "b71d87f4bbf3acc89a28dbd32e379b0a", + "semantic_hash": "b71d87f4bbf3acc89a28dbd32e379b0a" + }, + "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/XMLPostTests.swift": { + "mtime": 1764788212.9825604, + "ast_hash": "e190550514e03dceba92b09e4d76778d", + "semantic_hash": "e190550514e03dceba92b09e4d76778d" + }, + "MacMagazine/Features/MMLiveLibrary/Package.swift": { + "mtime": 1765903841.7069378, + "ast_hash": "99457ce3a390bd15da437eab651e3396", + "semantic_hash": "99457ce3a390bd15da437eab651e3396" + }, + "MacMagazine/Features/MMLiveLibrary/Sources/MMLiveLibrary/Models/MMLive.swift": { + "mtime": 1765018927.0603824, + "ast_hash": "2201139ae179043abf6577c22b4d21c1", + "semantic_hash": "2201139ae179043abf6577c22b4d21c1" + }, + "MacMagazine/Features/MMLiveLibrary/Sources/MMLiveLibrary/Services/MMLiveEndpoint.swift": { + "mtime": 1765020529.2804928, + "ast_hash": "d68f8000843361fd0a846dfdfd8cd3c3", + "semantic_hash": "d68f8000843361fd0a846dfdfd8cd3c3" + }, + "MacMagazine/Features/MMLiveLibrary/Sources/MMLiveLibrary/Services/NetworkService.swift": { + "mtime": 1765018927.0850081, + "ast_hash": "162461b480f64f82a17733a1f6379437", + "semantic_hash": "162461b480f64f82a17733a1f6379437" + }, + "MacMagazine/Features/MMLiveLibrary/Sources/MMLiveLibrary/Services/PushNotification.swift": { + "mtime": 1774436208.3006823, + "ast_hash": "f31ef911161881ca8cf8b769bf6ca165", + "semantic_hash": "f31ef911161881ca8cf8b769bf6ca165" + }, + "MacMagazine/Features/MMLiveLibrary/Sources/MMLiveLibrary/Services/StorageService.swift": { + "mtime": 1765020801.7048569, + "ast_hash": "407b7917ccfef79982fa65ff17fc6233", + "semantic_hash": "407b7917ccfef79982fa65ff17fc6233" + }, + "MacMagazine/Features/MMLiveLibrary/Sources/MMLiveLibrary/ViewModel/MMLiveViewModel.swift": { + "mtime": 1776796100.0000398, + "ast_hash": "30f820a5e002ee18ef23a76f0f9e4263", + "semantic_hash": "30f820a5e002ee18ef23a76f0f9e4263" + }, + "MacMagazine/Features/MMLiveLibrary/Tests/MMLiveLibraryTests/MMLiveViewModelTests.swift": { + "mtime": 1766171878.0791361, + "ast_hash": "81e19cd5fdfa5c62935ad841bd16772d", + "semantic_hash": "81e19cd5fdfa5c62935ad841bd16772d" + }, + "MacMagazine/Features/MMLiveLibrary/Tests/MMLiveLibraryTests/Resources/live.json": { + "mtime": 1765040992.318965, + "ast_hash": "4a10c38b1ee4984f1be4db8efaa18780", + "semantic_hash": "4a10c38b1ee4984f1be4db8efaa18780" + }, + "MacMagazine/Features/MacMagazineLibrary/Package.swift": { + "mtime": 1773484237.1447473, + "ast_hash": "78f0fb90a6726956c67e076f6185c4ca", + "semantic_hash": "78f0fb90a6726956c67e076f6185c4ca" + }, + "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift": { + "mtime": 1773686857.601142, + "ast_hash": "91469e16cf746d07141c78470aabb288", + "semantic_hash": "91469e16cf746d07141c78470aabb288" + }, + "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AppDefinitions.swift": { + "mtime": 1773255289.615695, + "ast_hash": "a55545583578180b6da2acda9f8bfd2f", + "semantic_hash": "a55545583578180b6da2acda9f8bfd2f" + }, + "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/DateExtensions.swift": { + "mtime": 1766840449.0051396, + "ast_hash": "171a1c735a9f3a3f7790454933f75eab", + "semantic_hash": "171a1c735a9f3a3f7790454933f75eab" + }, + "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/EnvironmentValuesExtensions.swift": { + "mtime": 1778008694.1197605, + "ast_hash": "4cc41be2407655785b2b84ee61e7c6d9", + "semantic_hash": "4cc41be2407655785b2b84ee61e7c6d9" + }, + "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/ModelProtocols.swift": { + "mtime": 1778008694.120197, + "ast_hash": "63d1e6eaa0ae304dbd1cac2da5a9f428", + "semantic_hash": "63d1e6eaa0ae304dbd1cac2da5a9f428" + }, + "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/NewsCategory.swift": { + "mtime": 1773159239.849596, + "ast_hash": "9592bee6286cf5cd1d4b256a4d1d1556", + "semantic_hash": "9592bee6286cf5cd1d4b256a4d1d1556" + }, + "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/PushNotification/PushNotification.swift": { + "mtime": 1776153759.9829874, + "ast_hash": "fda91c40adad30971be4f6835d3b2c69", + "semantic_hash": "fda91c40adad30971be4f6835d3b2c69" + }, + "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/PushNotification/UserModel.swift": { + "mtime": 1766840449.0088606, + "ast_hash": "f22bb489e27fed515ee1069d667194cd", + "semantic_hash": "f22bb489e27fed515ee1069d667194cd" + }, + "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/Resources/Media.xcassets/Colors/Contents.json": { + "mtime": 1763922427.680209, + "ast_hash": "9deb2ada1cc834bbebf8bbad9c8978a1", + "semantic_hash": "9deb2ada1cc834bbebf8bbad9c8978a1" + }, + "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/Resources/Media.xcassets/Colors/MMBlack90.colorset/Contents.json": { + "mtime": 1701451154.9157531, + "ast_hash": "55999ec93949fbfa7a5aaabfe4eb2288", + "semantic_hash": "55999ec93949fbfa7a5aaabfe4eb2288" + }, + "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/Resources/Media.xcassets/Colors/MMBlue.colorset/Contents.json": { + "mtime": 1701451146.420192, + "ast_hash": "5d3d0f3c46b544f5af405e1a42e56ed8", + "semantic_hash": "5d3d0f3c46b544f5af405e1a42e56ed8" + }, + "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/Resources/Media.xcassets/Colors/MMBlueWhite.colorset/Contents.json": { + "mtime": 1701451128.475858, + "ast_hash": "1436655be6eb7c08e073033016cba5ce", + "semantic_hash": "1436655be6eb7c08e073033016cba5ce" + }, + "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/Resources/Media.xcassets/Colors/MMDarkGreyWhite.colorset/Contents.json": { + "mtime": 1701451126.0258908, + "ast_hash": "d0b959cfcbf8e71584de6384a7916ad7", + "semantic_hash": "d0b959cfcbf8e71584de6384a7916ad7" + }, + "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/Resources/Media.xcassets/Colors/MMGray6Gray3.colorset/Contents.json": { + "mtime": 1765561318.241547, + "ast_hash": "a6e430b85498511fb6b5f079a2914f6f", + "semantic_hash": "a6e430b85498511fb6b5f079a2914f6f" + }, + "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/Resources/Media.xcassets/Colors/MMGrey6.colorset/Contents.json": { + "mtime": 1765561296.523352, + "ast_hash": "4fa239797d96fe67df720993107ec80b", + "semantic_hash": "4fa239797d96fe67df720993107ec80b" + }, + "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/Resources/Media.xcassets/Colors/MMLessDarkGreyWhite.colorset/Contents.json": { + "mtime": 1701451114.360243, + "ast_hash": "2e88dab5115582d3f8eeca566f35f0b0", + "semantic_hash": "2e88dab5115582d3f8eeca566f35f0b0" + }, + "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/Resources/Media.xcassets/Colors/MMWhiteBlack.colorset/Contents.json": { + "mtime": 1704656055.0518498, + "ast_hash": "25293732fb0f1933c8e828f05adc2454", + "semantic_hash": "25293732fb0f1933c8e828f05adc2454" + }, + "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/Resources/Media.xcassets/Colors/MMWhiteGray3.colorset/Contents.json": { + "mtime": 1765561285.819658, + "ast_hash": "ae82de92a9bd55a214204e979e248017", + "semantic_hash": "ae82de92a9bd55a214204e979e248017" + }, + "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/Resources/Media.xcassets/Colors/MMWhiteGrey6.colorset/Contents.json": { + "mtime": 1701450059.336167, + "ast_hash": "00e47c71da180ec4571c9dbe23b195da", + "semantic_hash": "00e47c71da180ec4571c9dbe23b195da" + }, + "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/Resources/Media.xcassets/Colors/TabascoDracula.colorset/Contents.json": { + "mtime": 1702852492.2284951, + "ast_hash": "109d9e7aa9486d6ff428c27d372d4e8d", + "semantic_hash": "109d9e7aa9486d6ff428c27d372d4e8d" + }, + "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/Resources/Media.xcassets/Contents.json": { + "mtime": 1704574158.1599631, + "ast_hash": "9deb2ada1cc834bbebf8bbad9c8978a1", + "semantic_hash": "9deb2ada1cc834bbebf8bbad9c8978a1" + }, + "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/Resources/Media.xcassets/Images/Contents.json": { + "mtime": 1701450059.334352, + "ast_hash": "9deb2ada1cc834bbebf8bbad9c8978a1", + "semantic_hash": "9deb2ada1cc834bbebf8bbad9c8978a1" + }, + "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/Resources/Media.xcassets/Images/chrome.imageset/Contents.json": { + "mtime": 1765561994.764615, + "ast_hash": "6cc62e15631ec4879283995e504ed9e9", + "semantic_hash": "6cc62e15631ec4879283995e504ed9e9" + }, + "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/Resources/Media.xcassets/Images/logo.imageset/Contents.json": { + "mtime": 1701450059.335534, + "ast_hash": "c7c42a31215d10dac212a3771f0ddd09", + "semantic_hash": "c7c42a31215d10dac212a3771f0ddd09" + }, + "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/SessionState.swift": { + "mtime": 1773159239.85001, + "ast_hash": "63c4c43713730e79ff1aa2ee7f09d234", + "semantic_hash": "63c4c43713730e79ff1aa2ee7f09d234" + }, + "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/ThemeColor.swift": { + "mtime": 1763922429.3710406, + "ast_hash": "83b7ecbf2d5865c088de3e863aff99e0", + "semantic_hash": "83b7ecbf2d5865c088de3e863aff99e0" + }, + "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/URLClassifier.swift": { + "mtime": 1772824345.3839781, + "ast_hash": "6f5285dfeb854acb9c3dacc6722da7ef", + "semantic_hash": "6f5285dfeb854acb9c3dacc6722da7ef" + }, + "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/Utils.swift": { + "mtime": 1773159239.8503568, + "ast_hash": "d89ba117e2663e18214040ac5c0fb638", + "semantic_hash": "d89ba117e2663e18214040ac5c0fb638" + }, + "MacMagazine/Features/MacMagazineLibrary/Tests/MacMagazineLibraryTests/AppDefinitionsTests.swift": { + "mtime": 1766864993.027281, + "ast_hash": "aec8a83cd7115616e98d6bbce7979273", + "semantic_hash": "aec8a83cd7115616e98d6bbce7979273" + }, + "MacMagazine/Features/MacMagazineLibrary/Tests/MacMagazineLibraryTests/URLClassifierTests.swift": { + "mtime": 1772824345.3843598, + "ast_hash": "075f40a846278117c917080df63c7175", + "semantic_hash": "075f40a846278117c917080df63c7175" + }, + "MacMagazine/Features/MacMagazineUILibrary/Package.swift": { + "mtime": 1766602181.5151193, + "ast_hash": "9350993cd60842d2d503a6afd5c8c17c", + "semantic_hash": "9350993cd60842d2d503a6afd5c8c17c" + }, + "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/ArrayExtensions.swift": { + "mtime": 1772824352.2982988, + "ast_hash": "4e44a2e7dd43a65524fd42e37a481ce8", + "semantic_hash": "4e44a2e7dd43a65524fd42e37a481ce8" + }, + "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/ButtonWithGlassEffect.swift": { + "mtime": 1774899429.4108963, + "ast_hash": "e17fb279d77fe775c0de475331374095", + "semantic_hash": "e17fb279d77fe775c0de475331374095" + }, + "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardDensity.swift": { + "mtime": 1773159239.8507974, + "ast_hash": "34bc40215fa013af4ee1787b71b6faf3", + "semantic_hash": "34bc40215fa013af4ee1787b71b6faf3" + }, + "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/DynamicTypeSize.swift": { + "mtime": 1765321618.2358582, + "ast_hash": "dc82030f189ad0bd5efb283dc2b13d22", + "semantic_hash": "dc82030f189ad0bd5efb283dc2b13d22" + }, + "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Model/CardContent.swift": { + "mtime": 1778008694.1209912, + "ast_hash": "aaa9e631c7199a94f6944a140cc74994", + "semantic_hash": "aaa9e631c7199a94f6944a140cc74994" + }, + "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Model/CardStyle.swift": { + "mtime": 1783712032.8434422, + "ast_hash": "c800e036334d89123e5fb9d9c9ecf468", + "semantic_hash": "c800e036334d89123e5fb9d9c9ecf468" + }, + "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/FavoriteAndShare/FavoriteButton.swift": { + "mtime": 1778008694.12178, + "ast_hash": "ecb7ea266371f7213debf2cecb078284", + "semantic_hash": "ecb7ea266371f7213debf2cecb078284" + }, + "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/FavoriteAndShare/FavoriteShareGlassContainer.swift": { + "mtime": 1772824345.3865921, + "ast_hash": "98dec1412fa643c4592fb46800bde59e", + "semantic_hash": "98dec1412fa643c4592fb46800bde59e" + }, + "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/FavoriteAndShare/ShareButton.swift": { + "mtime": 1778008694.1220422, + "ast_hash": "ee0a656a05d5db3e775aa650dc97257c", + "semantic_hash": "ee0a656a05d5db3e775aa650dc97257c" + }, + "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/Menu/MenuButton.swift": { + "mtime": 1783713697.5478609, + "ast_hash": "80e1c220ef177e1338e249e29d10d170", + "semantic_hash": "80e1c220ef177e1338e249e29d10d170" + }, + "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/Metadata/MetadataContent.swift": { + "mtime": 1773159239.8524492, + "ast_hash": "b93ac14858261cb727ee18a388269eb7", + "semantic_hash": "b93ac14858261cb727ee18a388269eb7" + }, + "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/Metadata/MetadataDuration.swift": { + "mtime": 1778008694.122992, + "ast_hash": "65d9076c6fbd18f9743af8c2eb572b3b", + "semantic_hash": "65d9076c6fbd18f9743af8c2eb572b3b" + }, + "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/GlassCardView.swift": { + "mtime": 1783712876.29542, + "ast_hash": "4248b9ce76dd362d8cd3304c1b3c9389", + "semantic_hash": "4248b9ce76dd362d8cd3304c1b3c9389" + }, + "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/LeadingImageCard.swift": { + "mtime": 1778008694.1243463, + "ast_hash": "3fe3ae081aabe8eb734e6fee1bcdf534", + "semantic_hash": "3fe3ae081aabe8eb734e6fee1bcdf534" + }, + "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/NewsCard.swift": { + "mtime": 1783712913.4668176, + "ast_hash": "514620fa881d3b75e6db55f781d96f43", + "semantic_hash": "514620fa881d3b75e6db55f781d96f43" + }, + "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/MenuView.swift": { + "mtime": 1778008694.1254323, + "ast_hash": "66582e6988e9c4e3e78077a56e169f61", + "semantic_hash": "66582e6988e9c4e3e78077a56e169f61" + }, + "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/PaginatedForEach.swift": { + "mtime": 1778008694.1258736, + "ast_hash": "f25a11b71e9ca80a695b3f5d8542a557", + "semantic_hash": "f25a11b71e9ca80a695b3f5d8542a557" + }, + "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/PreviewData/ContentPreview.swift": { + "mtime": 1773159239.8541276, + "ast_hash": "ac9c2b62a97dca06dd9800b9b4ea1017", + "semantic_hash": "ac9c2b62a97dca06dd9800b9b4ea1017" + }, + "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/Cookies.swift": { + "mtime": 1778008694.1264446, + "ast_hash": "e8c803ae4bfbafa16a2ca047ce7fa097", + "semantic_hash": "e8c803ae4bfbafa16a2ca047ce7fa097" + }, + "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/Disqus/DisqusDataStore.swift": { + "mtime": 1772824345.3913097, + "ast_hash": "c9fed7c45cebe056958acedf47a6cd50", + "semantic_hash": "c9fed7c45cebe056958acedf47a6cd50" + }, + "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/Disqus/DisqusHTMLBuilder.swift": { + "mtime": 1772824345.3916125, + "ast_hash": "deb61e969643a98df70d674ead369585", + "semantic_hash": "deb61e969643a98df70d674ead369585" + }, + "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/Disqus/DisqusNewWindowHandler.swift": { + "mtime": 1772824345.3919508, + "ast_hash": "0b68740b5a2aceeb04bb5f345d74fecd", + "semantic_hash": "0b68740b5a2aceeb04bb5f345d74fecd" + }, + "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/Disqus/DisqusWebView.swift": { + "mtime": 1778008694.1266875, + "ast_hash": "3de9030bb95966d960ce0c9e6e1c108e", + "semantic_hash": "3de9030bb95966d960ce0c9e6e1c108e" + }, + "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/GalleryStateMessageHandler.swift": { + "mtime": 1781684811.2717514, + "ast_hash": "93aacb6f7ddafa85984850ab81ccabd8", + "semantic_hash": "93aacb6f7ddafa85984850ab81ccabd8" + }, + "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/InteractivePopGesture.swift": { + "mtime": 1781684811.2719634, + "ast_hash": "ec91f5810047907b58d48ca5b05b67fb", + "semantic_hash": "ec91f5810047907b58d48ca5b05b67fb" + }, + "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMNavigationDecider.swift": { + "mtime": 1774894213.8309805, + "ast_hash": "cde517467dda9d0dcde89a3bc08ba330", + "semantic_hash": "cde517467dda9d0dcde89a3bc08ba330" + }, + "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift": { + "mtime": 1781684811.2723336, + "ast_hash": "d2ea8d088e524ac59a6d7ad0e0616b12", + "semantic_hash": "d2ea8d088e524ac59a6d7ad0e0616b12" + }, + "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebViewUserScripts.swift": { + "mtime": 1781684811.2726648, + "ast_hash": "b5dde99ffcdd74869d949e4fc88ee234", + "semantic_hash": "b5dde99ffcdd74869d949e4fc88ee234" + }, + "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/ManagedWebView.swift": { + "mtime": 1778008694.127829, + "ast_hash": "cce2a8c70d79644e76eff0bc36eb2308", + "semantic_hash": "cce2a8c70d79644e76eff0bc36eb2308" + }, + "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WebPageCache.swift": { + "mtime": 1781684811.2731247, + "ast_hash": "ff037675e55cf04270f253071b7d7d78", + "semantic_hash": "ff037675e55cf04270f253071b7d7d78" + }, + "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WebViewStatus.swift": { + "mtime": 1778008694.1285658, + "ast_hash": "b148204acf95497d13bd2344f02b2f5c", + "semantic_hash": "b148204acf95497d13bd2344f02b2f5c" + }, + "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CardSystemTests.swift": { + "mtime": 1773260916.5372772, + "ast_hash": "257544fc1b9108ee5e587da754f4bae4", + "semantic_hash": "257544fc1b9108ee5e587da754f4bae4" + }, + "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CookiesTests.swift": { + "mtime": 1766185900.751824, + "ast_hash": "11205ce4a30ff1673b2a0f81035fdae2", + "semantic_hash": "11205ce4a30ff1673b2a0f81035fdae2" + }, + "MacMagazine/Features/NewsLibrary/Package.swift": { + "mtime": 1766840449.017107, + "ast_hash": "8aff8b0ade6108708523cd6d8d42b5f0", + "semantic_hash": "8aff8b0ade6108708523cd6d8d42b5f0" + }, + "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Extensions/ArrayExtensions.swift": { + "mtime": 1772892114.9361064, + "ast_hash": "2e05d3e2f44eaf97c02ee9cf406797e2", + "semantic_hash": "2e05d3e2f44eaf97c02ee9cf406797e2" + }, + "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Extensions/FeedDBExtensions.swift": { + "mtime": 1783713592.4128094, + "ast_hash": "5c81b25edba15a46de2dc98630b6a932", + "semantic_hash": "5c81b25edba15a46de2dc98630b6a932" + }, + "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Modifiers/CardAccessibilityModifier.swift": { + "mtime": 1778008694.1298058, + "ast_hash": "027e019481a7e443c5ac4bd566d67d14", + "semantic_hash": "027e019481a7e443c5ac4bd566d67d14" + }, + "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/ViewModel/NewsViewModel.swift": { + "mtime": 1772824345.3958063, + "ast_hash": "5745f9f16dcb0ca159df05c96827fc0d", + "semantic_hash": "5745f9f16dcb0ca159df05c96827fc0d" + }, + "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/CollectionViewWithHeader.swift": { + "mtime": 1773159239.8574405, + "ast_hash": "fb641502fde3a900941a7dc622381e76", + "semantic_hash": "fb641502fde3a900941a7dc622381e76" + }, + "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/FeedHighlightCardView.swift": { + "mtime": 1778008694.1305075, + "ast_hash": "97075c747a648a22a94581f0d65af568", + "semantic_hash": "97075c747a648a22a94581f0d65af568" + }, + "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/FeedHighlightsCarouselView.swift": { + "mtime": 1773159239.8582165, + "ast_hash": "c5010132ee99b672469d475a217612be", + "semantic_hash": "c5010132ee99b672469d475a217612be" + }, + "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Mock/PreviewData.swift": { + "mtime": 1772824345.398413, + "ast_hash": "00ccd47dab8aef5dbe111220263fb5c1", + "semantic_hash": "00ccd47dab8aef5dbe111220263fb5c1" + }, + "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/NewsView.swift": { + "mtime": 1778008694.130869, + "ast_hash": "90088d5b7411ffc79ee56df998140d82", + "semantic_hash": "90088d5b7411ffc79ee56df998140d82" + }, + "MacMagazine/Features/NewsLibrary/Tests/NewsLibraryTests/NewsViewModelTests.swift": { + "mtime": 1772824345.39907, + "ast_hash": "c3fdaa7b3be7fe76f0c678dc1497c6cd", + "semantic_hash": "c3fdaa7b3be7fe76f0c678dc1497c6cd" + }, + "MacMagazine/Features/NewsLibrary/Tests/NewsLibraryTests/Resources/feed.json": { + "mtime": 1766840449.022705, + "ast_hash": "e2cb4efeb2ad9b8e66bcde2907ac7bac", + "semantic_hash": "e2cb4efeb2ad9b8e66bcde2907ac7bac" + }, + "MacMagazine/Features/OnboardingLibrary/Package.swift": { + "mtime": 1766864993.0282607, + "ast_hash": "3d96860e4bfee9d578f4b63c180db022", + "semantic_hash": "3d96860e4bfee9d578f4b63c180db022" + }, + "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Extensions/Array.swift": { + "mtime": 1773159239.8590248, + "ast_hash": "d6e35dbdcf17af3ff6e238a26ace6e3c", + "semantic_hash": "d6e35dbdcf17af3ff6e238a26ace6e3c" + }, + "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Extensions/View.swift": { + "mtime": 1773159239.8595283, + "ast_hash": "2feb754a709934e74ad37f7734e50ef0", + "semantic_hash": "2feb754a709934e74ad37f7734e50ef0" + }, + "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Model/OnBoardingFeature.swift": { + "mtime": 1772824345.3995235, + "ast_hash": "a986348fc999bb114c7078a0e541eafb", + "semantic_hash": "a986348fc999bb114c7078a0e541eafb" + }, + "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Resources/Assets.xcassets/Contents.json": { + "mtime": 1766834687.8086607, + "ast_hash": "9deb2ada1cc834bbebf8bbad9c8978a1", + "semantic_hash": "9deb2ada1cc834bbebf8bbad9c8978a1" + }, + "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Resources/Assets.xcassets/icons without background/Contents.json": { + "mtime": 1766834687.8088627, + "ast_hash": "9deb2ada1cc834bbebf8bbad9c8978a1", + "semantic_hash": "9deb2ada1cc834bbebf8bbad9c8978a1" + }, + "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Resources/Assets.xcassets/icons without background/alternativa_without_background.imageset/Contents.json": { + "mtime": 1766834687.8091745, + "ast_hash": "94124cca3f15290983830ed4a6ecd147", + "semantic_hash": "94124cca3f15290983830ed4a6ecd147" + }, + "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Resources/Assets.xcassets/icons without background/normal_without_background.imageset/Contents.json": { + "mtime": 1766834687.8103924, + "ast_hash": "b3a71599a0171de966c33697523dc102", + "semantic_hash": "b3a71599a0171de966c33697523dc102" + }, + "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Resources/Assets.xcassets/icons/Contents.json": { + "mtime": 1766834687.8132777, + "ast_hash": "9deb2ada1cc834bbebf8bbad9c8978a1", + "semantic_hash": "9deb2ada1cc834bbebf8bbad9c8978a1" + }, + "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Resources/Assets.xcassets/icons/alternative.imageset/Contents.json": { + "mtime": 1766834687.813496, + "ast_hash": "d780a47ef4e01fc9f0848a7f592490ce", + "semantic_hash": "d780a47ef4e01fc9f0848a7f592490ce" + }, + "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Resources/Assets.xcassets/icons/normal.imageset/Contents.json": { + "mtime": 1766834687.8154182, + "ast_hash": "26dd4559035acd53ccf9f24be39ca85f", + "semantic_hash": "26dd4559035acd53ccf9f24be39ca85f" + }, + "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/ViewModels/OnboardingCoordinator.swift": { + "mtime": 1773509682.1370978, + "ast_hash": "dbbf7201a5f422513764a9ef788a609e", + "semantic_hash": "dbbf7201a5f422513764a9ef788a609e" + }, + "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/ViewModels/PermissionManager.swift": { + "mtime": 1778008694.1317763, + "ast_hash": "c046883e5dd32961a723fdc29ee68be0", + "semantic_hash": "c046883e5dd32961a723fdc29ee68be0" + }, + "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Components/OnboardingCTAButton.swift": { + "mtime": 1766834687.8185713, + "ast_hash": "edafd0903f40aff33b2453b751acedee", + "semantic_hash": "edafd0903f40aff33b2453b751acedee" + }, + "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Components/OnboardingLogoView.swift": { + "mtime": 1766834687.8189359, + "ast_hash": "256750f1cbf2b6b3786e82a358b9f148", + "semantic_hash": "256750f1cbf2b6b3786e82a358b9f148" + }, + "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Components/OnboardingSkipButton.swift": { + "mtime": 1766834687.8192348, + "ast_hash": "a120f354f4788921acd3fc79863a6d36", + "semantic_hash": "a120f354f4788921acd3fc79863a6d36" + }, + "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Components/OnboardingTitleView.swift": { + "mtime": 1766834687.8195608, + "ast_hash": "856dd0dd80aec78a904b4e948c49d045", + "semantic_hash": "856dd0dd80aec78a904b4e948c49d045" + }, + "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Components/PermissionCard.swift": { + "mtime": 1766834687.819858, + "ast_hash": "3dd466b10c7128bdc239d10718cd55c9", + "semantic_hash": "3dd466b10c7128bdc239d10718cd55c9" + }, + "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Modifiers/OnboardingFadeModifier.swift": { + "mtime": 1766834687.8206542, + "ast_hash": "c7b9a831408b6ae544e88ee7a8827449", + "semantic_hash": "c7b9a831408b6ae544e88ee7a8827449" + }, + "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/OnboardingContainerView.swift": { + "mtime": 1773508198.2118964, + "ast_hash": "df84756034f499cf364df40f0ac40722", + "semantic_hash": "df84756034f499cf364df40f0ac40722" + }, + "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Screen1_WelcomeView.swift": { + "mtime": 1773254395.5824363, + "ast_hash": "e80a19f1d43fa720c89aa63af40acaba", + "semantic_hash": "e80a19f1d43fa720c89aa63af40acaba" + }, + "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Screen2_FeaturesView.swift": { + "mtime": 1778008694.1322236, + "ast_hash": "9454f8c6d9e7160676a97f5c5c6b39a2", + "semantic_hash": "9454f8c6d9e7160676a97f5c5c6b39a2" + }, + "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Screen3_PermissionsView.swift": { + "mtime": 1773254395.586231, + "ast_hash": "b6141db8ca9e2daf97a5438465447d35", + "semantic_hash": "b6141db8ca9e2daf97a5438465447d35" + }, + "MacMagazine/Features/OnboardingLibrary/Tests/OnboardingLibraryTests/OnboardingCoordinatorTests.swift": { + "mtime": 1773254395.587031, + "ast_hash": "2b3d4f23cbf60daa8aacbfa838e64562", + "semantic_hash": "2b3d4f23cbf60daa8aacbfa838e64562" + }, + "MacMagazine/Features/PodcastLibrary/Package.swift": { + "mtime": 1766840449.02472, + "ast_hash": "d9ff19fa9452d0897df1d63a5593d618", + "semantic_hash": "d9ff19fa9452d0897df1d63a5593d618" + }, + "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Extensions/PodcastDBExtensions.swift": { + "mtime": 1773159239.8597374, + "ast_hash": "15937b067863fba8a754d373e67da096", + "semantic_hash": "15937b067863fba8a754d373e67da096" + }, + "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Extensions/UIColorExtensions.swift": { + "mtime": 1766148332.2920063, + "ast_hash": "088f4a13cfa6f44bd94b2762ac28033c", + "semantic_hash": "088f4a13cfa6f44bd94b2762ac28033c" + }, + "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Extensions/UIImageExtensions.swift": { + "mtime": 1766148332.199047, + "ast_hash": "d979d3d42b67b6eefe00a69afcff5040", + "semantic_hash": "d979d3d42b67b6eefe00a69afcff5040" + }, + "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/PodcastChapter.swift": { + "mtime": 1765659248.6487908, + "ast_hash": "7b7e0b3b7ff2e1b19f983770fc176fe8", + "semantic_hash": "7b7e0b3b7ff2e1b19f983770fc176fe8" + }, + "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/PodcastPlayerManager.swift": { + "mtime": 1773595574.1208196, + "ast_hash": "09b5acde8777c458011eb3fabcb3eb64", + "semantic_hash": "09b5acde8777c458011eb3fabcb3eb64" + }, + "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/SystemVolumeView.swift": { + "mtime": 1765761218.9190571, + "ast_hash": "20ef9d01f6cd2bdeddae1c2e518d28b4", + "semantic_hash": "20ef9d01f6cd2bdeddae1c2e518d28b4" + }, + "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Modifiers/CardAccessibilityModifier.swift": { + "mtime": 1778008694.1329455, + "ast_hash": "be807af974fa4b3909358b7962c96e31", + "semantic_hash": "be807af974fa4b3909358b7962c96e31" + }, + "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Modifiers/PodcastMiniPlayerModifier.swift": { + "mtime": 1772824352.3004918, + "ast_hash": "2c510f98adfafcd9b70b518e2530013b", + "semantic_hash": "2c510f98adfafcd9b70b518e2530013b" + }, + "MacMagazine/Features/PodcastLibrary/Sources/Podcast/ViewModel/PodcastViewModel.swift": { + "mtime": 1772824345.3999035, + "ast_hash": "0d03d929ca0fbef7e48ff3b6ac26f77d", + "semantic_hash": "0d03d929ca0fbef7e48ff3b6ac26f77d" + }, + "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Card/AdaptivePodcastCardView.swift": { + "mtime": 1772824352.300702, + "ast_hash": "2bdea367e696eaa7039999a28a2fdc30", + "semantic_hash": "2bdea367e696eaa7039999a28a2fdc30" + }, + "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Card/GlassPodcastCardView.swift": { + "mtime": 1772824352.300907, + "ast_hash": "33ef7d7bb9306592c2ecb5f41b5a9a7a", + "semantic_hash": "33ef7d7bb9306592c2ecb5f41b5a9a7a" + }, + "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Card/PodcastCardView.swift": { + "mtime": 1772824352.3010736, + "ast_hash": "0ae070ecbeb8b33ac72d94376d5aeb91", + "semantic_hash": "0ae070ecbeb8b33ac72d94376d5aeb91" + }, + "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/ChaptersView.swift": { + "mtime": 1766772439.6392305, + "ast_hash": "caa8b81630a6cacecd661592d733ffe2", + "semantic_hash": "caa8b81630a6cacecd661592d733ffe2" + }, + "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/FullPlayerView.swift": { + "mtime": 1778008694.133932, + "ast_hash": "1c0969f161dbc8564ff46238d4f9bc15", + "semantic_hash": "1c0969f161dbc8564ff46238d4f9bc15" + }, + "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/Background/BackgroundView.swift": { + "mtime": 1765735819.9256406, + "ast_hash": "37b39872b892858c4deeb68bc911d3b6", + "semantic_hash": "37b39872b892858c4deeb68bc911d3b6" + }, + "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/Background/BackgroundViewModel.swift": { + "mtime": 1765734374.8010194, + "ast_hash": "67d45ba8dd465d26a3fb98d657465011", + "semantic_hash": "67d45ba8dd465d26a3fb98d657465011" + }, + "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/PodcastImageView.swift": { + "mtime": 1765735902.047535, + "ast_hash": "510f751e01827ad109529d1d4385101a", + "semantic_hash": "510f751e01827ad109529d1d4385101a" + }, + "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/ScrollStylePicker.swift": { + "mtime": 1778008694.1346414, + "ast_hash": "b0cc4c506b7647899e51559e15b0d931", + "semantic_hash": "b0cc4c506b7647899e51559e15b0d931" + }, + "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/Ticker.swift": { + "mtime": 1765569507.8838193, + "ast_hash": "b642e04e8fc71bf237490840402c3abc", + "semantic_hash": "b642e04e8fc71bf237490840402c3abc" + }, + "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/MiniPlayerView.swift": { + "mtime": 1778008694.135322, + "ast_hash": "4e597a25fe81a5009e8c2e7ab696e5ae", + "semantic_hash": "4e597a25fe81a5009e8c2e7ab696e5ae" + }, + "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/PodcastView.swift": { + "mtime": 1773700012.9324815, + "ast_hash": "6c2bdb6da6522dbb6fca9a8f1314e05f", + "semantic_hash": "6c2bdb6da6522dbb6fca9a8f1314e05f" + }, + "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastChapterTests.swift": { + "mtime": 1766185900.752062, + "ast_hash": "423cac724c61a4bca9040e0ab506d9b5", + "semantic_hash": "423cac724c61a4bca9040e0ab506d9b5" + }, + "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastPlayerManagerTests.swift": { + "mtime": 1766185900.7522604, + "ast_hash": "0f8e1f5adc614f54571c5b021b85a4f0", + "semantic_hash": "0f8e1f5adc614f54571c5b021b85a4f0" + }, + "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastViewModelTests.swift": { + "mtime": 1772824345.400778, + "ast_hash": "8f465a60e0e2da0663752f2d64a3343c", + "semantic_hash": "8f465a60e0e2da0663752f2d64a3343c" + }, + "MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/Resources/podcasts.json": { + "mtime": 1766150801.880985, + "ast_hash": "4f3a769a62def6d2aae6a8b7144b816b", + "semantic_hash": "4f3a769a62def6d2aae6a8b7144b816b" + }, + "MacMagazine/Features/SearchLibrary/Package.swift": { + "mtime": 1772892114.938499, + "ast_hash": "567197abc726056057abec70b9768ae1", + "semantic_hash": "567197abc726056057abec70b9768ae1" + }, + "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Models/RecentSearchDB.swift": { + "mtime": 1772824345.401349, + "ast_hash": "0e14e70bfc1421a0d97f2e519cb0612b", + "semantic_hash": "0e14e70bfc1421a0d97f2e519cb0612b" + }, + "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Models/SearchResult.swift": { + "mtime": 1772892114.9388056, + "ast_hash": "3944460ac46b464af8ab207e521940d3", + "semantic_hash": "3944460ac46b464af8ab207e521940d3" + }, + "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/NLP/PortugueseLexicon.swift": { + "mtime": 1772824345.4016805, + "ast_hash": "9154f743c1c0cf98d1a50c627ad00314", + "semantic_hash": "9154f743c1c0cf98d1a50c627ad00314" + }, + "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/NLP/QueryIntent.swift": { + "mtime": 1772824345.4018025, + "ast_hash": "d3468259fca5a41fd9a6699f9b8dc585", + "semantic_hash": "d3468259fca5a41fd9a6699f9b8dc585" + }, + "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/NLP/QueryProcessor.swift": { + "mtime": 1772824345.401951, + "ast_hash": "56fb583fcf4be6c46b1b0d3ae3a16a97", + "semantic_hash": "56fb583fcf4be6c46b1b0d3ae3a16a97" + }, + "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Services/LocalSearchService.swift": { + "mtime": 1772824352.3020256, + "ast_hash": "0ab5b99fc989c53660022e97bfec5b69", + "semantic_hash": "0ab5b99fc989c53660022e97bfec5b69" + }, + "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Services/RelevanceScorer.swift": { + "mtime": 1772892114.9391377, + "ast_hash": "b40bd3528163d6ccb20275394285f211", + "semantic_hash": "b40bd3528163d6ccb20275394285f211" + }, + "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Services/RemoteFeedSearchService.swift": { + "mtime": 1772892114.9393911, + "ast_hash": "bafc80094557b08516c37d09d7c4e5ae", + "semantic_hash": "bafc80094557b08516c37d09d7c4e5ae" + }, + "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Services/SearchResultMerger.swift": { + "mtime": 1772824352.302393, + "ast_hash": "fff2186cc5f7508e723f34b74df12356", + "semantic_hash": "fff2186cc5f7508e723f34b74df12356" + }, + "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/ViewModel/SearchViewModel.swift": { + "mtime": 1773159239.86016, + "ast_hash": "827d5e52236fc6ced7a65c78b99c0a18", + "semantic_hash": "827d5e52236fc6ced7a65c78b99c0a18" + }, + "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/RecentSearchesView.swift": { + "mtime": 1778008694.135863, + "ast_hash": "7dcaee68161ebfff6666506a1d5eccc8", + "semantic_hash": "7dcaee68161ebfff6666506a1d5eccc8" + }, + "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchResultsList.swift": { + "mtime": 1783714432.9105358, + "ast_hash": "b998f72db2ef097c5faf75b8e7bbc393", + "semantic_hash": "b998f72db2ef097c5faf75b8e7bbc393" + }, + "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchView.swift": { + "mtime": 1783719971.1998243, + "ast_hash": "77e0cb5b3c8628104d9a5280f1eb5051", + "semantic_hash": "77e0cb5b3c8628104d9a5280f1eb5051" + }, + "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/QueryProcessorTests.swift": { + "mtime": 1772824345.403498, + "ast_hash": "8b8dbaa4884bf2c37dc83786d76b3e88", + "semantic_hash": "8b8dbaa4884bf2c37dc83786d76b3e88" + }, + "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/RelevanceScorerTests.swift": { + "mtime": 1772892114.9403636, + "ast_hash": "dc920aa9638894e861c09d925f30385d", + "semantic_hash": "dc920aa9638894e861c09d925f30385d" + }, + "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/RemoteFeedSearchServiceTests.swift": { + "mtime": 1773260916.5375633, + "ast_hash": "b5346e72c03ccedb31752e2bf159d7fe", + "semantic_hash": "b5346e72c03ccedb31752e2bf159d7fe" + }, + "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchResultMergerTests.swift": { + "mtime": 1772892114.940756, + "ast_hash": "f52918eb2ba534c9d49733da62a85819", + "semantic_hash": "f52918eb2ba534c9d49733da62a85819" + }, + "MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchViewModelTests.swift": { + "mtime": 1773305059.5444443, + "ast_hash": "bb2552bc633745b7cd5a75d52cb03ac1", + "semantic_hash": "bb2552bc633745b7cd5a75d52cb03ac1" + }, + "MacMagazine/Features/SettingsLibrary/Package.swift": { + "mtime": 1772824345.4042206, + "ast_hash": "53035bbdbfbb628e3d0d58bcd6931ce5", + "semantic_hash": "53035bbdbfbb628e3d0d58bcd6931ce5" + }, + "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/Cache.swift": { + "mtime": 1773686655.527651, + "ast_hash": "284f1bdd372c6d1e505485ccc9b135ee", + "semantic_hash": "284f1bdd372c6d1e505485ccc9b135ee" + }, + "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/ColorScheme.swift": { + "mtime": 1762902416.4618778, + "ast_hash": "3a40a630c035836889e9e8fffa24cf95", + "semantic_hash": "3a40a630c035836889e9e8fffa24cf95" + }, + "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/Databases/CustomizationDB.swift": { + "mtime": 1766840449.0271719, + "ast_hash": "33dfac04c8fc6260c60deeb9b7ff58b3", + "semantic_hash": "33dfac04c8fc6260c60deeb9b7ff58b3" + }, + "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/Databases/SettingsDB.swift": { + "mtime": 1778008694.1379087, + "ast_hash": "95fb7c3105965ddef1a886dfd176b197", + "semantic_hash": "95fb7c3105965ddef1a886dfd176b197" + }, + "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/IconType.swift": { + "mtime": 1762902416.462057, + "ast_hash": "cf507b6231d8514f3bf052b6a0324b43", + "semantic_hash": "cf507b6231d8514f3bf052b6a0324b43" + }, + "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/PushPreferences.swift": { + "mtime": 1762902416.4628103, + "ast_hash": "fa79be0e5b7034fcee7dd712e786d0b8", + "semantic_hash": "fa79be0e5b7034fcee7dd712e786d0b8" + }, + "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/Subscription.swift": { + "mtime": 1762902416.4629412, + "ast_hash": "9e1c43af59095e4f058a234adca5342d", + "semantic_hash": "9e1c43af59095e4f058a234adca5342d" + }, + "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/URLs.swift": { + "mtime": 1762902416.4631407, + "ast_hash": "1fd69c25d88d1bd71a8ccbee324cb5f7", + "semantic_hash": "1fd69c25d88d1bd71a8ccbee324cb5f7" + }, + "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Resources/Assets.xcassets/Contents.json": { + "mtime": 1762980717.204738, + "ast_hash": "9deb2ada1cc834bbebf8bbad9c8978a1", + "semantic_hash": "9deb2ada1cc834bbebf8bbad9c8978a1" + }, + "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Resources/Assets.xcassets/icons/Contents.json": { + "mtime": 1762902416.4633143, + "ast_hash": "9deb2ada1cc834bbebf8bbad9c8978a1", + "semantic_hash": "9deb2ada1cc834bbebf8bbad9c8978a1" + }, + "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Resources/Assets.xcassets/icons/alternative.imageset/Contents.json": { + "mtime": 1765561852.06637, + "ast_hash": "d780a47ef4e01fc9f0848a7f592490ce", + "semantic_hash": "d780a47ef4e01fc9f0848a7f592490ce" + }, + "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Resources/Assets.xcassets/icons/normal.imageset/Contents.json": { + "mtime": 1765561852.066437, + "ast_hash": "26dd4559035acd53ccf9f24be39ca85f", + "semantic_hash": "26dd4559035acd53ccf9f24be39ca85f" + }, + "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/AboutViewModel.swift": { + "mtime": 1776460570.8910453, + "ast_hash": "5cb29712b1bcd65bd5dbb2529dcaf88a", + "semantic_hash": "5cb29712b1bcd65bd5dbb2529dcaf88a" + }, + "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/AppearanceViewModel.swift": { + "mtime": 1765117042.8434358, + "ast_hash": "e961b312d9bb8845d63ddb1b782c91b7", + "semantic_hash": "e961b312d9bb8845d63ddb1b782c91b7" + }, + "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/CustomizationViewModel.swift": { + "mtime": 1772824345.4051034, + "ast_hash": "e41a9ab2b446fd3b9dd89da3a7a19ded", + "semantic_hash": "e41a9ab2b446fd3b9dd89da3a7a19ded" + }, + "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/Extensions/Database.swift": { + "mtime": 1778008694.138228, + "ast_hash": "818e5d8e77ce04d0dfb1e1b1462c5453", + "semantic_hash": "818e5d8e77ce04d0dfb1e1b1462c5453" + }, + "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/IconsViewModel.swift": { + "mtime": 1765124023.8317738, + "ast_hash": "afd26d1f50ee8b907f4fa5d5348a1832", + "semantic_hash": "afd26d1f50ee8b907f4fa5d5348a1832" + }, + "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/PostsVisibilityViewModel.swift": { + "mtime": 1776878759.4587235, + "ast_hash": "e8eec1471905599936c0ab2a0f41a9c6", + "semantic_hash": "e8eec1471905599936c0ab2a0f41a9c6" + }, + "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/PushOptionsViewModel.swift": { + "mtime": 1766772439.6417851, + "ast_hash": "f6e884605704fcbba4f931a28bc6cd16", + "semantic_hash": "f6e884605704fcbba4f931a28bc6cd16" + }, + "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/ReadingPreferencesViewModel.swift": { + "mtime": 1778008694.138343, + "ast_hash": "3f24a3116982b0a1987fe62d4081cbf5", + "semantic_hash": "3f24a3116982b0a1987fe62d4081cbf5" + }, + "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/SettingsViewModel.swift": { + "mtime": 1778008694.1385205, + "ast_hash": "562c50057f3a44e776d0dfbbc8f2903c", + "semantic_hash": "562c50057f3a44e776d0dfbbc8f2903c" + }, + "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/SubscriptionViewModel.swift": { + "mtime": 1778008694.1392057, + "ast_hash": "d26445833704bd3693e93575fcebc7dc", + "semantic_hash": "d26445833704bd3693e93575fcebc7dc" + }, + "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Extensions/CustomProductViewStyle.swift": { + "mtime": 1772824345.406023, + "ast_hash": "3e93451ecd5199a4971ab87d209624cd", + "semantic_hash": "3e93451ecd5199a4971ab87d209624cd" + }, + "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Extensions/PlainButtonTextStyle.swift": { + "mtime": 1762902416.4685385, + "ast_hash": "9aa46c82d70243690854172dd9919b8c", + "semantic_hash": "9aa46c82d70243690854172dd9919b8c" + }, + "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/SettingsView.swift": { + "mtime": 1783714094.2256603, + "ast_hash": "9135ae607eba9e01ae801ac8714072b4", + "semantic_hash": "9135ae607eba9e01ae801ac8714072b4" + }, + "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/AboutView.swift": { + "mtime": 1773688583.027252, + "ast_hash": "fd81a5f073efe55b850a2811ce58104b", + "semantic_hash": "fd81a5f073efe55b850a2811ce58104b" + }, + "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/AppearanceView.swift": { + "mtime": 1766101710.5004134, + "ast_hash": "492b20eca4d220b4dacf3b5319a614aa", + "semantic_hash": "492b20eca4d220b4dacf3b5319a614aa" + }, + "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/CustomSocialView.swift": { + "mtime": 1766101897.0697021, + "ast_hash": "4926ad713f9d4ba8f547a84371377835", + "semantic_hash": "4926ad713f9d4ba8f547a84371377835" + }, + "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/CustomTabView.swift": { + "mtime": 1773589049.6798227, + "ast_hash": "e737a5f73baf8c2bfc227011fdee0b7a", + "semantic_hash": "e737a5f73baf8c2bfc227011fdee0b7a" + }, + "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/IconsView.swift": { + "mtime": 1766101747.4883657, + "ast_hash": "eb920f6d42c1bc05e719c8886d054068", + "semantic_hash": "eb920f6d42c1bc05e719c8886d054068" + }, + "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/PostsVisibilityView.swift": { + "mtime": 1773870995.261651, + "ast_hash": "3ae4caeca72797c980913651e792be60", + "semantic_hash": "3ae4caeca72797c980913651e792be60" + }, + "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/PushOptionsView.swift": { + "mtime": 1766101860.121251, + "ast_hash": "8f955350b44014c30f938c234328a381", + "semantic_hash": "8f955350b44014c30f938c234328a381" + }, + "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/ReadingPreferencesView.swift": { + "mtime": 1778008694.140174, + "ast_hash": "73bf7ba9e99aeea737bfaed4881a690d", + "semantic_hash": "73bf7ba9e99aeea737bfaed4881a690d" + }, + "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/SubscriptionView.swift": { + "mtime": 1778008694.141027, + "ast_hash": "1c2584b79337751e5093a54db35343d8", + "semantic_hash": "1c2584b79337751e5093a54db35343d8" + }, + "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/DatabaseExtensionsTests.swift": { + "mtime": 1773686957.6471934, + "ast_hash": "4c7aac834cc4c44ee03b777ce8da6ab9", + "semantic_hash": "4c7aac834cc4c44ee03b777ce8da6ab9" + }, + "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SettingsViewModelTests.swift": { + "mtime": 1766864993.0297585, + "ast_hash": "c7775e63c85512c46e442598d2ec2394", + "semantic_hash": "c7775e63c85512c46e442598d2ec2394" + }, + "MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SubscriptionTests.swift": { + "mtime": 1766185900.7531443, + "ast_hash": "087ed5345efddf83090ec3e0a1044036", + "semantic_hash": "087ed5345efddf83090ec3e0a1044036" + }, + "MacMagazine/Features/VideosLibrary/Package.swift": { + "mtime": 1766864993.0302548, + "ast_hash": "c22b2a8193983e35ca6fe4f7545f4a51", + "semantic_hash": "c22b2a8193983e35ca6fe4f7545f4a51" + }, + "MacMagazine/Features/VideosLibrary/Sources/Videos/Card/AdaptiveVideoCard.swift": { + "mtime": 1772892114.941932, + "ast_hash": "a033a56e3c9b497a6fa10d663289868b", + "semantic_hash": "a033a56e3c9b497a6fa10d663289868b" + }, + "MacMagazine/Features/VideosLibrary/Sources/Videos/Model/VideoDBExtensions.swift": { + "mtime": 1773159239.8656535, + "ast_hash": "9ef133593dd107b5b5941c541e5a9afd", + "semantic_hash": "9ef133593dd107b5b5941c541e5a9afd" + }, + "MacMagazine/Features/VideosLibrary/Sources/Videos/VideosView.swift": { + "mtime": 1773700013.900048, + "ast_hash": "71c5c98ac5e0434f68b56751fb05eb0f", + "semantic_hash": "71c5c98ac5e0434f68b56751fb05eb0f" + }, + "MacMagazine/Features/VideosLibrary/Sources/Videos/VideosViewModel.swift": { + "mtime": 1773489754.9813483, + "ast_hash": "a5a0150c5b5b96c59f040aa49b9d85c4", + "semantic_hash": "a5a0150c5b5b96c59f040aa49b9d85c4" + }, + "MacMagazine/Features/VideosLibrary/Tests/VideosLibraryTests/VideosViewModelTests.swift": { + "mtime": 1772824345.4072876, + "ast_hash": "1a8bacc482776efc858f0cb0074c3396", + "semantic_hash": "1a8bacc482776efc858f0cb0074c3396" + }, + "MacMagazine/MacMagazine/Features/News/DeepLinkNewsDetailView.swift": { + "mtime": 1778008694.1422646, + "ast_hash": "65dbeea69e23deb0fb0ff0562bd6e14c", + "semantic_hash": "65dbeea69e23deb0fb0ff0562bd6e14c" + }, + "MacMagazine/MacMagazine/Features/News/NewsView.swift": { + "mtime": 1773255289.6200697, + "ast_hash": "58531acb5f46a1733b77b0327ba2b283", + "semantic_hash": "58531acb5f46a1733b77b0327ba2b283" + }, + "MacMagazine/MacMagazine/Features/News/ToolbarModifier.swift": { + "mtime": 1773159239.8675573, + "ast_hash": "92cc2e775d8a0d2c24374298111b2425", + "semantic_hash": "92cc2e775d8a0d2c24374298111b2425" + }, + "MacMagazine/MacMagazine/Features/Shortcuts/ShortcutActions.swift": { + "mtime": 1773409970.3831894, + "ast_hash": "accd0a62871039a7bc5ed0b644ddcfa6", + "semantic_hash": "accd0a62871039a7bc5ed0b644ddcfa6" + }, + "MacMagazine/MacMagazine/Features/Shortcuts/ShortcutManager.swift": { + "mtime": 1773411133.093537, + "ast_hash": "5e56df697d024792c2eb678df3344c71", + "semantic_hash": "5e56df697d024792c2eb678df3344c71" + }, + "MacMagazine/MacMagazine/Features/Social/SocialView.swift": { + "mtime": 1778008694.142856, + "ast_hash": "6f9f9e7ec328c249d0536abd8f29dc7d", + "semantic_hash": "6f9f9e7ec328c249d0536abd8f29dc7d" + }, + "MacMagazine/MacMagazine/MainApp/AppDelegate.swift": { + "mtime": 1778437790.4739814, + "ast_hash": "8023f9dae2dfb30163395983e58ce88d", + "semantic_hash": "8023f9dae2dfb30163395983e58ce88d" + }, + "MacMagazine/MacMagazine/MainApp/MacMagazineApp.swift": { + "mtime": 1778008694.1438034, + "ast_hash": "c6645e8715f0a776ea753595cb447aa5", + "semantic_hash": "c6645e8715f0a776ea753595cb447aa5" + }, + "MacMagazine/MacMagazine/MainApp/MainView.swift": { + "mtime": 1773871757.0255034, + "ast_hash": "08de58f9a0e1b3dbca1c21124b26a85c", + "semantic_hash": "08de58f9a0e1b3dbca1c21124b26a85c" + }, + "MacMagazine/MacMagazine/MainApp/MainViewModel.swift": { + "mtime": 1783711691.7746208, + "ast_hash": "3c44b8ae3f3f50e6923af52e191c683d", + "semantic_hash": "3c44b8ae3f3f50e6923af52e191c683d" + }, + "MacMagazine/MacMagazine/MainApp/NavigationState.swift": { + "mtime": 1772892114.945714, + "ast_hash": "e6373b3ccb9c3693ce4ac1249aee9ab0", + "semantic_hash": "e6373b3ccb9c3693ce4ac1249aee9ab0" + }, + "MacMagazine/MacMagazine/MainApp/SceneDelegate.swift": { + "mtime": 1778354414.1551316, + "ast_hash": "dcf4d663fd824d198248769c3b7bf9e3", + "semantic_hash": "dcf4d663fd824d198248769c3b7bf9e3" + }, + "MacMagazine/MacMagazine/MainApp/Sizecalss/MainView+sidebar.swift": { + "mtime": 1776799765.8637931, + "ast_hash": "abd6fa2fa963b34372cf393d7f8dbb2c", + "semantic_hash": "abd6fa2fa963b34372cf393d7f8dbb2c" + }, + "MacMagazine/MacMagazine/MainApp/Sizecalss/MainView+tabbar.swift": { + "mtime": 1783715703.8583858, + "ast_hash": "3f8878e28a87b827bfd101052f0789b1", + "semantic_hash": "3f8878e28a87b827bfd101052f0789b1" + }, + "MacMagazine/MacMagazine/Modifiers/NavigationModifier.swift": { + "mtime": 1774892959.844411, + "ast_hash": "89917fd68aaf8773fee7e95c2e5da740", + "semantic_hash": "89917fd68aaf8773fee7e95c2e5da740" + }, + "MacMagazine/MacMagazine/Resources/Assets.xcassets/AccentColor.colorset/Contents.json": { + "mtime": 1701436743.0711026, + "ast_hash": "55019f7265dde0a78318b0807f98e847", + "semantic_hash": "55019f7265dde0a78318b0807f98e847" + }, + "MacMagazine/MacMagazine/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json": { + "mtime": 1757431097.208888, + "ast_hash": "656e426612a7126f2dc91453413e7c4a", + "semantic_hash": "656e426612a7126f2dc91453413e7c4a" + }, + "MacMagazine/MacMagazine/Resources/Assets.xcassets/Contents.json": { + "mtime": 1766839589.152297, + "ast_hash": "9deb2ada1cc834bbebf8bbad9c8978a1", + "semantic_hash": "9deb2ada1cc834bbebf8bbad9c8978a1" + }, + "MacMagazine/MacMagazine/Resources/Assets.xcassets/MMGrey6White.colorset/Contents.json": { + "mtime": 1766840449.038974, + "ast_hash": "b70ce7ff68cefc16bd54445f2b86b614", + "semantic_hash": "b70ce7ff68cefc16bd54445f2b86b614" + }, + "MacMagazine/MacMagazine/Resources/Assets.xcassets/MMWhiteGrey6.colorset/Contents.json": { + "mtime": 1766840449.0392544, + "ast_hash": "00e47c71da180ec4571c9dbe23b195da", + "semantic_hash": "00e47c71da180ec4571c9dbe23b195da" + }, + "MacMagazine/MacMagazine/Resources/Assets.xcassets/logo.imageset/Contents.json": { + "mtime": 1766840449.0396357, + "ast_hash": "d5a2c1fd9d3a56cdabdf1fbec21fc79b", + "semantic_hash": "d5a2c1fd9d3a56cdabdf1fbec21fc79b" + }, + "MacMagazine/MacMagazine/Resources/Icon/mm_icon.icon/icon.json": { + "mtime": 1757887716.6266506, + "ast_hash": "966722f395b84ccbb6e15eebad76188b", + "semantic_hash": "966722f395b84ccbb6e15eebad76188b" + }, + "MacMagazine/MacMagazine/Resources/Icon/mm_icon_inverted.icon/icon.json": { + "mtime": 1757887716.6281965, + "ast_hash": "02364fa20fca6c430cb5be570fa2d1b7", + "semantic_hash": "02364fa20fca6c430cb5be570fa2d1b7" + }, + "MacMagazine/MacMagazine/Resources/Icon/mm_icon_normal.icon/icon.json": { + "mtime": 1757887716.62922, + "ast_hash": "966722f395b84ccbb6e15eebad76188b", + "semantic_hash": "966722f395b84ccbb6e15eebad76188b" + }, + "MacMagazine/MacMagazineNotificationServiceExtension/NotificationService.swift": { + "mtime": 1773485080.4341278, + "ast_hash": "5b84c612cb28185d5fbeea919d6e8757", + "semantic_hash": "5b84c612cb28185d5fbeea919d6e8757" + }, + "MacMagazine/WatchApp/Extension/FeedDB.swift": { + "mtime": 1766840449.0454433, + "ast_hash": "cc020b6d82189dcc122dd8a095f9062d", + "semantic_hash": "cc020b6d82189dcc122dd8a095f9062d" + }, + "MacMagazine/WatchApp/Helper/FeedDotsIndicatorView.swift": { + "mtime": 1766091468.1903956, + "ast_hash": "4de4baa2833b5b254c4c148d01bdf825", + "semantic_hash": "4de4baa2833b5b254c4c148d01bdf825" + }, + "MacMagazine/WatchApp/MainApp/WatchApp.swift": { + "mtime": 1773260916.5400856, + "ast_hash": "d1feb5bfdc219e72903e476b9e51896f", + "semantic_hash": "d1feb5bfdc219e72903e476b9e51896f" + }, + "MacMagazine/WatchApp/MainApp/WatchNotificationsDelegate.swift": { + "mtime": 1773508921.753622, + "ast_hash": "d38ae702c5e6edd90a06b73ab45bf1c5", + "semantic_hash": "d38ae702c5e6edd90a06b73ab45bf1c5" + }, + "MacMagazine/WatchApp/Resources/Assets.xcassets/AccentColor.colorset/Contents.json": { + "mtime": 1766241767.1957436, + "ast_hash": "55019f7265dde0a78318b0807f98e847", + "semantic_hash": "55019f7265dde0a78318b0807f98e847" + }, + "MacMagazine/WatchApp/Resources/Assets.xcassets/Contents.json": { + "mtime": 1766092976.285906, + "ast_hash": "9deb2ada1cc834bbebf8bbad9c8978a1", + "semantic_hash": "9deb2ada1cc834bbebf8bbad9c8978a1" + }, + "MacMagazine/WatchApp/Resources/Assets.xcassets/logo_color.imageset/Contents.json": { + "mtime": 1766092973.153633, + "ast_hash": "5fe1a0043e7919a5abf0620f4274ede9", + "semantic_hash": "5fe1a0043e7919a5abf0620f4274ede9" + }, + "MacMagazine/WatchApp/ViewModel/FeedMainViewModel.swift": { + "mtime": 1773254395.5900383, + "ast_hash": "5d94d8656c0ddfb01b384fe2566101ff", + "semantic_hash": "5d94d8656c0ddfb01b384fe2566101ff" + }, + "MacMagazine/WatchApp/ViewModel/FeedScrollPositionKey.swift": { + "mtime": 1766009723.5661674, + "ast_hash": "689a7ab627843698ce7d1e4e68a82763", + "semantic_hash": "689a7ab627843698ce7d1e4e68a82763" + }, + "MacMagazine/WatchApp/Views/FeedDetailView.swift": { + "mtime": 1774892959.831018, + "ast_hash": "50b6a786adb604ad3977ed8933143db9", + "semantic_hash": "50b6a786adb604ad3977ed8933143db9" + }, + "MacMagazine/WatchApp/Views/FeedMainView.swift": { + "mtime": 1773260916.540917, + "ast_hash": "1f1957b6c5f9d3d1d996454eaadcdb2a", + "semantic_hash": "1f1957b6c5f9d3d1d996454eaadcdb2a" + }, + "MacMagazine/WatchApp/Views/Row/FeedRowView.swift": { + "mtime": 1766419440.2961898, + "ast_hash": "d440e163f7fadbea1a924ba998d5fa20", + "semantic_hash": "d440e163f7fadbea1a924ba998d5fa20" + }, + "MacMagazine/WatchWidget/Extensions/WidgetAccessibility+View.swift": { + "mtime": 1766244067.357389, + "ast_hash": "7b7b87b1c6048e31e3326910824cba0d", + "semantic_hash": "7b7b87b1c6048e31e3326910824cba0d" + }, + "MacMagazine/WatchWidget/Model/WidgetEntry.swift": { + "mtime": 1766840449.047903, + "ast_hash": "d2db8c5569754d2a9add7201d221006d", + "semantic_hash": "d2db8c5569754d2a9add7201d221006d" + }, + "MacMagazine/WatchWidget/Resources/Assets.xcassets/AccentColor.colorset/Contents.json": { + "mtime": 1766241767.198917, + "ast_hash": "55019f7265dde0a78318b0807f98e847", + "semantic_hash": "55019f7265dde0a78318b0807f98e847" + }, + "MacMagazine/WatchWidget/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json": { + "mtime": 1766241767.199254, + "ast_hash": "3a29e2c9d8326ec264f9d8f9db418163", + "semantic_hash": "3a29e2c9d8326ec264f9d8f9db418163" + }, + "MacMagazine/WatchWidget/Resources/Assets.xcassets/Contents.json": { + "mtime": 1766241767.1993685, + "ast_hash": "9deb2ada1cc834bbebf8bbad9c8978a1", + "semantic_hash": "9deb2ada1cc834bbebf8bbad9c8978a1" + }, + "MacMagazine/WatchWidget/Resources/Assets.xcassets/WidgetBackground.colorset/Contents.json": { + "mtime": 1766241767.1995747, + "ast_hash": "55019f7265dde0a78318b0807f98e847", + "semantic_hash": "55019f7265dde0a78318b0807f98e847" + }, + "MacMagazine/WatchWidget/Resources/Assets.xcassets/logo_color.imageset/Contents.json": { + "mtime": 1766241767.1999552, + "ast_hash": "bcd093e28e16197d7250f78268494789", + "semantic_hash": "bcd093e28e16197d7250f78268494789" + }, + "MacMagazine/WatchWidget/Resources/Assets.xcassets/logo_white.imageset/Contents.json": { + "mtime": 1766241767.2006638, + "ast_hash": "bb12c278b2e09a67fe1b5766cef0c452", + "semantic_hash": "bb12c278b2e09a67fe1b5766cef0c452" + }, + "MacMagazine/WatchWidget/Views/WatchWidgetEntryView.swift": { + "mtime": 1774467066.6320674, + "ast_hash": "5419a03bb31638843432f01e01989cdf", + "semantic_hash": "5419a03bb31638843432f01e01989cdf" + }, + "MacMagazine/WatchWidget/Widget/WatchWidget.swift": { + "mtime": 1766840449.0486796, + "ast_hash": "89f0f997f3c44f4bd92490a0158a1a8e", + "semantic_hash": "89f0f997f3c44f4bd92490a0158a1a8e" + }, + "MacMagazine/WatchWidget/Widget/WatchWidgetBundle.swift": { + "mtime": 1766405170.5697932, + "ast_hash": "d7c428a13b83578a6cd8a0a7a0f80c23", + "semantic_hash": "d7c428a13b83578a6cd8a0a7a0f80c23" + }, + "MacMagazine/WatchWidget/Widget/WatchWidgetProvider.swift": { + "mtime": 1766840449.0492272, + "ast_hash": "3fae1c054aefcb2cbe03355fc46085cb", + "semantic_hash": "3fae1c054aefcb2cbe03355fc46085cb" + }, + "MacMagazine/Widget/Extensions/WidgetAccessibility+View.swift": { + "mtime": 1778008694.1446311, + "ast_hash": "a571a7a04b65033acd505878bc64750a", + "semantic_hash": "a571a7a04b65033acd505878bc64750a" + }, + "MacMagazine/Widget/MacMagazineWidget.swift": { + "mtime": 1774467098.0361583, + "ast_hash": "bf9fab671e6c41907892329ce0c2a5c0", + "semantic_hash": "bf9fab671e6c41907892329ce0c2a5c0" + }, + "MacMagazine/Widget/MacMagazineWidgetBundle.swift": { + "mtime": 1765393002.5917273, + "ast_hash": "4570a342ee896813fdad8a477599300a", + "semantic_hash": "4570a342ee896813fdad8a477599300a" + }, + "MacMagazine/Widget/MacMagazineWidgetLiveActivity.swift": { + "mtime": 1765389010.107379, + "ast_hash": "c036d2175691701df94d3872442d1091", + "semantic_hash": "c036d2175691701df94d3872442d1091" + }, + "MacMagazine/Widget/Models/WidgetData.swift": { + "mtime": 1766185900.754244, + "ast_hash": "243391cc62dd23b684d2b4b556c847f6", + "semantic_hash": "243391cc62dd23b684d2b4b556c847f6" + }, + "MacMagazine/Widget/Resources/Assets.xcassets/AccentColor.colorset/Contents.json": { + "mtime": 1766828949.184686, + "ast_hash": "55019f7265dde0a78318b0807f98e847", + "semantic_hash": "55019f7265dde0a78318b0807f98e847" + }, + "MacMagazine/Widget/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json": { + "mtime": 1766828949.1848466, + "ast_hash": "1ab71a1b3119c8ff5fcb48db3310167d", + "semantic_hash": "1ab71a1b3119c8ff5fcb48db3310167d" + }, + "MacMagazine/Widget/Resources/Assets.xcassets/Contents.json": { + "mtime": 1766828949.1849325, + "ast_hash": "9deb2ada1cc834bbebf8bbad9c8978a1", + "semantic_hash": "9deb2ada1cc834bbebf8bbad9c8978a1" + }, + "MacMagazine/Widget/Resources/Assets.xcassets/WidgetBackground.colorset/Contents.json": { + "mtime": 1766828949.1850817, + "ast_hash": "55019f7265dde0a78318b0807f98e847", + "semantic_hash": "55019f7265dde0a78318b0807f98e847" + }, + "MacMagazine/Widget/Resources/Assets.xcassets/logo_color.imageset/Contents.json": { + "mtime": 1766828949.1852484, + "ast_hash": "5fe1a0043e7919a5abf0620f4274ede9", + "semantic_hash": "5fe1a0043e7919a5abf0620f4274ede9" + }, + "MacMagazine/Widget/Resources/Assets.xcassets/logo_white.imageset/Contents.json": { + "mtime": 1766828949.1866848, + "ast_hash": "5fe1a0043e7919a5abf0620f4274ede9", + "semantic_hash": "5fe1a0043e7919a5abf0620f4274ede9" + }, + "MacMagazine/Widget/Resources/Assets.xcassets/macmagazine.imageset/Contents.json": { + "mtime": 1766828949.1884031, + "ast_hash": "0fd50798ed9591ea1cfe8832c60fa2d1", + "semantic_hash": "0fd50798ed9591ea1cfe8832c60fa2d1" + }, + "MacMagazine/Widget/Resources/Assets.xcassets/macmagazine_clear.imageset/Contents.json": { + "mtime": 1766828949.1912665, + "ast_hash": "1e66ea83ab388fea352b01980a62fc29", + "semantic_hash": "1e66ea83ab388fea352b01980a62fc29" + }, + "MacMagazine/Widget/Timeline/MacMagazineTimelineProvider.swift": { + "mtime": 1766185900.7544856, + "ast_hash": "0db45b367a8b4cb9a214bd00f1fb768c", + "semantic_hash": "0db45b367a8b4cb9a214bd00f1fb768c" + }, + "MacMagazine/Widget/Timeline/WidgetEntry.swift": { + "mtime": 1765544727.498445, + "ast_hash": "8f5318d193501ee0f716661ba1c6e11c", + "semantic_hash": "8f5318d193501ee0f716661ba1c6e11c" + }, + "MacMagazine/Widget/Views/Modifiers/HeaderWidgetModifier.swift": { + "mtime": 1766834687.8258781, + "ast_hash": "a64c74480661e2c1f6573fecfb6e5dc4", + "semantic_hash": "a64c74480661e2c1f6573fecfb6e5dc4" + }, + "MacMagazine/Widget/Views/Modifiers/SmallWidgetStyleModifier.swift": { + "mtime": 1766351349.586638, + "ast_hash": "e7176ebc14bdc78c601023f587fa546a", + "semantic_hash": "e7176ebc14bdc78c601023f587fa546a" + }, + "MacMagazine/Widget/Views/WidgetElementView.swift": { + "mtime": 1778008694.1452987, + "ast_hash": "9a1669452f5fb049a2503bf23fdf77fc", + "semantic_hash": "9a1669452f5fb049a2503bf23fdf77fc" + }, + "MacMagazine/Widget/Views/WidgetView.swift": { + "mtime": 1778008694.1455717, + "ast_hash": "d5403c8ce223142a602ccbafbdf389d1", + "semantic_hash": "d5403c8ce223142a602ccbafbdf389d1" + }, + "MacMagazine/ci_scripts/ci_post_clone.sh": { + "mtime": 1766864993.033124, + "ast_hash": "9ed36c954d4f8b70596fd192f6d8de6e", + "semantic_hash": "9ed36c954d4f8b70596fd192f6d8de6e" + }, + "Support/Scripts/clean-build-folders.sh": { + "mtime": 1766240075.4434185, + "ast_hash": "b5afe448d71d9d3fa1a39abf0430be1c", + "semantic_hash": "b5afe448d71d9d3fa1a39abf0430be1c" + }, + "Support/Scripts/generate-firebase-config.sh": { + "mtime": 1765836662.8340576, + "ast_hash": "b9260d1519413a9b982411dc34fd1544", + "semantic_hash": "b9260d1519413a9b982411dc34fd1544" + }, + "Support/Scripts/setup-firebase.sh": { + "mtime": 1765834184.563774, + "ast_hash": "a3a30aeec0f7c7c5a7a17939bd8a4ac7", + "semantic_hash": "a3a30aeec0f7c7c5a7a17939bd8a4ac7" + }, + "Support/Scripts/updateBuildVersion.sh": { + "mtime": 1719679834.5863512, + "ast_hash": "54917f77905dd7601f17d98937c23c35", + "semantic_hash": "54917f77905dd7601f17d98937c23c35" + }, + ".claude/agents/architecture-guardian.md": { + "mtime": 1781684529.3944464, + "ast_hash": "4143f8e895db1ad0e5bd6b7cd9629c4f", + "semantic_hash": "4143f8e895db1ad0e5bd6b7cd9629c4f" + }, + ".claude/agents/ios-principal-engineer.md": { + "mtime": 1781684529.3948777, + "ast_hash": "3d044b5e2f90ea569d2cb7fcfef6a59c", + "semantic_hash": "3d044b5e2f90ea569d2cb7fcfef6a59c" + }, + ".claude/agents/swift-code-reviewer.md": { + "mtime": 1781684529.3953555, + "ast_hash": "8b2a1d12ad695592601ddf99f63d701c", + "semantic_hash": "8b2a1d12ad695592601ddf99f63d701c" + }, + ".claude/agents/test-runner.md": { + "mtime": 1781684529.3957071, + "ast_hash": "b2760d6fdefc414d3309450aa5c3fec0", + "semantic_hash": "b2760d6fdefc414d3309450aa5c3fec0" + }, + ".claude/rules/anti-hallucination.md": { + "mtime": 1781684529.3972466, + "ast_hash": "66fea30840e5901af06da6659b99b06c", + "semantic_hash": "66fea30840e5901af06da6659b99b06c" + }, + ".claude/rules/architecture.md": { + "mtime": 1781684529.39763, + "ast_hash": "b8362913210e0142fecbe938b379e87b", + "semantic_hash": "b8362913210e0142fecbe938b379e87b" + }, + ".claude/rules/concurrency.md": { + "mtime": 1781684529.3978918, + "ast_hash": "bfe5b7c01590efc9d3ca748614c8c4b0", + "semantic_hash": "bfe5b7c01590efc9d3ca748614c8c4b0" + }, + ".claude/rules/data-layer.md": { + "mtime": 1781684529.3984644, + "ast_hash": "1dacdea4a1dbae28047292137b3a24f2", + "semantic_hash": "1dacdea4a1dbae28047292137b3a24f2" + }, + ".claude/rules/git-workflow.md": { + "mtime": 1781684529.3987422, + "ast_hash": "91bbf7a148a3959cd4877548375dff32", + "semantic_hash": "91bbf7a148a3959cd4877548375dff32" + }, + ".claude/rules/swift-style.md": { + "mtime": 1781684529.3989985, + "ast_hash": "a2311c191511277651c14f0cc4ddf9e4", + "semantic_hash": "a2311c191511277651c14f0cc4ddf9e4" + }, + ".claude/rules/testing.md": { + "mtime": 1781684529.3992698, + "ast_hash": "a17f3ddcff2ee048ad1026a8a81adcc9", + "semantic_hash": "a17f3ddcff2ee048ad1026a8a81adcc9" + }, + ".claude/rules/ui-systems.md": { + "mtime": 1781684529.399694, + "ast_hash": "58db26a865320f81c6b882862ecf670c", + "semantic_hash": "58db26a865320f81c6b882862ecf670c" + }, + ".claude/skills/README.md": { + "mtime": 1781684529.400128, + "ast_hash": "4ba06dbfbffb62a2b35aa225b696a363", + "semantic_hash": "4ba06dbfbffb62a2b35aa225b696a363" + }, + ".claude/skills/ios-design-guidelines/SKILL.md": { + "mtime": 1781684529.40039, + "ast_hash": "8b0705ea993fc4e2d02fcaa8634076eb", + "semantic_hash": "8b0705ea993fc4e2d02fcaa8634076eb" + }, + ".claude/skills/ios-dod/SKILL.md": { + "mtime": 1781684529.4006615, + "ast_hash": "9520da7bf1bba11e4f846c38f85aadc5", + "semantic_hash": "9520da7bf1bba11e4f846c38f85aadc5" + }, + ".claude/skills/ios-fix/SKILL.md": { + "mtime": 1781684529.4009967, + "ast_hash": "925a9797df4ec771740ab0988aac8538", + "semantic_hash": "925a9797df4ec771740ab0988aac8538" + }, + ".claude/skills/ios-implement/SKILL.md": { + "mtime": 1781684529.4012663, + "ast_hash": "e2ed1dab5be2cc1d74ac5184cbce4f04", + "semantic_hash": "e2ed1dab5be2cc1d74ac5184cbce4f04" + }, + ".claude/skills/ios-sanity-check/SKILL.md": { + "mtime": 1781684529.4015422, + "ast_hash": "c4840b3949fbb1991a8fb1b8c0e8514c", + "semantic_hash": "c4840b3949fbb1991a8fb1b8c0e8514c" + }, + ".claude/skills/ios-start/SKILL.md": { + "mtime": 1781684529.4018111, + "ast_hash": "49d6704ccb7ab437751183b4a15623f1", + "semantic_hash": "49d6704ccb7ab437751183b4a15623f1" + }, + ".github/ISSUE_TEMPLATE/bug_report.yml": { + "mtime": 1778008694.116637, + "ast_hash": "d88347730ef2f2457f9e0a984a3b0b43", + "semantic_hash": "d88347730ef2f2457f9e0a984a3b0b43" + }, + ".github/ISSUE_TEMPLATE/config.yml": { + "mtime": 1778008694.1167617, + "ast_hash": "7c05bc0469e25e64cfa7860e6193bddd", + "semantic_hash": "7c05bc0469e25e64cfa7860e6193bddd" + }, + ".github/ISSUE_TEMPLATE/feature_request.yml": { + "mtime": 1778008694.1168652, + "ast_hash": "2139476fc8f4e77a3db4494fff6a3c46", + "semantic_hash": "2139476fc8f4e77a3db4494fff6a3c46" + }, + ".github/ISSUE_TEMPLATE/improvement.yml": { + "mtime": 1778008694.116978, + "ast_hash": "52315738dcd9f5034c42e091b73e51a7", + "semantic_hash": "52315738dcd9f5034c42e091b73e51a7" + }, + ".github/PULL_REQUEST_TEMPLATE.md": { + "mtime": 1764879432.1116505, + "ast_hash": "650365a36d4064b63857a98bb8ca4688", + "semantic_hash": "650365a36d4064b63857a98bb8ca4688" + }, + ".github/workflows/issue-validation.yml": { + "mtime": 1778008694.1171317, + "ast_hash": "d5725d9349c294ad66310c73da419531", + "semantic_hash": "d5725d9349c294ad66310c73da419531" + }, + ".github/workflows/pr-validation.yml": { + "mtime": 1766772439.6372857, + "ast_hash": "e488e7b04e2fd0c32f62c77a71785b32", + "semantic_hash": "e488e7b04e2fd0c32f62c77a71785b32" + }, + ".swiftlint.yml": { + "mtime": 1772824345.3770432, + "ast_hash": "c8fc8637a01d60df8bcf231b5a0225b7", + "semantic_hash": "c8fc8637a01d60df8bcf231b5a0225b7" + }, + "CLAUDE.md": { + "mtime": 1783794008.6722753, + "ast_hash": "cb861d314033e319312f0343c5e9d4b8", + "semantic_hash": "cb861d314033e319312f0343c5e9d4b8" + }, + "README.md": { + "mtime": 1781684529.4033875, + "ast_hash": "991bb7864dcbe1ac4663e77ef3c79626", + "semantic_hash": "991bb7864dcbe1ac4663e77ef3c79626" + }, + "Support/CONTRIBUTING.md": { + "mtime": 1766864993.0340104, + "ast_hash": "51e1d9bc6dce1ea6d2bd12cec67dcda0", + "semantic_hash": "51e1d9bc6dce1ea6d2bd12cec67dcda0" + }, + "Support/FIREBASE.md": { + "mtime": 1766864993.034319, + "ast_hash": "d0f906cd5b4baf65ac010d992f3fade2", + "semantic_hash": "d0f906cd5b4baf65ac010d992f3fade2" + }, + "Support/firebase_queries.txt": { + "mtime": 1773255289.622216, + "ast_hash": "d1dd6fa8c6e01b67a73ecd3b888599a7", + "semantic_hash": "d1dd6fa8c6e01b67a73ecd3b888599a7" + }, + "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Resources/Assets.xcassets/icons without background/alternativa_without_background.imageset/alternativa_sem_fundo.png": { + "mtime": 1766834687.8100584, + "ast_hash": "29fc26d008bdfe1019757cb3cc5dc1c4", + "semantic_hash": "29fc26d008bdfe1019757cb3cc5dc1c4" + }, + "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Resources/Assets.xcassets/icons without background/normal_without_background.imageset/normal_sem_fundo.png": { + "mtime": 1766834687.812755, + "ast_hash": "61377e8ea9bd1fc4f3146a75ad52256d", + "semantic_hash": "61377e8ea9bd1fc4f3146a75ad52256d" + }, + "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Resources/Assets.xcassets/icons/alternative.imageset/phone_2.png": { + "mtime": 1766834687.8151453, + "ast_hash": "380f7d05f8b57f5a1908c52e64a24c14", + "semantic_hash": "380f7d05f8b57f5a1908c52e64a24c14" + }, + "MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Resources/Assets.xcassets/icons/normal.imageset/phone_1.png": { + "mtime": 1766834687.816746, + "ast_hash": "f2d2ee63ba315dbc480c3df9c10aec03", + "semantic_hash": "f2d2ee63ba315dbc480c3df9c10aec03" + }, + "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Resources/Assets.xcassets/icons/alternative.imageset/phone_2.png": { + "mtime": 1765561852.066475, + "ast_hash": "380f7d05f8b57f5a1908c52e64a24c14", + "semantic_hash": "380f7d05f8b57f5a1908c52e64a24c14" + }, + "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Resources/Assets.xcassets/icons/normal.imageset/phone_1.png": { + "mtime": 1765561852.066508, + "ast_hash": "f2d2ee63ba315dbc480c3df9c10aec03", + "semantic_hash": "f2d2ee63ba315dbc480c3df9c10aec03" + }, + "MacMagazine/MacMagazine/Resources/Assets.xcassets/logo.imageset/logo@1x.png": { + "mtime": 1766840449.0410254, + "ast_hash": "85c1ce67592f3ebc0137d7ae4563390b", + "semantic_hash": "85c1ce67592f3ebc0137d7ae4563390b" + }, + "MacMagazine/MacMagazine/Resources/Assets.xcassets/logo.imageset/logo@2x.png": { + "mtime": 1766840449.0424643, + "ast_hash": "6d9b1c0e17c7f9d02983b962a9e364de", + "semantic_hash": "6d9b1c0e17c7f9d02983b962a9e364de" + }, + "MacMagazine/MacMagazine/Resources/Assets.xcassets/logo.imageset/logo@3x.png": { + "mtime": 1766840449.0445306, + "ast_hash": "484bfb541e825de3e0246ac76b819b52", + "semantic_hash": "484bfb541e825de3e0246ac76b819b52" + }, + "MacMagazine/MacMagazine/Resources/Icon/mm_icon.icon/Assets/layer_1.png": { + "mtime": 1757887716.625751, + "ast_hash": "8f66e5ab2df99731c6261ae94a959cfc", + "semantic_hash": "8f66e5ab2df99731c6261ae94a959cfc" + }, + "MacMagazine/MacMagazine/Resources/Icon/mm_icon.icon/Assets/layer_1.svg": { + "mtime": 1757887716.6259832, + "ast_hash": "d01940e911047ee489a3b7db105b763b", + "semantic_hash": "d01940e911047ee489a3b7db105b763b" + }, + "MacMagazine/MacMagazine/Resources/Icon/mm_icon.icon/Assets/layer_2.svg": { + "mtime": 1757887716.626172, + "ast_hash": "4473e3480da0d7f1977de17d597b782b", + "semantic_hash": "4473e3480da0d7f1977de17d597b782b" + }, + "MacMagazine/MacMagazine/Resources/Icon/mm_icon.icon/Assets/layer_3.svg": { + "mtime": 1757887716.626378, + "ast_hash": "1c1468d2c8738d7a74f80d38757464e2", + "semantic_hash": "1c1468d2c8738d7a74f80d38757464e2" + }, + "MacMagazine/MacMagazine/Resources/Icon/mm_icon_inverted.icon/Assets/layer_0.svg": { + "mtime": 1757887716.6270015, + "ast_hash": "4a0baa293a13ebaffe61e2d7657b02d5", + "semantic_hash": "4a0baa293a13ebaffe61e2d7657b02d5" + }, + "MacMagazine/MacMagazine/Resources/Icon/mm_icon_inverted.icon/Assets/layer_1.svg": { + "mtime": 1757887716.627191, + "ast_hash": "eb6d322026c8ae6bd142a4abc5ebc521", + "semantic_hash": "eb6d322026c8ae6bd142a4abc5ebc521" + }, + "MacMagazine/MacMagazine/Resources/Icon/mm_icon_inverted.icon/Assets/layer_2.svg": { + "mtime": 1757887716.6274786, + "ast_hash": "bdb83bf2fca810ab6de2f350e24f09a0", + "semantic_hash": "bdb83bf2fca810ab6de2f350e24f09a0" + }, + "MacMagazine/MacMagazine/Resources/Icon/mm_icon_inverted.icon/Assets/layer_3 2.png": { + "mtime": 1757887716.6279805, + "ast_hash": "913feb1b576e99f8650fc518824e33de", + "semantic_hash": "913feb1b576e99f8650fc518824e33de" + }, + "MacMagazine/MacMagazine/Resources/Icon/mm_icon_normal.icon/Assets/layer_1.png": { + "mtime": 1757887716.62884, + "ast_hash": "8f66e5ab2df99731c6261ae94a959cfc", + "semantic_hash": "8f66e5ab2df99731c6261ae94a959cfc" + }, + "MacMagazine/MacMagazine/Resources/Icon/mm_icon_normal.icon/Assets/layer_1.svg": { + "mtime": 1757887716.6289566, + "ast_hash": "d01940e911047ee489a3b7db105b763b", + "semantic_hash": "d01940e911047ee489a3b7db105b763b" + }, + "MacMagazine/MacMagazine/Resources/Icon/mm_icon_normal.icon/Assets/layer_2.svg": { + "mtime": 1757887716.6290576, + "ast_hash": "4473e3480da0d7f1977de17d597b782b", + "semantic_hash": "4473e3480da0d7f1977de17d597b782b" + }, + "MacMagazine/MacMagazine/Resources/Icon/mm_icon_normal.icon/Assets/layer_3.svg": { + "mtime": 1757887716.629141, + "ast_hash": "1c1468d2c8738d7a74f80d38757464e2", + "semantic_hash": "1c1468d2c8738d7a74f80d38757464e2" + }, + "MacMagazine/WatchApp/Resources/Assets.xcassets/logo_color.imageset/logo.png": { + "mtime": 1766092973.153867, + "ast_hash": "320a26e8ccb2b0a65bc273a8cd602bc5", + "semantic_hash": "320a26e8ccb2b0a65bc273a8cd602bc5" + }, + "MacMagazine/WatchApp/Resources/Assets.xcassets/logo_color.imageset/logo@2x.png": { + "mtime": 1766092973.153921, + "ast_hash": "083ed8eb7d4b226dedc08ca7497890fc", + "semantic_hash": "083ed8eb7d4b226dedc08ca7497890fc" + }, + "MacMagazine/WatchApp/Resources/Assets.xcassets/logo_color.imageset/logo@3x.png": { + "mtime": 1766092973.153975, + "ast_hash": "5ed35fa8dac0a43310afde5cd3715557", + "semantic_hash": "5ed35fa8dac0a43310afde5cd3715557" + }, + "MacMagazine/WatchWidget/Resources/Assets.xcassets/logo_color.imageset/logo@3x 3.png": { + "mtime": 1766241767.200327, + "ast_hash": "925ebb4df310496000b5d29425a1432e", + "semantic_hash": "925ebb4df310496000b5d29425a1432e" + }, + "MacMagazine/WatchWidget/Resources/Assets.xcassets/logo_white.imageset/logo.png": { + "mtime": 1766241767.2008183, + "ast_hash": "6cf15503efd30f19c53e783c1cd48806", + "semantic_hash": "6cf15503efd30f19c53e783c1cd48806" + }, + "MacMagazine/Widget/Resources/Assets.xcassets/logo_color.imageset/logo.png": { + "mtime": 1766828949.185443, + "ast_hash": "320a26e8ccb2b0a65bc273a8cd602bc5", + "semantic_hash": "320a26e8ccb2b0a65bc273a8cd602bc5" + }, + "MacMagazine/Widget/Resources/Assets.xcassets/logo_color.imageset/logo@2x.png": { + "mtime": 1766828949.1858246, + "ast_hash": "083ed8eb7d4b226dedc08ca7497890fc", + "semantic_hash": "083ed8eb7d4b226dedc08ca7497890fc" + }, + "MacMagazine/Widget/Resources/Assets.xcassets/logo_color.imageset/logo@3x.png": { + "mtime": 1766828949.1864989, + "ast_hash": "5ed35fa8dac0a43310afde5cd3715557", + "semantic_hash": "5ed35fa8dac0a43310afde5cd3715557" + }, + "MacMagazine/Widget/Resources/Assets.xcassets/logo_white.imageset/logo.png": { + "mtime": 1766828949.186776, + "ast_hash": "6cf15503efd30f19c53e783c1cd48806", + "semantic_hash": "6cf15503efd30f19c53e783c1cd48806" + }, + "MacMagazine/Widget/Resources/Assets.xcassets/logo_white.imageset/logo@2x.png": { + "mtime": 1766828949.186893, + "ast_hash": "a750836535da6e2521c26f4d0a24ea23", + "semantic_hash": "a750836535da6e2521c26f4d0a24ea23" + }, + "MacMagazine/Widget/Resources/Assets.xcassets/logo_white.imageset/logo@3x.png": { + "mtime": 1766828949.1870208, + "ast_hash": "89c68a0c576241c704200c8b10e751cd", + "semantic_hash": "89c68a0c576241c704200c8b10e751cd" + }, + "MacMagazine/Widget/Resources/Assets.xcassets/macmagazine.imageset/logo-widget_dark@1x.png": { + "mtime": 1766828949.1898432, + "ast_hash": "31485fff2b067f6d68b552f43c060c14", + "semantic_hash": "31485fff2b067f6d68b552f43c060c14" + }, + "MacMagazine/Widget/Resources/Assets.xcassets/macmagazine.imageset/logo-widget_dark@2x.png": { + "mtime": 1766828949.1900225, + "ast_hash": "7a6c1b7b86e5dc975d4e6d04a10829ba", + "semantic_hash": "7a6c1b7b86e5dc975d4e6d04a10829ba" + }, + "MacMagazine/Widget/Resources/Assets.xcassets/macmagazine.imageset/logo-widget_dark@3x.png": { + "mtime": 1766828949.190329, + "ast_hash": "d4ffcb49fbd5c98e4c64efa4f44166f1", + "semantic_hash": "d4ffcb49fbd5c98e4c64efa4f44166f1" + }, + "MacMagazine/Widget/Resources/Assets.xcassets/macmagazine.imageset/logo-widget_light@1x.png": { + "mtime": 1766828949.1905131, + "ast_hash": "88e110f2b94e34cb36353256c0f2fbc8", + "semantic_hash": "88e110f2b94e34cb36353256c0f2fbc8" + }, + "MacMagazine/Widget/Resources/Assets.xcassets/macmagazine.imageset/logo-widget_light@2x.png": { + "mtime": 1766828949.1907496, + "ast_hash": "0e85a75310261536a551f1c1311a9dfe", + "semantic_hash": "0e85a75310261536a551f1c1311a9dfe" + }, + "MacMagazine/Widget/Resources/Assets.xcassets/macmagazine.imageset/logo-widget_light@3x.png": { + "mtime": 1766828949.1910322, + "ast_hash": "63e3b7175f4b944ffc98aac1df2b75a1", + "semantic_hash": "63e3b7175f4b944ffc98aac1df2b75a1" + }, + "MacMagazine/Widget/Resources/Assets.xcassets/macmagazine_clear.imageset/logo-widget_clear@1x.png": { + "mtime": 1766828949.1914375, + "ast_hash": "47aa63dec0fadb7fbb668d694b422f66", + "semantic_hash": "47aa63dec0fadb7fbb668d694b422f66" + }, + "MacMagazine/Widget/Resources/Assets.xcassets/macmagazine_clear.imageset/logo-widget_clear@2x.png": { + "mtime": 1766828949.1915946, + "ast_hash": "5035a8b0415f2ba5fd282951f24a8ed1", + "semantic_hash": "5035a8b0415f2ba5fd282951f24a8ed1" + }, + "MacMagazine/Widget/Resources/Assets.xcassets/macmagazine_clear.imageset/logo-widget_clear@3x.png": { + "mtime": 1766828949.1919367, + "ast_hash": "0a236fde5dfdee603797e4de318a770b", + "semantic_hash": "0a236fde5dfdee603797e4de318a770b" + }, + "MacMagazine/MacMagazine/Resources/sound.wav": { + "mtime": 1624639352.0383732, + "ast_hash": "ffe9adb61bb9e76cc3db9a1364de6ca4", + "semantic_hash": "ffe9adb61bb9e76cc3db9a1364de6ca4" + } +} \ No newline at end of file diff --git a/graphify-out/GRAPH_REPORT.md b/graphify-out/GRAPH_REPORT.md index 0678cb75..0e20c3ae 100644 --- a/graphify-out/GRAPH_REPORT.md +++ b/graphify-out/GRAPH_REPORT.md @@ -1,14 +1,19 @@ -# Graph Report - . (2026-07-11) +# Graph Report - MacMagazine (2026-07-18) ## Corpus Check -- 376 files · ~361,182 words +- 332 files · ~362,975 words - Verdict: corpus is large enough that graph structure adds value. ## Summary -- 2457 nodes · 4835 edges · 160 communities (134 shown, 26 thin omitted) -- Extraction: 87% EXTRACTED · 13% INFERRED · 0% AMBIGUOUS · INFERRED: 607 edges (avg confidence: 0.8) +- 2808 nodes · 5245 edges · 192 communities (164 shown, 28 thin omitted) +- Extraction: 88% EXTRACTED · 12% INFERRED · 0% AMBIGUOUS · INFERRED: 624 edges (avg confidence: 0.8) - Token cost: 0 input · 0 output +## Graph Freshness +- Built from commit: `87638307` +- Run `git rev-parse HEAD` and compare to check if the graph is stale. +- Run `graphify update .` after code changes (no API cost). + ## Community Hubs (Navigation) - Settings & Subscriptions - Live Content & Notifications @@ -170,17 +175,49 @@ - Community 157 - Community 158 - Community 159 +- App do MacMagazine para iOS +- Firebase Configuration +- iOS Design Guidelines for MacMagazine +- MMWebView +- Guia de Contribuição +- YOUR PRIME DIRECTIVES +- NewsCategory +- Anti-hallucination & pattern-fidelity contract +- Skills Quick Reference +- Criando um Pull Request +- Git workflow +- Swift Style — naming, optionals, lint, comments +- Critical Requirements (Zero Tolerance) +- PULL_REQUEST_TEMPLATE.md +- WalletPassService +- Testing — Swift Testing +- Configuração do ambiente +- Concurrency — Swift 6.2, structured only +- MinimumTouchTarget +- View +- Validações automáticas +- Fluxo de trabalho +- swift-code-reviewer.md +- .makeHTML +- Options +- Options +- Options +- Padrões de código +- Troubleshooting +- architecture-guardian.md +- test-runner.md +- ThemeColor.swift ## God Nodes (most connected - your core abstractions) -1. `SwiftUI` - 114 edges -2. `Foundation` - 108 edges -3. `MacMagazineLibrary` - 93 edges -4. `Database` - 70 edges +1. `SwiftUI` - 118 edges +2. `Foundation` - 112 edges +3. `MacMagazineLibrary` - 94 edges +4. `Database` - 79 edges 5. `ButtonID` - 65 edges -6. `FeedLibrary` - 57 edges -7. `StorageLibrary` - 49 edges -8. `PodcastPlayerManager` - 46 edges -9. `FeedDB` - 45 edges +6. `FeedLibrary` - 55 edges +7. `FeedDB` - 51 edges +8. `StorageLibrary` - 49 edges +9. `PodcastPlayerManager` - 46 edges 10. `AnalyticsLibrary` - 45 edges ## Surprising Connections (you probably didn't know these) @@ -198,11 +235,11 @@ ## Import Cycles - None detected. -## Communities (160 total, 26 thin omitted) +## Communities (192 total, 28 thin omitted) ### Community 0 - "Settings & Subscriptions" -Cohesion: 0.05 -Nodes (16): SettingsDB, Bool, ModelContext, String, UUID, Subscription, Bool, Database (+8 more) +Cohesion: 0.08 +Nodes (12): SettingsDB, Bool, ModelContext, String, UUID, Database, SettingsViewModel, Database (+4 more) ### Community 1 - "Live Content & Notifications" Cohesion: 0.05 @@ -221,12 +258,12 @@ Cohesion: 0.06 Nodes (22): DateFormatter, APIXMLParser, Bool, CheckedContinuation, Error, Int, String, DateParser (+14 more) ### Community 5 - "WebView HTML & Disqus" -Cohesion: 0.05 -Nodes (31): Int, Bool, Utils, DisqusHTMLBuilder, String, GalleryStateMessageHandler, Bool, Void (+23 more) +Cohesion: 0.12 +Nodes (14): Int, Bool, Utils, HTTPCookie, ColorScheme, dark, light, system (+6 more) ### Community 6 - ".claude Config & Hooks" Cohesion: 0.04 -Nodes (48): hooks, PostToolUse, PreToolUse, Stop, permissions, allow, ask, deny (+40 more) +Nodes (47): hooks, PostToolUse, PreToolUse, Stop, permissions, allow, ask, deny (+39 more) ### Community 7 - "News Feature" Cohesion: 0.09 @@ -237,8 +274,8 @@ Cohesion: 0.10 Nodes (17): FeedViewModel, Bool, CheckedContinuation, Data, Database, Error, FeedDB, Int (+9 more) ### Community 9 - "FeedLibrary Imports" -Cohesion: 0.10 -Nodes (9): AVFoundation, Combine, FeedLibrary, Foundation, String, Array, Self, URLs (+1 more) +Cohesion: 0.07 +Nodes (13): AVFoundation, FeedLibrary, Foundation, String, NewsTests, URLs, MMLiveLibrary, NetworkLibrary (+5 more) ### Community 10 - "WebView Cookies" Cohesion: 0.08 @@ -257,8 +294,8 @@ Cohesion: 0.09 Nodes (5): FeedDB, Bool, ModelContext, String, FeedDBTests ### Community 14 - "API Endpoints" -Cohesion: 0.09 -Nodes (8): APIDefinitions, Endpoint, Self, MMLiveLibrary, NetworkLibrary, StorageLibrary, SwiftData, WatchKit +Cohesion: 0.16 +Nodes (15): Array, CardAccessibilityModifier, CardButton, favorite, read, share, CardLabel, author (+7 more) ### Community 15 - "Podcast Full Player UI" Cohesion: 0.09 @@ -281,39 +318,31 @@ Cohesion: 0.15 Nodes (5): Color, createChapter(), PodcastChapterTests, Double, String ### Community 20 - "Search System" -Cohesion: 0.12 -Nodes (15): RecentSearchDB, String, LocalSearchServiceProtocol, RemoteSearchServiceProtocol, SearchViewModel, Bool, Database, Duration (+7 more) +Cohesion: 0.11 +Nodes (18): RecentSearchDB, String, LocalSearchServiceProtocol, RemoteFeedSearchService, RemoteSearchServiceProtocol, Database, SearchResultMergerProtocol, SearchViewModel (+10 more) ### Community 21 - "Podcast Player Manager" -Cohesion: 0.17 -Nodes (8): AVPlayer, AVPlayerItem, Float, PodcastPlayerManager, Any, Double, PodcastDB, TimeInterval - -### Community 22 - "Community 22" -Cohesion: 0.17 -Nodes (4): OnboardingCoordinator, Bool, Void, OnboardingCoordinatorTests +Cohesion: 0.11 +Nodes (8): AVPlayer, AVPlayerItem, CMTime, SessionState, Bool, Double, PodcastDB, TimeInterval ### Community 23 - "Community 23" -Cohesion: 0.09 -Nodes (20): CaseIterable, NewsCategory, all, appletv, highlights, news, podcast, reviews (+12 more) +Cohesion: 0.11 +Nodes (18): CaseIterable, News, all, appletv, highlights, news, reviews, rumors (+10 more) ### Community 24 - "Community 24" -Cohesion: 0.10 -Nodes (10): AppTrackingTransparency, FirebaseCore, InAppLibrary, LoggerLibrary, Observation, OneSignalExtension, OneSignalFramework, os (+2 more) +Cohesion: 0.09 +Nodes (12): AppTrackingTransparency, Combine, FirebaseCore, InAppLibrary, LoggerLibrary, Array, Self, Observation (+4 more) ### Community 26 - "Community 26" Cohesion: 0.13 -Nodes (5): createChapter(), createTestChapters(), PodcastPlayerManagerTests, Double, String +Nodes (8): Float, PodcastPlayerManager, Any, createChapter(), createTestChapters(), PodcastPlayerManagerTests, Double, String ### Community 27 - "Community 27" Cohesion: 0.10 Nodes (16): SearchStatus, done, error, idle, localResults, searching, SearchView, AnalyticsManager (+8 more) -### Community 28 - "Community 28" -Cohesion: 0.10 -Nodes (16): areEqual(), Equatable, Bool, AreEqualTests, Options, home, search, String (+8 more) - ### Community 29 - "Community 29" -Cohesion: 0.17 +Cohesion: 0.19 Nodes (4): QueryProcessor, String, QueryProcessorTests, NaturalLanguage ### Community 30 - "Community 30" @@ -325,36 +354,40 @@ Cohesion: 0.16 Nodes (8): APIStatus, Database, ModelContext, NetworkMockData, Options, YouTubeAPI, VideosViewModel, VideosViewModelTests ### Community 32 - "Community 32" -Cohesion: 0.18 -Nodes (11): CMTime, PodcastChapter, Data, Double, String, ChaptersView, AnalyticsManager, Binding (+3 more) +Cohesion: 0.20 +Nodes (10): PodcastChapter, Data, Double, String, ChaptersView, AnalyticsManager, Binding, Bool (+2 more) -### Community 34 - "Community 34" +### Community 33 - "Community 33" Cohesion: 0.14 -Nodes (13): BridgeViewController, InteractivePopGestureBridge, Bool, Context, View, ImageLocation, background, chapter (+5 more) +Nodes (3): Database, Set, StorageServiceTests + +### Community 34 - "Community 34" +Cohesion: 0.09 +Nodes (20): BridgeViewController, InteractivePopGestureBridge, Bool, Context, View, AddPassesView, Coordinator, Context (+12 more) ### Community 35 - "Community 35" -Cohesion: 0.14 -Nodes (11): AnalyticsManager, PushNotification, PermissionManager, AnalyticsManager, Bool, PushNotification, String, OnboardingSheetPreviewHost (+3 more) +Cohesion: 0.15 +Nodes (9): AnalyticsManager, PushNotification, PermissionManager, AnalyticsManager, Bool, PushNotification, String, OnboardingSheetPreviewHost (+1 more) ### Community 36 - "Community 36" -Cohesion: 0.17 -Nodes (10): OnboardingScreenTests, News, NewsCategory, NewsLibrary, OnboardingLibrary, PodcastLibrary, SearchLibrary, SettingsLibrary (+2 more) +Cohesion: 0.12 +Nodes (9): OnboardingScreenTests, News, NewsCategory, NewsLibrary, OnboardingLibrary, PodcastLibrary, SettingsLibrary, VideosLibrary (+1 more) ### Community 37 - "Community 37" Cohesion: 0.24 Nodes (5): RemoteFeedSearchServiceTests, FeedDB, PodcastDB, SearchResult, String ### Community 38 - "Community 38" -Cohesion: 0.20 -Nodes (10): Text, SettingsView, NewsView, SocialView, MainView, CaseIterable, String, View (+2 more) +Cohesion: 0.26 +Nodes (8): areEqual(), Equatable, Bool, Text, MainView, CaseIterable, String, View ### Community 39 - "Community 39" Cohesion: 0.18 Nodes (12): Context, Sendable, WidgetData, WidgetEntry, WatchWidgetProvider, MacMagazineTimelineProvider, Context, Void (+4 more) ### Community 40 - "Community 40" -Cohesion: 0.20 -Nodes (8): SearchResultMerger, SearchResultMergerProtocol, SearchResult, String, SearchResultMergerTests, Bool, SearchResult, String +Cohesion: 0.23 +Nodes (7): SearchResultMerger, SearchResult, String, SearchResultMergerTests, Bool, SearchResult, String ### Community 41 - "Community 41" Cohesion: 0.11 @@ -362,27 +395,27 @@ Nodes (16): AppDelegate, Any, AnyHashable, Bool, Data, Error, LoggerProtocol, Pu ### Community 42 - "Community 42" Cohesion: 0.12 -Nodes (12): LinearGradient, CardDensity, CGFloat, Font, Int, GlassCardView, AnalyticsManager, CGFloat (+4 more) +Nodes (13): LinearGradient, CardDensity, Bool, CGFloat, Font, Int, GlassCardView, AnalyticsManager (+5 more) ### Community 43 - "Community 43" -Cohesion: 0.19 -Nodes (4): Data, String, WidgetData, WidgetDataTests +Cohesion: 0.05 +Nodes (26): ActivityAttributes, ActivityKit, Codable, Hashable, Data, String, WidgetData, WidgetDataTests (+18 more) ### Community 44 - "Community 44" -Cohesion: 0.14 -Nodes (13): Social, instagram, podcast, videos, SocialTests, CustomizationDB, Bool, ModelContext (+5 more) +Cohesion: 0.06 +Nodes (31): AnalyticsConstants, AppTabs, live, news, search, settings, social, Social (+23 more) ### Community 45 - "Community 45" -Cohesion: 0.12 -Nodes (13): EnvironmentValues, String, Color, ThemeColor, OnboardingContainerView, Bool, Bool, Namespace (+5 more) +Cohesion: 0.18 +Nodes (8): EnvironmentValues, ThemeColor, OnboardingContainerView, Bool, Bool, Namespace, WelcomeView, Themeable ### Community 46 - "Community 46" -Cohesion: 0.16 -Nodes (13): Array, CardAccessibilityModifier, CardButton, favorite, share, CardLabel, author, date (+5 more) +Cohesion: 0.12 +Nodes (16): Card views, Data Layer — SwiftData, search, podcast, multi-platform, Data sources, External dependencies, Key types, Mini player, Multi-platform, NLP pipeline (Apple NaturalLanguage framework) (+8 more) ### Community 47 - "Community 47" -Cohesion: 0.16 -Nodes (13): Array, CardAccessibilityModifier, CardButton, favorite, share, CardLabel, date, duration (+5 more) +Cohesion: 0.17 +Nodes (9): GalleryStateMessageHandler, Bool, Void, WKScriptMessage, WKUserContentController, Bool, String, WebPage (+1 more) ### Community 48 - "Community 48" Cohesion: 0.12 @@ -397,23 +430,23 @@ Cohesion: 0.19 Nodes (6): CardContentType, news, podcast, video, NewsCategory, CardContentTypeTests ### Community 51 - "Community 51" -Cohesion: 0.14 -Nodes (15): ActivityAttributes, ActivityKit, Codable, News, all, appletv, highlights, news (+7 more) +Cohesion: 0.15 +Nodes (7): Bool, ScenePhase, UUID, WebViewLoadPolicy, Bool, ScenePhase, WebViewLoadPolicyTests ### Community 52 - "Community 52" Cohesion: 0.13 Nodes (11): PushNotification, PushPermissionStatus, authorized, denied, notDetermined, LoggerProtocol, String, OSNotificationClickEvent (+3 more) ### Community 53 - "Community 53" -Cohesion: 0.14 -Nodes (7): WidgetAccessibility, Widget, WatchWidgetBundle, MacMagazineWidgetBundle, Widget, WidgetBundle, WidgetKit +Cohesion: 0.10 +Nodes (9): WidgetAccessibility, Widget, WatchWidgetBundle, MacMagazineWidgetBundle, Widget, OneSignalExtension, UserNotifications, WidgetBundle (+1 more) ### Community 55 - "Community 55" -Cohesion: 0.17 -Nodes (11): CustomizationViewModel, Database, News, CustomSocialView, AnalyticsManager, IndexSet, Int, CustomTabView (+3 more) +Cohesion: 0.15 +Nodes (12): CustomizationViewModel, Database, News, CustomSocialView, AnalyticsManager, IndexSet, Int, CustomTabView (+4 more) ### Community 56 - "Community 56" -Cohesion: 0.20 +Cohesion: 0.22 Nodes (10): SceneView, PushNotification, MainViewModel, Bool, Database, LoggerProtocol, News, PersistentModel (+2 more) ### Community 57 - "Community 57" @@ -421,8 +454,8 @@ Cohesion: 0.14 Nodes (10): Any, AnyHashable, Data, FeedMainViewModel, String, UNNotificationResponse, UNUserNotificationCenter, WatchNotificationsDelegate (+2 more) ### Community 58 - "Community 58" -Cohesion: 0.16 -Nodes (11): NetworkService, Data, Network, ContentType, news, podcast, video, SortPreference (+3 more) +Cohesion: 0.50 +Nodes (3): NetworkService, Data, Network ### Community 59 - "Community 59" Cohesion: 0.21 @@ -433,15 +466,15 @@ Cohesion: 0.24 Nodes (7): FeedMainViewModel, Bool, CGPoint, FeedDB, Int, ModelContext, String ### Community 61 - "Community 61" -Cohesion: 0.19 -Nodes (10): CGSize, BackgroundView, Bool, Color, PodcastImageView, Content, Data, FeedRowView (+2 more) +Cohesion: 0.67 +Nodes (3): BackgroundView, Bool, Color ### Community 62 - "Community 62" -Cohesion: 0.27 +Cohesion: 0.25 Nodes (10): Edge, ManagedWebView, ManagedWebViewStyle, async, Binding, Bool, MainActor, UUID (+2 more) ### Community 63 - "Community 63" -Cohesion: 0.19 +Cohesion: 0.21 Nodes (8): DisqusDataStore, DisqusLoginWebView, DisqusSheet, MainActor, String, Void, WebPage, WKWebsiteDataStore ### Community 64 - "Community 64" @@ -449,24 +482,24 @@ Cohesion: 0.21 Nodes (8): Cache, cleanAll, keepFavoritesAndStatus, PostsVisibilityViewModel, Database, PersistentModel, PostsVisibilityView, AnalyticsManager ### Community 65 - "Community 65" -Cohesion: 0.21 -Nodes (8): FeedDB, String, AccessibilityChildBehavior, String, View, String, URL, WidgetData +Cohesion: 0.19 +Nodes (10): FailingNetworkStub, StubNetwork, Data, String, FeedDB, String, String, URL (+2 more) ### Community 66 - "Community 66" -Cohesion: 0.26 -Nodes (10): CardButton, CardLabel, AdaptiveBody, AdaptiveVideoCard, MMVideoDBPreview, AnalyticsManager, ModelContext, VideoDB (+2 more) +Cohesion: 0.33 +Nodes (8): AdaptiveBody, AdaptiveVideoCard, MMVideoDBPreview, AnalyticsManager, ModelContext, VideoDB, View, VideoCard ### Community 67 - "Community 67" -Cohesion: 0.21 +Cohesion: 0.19 Nodes (9): Identifiable, OnBoardingFeature, String, FeaturesView, Bool, CGFloat, GridItem, Int (+1 more) ### Community 68 - "Community 68" -Cohesion: 0.18 -Nodes (10): CardStyle, glass, highlight, leadingImage, NewsCategory, FeedDB, AnalyticsManager, CGFloat (+2 more) +Cohesion: 0.17 +Nodes (11): CardStyle, glass, header, highlight, leadingImage, NewsCategory, FeedDB, AnalyticsManager (+3 more) ### Community 69 - "Community 69" -Cohesion: 0.27 -Nodes (8): SearchResultsList, AnalyticsManager, FeedDB, PodcastDB, SearchResult, String, VideoDB, Void +Cohesion: 0.20 +Nodes (12): PodcastImageView, Content, Data, SearchResultsList, AnalyticsManager, FeedDB, PodcastDB, SearchResult (+4 more) ### Community 70 - "Community 70" Cohesion: 0.20 @@ -489,36 +522,36 @@ Cohesion: 0.33 Nodes (10): Header, CollectionViewWithHeader, APIStatus, Binding, Bool, Content, Int, ScrollPosition (+2 more) ### Community 77 - "Community 77" -Cohesion: 0.18 -Nodes (8): AppTabs, live, news, search, settings, social, AppTabsTests, Bool +Cohesion: 0.12 +Nodes (15): 10. WebView System Integrity, 1. Obvious Comments, 2. Force Unwraps in Production Code, 3. @Observable Usage, 4. Card System Compliance, 5. Hardcoded Colors, 6. SwiftLint Compliance, 7. DRY Violations (+7 more) ### Community 78 - "Community 78" -Cohesion: 0.18 +Cohesion: 0.17 Nodes (4): String, MMWebViewUserScripts, WebKit, WKUserScript ### Community 80 - "Community 80" -Cohesion: 0.40 -Nodes (7): QueryIntent, NewsCategory, Set, String, LocalSearchService, ModelContext, SearchResult +Cohesion: 0.19 +Nodes (15): ContentType, news, podcast, video, QueryIntent, SortPreference, recent, relevance (+7 more) ### Community 81 - "Community 81" -Cohesion: 0.31 -Nodes (8): Content, Options, ToolbarModifier, ToolbarType, compact, normal, View, Menu +Cohesion: 0.27 +Nodes (9): NewsView, Content, Options, ToolbarModifier, ToolbarType, compact, normal, View (+1 more) ### Community 82 - "Community 82" -Cohesion: 0.22 -Nodes (8): ShortcutManager, ModelContext, String, UIApplicationShortcutItem, Bool, UIApplicationShortcutItem, Void, UIWindowScene +Cohesion: 0.20 +Nodes (9): ShortcutActions, none, openLastSeenPost, openMostRecentPost, openSearchPost, ShortcutManager, ModelContext, String (+1 more) ### Community 83 - "Community 83" -Cohesion: 0.18 -Nodes (11): String, WidgetConfiguration, WatchWidget, MacMagazineWidget, String, WidgetConfiguration, MacMagazineWidgetLiveActivity, WidgetConfiguration (+3 more) +Cohesion: 0.12 +Nodes (15): 1. Understand Requirements, 2. Search for Existing Code (Avoid Duplication), 3. Study Existing Implementations (CRITICAL), 4. Design Architecture, 5. Set Up Feature Branch, 6. Build System Reference, Architecture Patterns, Before Writing Code (+7 more) ### Community 84 - "Community 84" Cohesion: 0.33 Nodes (6): HeaderWidgetModifier, OverlayHeaderWidgetModifier, CGFloat, Content, String, View ### Community 85 - "Community 85" -Cohesion: 0.20 -Nodes (9): String, URLClassification, appStore, comments, external, instagram, macmagazinePost, youTube (+1 more) +Cohesion: 0.18 +Nodes (10): String, URLClassification, appStore, comments, external, instagram, macmagazinePost, walletPass (+2 more) ### Community 88 - "Community 88" Cohesion: 0.27 @@ -529,15 +562,15 @@ Cohesion: 0.33 Nodes (5): PortugueseLexicon, Bool, NewsCategory, Set, String ### Community 90 - "Community 90" -Cohesion: 0.20 -Nodes (9): CGFloat, Image, WidgetData, WidgetElementView, AnalyticsManager, Int, WidgetData, WidgetEntry (+1 more) +Cohesion: 0.14 +Nodes (13): Adding a new module, Architecture — modular SPM, MVVM, environment injection, Build targets, Custom environment values, Deep linking, Dependency rules (enforced by review + the architecture-guardian agent), Environment injection (MacMagazineApp), Modular SPM structure (+5 more) ### Community 91 - "Community 91" Cohesion: 0.28 Nodes (6): AVKit, Context, SystemVolumeView, MediaPlayer, MPVolumeView, UIViewRepresentable ### Community 92 - "Community 92" -Cohesion: 0.25 +Cohesion: 0.29 Nodes (6): Gesture, MiniPlayerView, AnalyticsManager, Color, PodcastDB, String ### Community 93 - "Community 93" @@ -549,8 +582,8 @@ Cohesion: 0.33 Nodes (7): PermissionCard, PermissionCardStatus, denied, granted, notDetermined, String, Void ### Community 95 - "Community 95" -Cohesion: 0.39 -Nodes (3): CGFloat, UIColor, UIImage +Cohesion: 0.23 +Nodes (6): CGSize, CGFloat, UIColor, UIImage, FeedRowView, FeedDB ### Community 96 - "Community 96" Cohesion: 0.31 @@ -569,7 +602,7 @@ Cohesion: 0.36 Nodes (5): PaginatedForEach, Bool, Content, Element, Int ### Community 100 - "Community 100" -Cohesion: 0.25 +Cohesion: 0.29 Nodes (6): DisqusNewWindowHandler, MainActor, Void, WKScriptMessage, WKUserContentController, WKScriptMessageHandler ### Community 101 - "Community 101" @@ -585,8 +618,8 @@ Cohesion: 0.32 Nodes (4): PodcastMiniPlayerModifier, Content, View, ViewModifier ### Community 104 - "Community 104" -Cohesion: 0.32 -Nodes (5): RemoteFeedSearchService, Database, Int, SearchResult, String +Cohesion: 0.50 +Nodes (3): Int, SearchResult, String ### Community 105 - "Community 105" Cohesion: 0.36 @@ -597,20 +630,20 @@ Cohesion: 0.32 Nodes (7): AnalyticsManager, Binding, Bool, Database, ScrollPosition, String, VideosView ### Community 107 - "Community 107" -Cohesion: 0.32 -Nodes (6): SceneDelegate, UIScene, UISceneSession, UIResponder, UIWindow, UIWindowSceneDelegate +Cohesion: 0.18 +Nodes (10): SceneDelegate, Bool, UIApplicationShortcutItem, UIScene, UISceneSession, Void, UIResponder, UIWindow (+2 more) ### Community 108 - "Community 108" Cohesion: 0.33 Nodes (5): Glass, MenuView, Binding, Bool, T ### Community 109 - "Community 109" -Cohesion: 0.29 -Nodes (5): APIDefinitions, Endpoint, Int, Self, String +Cohesion: 0.15 +Nodes (9): CustomHost, APIDefinitions, Endpoint, Int, Self, String, APIDefinitions, Endpoint (+1 more) ### Community 110 - "Community 110" -Cohesion: 0.29 -Nodes (6): AnalyticsConstants, GenericEvent, newsOrder, socialOrder, tabOrder, String +Cohesion: 0.33 +Nodes (5): GenericEvent, newsOrder, socialOrder, tabOrder, String ### Community 111 - "Community 111" Cohesion: 0.33 @@ -625,8 +658,8 @@ Cohesion: 0.38 Nodes (5): PodcastDB, AnalyticsManager, Double, ModelContext, String ### Community 114 - "Community 114" -Cohesion: 0.43 -Nodes (6): ContentSheet, PatronLoginSheet, AnalyticsManager, String, Void, WebPage +Cohesion: 0.21 +Nodes (10): ContentSheet, PatronLoginSheet, SettingsView, AnalyticsManager, String, Void, WebPage, SocialView (+2 more) ### Community 115 - "Community 115" Cohesion: 0.38 @@ -653,8 +686,8 @@ Cohesion: 0.60 Nodes (5): AnyObject, ModelDuplicable, ModelFavoritable, ModelReadable, PersistentModel ### Community 121 - "Community 121" -Cohesion: 0.33 -Nodes (6): Hashable, OnboardingScreen, features, permissions, welcome, String +Cohesion: 0.14 +Nodes (13): OnboardingCoordinator, OnboardingScreen, features, permissions, welcome, Bool, String, Void (+5 more) ### Community 122 - "Community 122" Cohesion: 0.53 @@ -673,8 +706,8 @@ Cohesion: 0.40 Nodes (3): OnboardingLogoView, CGFloat, CGFloat ### Community 126 - "Community 126" -Cohesion: 0.33 -Nodes (5): ShortcutActions, none, openLastSeenPost, openMostRecentPost, openSearchPost +Cohesion: 0.14 +Nodes (13): Common MacMagazine Bug Patterns, Enforcement, FAIL Conditions, iOS Bug Fix & Refactoring, Remote search missing podcasts/videos, Search results showing wrong card type, Step 1: Investigation (MANDATORY), Step 2: Fix Implementation (+5 more) ### Community 127 - "Community 127" Cohesion: 0.40 @@ -689,8 +722,8 @@ Cohesion: 0.40 Nodes (5): Status, done, error, idle, loading ### Community 130 - "Community 130" -Cohesion: 0.70 -Nodes (4): FavoriteButton, Bool, String, Void +Cohesion: 0.20 +Nodes (11): View, FavoriteButton, Bool, String, Void, ReadButton, Bool, String (+3 more) ### Community 131 - "Community 131" Cohesion: 0.50 @@ -721,8 +754,12 @@ Cohesion: 0.40 Nodes (3): String, WidgetEntry, WatchWidgetEntryView ### Community 138 - "Community 138" -Cohesion: 0.50 -Nodes (3): FeedDB, ModelContext, PodcastDB +Cohesion: 0.53 +Nodes (4): FeedDB, ModelContext, NewsCategory, PodcastDB + +### Community 139 - "Community 139" +Cohesion: 0.15 +Nodes (13): Agents (`.claude/agents/`), Anti-hallucination contract (the most important section), Build Commands, CLAUDE.md — MacMagazine, Conventions, Definition of Done (all must hold before you say "done"), graphify, Guardrails (deterministic — see `.claude/settings.json` + `.claude/hooks/`) (+5 more) ### Community 141 - "Community 141" Cohesion: 0.67 @@ -736,25 +773,145 @@ Nodes (3): OnboardingSkipButton, String, Void Cohesion: 0.83 Nodes (3): FeedDetailView, FeedDB, FeedMainViewModel +### Community 147 - "Community 147" +Cohesion: 0.15 +Nodes (12): Accessibility, Card system (MacMagazineUILibrary), CardContent — universal data model, CardContentType — content variants, CardStyle — layout variants, Category-to-style mapping (NewsCategory.style), NewsCard — smart dispatcher, Theme system (+4 more) + +### Community 150 - "Community 150" +Cohesion: 0.15 +Nodes (12): Enforcement Rules, FAIL Conditions — Start Over If You:, iOS Feature Implementation, Phase 1: Pre-Flight (NO CODE YET), Phase 2: Planning, Phase 3: Implementation (Step by Step), Phase 4: Definition of Done, SUCCESS Conditions (+4 more) + +### Community 160 - "App do MacMagazine para iOS" +Cohesion: 0.15 +Nodes (13): App do MacMagazine para iOS, Bug Reporting e Feature Requests, Começando, Como funciona, Como usar, Configuração rápida, Contribuindo, Desenvolvimento com IA (Claude Code) (+5 more) + +### Community 161 - "Firebase Configuration" +Cohesion: 0.17 +Nodes (8): CI/CD Setup (Bitrise), Firebase Configuration, How It Works, Option 1: Using Environment Variables (Recommended), Option 2: Using Secure File Storage, Overview, Security Notes, Setup for Local Development + +### Community 162 - "iOS Design Guidelines for MacMagazine" +Cohesion: 0.17 +Nodes (11): Accessibility, Card System, CardStyle Reference, Dark Mode, iOS Design Guidelines for MacMagazine, Standard Background Pattern, Theme System, Theme Tokens (+3 more) + +### Community 163 - "MMWebView" +Cohesion: 0.29 +Nodes (6): MMWebView, async, MainActor, String, Void, WebPage + +### Community 164 - "Guia de Contribuição" +Cohesion: 0.17 +Nodes (12): 1. Aguarde revisão, 2. Responda aos comentários, 3. Atualize seu PR, 4. Aprovação e merge, Dúvidas?, Executando testes, Guia de Contribuição, Processo de revisão (+4 more) + +### Community 165 - "YOUR PRIME DIRECTIVES" +Cohesion: 0.18 +Nodes (10): DIRECTIVE 1: READ BEFORE YOU WRITE — NO EXCEPTIONS, DIRECTIVE 2: FOLLOW CLAUDE.md AND `.claude/rules/` AS ABSOLUTE LAW, DIRECTIVE 3: ARCHITECTURE COMPLIANCE, DIRECTIVE 4: SOLID, DRY, AND CLEAN CODE, DIRECTIVE 5: SELF-VERIFICATION CHECKLIST, DIRECTIVE 6: WHEN IN DOUBT, READ MORE CODE, DIRECTIVE 7: PROACTIVE EXCELLENCE, HARD-LEARNED LESSONS (+2 more) + +### Community 166 - "NewsCategory" +Cohesion: 0.18 +Nodes (10): NewsCategory, all, appletv, highlights, news, podcast, reviews, rumors (+2 more) + +### Community 167 - "Anti-hallucination & pattern-fidelity contract" +Cohesion: 0.22 +Nodes (8): 1. Never invent APIs or symbols, 2. Mirror the project's patterns — don't freelance, 3. Cite where you act, 4. Never fabricate results, 5. Prefer "I don't know" over a plausible guess, 6. Stay in scope, 7. Self-check before declaring done, Anti-hallucination & pattern-fidelity contract + +### Community 168 - "Skills Quick Reference" +Cohesion: 0.22 +Nodes (8): Built-in Skills (Claude Code), Decision Tree, Project Agents (`.claude/agents/`), Project Skills (this folder), Reference, Skill Integration, Skills Quick Reference, Workflow + +### Community 169 - "Criando um Pull Request" +Cohesion: 0.22 +Nodes (9): 1. Push da sua branch, 2. Abra o Pull Request, 3. Título do PR (IMPORTANTE), 4. Preencha o template, 5. Verifique a base branch, Criando um Pull Request, Exemplos de títulos válidos, Regra especial para `fix` (+1 more) + +### Community 170 - "Git workflow" +Cohesion: 0.25 +Nodes (7): Auto-commit and push (project policy), Blocked regardless (PreToolUse hook + settings.json deny), Branches, Commits / PR titles, Git workflow, Never commit, The gate (before every commit) + +### Community 171 - "Swift Style — naming, optionals, lint, comments" +Cohesion: 0.25 +Nodes (7): API design, Comments — zero tolerance for obvious comments, Files & layout, Naming, Optionals & errors, Swift Style — naming, optionals, lint, comments, SwiftLint configuration highlights + +### Community 172 - "Critical Requirements (Zero Tolerance)" +Cohesion: 0.25 +Nodes (7): Build & Tests, Card System Compliance, Code Quality (SOLID + DRY), Critical Requirements (Zero Tolerance), Git Workflow, iOS Definition of Done Checklist, Self-Review Questions + +### Community 173 - "PULL_REQUEST_TEMPLATE.md" +Cohesion: 0.25 +Nodes (7): Additional Notes, Checklist, Description, Related Issue, Screenshots/Videos, Testing, Type of Change + +### Community 174 - "WalletPassService" +Cohesion: 0.36 +Nodes (5): Network, Sendable, WalletPassService, WalletPassServiceTests, PKPass + +### Community 175 - "Testing — Swift Testing" +Cohesion: 0.29 +Nodes (6): Definition of tested, Pattern, Rules, Testing — Swift Testing, What to test, Where tests live + +### Community 176 - "Configuração do ambiente" +Cohesion: 0.29 +Nodes (7): 1. Clone o repositório, 2. Configure o Firebase, 3. Abra o projeto no Xcode, 4. Resolva as dependências, 5. Selecione o scheme e dispositivo, 6. Build inicial, Configuração do ambiente + +### Community 177 - "Concurrency — Swift 6.2, structured only" +Cohesion: 0.33 +Nodes (5): Banned (the PostToolUse hook blocks these), Concurrency — Swift 6.2, structured only, Example shape, Legacy (migrate when touching, never write new), Required patterns + +### Community 178 - "MinimumTouchTarget" +Cohesion: 0.47 +Nodes (3): MinimumTouchTarget, Content, View + +### Community 179 - "View" +Cohesion: 0.40 +Nodes (3): AccessibilityChildBehavior, String, View + +### Community 180 - "Validações automáticas" +Cohesion: 0.33 +Nodes (6): 1. Branch atualizada, 2. Título do PR, 3. SwiftLint, 4. Testes, Status das validações, Validações automáticas + +### Community 181 - "Fluxo de trabalho" +Cohesion: 0.40 +Nodes (5): 1. Mantenha seu fork atualizado, 2. Crie uma branch, 3. Desenvolva, 4. Teste localmente, Fluxo de trabalho + +### Community 182 - "swift-code-reviewer.md" +Cohesion: 0.50 +Nodes (3): Output, Read first, Review for + +### Community 184 - "Options" +Cohesion: 0.50 +Nodes (4): Options, home, search, String + +### Community 185 - "Options" +Cohesion: 0.50 +Nodes (4): Options, home, search, String + +### Community 186 - "Options" +Cohesion: 0.50 +Nodes (4): Options, home, search, String + +### Community 187 - "Padrões de código" +Cohesion: 0.50 +Nodes (4): Arquitetura, Code Style, Padrões de código, SwiftLint + +### Community 188 - "Troubleshooting" +Cohesion: 0.50 +Nodes (4): App won't build locally, Firebase disabled locally, Firebase not working on Bitrise, Troubleshooting + ## Knowledge Gaps -- **265 isolated node(s):** `post-tool-use.sh script`, `stop.sh script`, `$schema`, `Read`, `Grep` (+260 more) +- **472 isolated node(s):** `post-tool-use.sh script`, `stop.sh script`, `$schema`, `Read`, `Grep` (+467 more) These have ≤1 connection - possible missing edges or undocumented components. -- **26 thin communities (<3 nodes) omitted from report** — run `graphify query` to explore isolated nodes. +- **28 thin communities (<3 nodes) omitted from report** — run `graphify query` to explore isolated nodes. ## Suggested Questions _Questions this graph is uniquely positioned to answer:_ -- **Why does `Foundation` connect `FeedLibrary Imports` to `Settings & Subscriptions`, `Live Content & Notifications`, `Analytics Library`, `XML Feed Parsing`, `WebView HTML & Disqus`, `Community 139`, `API Endpoints`, `Community 145`, `Card Content & Menus`, `Search ViewModel Tests`, `Community 148`, `Search System`, `Community 23`, `Community 24`, `Community 152`, `Community 28`, `Community 29`, `Community 36`, `Community 40`, `Community 43`, `Community 45`, `Community 53`, `Community 58`, `Community 59`, `Community 63`, `Community 64`, `Community 65`, `Community 68`, `Community 70`, `Community 73`, `Community 78`, `Community 85`, `Community 100`, `Community 109`, `Community 110`, `Community 120`, `Community 126`?** - _High betweenness centrality (0.278) - this node is a cross-community bridge._ -- **Why does `SwiftUI` connect `Analytics Library` to `Community 128`, `Live Content & Notifications`, `Settings & Subscriptions`, `Community 132`, `WebView HTML & Disqus`, `FeedLibrary Imports`, `Community 140`, `API Endpoints`, `Card Content & Menus`, `Community 146`, `Search System`, `Community 149`, `Community 24`, `Community 36`, `Community 45`, `Community 46`, `Community 47`, `Community 49`, `Community 51`, `Community 53`, `Community 67`, `Community 71`, `Community 78`, `Community 81`, `Community 84`, `Community 91`, `Community 94`, `Community 99`, `Community 101`, `Community 102`, `Community 105`, `Community 112`, `Community 117`, `Community 118`, `Community 119`, `Community 124`, `Community 125`?** - _High betweenness centrality (0.157) - this node is a cross-community bridge._ -- **Why does `MacMagazineLibrary` connect `Analytics Library` to `Community 68`, `Community 36`, `FeedLibrary Imports`, `API Endpoints`, `Community 78`, `Community 145`, `Community 148`, `Community 53`, `Community 24`, `Community 89`, `Community 58`, `Community 152`?** - _High betweenness centrality (0.120) - this node is a cross-community bridge._ -- **Are the 68 inferred relationships involving `Database` (e.g. with `.deduplicateHandlesMultipleGroups()` and `.deduplicateKeepsMostRecentlyModified()`) actually correct?** - _`Database` has 68 INFERRED edges - model-reasoned connections that need verification._ +- **Why does `Foundation` connect `FeedLibrary Imports` to `Live Content & Notifications`, `Analytics Library`, `XML Feed Parsing`, `Community 145`, `Card Content & Menus`, `Community 148`, `Search System`, `Community 24`, `Community 152`, `Community 29`, `Community 36`, `Community 38`, `NewsCategory`, `Community 43`, `Community 53`, `Community 59`, `ThemeColor.swift`, `Community 64`, `Community 65`, `Community 68`, `Community 70`, `Community 73`, `Community 78`, `Community 82`, `Community 85`, `Community 109`, `Community 110`, `Community 120`?** + _High betweenness centrality (0.187) - this node is a cross-community bridge._ +- **Why does `SwiftUI` connect `Analytics Library` to `Community 128`, `Live Content & Notifications`, `Settings & Subscriptions`, `Community 132`, `WebView HTML & Disqus`, `FeedLibrary Imports`, `Community 140`, `API Endpoints`, `Card Content & Menus`, `Community 146`, `Search System`, `Community 149`, `Community 24`, `Community 36`, `Community 43`, `Community 49`, `MinimumTouchTarget`, `Community 53`, `.makeHTML`, `ThemeColor.swift`, `Community 67`, `Community 71`, `Community 78`, `Community 81`, `Community 91`, `Community 94`, `Community 99`, `Community 101`, `Community 102`, `Community 105`, `Community 112`, `Community 117`, `Community 118`, `Community 119`, `Community 124`, `Community 125`?** + _High betweenness centrality (0.128) - this node is a cross-community bridge._ +- **Why does `MacMagazineLibrary` connect `Analytics Library` to `Community 89`, `Community 68`, `Community 36`, `FeedLibrary Imports`, `Community 78`, `Community 145`, `Community 148`, `Community 53`, `Community 152`, `Community 24`?** + _High betweenness centrality (0.089) - this node is a cross-community bridge._ +- **Are the 74 inferred relationships involving `Database` (e.g. with `.deduplicateHandlesMultipleGroups()` and `.deduplicateKeepsMostRecentlyModified()`) actually correct?** + _`Database` has 74 INFERRED edges - model-reasoned connections that need verification._ - **What connects `post-tool-use.sh script`, `stop.sh script`, `$schema` to the rest of the system?** - _265 weakly-connected nodes found - possible documentation gaps or missing edges._ + _472 weakly-connected nodes found - possible documentation gaps or missing edges._ - **Should `Settings & Subscriptions` be split into smaller, more focused modules?** - _Cohesion score 0.050617283950617285 - nodes in this community are weakly interconnected._ + _Cohesion score 0.07644110275689223 - nodes in this community are weakly interconnected._ - **Should `Live Content & Notifications` be split into smaller, more focused modules?** _Cohesion score 0.05411392405063291 - nodes in this community are weakly interconnected._ \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.9.12/01eb8390a1ce5b9e66f7ace5f561738c26daed44fabd3ef3d937e872a66f801e.json b/graphify-out/cache/ast/v0.9.12/01eb8390a1ce5b9e66f7ace5f561738c26daed44fabd3ef3d937e872a66f801e.json new file mode 100644 index 00000000..7495b756 --- /dev/null +++ b/graphify-out/cache/ast/v0.9.12/01eb8390a1ce5b9e66f7ace5f561738c26daed44fabd3ef3d937e872a66f801e.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_webviewloadpolicytests_swift", "label": "WebViewLoadPolicyTests.swift", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/WebViewLoadPolicyTests.swift", "source_location": "L1"}, {"id": "foundation", "label": "Foundation", "file_type": "code", "type": "module", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/WebViewLoadPolicyTests.swift", "source_location": "L1"}, {"id": "macmagazineuilibrary", "label": "MacMagazineUILibrary", "file_type": "code", "type": "module", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/WebViewLoadPolicyTests.swift", "source_location": "L2"}, {"id": "swiftui", "label": "SwiftUI", "file_type": "code", "type": "module", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/WebViewLoadPolicyTests.swift", "source_location": "L3"}, {"id": "testing", "label": "Testing", "file_type": "code", "type": "module", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/WebViewLoadPolicyTests.swift", "source_location": "L4"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_webviewloadpolicytests_webviewloadpolicytests", "label": "WebViewLoadPolicyTests", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/WebViewLoadPolicyTests.swift", "source_location": "L6", "_callable": true}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_webviewloadpolicytests_webviewloadpolicytests_firstload", "label": ".firstLoad()", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/WebViewLoadPolicyTests.swift", "source_location": "L11", "_callable": true}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_webviewloadpolicytests_webviewloadpolicytests_skipafterpopback", "label": ".skipAfterPopBack()", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/WebViewLoadPolicyTests.swift", "source_location": "L20", "_callable": true}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_webviewloadpolicytests_webviewloadpolicytests_reloadonrotatedtrigger", "label": ".reloadOnRotatedTrigger()", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/WebViewLoadPolicyTests.swift", "source_location": "L29", "_callable": true}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_webviewloadpolicytests_webviewloadpolicytests_schemechangegating", "label": ".schemeChangeGating()", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/WebViewLoadPolicyTests.swift", "source_location": "L36", "_callable": true}, {"id": "scenephase", "label": "ScenePhase", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/WebViewLoadPolicyTests.swift"}, {"id": "bool", "label": "Bool", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/WebViewLoadPolicyTests.swift"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_webviewloadpolicytests_webviewloadpolicytests_noreconciliationwhenneverapplied", "label": ".noReconciliationWhenNeverApplied()", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/WebViewLoadPolicyTests.swift", "source_location": "L44", "_callable": true}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_webviewloadpolicytests_webviewloadpolicytests_noreconciliationwhenunchanged", "label": ".noReconciliationWhenUnchanged()", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/WebViewLoadPolicyTests.swift", "source_location": "L49", "_callable": true}, {"id": "colorscheme", "label": "ColorScheme", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/WebViewLoadPolicyTests.swift"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_webviewloadpolicytests_webviewloadpolicytests_reconciliationwhenchanged", "label": ".reconciliationWhenChanged()", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/WebViewLoadPolicyTests.swift", "source_location": "L55", "_callable": true}], "edges": [{"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_webviewloadpolicytests_swift", "target": "foundation", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/WebViewLoadPolicyTests.swift", "source_location": "L1", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_webviewloadpolicytests_swift", "target": "macmagazineuilibrary", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/WebViewLoadPolicyTests.swift", "source_location": "L2", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_webviewloadpolicytests_swift", "target": "swiftui", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/WebViewLoadPolicyTests.swift", "source_location": "L3", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_webviewloadpolicytests_swift", "target": "testing", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/WebViewLoadPolicyTests.swift", "source_location": "L4", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_webviewloadpolicytests_swift", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_webviewloadpolicytests_webviewloadpolicytests", "relation": "contains", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/WebViewLoadPolicyTests.swift", "source_location": "L6", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_webviewloadpolicytests_webviewloadpolicytests", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_webviewloadpolicytests_webviewloadpolicytests_firstload", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/WebViewLoadPolicyTests.swift", "source_location": "L11", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_webviewloadpolicytests_webviewloadpolicytests", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_webviewloadpolicytests_webviewloadpolicytests_skipafterpopback", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/WebViewLoadPolicyTests.swift", "source_location": "L20", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_webviewloadpolicytests_webviewloadpolicytests", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_webviewloadpolicytests_webviewloadpolicytests_reloadonrotatedtrigger", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/WebViewLoadPolicyTests.swift", "source_location": "L29", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_webviewloadpolicytests_webviewloadpolicytests", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_webviewloadpolicytests_webviewloadpolicytests_schemechangegating", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/WebViewLoadPolicyTests.swift", "source_location": "L36", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_webviewloadpolicytests_webviewloadpolicytests_schemechangegating", "target": "scenephase", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/WebViewLoadPolicyTests.swift", "source_location": "L36", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_webviewloadpolicytests_webviewloadpolicytests_schemechangegating", "target": "bool", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/WebViewLoadPolicyTests.swift", "source_location": "L36", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_webviewloadpolicytests_webviewloadpolicytests", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_webviewloadpolicytests_webviewloadpolicytests_noreconciliationwhenneverapplied", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/WebViewLoadPolicyTests.swift", "source_location": "L44", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_webviewloadpolicytests_webviewloadpolicytests", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_webviewloadpolicytests_webviewloadpolicytests_noreconciliationwhenunchanged", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/WebViewLoadPolicyTests.swift", "source_location": "L49", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_webviewloadpolicytests_webviewloadpolicytests_noreconciliationwhenunchanged", "target": "colorscheme", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/WebViewLoadPolicyTests.swift", "source_location": "L49", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_webviewloadpolicytests_webviewloadpolicytests", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_webviewloadpolicytests_webviewloadpolicytests_reconciliationwhenchanged", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/WebViewLoadPolicyTests.swift", "source_location": "L55", "weight": 1.0}], "raw_calls": [{"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_webviewloadpolicytests_webviewloadpolicytests_firstload", "callee": "UUID", "is_member_call": false, "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/WebViewLoadPolicyTests.swift", "source_location": "L14", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_webviewloadpolicytests_webviewloadpolicytests_firstload", "callee": "shouldLoad", "is_member_call": true, "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/WebViewLoadPolicyTests.swift", "source_location": "L17", "receiver": "WebViewLoadPolicy"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_webviewloadpolicytests_webviewloadpolicytests_skipafterpopback", "callee": "UUID", "is_member_call": false, "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/WebViewLoadPolicyTests.swift", "source_location": "L23", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_webviewloadpolicytests_webviewloadpolicytests_skipafterpopback", "callee": "shouldLoad", "is_member_call": true, "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/WebViewLoadPolicyTests.swift", "source_location": "L26", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_webviewloadpolicytests_webviewloadpolicytests_reloadonrotatedtrigger", "callee": "shouldLoad", "is_member_call": true, "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/WebViewLoadPolicyTests.swift", "source_location": "L31", "receiver": "WebViewLoadPolicy"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_webviewloadpolicytests_webviewloadpolicytests_reloadonrotatedtrigger", "callee": "UUID", "is_member_call": false, "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/WebViewLoadPolicyTests.swift", "source_location": "L31", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_webviewloadpolicytests_webviewloadpolicytests_reloadonrotatedtrigger", "callee": "UUID", "is_member_call": false, "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/WebViewLoadPolicyTests.swift", "source_location": "L31", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_webviewloadpolicytests_webviewloadpolicytests_schemechangegating", "callee": "shouldHandleColorSchemeChange", "is_member_call": true, "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/WebViewLoadPolicyTests.swift", "source_location": "L39", "receiver": "WebViewLoadPolicy"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_webviewloadpolicytests_webviewloadpolicytests_noreconciliationwhenneverapplied", "callee": "needsColorSchemeReconciliation", "is_member_call": true, "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/WebViewLoadPolicyTests.swift", "source_location": "L46", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_webviewloadpolicytests_webviewloadpolicytests_noreconciliationwhenunchanged", "callee": "needsColorSchemeReconciliation", "is_member_call": true, "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/WebViewLoadPolicyTests.swift", "source_location": "L52", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_webviewloadpolicytests_webviewloadpolicytests_reconciliationwhenchanged", "callee": "needsColorSchemeReconciliation", "is_member_call": true, "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/WebViewLoadPolicyTests.swift", "source_location": "L57", "receiver": "WebViewLoadPolicy"}], "swift_type_table": {"path": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/WebViewLoadPolicyTests.swift", "table": {"phase": "ScenePhase", "expected": "Bool", "scheme": "ColorScheme", "trigger": "UUID"}}} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.9.12/0652b4e55a11f96b218e74cf01199c5ad5f286494772297cb28142bab59e9425.json b/graphify-out/cache/ast/v0.9.12/0652b4e55a11f96b218e74cf01199c5ad5f286494772297cb28142bab59e9425.json new file mode 100644 index 00000000..bc697887 --- /dev/null +++ b/graphify-out/cache/ast/v0.9.12/0652b4e55a11f96b218e74cf01199c5ad5f286494772297cb28142bab59e9425.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_git_workflow_md", "label": "git-workflow.md", "file_type": "document", "source_file": ".claude/rules/git-workflow.md", "source_location": "L1"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_git_workflow_git_workflow", "label": "Git workflow", "file_type": "document", "source_file": ".claude/rules/git-workflow.md", "source_location": "L1"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_git_workflow_branches", "label": "Branches", "file_type": "document", "source_file": ".claude/rules/git-workflow.md", "source_location": "L3"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_git_workflow_commits_pr_titles", "label": "Commits / PR titles", "file_type": "document", "source_file": ".claude/rules/git-workflow.md", "source_location": "L9"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_git_workflow_the_gate_before_every_commit", "label": "The gate (before every commit)", "file_type": "document", "source_file": ".claude/rules/git-workflow.md", "source_location": "L26"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_git_workflow_auto_commit_and_push_project_policy", "label": "Auto-commit and push (project policy)", "file_type": "document", "source_file": ".claude/rules/git-workflow.md", "source_location": "L33"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_git_workflow_blocked_regardless_pretooluse_hook_settings_json_deny", "label": "Blocked regardless (PreToolUse hook + settings.json deny)", "file_type": "document", "source_file": ".claude/rules/git-workflow.md", "source_location": "L46"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_git_workflow_never_commit", "label": "Never commit", "file_type": "document", "source_file": ".claude/rules/git-workflow.md", "source_location": "L51"}], "edges": [{"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_git_workflow_md", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_git_workflow_git_workflow", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/rules/git-workflow.md", "source_location": "L1", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_git_workflow_git_workflow", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_git_workflow_branches", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/rules/git-workflow.md", "source_location": "L3", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_git_workflow_git_workflow", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_git_workflow_commits_pr_titles", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/rules/git-workflow.md", "source_location": "L9", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_git_workflow_git_workflow", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_git_workflow_the_gate_before_every_commit", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/rules/git-workflow.md", "source_location": "L26", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_git_workflow_git_workflow", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_git_workflow_auto_commit_and_push_project_policy", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/rules/git-workflow.md", "source_location": "L33", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_git_workflow_git_workflow", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_git_workflow_blocked_regardless_pretooluse_hook_settings_json_deny", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/rules/git-workflow.md", "source_location": "L46", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_git_workflow_git_workflow", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_git_workflow_never_commit", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/rules/git-workflow.md", "source_location": "L51", "weight": 1.0}], "input_tokens": 0, "output_tokens": 0} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.9.12/067d8ff0b8f12edda2817eedb3b601b87ec7f0335b627798b181bbea8dfd1667.json b/graphify-out/cache/ast/v0.9.12/067d8ff0b8f12edda2817eedb3b601b87ec7f0335b627798b181bbea8dfd1667.json new file mode 100644 index 00000000..a4ed26c2 --- /dev/null +++ b/graphify-out/cache/ast/v0.9.12/067d8ff0b8f12edda2817eedb3b601b87ec7f0335b627798b181bbea8dfd1667.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_minimumtouchtarget_swift", "label": "MinimumTouchTarget.swift", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/MinimumTouchTarget.swift", "source_location": "L1"}, {"id": "swiftui", "label": "SwiftUI", "file_type": "code", "type": "module", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/MinimumTouchTarget.swift", "source_location": "L1"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_minimumtouchtarget_view", "label": "View", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/MinimumTouchTarget.swift", "source_location": "L3", "_callable": true}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_minimumtouchtarget_view_minimumtouchtarget", "label": ".minimumTouchTarget()", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/MinimumTouchTarget.swift", "source_location": "L9", "_callable": true}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_minimumtouchtarget_minimumtouchtarget", "label": "MinimumTouchTarget", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/MinimumTouchTarget.swift", "source_location": "L14", "_callable": true}, {"id": "viewmodifier", "label": "ViewModifier", "file_type": "code", "source_file": "", "source_location": ""}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_minimumtouchtarget_minimumtouchtarget_body", "label": ".body()", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/MinimumTouchTarget.swift", "source_location": "L15", "_callable": true}, {"id": "content", "label": "Content", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/MinimumTouchTarget.swift"}], "edges": [{"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_minimumtouchtarget_swift", "target": "swiftui", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/MinimumTouchTarget.swift", "source_location": "L1", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_minimumtouchtarget_swift", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_minimumtouchtarget_view", "relation": "contains", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/MinimumTouchTarget.swift", "source_location": "L3", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_minimumtouchtarget_view", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_minimumtouchtarget_view_minimumtouchtarget", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/MinimumTouchTarget.swift", "source_location": "L9", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_minimumtouchtarget_view_minimumtouchtarget", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_minimumtouchtarget_view", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/MinimumTouchTarget.swift", "source_location": "L9", "weight": 1.0, "context": "return_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_minimumtouchtarget_swift", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_minimumtouchtarget_minimumtouchtarget", "relation": "contains", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/MinimumTouchTarget.swift", "source_location": "L14", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_minimumtouchtarget_minimumtouchtarget", "target": "viewmodifier", "relation": "implements", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/MinimumTouchTarget.swift", "source_location": "L14", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_minimumtouchtarget_minimumtouchtarget", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_minimumtouchtarget_minimumtouchtarget_body", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/MinimumTouchTarget.swift", "source_location": "L15", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_minimumtouchtarget_minimumtouchtarget_body", "target": "content", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/MinimumTouchTarget.swift", "source_location": "L15", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_minimumtouchtarget_minimumtouchtarget_body", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_minimumtouchtarget_view", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/MinimumTouchTarget.swift", "source_location": "L15", "weight": 1.0, "context": "return_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_minimumtouchtarget_view_minimumtouchtarget", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_minimumtouchtarget_minimumtouchtarget", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/MinimumTouchTarget.swift", "source_location": "L10", "weight": 1.0}], "raw_calls": [{"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_minimumtouchtarget_view_minimumtouchtarget", "callee": "modifier", "is_member_call": false, "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/MinimumTouchTarget.swift", "source_location": "L10", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_minimumtouchtarget_minimumtouchtarget_body", "callee": "glassEffect", "is_member_call": true, "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/MinimumTouchTarget.swift", "source_location": "L16", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_minimumtouchtarget_minimumtouchtarget_body", "callee": "contentShape", "is_member_call": true, "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/MinimumTouchTarget.swift", "source_location": "L16", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_minimumtouchtarget_minimumtouchtarget_body", "callee": "frame", "is_member_call": true, "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/MinimumTouchTarget.swift", "source_location": "L16", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_minimumtouchtarget_minimumtouchtarget_body", "callee": "buttonStyle", "is_member_call": true, "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/MinimumTouchTarget.swift", "source_location": "L16", "receiver": "content"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_minimumtouchtarget_minimumtouchtarget_body", "callee": "Circle", "is_member_call": false, "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/MinimumTouchTarget.swift", "source_location": "L19", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_minimumtouchtarget_minimumtouchtarget_body", "callee": "interactive", "is_member_call": true, "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/MinimumTouchTarget.swift", "source_location": "L20", "receiver": null}], "swift_extensions": [{"nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_minimumtouchtarget_view", "label": "View"}], "swift_type_table": {"path": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/MinimumTouchTarget.swift", "table": {"content": "Content"}}} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.9.12/0d014b28b1d86f377d9014c4faf92de069ff2df69bf3b5e741a2d45361abaaeb.json b/graphify-out/cache/ast/v0.9.12/0d014b28b1d86f377d9014c4faf92de069ff2df69bf3b5e741a2d45361abaaeb.json new file mode 100644 index 00000000..bcad5f6e --- /dev/null +++ b/graphify-out/cache/ast/v0.9.12/0d014b28b1d86f377d9014c4faf92de069ff2df69bf3b5e741a2d45361abaaeb.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_dod_skill_md", "label": "SKILL.md", "file_type": "document", "source_file": ".claude/skills/ios-dod/SKILL.md", "source_location": "L1"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_dod_skill_ios_definition_of_done_checklist", "label": "iOS Definition of Done Checklist", "file_type": "document", "source_file": ".claude/skills/ios-dod/SKILL.md", "source_location": "L7"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_dod_skill_critical_requirements_zero_tolerance", "label": "Critical Requirements (Zero Tolerance)", "file_type": "document", "source_file": ".claude/skills/ios-dod/SKILL.md", "source_location": "L19"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_dod_skill_code_quality_solid_dry", "label": "Code Quality (SOLID + DRY)", "file_type": "document", "source_file": ".claude/skills/ios-dod/SKILL.md", "source_location": "L21"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_dod_skill_card_system_compliance", "label": "Card System Compliance", "file_type": "document", "source_file": ".claude/skills/ios-dod/SKILL.md", "source_location": "L29"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_dod_skill_build_tests", "label": "Build & Tests", "file_type": "document", "source_file": ".claude/skills/ios-dod/SKILL.md", "source_location": "L35"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_dod_skill_git_workflow", "label": "Git Workflow", "file_type": "document", "source_file": ".claude/skills/ios-dod/SKILL.md", "source_location": "L59"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_dod_skill_self_review_questions", "label": "Self-Review Questions", "file_type": "document", "source_file": ".claude/skills/ios-dod/SKILL.md", "source_location": "L69"}], "edges": [{"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_dod_skill_md", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_dod_skill_ios_definition_of_done_checklist", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/skills/ios-dod/SKILL.md", "source_location": "L7", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_dod_skill_ios_definition_of_done_checklist", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_dod_skill_critical_requirements_zero_tolerance", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/skills/ios-dod/SKILL.md", "source_location": "L19", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_dod_skill_critical_requirements_zero_tolerance", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_dod_skill_code_quality_solid_dry", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/skills/ios-dod/SKILL.md", "source_location": "L21", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_dod_skill_critical_requirements_zero_tolerance", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_dod_skill_card_system_compliance", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/skills/ios-dod/SKILL.md", "source_location": "L29", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_dod_skill_critical_requirements_zero_tolerance", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_dod_skill_build_tests", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/skills/ios-dod/SKILL.md", "source_location": "L35", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_dod_skill_critical_requirements_zero_tolerance", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_dod_skill_git_workflow", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/skills/ios-dod/SKILL.md", "source_location": "L59", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_dod_skill_ios_definition_of_done_checklist", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_dod_skill_self_review_questions", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/skills/ios-dod/SKILL.md", "source_location": "L69", "weight": 1.0}], "input_tokens": 0, "output_tokens": 0} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.9.12/0ed131bfc307df761907f1c59c967e301627333f0d083c0d8a28941c1bd40299.json b/graphify-out/cache/ast/v0.9.12/0ed131bfc307df761907f1c59c967e301627333f0d083c0d8a28941c1bd40299.json new file mode 100644 index 00000000..83223445 --- /dev/null +++ b/graphify-out/cache/ast/v0.9.12/0ed131bfc307df761907f1c59c967e301627333f0d083c0d8a28941c1bd40299.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_macmagazine_features_news_toolbarmodifier_swift", "label": "ToolbarModifier.swift", "file_type": "code", "source_file": "MacMagazine/MacMagazine/Features/News/ToolbarModifier.swift", "source_location": "L1"}, {"id": "swiftui", "label": "SwiftUI", "file_type": "code", "type": "module", "source_file": "MacMagazine/MacMagazine/Features/News/ToolbarModifier.swift", "source_location": "L1"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_macmagazine_features_news_toolbarmodifier_toolbartype", "label": "ToolbarType", "file_type": "code", "source_file": "MacMagazine/MacMagazine/Features/News/ToolbarModifier.swift", "source_location": "L3", "_callable": true}, {"id": "equatable", "label": "Equatable", "file_type": "code", "source_file": "", "source_location": ""}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_macmagazine_features_news_toolbarmodifier_toolbartype_compact", "label": "compact", "file_type": "code", "source_file": "MacMagazine/MacMagazine/Features/News/ToolbarModifier.swift", "source_location": "L4"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_macmagazine_features_news_toolbarmodifier_toolbartype_normal", "label": "normal", "file_type": "code", "source_file": "MacMagazine/MacMagazine/Features/News/ToolbarModifier.swift", "source_location": "L5"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_macmagazine_features_news_toolbarmodifier_view", "label": "View", "file_type": "code", "source_file": "MacMagazine/MacMagazine/Features/News/ToolbarModifier.swift", "source_location": "L8", "_callable": true}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_macmagazine_features_news_toolbarmodifier_view_toolbar", "label": ".toolbar()", "file_type": "code", "source_file": "MacMagazine/MacMagazine/Features/News/ToolbarModifier.swift", "source_location": "L9", "_callable": true}, {"id": "menu", "label": "Menu", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/MacMagazine/Features/News/ToolbarModifier.swift"}, {"id": "options", "label": "Options", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/MacMagazine/Features/News/ToolbarModifier.swift"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_macmagazine_features_news_toolbarmodifier_toolbarmodifier", "label": "ToolbarModifier", "file_type": "code", "source_file": "MacMagazine/MacMagazine/Features/News/ToolbarModifier.swift", "source_location": "L22", "_callable": true}, {"id": "viewmodifier", "label": "ViewModifier", "file_type": "code", "source_file": "", "source_location": ""}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_macmagazine_features_news_toolbarmodifier_toolbarmodifier_body", "label": ".body()", "file_type": "code", "source_file": "MacMagazine/MacMagazine/Features/News/ToolbarModifier.swift", "source_location": "L27", "_callable": true}, {"id": "content", "label": "Content", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/MacMagazine/Features/News/ToolbarModifier.swift"}], "edges": [{"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_macmagazine_features_news_toolbarmodifier_swift", "target": "swiftui", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/MacMagazine/Features/News/ToolbarModifier.swift", "source_location": "L1", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_macmagazine_features_news_toolbarmodifier_swift", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_macmagazine_features_news_toolbarmodifier_toolbartype", "relation": "contains", "confidence": "EXTRACTED", "source_file": "MacMagazine/MacMagazine/Features/News/ToolbarModifier.swift", "source_location": "L3", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_macmagazine_features_news_toolbarmodifier_toolbartype", "target": "equatable", "relation": "implements", "confidence": "EXTRACTED", "source_file": "MacMagazine/MacMagazine/Features/News/ToolbarModifier.swift", "source_location": "L3", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_macmagazine_features_news_toolbarmodifier_toolbartype", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_macmagazine_features_news_toolbarmodifier_toolbartype_compact", "relation": "case_of", "confidence": "EXTRACTED", "source_file": "MacMagazine/MacMagazine/Features/News/ToolbarModifier.swift", "source_location": "L4", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_macmagazine_features_news_toolbarmodifier_toolbartype", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_macmagazine_features_news_toolbarmodifier_toolbartype_normal", "relation": "case_of", "confidence": "EXTRACTED", "source_file": "MacMagazine/MacMagazine/Features/News/ToolbarModifier.swift", "source_location": "L5", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_macmagazine_features_news_toolbarmodifier_swift", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_macmagazine_features_news_toolbarmodifier_view", "relation": "contains", "confidence": "EXTRACTED", "source_file": "MacMagazine/MacMagazine/Features/News/ToolbarModifier.swift", "source_location": "L8", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_macmagazine_features_news_toolbarmodifier_view", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_macmagazine_features_news_toolbarmodifier_view_toolbar", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/MacMagazine/Features/News/ToolbarModifier.swift", "source_location": "L9", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_macmagazine_features_news_toolbarmodifier_view_toolbar", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_macmagazine_features_news_toolbarmodifier_toolbartype", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/MacMagazine/Features/News/ToolbarModifier.swift", "source_location": "L9", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_macmagazine_features_news_toolbarmodifier_view_toolbar", "target": "menu", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/MacMagazine/Features/News/ToolbarModifier.swift", "source_location": "L9", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_macmagazine_features_news_toolbarmodifier_view_toolbar", "target": "options", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/MacMagazine/Features/News/ToolbarModifier.swift", "source_location": "L9", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_macmagazine_features_news_toolbarmodifier_view_toolbar", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_macmagazine_features_news_toolbarmodifier_view", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/MacMagazine/Features/News/ToolbarModifier.swift", "source_location": "L9", "weight": 1.0, "context": "return_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_macmagazine_features_news_toolbarmodifier_swift", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_macmagazine_features_news_toolbarmodifier_toolbarmodifier", "relation": "contains", "confidence": "EXTRACTED", "source_file": "MacMagazine/MacMagazine/Features/News/ToolbarModifier.swift", "source_location": "L22", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_macmagazine_features_news_toolbarmodifier_toolbarmodifier", "target": "viewmodifier", "relation": "implements", "confidence": "EXTRACTED", "source_file": "MacMagazine/MacMagazine/Features/News/ToolbarModifier.swift", "source_location": "L22", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_macmagazine_features_news_toolbarmodifier_toolbarmodifier", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_macmagazine_features_news_toolbarmodifier_toolbartype", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/MacMagazine/Features/News/ToolbarModifier.swift", "source_location": "L23", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_macmagazine_features_news_toolbarmodifier_toolbarmodifier", "target": "menu", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/MacMagazine/Features/News/ToolbarModifier.swift", "source_location": "L24", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_macmagazine_features_news_toolbarmodifier_toolbarmodifier", "target": "options", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/MacMagazine/Features/News/ToolbarModifier.swift", "source_location": "L25", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_macmagazine_features_news_toolbarmodifier_toolbarmodifier", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_macmagazine_features_news_toolbarmodifier_toolbarmodifier_body", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/MacMagazine/Features/News/ToolbarModifier.swift", "source_location": "L27", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_macmagazine_features_news_toolbarmodifier_toolbarmodifier_body", "target": "content", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/MacMagazine/Features/News/ToolbarModifier.swift", "source_location": "L27", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_macmagazine_features_news_toolbarmodifier_toolbarmodifier_body", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_macmagazine_features_news_toolbarmodifier_view", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/MacMagazine/Features/News/ToolbarModifier.swift", "source_location": "L27", "weight": 1.0, "context": "return_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_macmagazine_features_news_toolbarmodifier_view_toolbar", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_macmagazine_features_news_toolbarmodifier_toolbarmodifier", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "MacMagazine/MacMagazine/Features/News/ToolbarModifier.swift", "source_location": "L14", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_macmagazine_features_news_toolbarmodifier_toolbarmodifier_body", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_macmagazine_features_news_toolbarmodifier_view_toolbar", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "MacMagazine/MacMagazine/Features/News/ToolbarModifier.swift", "source_location": "L30", "weight": 1.0}], "raw_calls": [{"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_macmagazine_features_news_toolbarmodifier_view_toolbar", "callee": "modifier", "is_member_call": false, "source_file": "MacMagazine/MacMagazine/Features/News/ToolbarModifier.swift", "source_location": "L14", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_macmagazine_features_news_toolbarmodifier_toolbarmodifier_body", "callee": "navigationBarTitleDisplayMode", "is_member_call": true, "source_file": "MacMagazine/MacMagazine/Features/News/ToolbarModifier.swift", "source_location": "L30", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_macmagazine_features_news_toolbarmodifier_toolbarmodifier_body", "callee": "navigationTitle", "is_member_call": true, "source_file": "MacMagazine/MacMagazine/Features/News/ToolbarModifier.swift", "source_location": "L30", "receiver": "content"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_macmagazine_features_news_toolbarmodifier_toolbarmodifier_body", "callee": "sharedBackgroundVisibility", "is_member_call": true, "source_file": "MacMagazine/MacMagazine/Features/News/ToolbarModifier.swift", "source_location": "L34", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_macmagazine_features_news_toolbarmodifier_toolbarmodifier_body", "callee": "ToolbarItem", "is_member_call": false, "source_file": "MacMagazine/MacMagazine/Features/News/ToolbarModifier.swift", "source_location": "L34", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_macmagazine_features_news_toolbarmodifier_toolbarmodifier_body", "callee": "navigationBarTitleDisplayMode", "is_member_call": true, "source_file": "MacMagazine/MacMagazine/Features/News/ToolbarModifier.swift", "source_location": "L41", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_macmagazine_features_news_toolbarmodifier_toolbarmodifier_body", "callee": "navigationTitle", "is_member_call": true, "source_file": "MacMagazine/MacMagazine/Features/News/ToolbarModifier.swift", "source_location": "L41", "receiver": "content"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_macmagazine_features_news_toolbarmodifier_toolbarmodifier_body", "callee": "sharedBackgroundVisibility", "is_member_call": true, "source_file": "MacMagazine/MacMagazine/Features/News/ToolbarModifier.swift", "source_location": "L45", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_macmagazine_features_news_toolbarmodifier_toolbarmodifier_body", "callee": "ToolbarItem", "is_member_call": false, "source_file": "MacMagazine/MacMagazine/Features/News/ToolbarModifier.swift", "source_location": "L45", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_macmagazine_features_news_toolbarmodifier_toolbarmodifier_body", "callee": "sharedBackgroundVisibility", "is_member_call": true, "source_file": "MacMagazine/MacMagazine/Features/News/ToolbarModifier.swift", "source_location": "L49", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_macmagazine_features_news_toolbarmodifier_toolbarmodifier_body", "callee": "ToolbarItem", "is_member_call": false, "source_file": "MacMagazine/MacMagazine/Features/News/ToolbarModifier.swift", "source_location": "L49", "receiver": null}], "swift_extensions": [{"nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_macmagazine_features_news_toolbarmodifier_view", "label": "View"}], "swift_type_table": {"path": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/MacMagazine/Features/News/ToolbarModifier.swift", "table": {"type": "ToolbarType", "menu": "Menu", "options": "Options", "content": "Content"}}} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.9.12/0f6581f1f2bd538fefcf97e35ab2a6b60308b1a13cdb3b7f630658561d06a767.json b/graphify-out/cache/ast/v0.9.12/0f6581f1f2bd538fefcf97e35ab2a6b60308b1a13cdb3b7f630658561d06a767.json new file mode 100644 index 00000000..41b26d6e --- /dev/null +++ b/graphify-out/cache/ast/v0.9.12/0f6581f1f2bd538fefcf97e35ab2a6b60308b1a13cdb3b7f630658561d06a767.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_design_guidelines_skill_md", "label": "SKILL.md", "file_type": "document", "source_file": ".claude/skills/ios-design-guidelines/SKILL.md", "source_location": "L1"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_design_guidelines_skill_ios_design_guidelines_for_macmagazine", "label": "iOS Design Guidelines for MacMagazine", "file_type": "document", "source_file": ".claude/skills/ios-design-guidelines/SKILL.md", "source_location": "L6"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_design_guidelines_skill_theme_system", "label": "Theme System", "file_type": "document", "source_file": ".claude/skills/ios-design-guidelines/SKILL.md", "source_location": "L8"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_design_guidelines_skill_theme_tokens", "label": "Theme Tokens", "file_type": "document", "source_file": ".claude/skills/ios-design-guidelines/SKILL.md", "source_location": "L16"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_design_guidelines_skill_standard_background_pattern", "label": "Standard Background Pattern", "file_type": "document", "source_file": ".claude/skills/ios-design-guidelines/SKILL.md", "source_location": "L29"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_design_guidelines_skill_card_system", "label": "Card System", "file_type": "document", "source_file": ".claude/skills/ios-design-guidelines/SKILL.md", "source_location": "L40"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_design_guidelines_skill_when_to_use_which_card", "label": "When to Use Which Card", "file_type": "document", "source_file": ".claude/skills/ios-design-guidelines/SKILL.md", "source_location": "L42"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_design_guidelines_skill_cardstyle_reference", "label": "CardStyle Reference", "file_type": "document", "source_file": ".claude/skills/ios-design-guidelines/SKILL.md", "source_location": "L52"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_design_guidelines_skill_typography", "label": "Typography", "file_type": "document", "source_file": ".claude/skills/ios-design-guidelines/SKILL.md", "source_location": "L62"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_design_guidelines_skill_touch_targets", "label": "Touch Targets", "file_type": "document", "source_file": ".claude/skills/ios-design-guidelines/SKILL.md", "source_location": "L75"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_design_guidelines_skill_accessibility", "label": "Accessibility", "file_type": "document", "source_file": ".claude/skills/ios-design-guidelines/SKILL.md", "source_location": "L82"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_design_guidelines_skill_dark_mode", "label": "Dark Mode", "file_type": "document", "source_file": ".claude/skills/ios-design-guidelines/SKILL.md", "source_location": "L89"}], "edges": [{"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_design_guidelines_skill_md", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_design_guidelines_skill_ios_design_guidelines_for_macmagazine", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/skills/ios-design-guidelines/SKILL.md", "source_location": "L6", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_design_guidelines_skill_ios_design_guidelines_for_macmagazine", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_design_guidelines_skill_theme_system", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/skills/ios-design-guidelines/SKILL.md", "source_location": "L8", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_design_guidelines_skill_theme_system", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_design_guidelines_skill_theme_tokens", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/skills/ios-design-guidelines/SKILL.md", "source_location": "L16", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_design_guidelines_skill_theme_system", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_design_guidelines_skill_standard_background_pattern", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/skills/ios-design-guidelines/SKILL.md", "source_location": "L29", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_design_guidelines_skill_ios_design_guidelines_for_macmagazine", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_design_guidelines_skill_card_system", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/skills/ios-design-guidelines/SKILL.md", "source_location": "L40", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_design_guidelines_skill_card_system", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_design_guidelines_skill_when_to_use_which_card", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/skills/ios-design-guidelines/SKILL.md", "source_location": "L42", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_design_guidelines_skill_card_system", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_design_guidelines_skill_cardstyle_reference", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/skills/ios-design-guidelines/SKILL.md", "source_location": "L52", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_design_guidelines_skill_ios_design_guidelines_for_macmagazine", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_design_guidelines_skill_typography", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/skills/ios-design-guidelines/SKILL.md", "source_location": "L62", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_design_guidelines_skill_ios_design_guidelines_for_macmagazine", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_design_guidelines_skill_touch_targets", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/skills/ios-design-guidelines/SKILL.md", "source_location": "L75", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_design_guidelines_skill_ios_design_guidelines_for_macmagazine", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_design_guidelines_skill_accessibility", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/skills/ios-design-guidelines/SKILL.md", "source_location": "L82", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_design_guidelines_skill_ios_design_guidelines_for_macmagazine", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_design_guidelines_skill_dark_mode", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/skills/ios-design-guidelines/SKILL.md", "source_location": "L89", "weight": 1.0}], "input_tokens": 0, "output_tokens": 0} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.9.12/0f9aeb4e9127f2af4cfd5484e267c0823c2cf8da15cef3f7cf210f0a5167f00c.json b/graphify-out/cache/ast/v0.9.12/0f9aeb4e9127f2af4cfd5484e267c0823c2cf8da15cef3f7cf210f0a5167f00c.json new file mode 100644 index 00000000..444290e0 --- /dev/null +++ b/graphify-out/cache/ast/v0.9.12/0f9aeb4e9127f2af4cfd5484e267c0823c2cf8da15cef3f7cf210f0a5167f00c.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_glasscardview_swift", "label": "GlassCardView.swift", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/GlassCardView.swift", "source_location": "L1"}, {"id": "analyticslibrary", "label": "AnalyticsLibrary", "file_type": "code", "type": "module", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/GlassCardView.swift", "source_location": "L1"}, {"id": "macmagazinelibrary", "label": "MacMagazineLibrary", "file_type": "code", "type": "module", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/GlassCardView.swift", "source_location": "L2"}, {"id": "swiftui", "label": "SwiftUI", "file_type": "code", "type": "module", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/GlassCardView.swift", "source_location": "L3"}, {"id": "uicomponentslibrary", "label": "UIComponentsLibrary", "file_type": "code", "type": "module", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/GlassCardView.swift", "source_location": "L4"}, {"id": "utilitylibrary", "label": "UtilityLibrary", "file_type": "code", "type": "module", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/GlassCardView.swift", "source_location": "L5"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_glasscardview_glasscardview", "label": "GlassCardView", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/GlassCardView.swift", "source_location": "L7", "_callable": true}, {"id": "view", "label": "View", "file_type": "code", "source_file": "", "source_location": ""}, {"id": "analyticsmanager", "label": "AnalyticsManager", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/GlassCardView.swift"}, {"id": "cardcontent", "label": "CardContent", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/GlassCardView.swift"}, {"id": "cgfloat", "label": "CGFloat", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/GlassCardView.swift"}, {"id": "carddensity", "label": "CardDensity", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/GlassCardView.swift"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_glasscardview_glasscardview_init", "label": ".init()", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/GlassCardView.swift", "source_location": "L19", "_callable": true}, {"id": "lineargradient", "label": "LinearGradient", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/GlassCardView.swift"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_glasscardview_glasscardview_thumbnail", "label": ".thumbnail()", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/GlassCardView.swift", "source_location": "L77", "_callable": true}, {"id": "url", "label": "URL", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/GlassCardView.swift"}], "edges": [{"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_glasscardview_swift", "target": "analyticslibrary", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/GlassCardView.swift", "source_location": "L1", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_glasscardview_swift", "target": "macmagazinelibrary", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/GlassCardView.swift", "source_location": "L2", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_glasscardview_swift", "target": "swiftui", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/GlassCardView.swift", "source_location": "L3", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_glasscardview_swift", "target": "uicomponentslibrary", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/GlassCardView.swift", "source_location": "L4", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_glasscardview_swift", "target": "utilitylibrary", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/GlassCardView.swift", "source_location": "L5", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_glasscardview_swift", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_glasscardview_glasscardview", "relation": "contains", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/GlassCardView.swift", "source_location": "L7", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_glasscardview_glasscardview", "target": "view", "relation": "implements", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/GlassCardView.swift", "source_location": "L7", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_glasscardview_glasscardview", "target": "analyticsmanager", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/GlassCardView.swift", "source_location": "L9", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_glasscardview_glasscardview", "target": "cardcontent", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/GlassCardView.swift", "source_location": "L13", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_glasscardview_glasscardview", "target": "cgfloat", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/GlassCardView.swift", "source_location": "L15", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_glasscardview_glasscardview", "target": "carddensity", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/GlassCardView.swift", "source_location": "L17", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_glasscardview_glasscardview", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_glasscardview_glasscardview_init", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/GlassCardView.swift", "source_location": "L19", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_glasscardview_glasscardview_init", "target": "cardcontent", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/GlassCardView.swift", "source_location": "L19", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_glasscardview_glasscardview", "target": "view", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/GlassCardView.swift", "source_location": "L23", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_glasscardview_swift", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_glasscardview_glasscardview", "relation": "contains", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/GlassCardView.swift", "source_location": "L37", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_glasscardview_glasscardview", "target": "view", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/GlassCardView.swift", "source_location": "L38", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_glasscardview_glasscardview", "target": "lineargradient", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/GlassCardView.swift", "source_location": "L50", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_glasscardview_glasscardview", "target": "lineargradient", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/GlassCardView.swift", "source_location": "L61", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_glasscardview_swift", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_glasscardview_glasscardview", "relation": "contains", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/GlassCardView.swift", "source_location": "L76", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_glasscardview_glasscardview", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_glasscardview_glasscardview_thumbnail", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/GlassCardView.swift", "source_location": "L77", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_glasscardview_glasscardview_thumbnail", "target": "url", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/GlassCardView.swift", "source_location": "L77", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_glasscardview_glasscardview_thumbnail", "target": "view", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/GlassCardView.swift", "source_location": "L77", "weight": 1.0, "context": "return_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_glasscardview_swift", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_glasscardview_glasscardview", "relation": "contains", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/GlassCardView.swift", "source_location": "L97", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_glasscardview_glasscardview", "target": "view", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/GlassCardView.swift", "source_location": "L98", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_glasscardview_glasscardview", "target": "view", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/GlassCardView.swift", "source_location": "L109", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_glasscardview_glasscardview", "target": "view", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/GlassCardView.swift", "source_location": "L120", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_glasscardview_glasscardview", "target": "view", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/GlassCardView.swift", "source_location": "L130", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_glasscardview_glasscardview", "target": "view", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/GlassCardView.swift", "source_location": "L148", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_glasscardview_glasscardview", "target": "view", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/GlassCardView.swift", "source_location": "L175", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_glasscardview_glasscardview", "target": "view", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/GlassCardView.swift", "source_location": "L183", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_glasscardview_glasscardview", "target": "view", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/GlassCardView.swift", "source_location": "L196", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_glasscardview_swift", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_glasscardview_glasscardview", "relation": "contains", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/GlassCardView.swift", "source_location": "L208", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_glasscardview_glasscardview", "target": "view", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/GlassCardView.swift", "source_location": "L209", "weight": 1.0, "context": "field"}], "raw_calls": [{"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_glasscardview_glasscardview_thumbnail", "callee": "aspectRatio", "is_member_call": true, "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/GlassCardView.swift", "source_location": "L80", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_glasscardview_glasscardview_thumbnail", "callee": "GeometryReader", "is_member_call": false, "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/GlassCardView.swift", "source_location": "L80", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_glasscardview_glasscardview_thumbnail", "callee": "cornerRadius", "is_member_call": true, "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/GlassCardView.swift", "source_location": "L81", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_glasscardview_glasscardview_thumbnail", "callee": "frame", "is_member_call": true, "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/GlassCardView.swift", "source_location": "L81", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_glasscardview_glasscardview_thumbnail", "callee": "CachedAsyncImage", "is_member_call": false, "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/GlassCardView.swift", "source_location": "L81", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_glasscardview_glasscardview_thumbnail", "callee": "GeometryReader", "is_member_call": false, "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/GlassCardView.swift", "source_location": "L87", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_glasscardview_glasscardview_thumbnail", "callee": "frame", "is_member_call": true, "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/GlassCardView.swift", "source_location": "L88", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_glasscardview_glasscardview_thumbnail", "callee": "CachedAsyncImage", "is_member_call": false, "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/GlassCardView.swift", "source_location": "L88", "receiver": null}], "swift_extensions": [{"nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_glasscardview_glasscardview", "label": "GlassCardView"}, {"nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_glasscardview_glasscardview", "label": "GlassCardView"}, {"nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_glasscardview_glasscardview", "label": "GlassCardView"}, {"nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_glasscardview_glasscardview", "label": "GlassCardView"}], "swift_type_table": {"path": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/GlassCardView.swift", "table": {"analytics": "AnalyticsManager", "data": "CardContent", "cardWidth": "CGFloat", "density": "CardDensity", "body": "View", "content": "View", "fallbackBackground": "LinearGradient", "gradientOverlay": "LinearGradient", "imageUrl": "URL", "metadataContent": "View", "titleRow": "View", "detailsRow": "View", "dateDurationRow": "View", "dateStatsDurationRow": "View", "dateRow": "View", "authorRow": "View", "duration": "View", "statistics": "View"}}} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.9.12/187cacd3b716ad6ceb9d347847144efcd2bb2dd22faa6125a23cb19bc8c00998.json b/graphify-out/cache/ast/v0.9.12/187cacd3b716ad6ceb9d347847144efcd2bb2dd22faa6125a23cb19bc8c00998.json new file mode 100644 index 00000000..0dfc8cda --- /dev/null +++ b/graphify-out/cache/ast/v0.9.12/187cacd3b716ad6ceb9d347847144efcd2bb2dd22faa6125a23cb19bc8c00998.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_urlclassifiertests_swift", "label": "URLClassifierTests.swift", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineLibrary/Tests/MacMagazineLibraryTests/URLClassifierTests.swift", "source_location": "L1"}, {"id": "foundation", "label": "Foundation", "file_type": "code", "type": "module", "source_file": "MacMagazine/Features/MacMagazineLibrary/Tests/MacMagazineLibraryTests/URLClassifierTests.swift", "source_location": "L1"}, {"id": "macmagazinelibrary", "label": "MacMagazineLibrary", "file_type": "code", "type": "module", "source_file": "MacMagazine/Features/MacMagazineLibrary/Tests/MacMagazineLibraryTests/URLClassifierTests.swift", "source_location": "L2"}, {"id": "testing", "label": "Testing", "file_type": "code", "type": "module", "source_file": "MacMagazine/Features/MacMagazineLibrary/Tests/MacMagazineLibraryTests/URLClassifierTests.swift", "source_location": "L3"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_urlclassifiertests_urlclassifiertests", "label": "URLClassifierTests", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineLibrary/Tests/MacMagazineLibraryTests/URLClassifierTests.swift", "source_location": "L5", "_callable": true}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_urlclassifiertests_urlclassifiertests_commentsscheme", "label": ".commentsScheme()", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineLibrary/Tests/MacMagazineLibraryTests/URLClassifierTests.swift", "source_location": "L8", "_callable": true}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_urlclassifiertests_urlclassifiertests_disqusanchor", "label": ".disqusAnchor()", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineLibrary/Tests/MacMagazineLibraryTests/URLClassifierTests.swift", "source_location": "L14", "_callable": true}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_urlclassifiertests_urlclassifiertests_instagram", "label": ".instagram()", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineLibrary/Tests/MacMagazineLibraryTests/URLClassifierTests.swift", "source_location": "L20", "_callable": true}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_urlclassifiertests_urlclassifiertests_appstore", "label": ".appStore()", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineLibrary/Tests/MacMagazineLibraryTests/URLClassifierTests.swift", "source_location": "L26", "_callable": true}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_urlclassifiertests_urlclassifiertests_itunes", "label": ".iTunes()", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineLibrary/Tests/MacMagazineLibraryTests/URLClassifierTests.swift", "source_location": "L32", "_callable": true}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_urlclassifiertests_urlclassifiertests_youtube", "label": ".youTube()", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineLibrary/Tests/MacMagazineLibraryTests/URLClassifierTests.swift", "source_location": "L38", "_callable": true}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_urlclassifiertests_urlclassifiertests_macmagazinepost", "label": ".macmagazinePost()", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineLibrary/Tests/MacMagazineLibraryTests/URLClassifierTests.swift", "source_location": "L50", "_callable": true}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_urlclassifiertests_urlclassifiertests_external", "label": ".external()", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineLibrary/Tests/MacMagazineLibraryTests/URLClassifierTests.swift", "source_location": "L56", "_callable": true}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_urlclassifiertests_urlclassifiertests_walletpass", "label": ".walletPass()", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineLibrary/Tests/MacMagazineLibraryTests/URLClassifierTests.swift", "source_location": "L62", "_callable": true}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_urlclassifiertests_urlclassifiertests_walletpasstakesprecedenceoverhost", "label": ".walletPassTakesPrecedenceOverHost()", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineLibrary/Tests/MacMagazineLibraryTests/URLClassifierTests.swift", "source_location": "L68", "_callable": true}], "edges": [{"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_urlclassifiertests_swift", "target": "foundation", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineLibrary/Tests/MacMagazineLibraryTests/URLClassifierTests.swift", "source_location": "L1", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_urlclassifiertests_swift", "target": "macmagazinelibrary", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineLibrary/Tests/MacMagazineLibraryTests/URLClassifierTests.swift", "source_location": "L2", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_urlclassifiertests_swift", "target": "testing", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineLibrary/Tests/MacMagazineLibraryTests/URLClassifierTests.swift", "source_location": "L3", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_urlclassifiertests_swift", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_urlclassifiertests_urlclassifiertests", "relation": "contains", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineLibrary/Tests/MacMagazineLibraryTests/URLClassifierTests.swift", "source_location": "L5", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_urlclassifiertests_urlclassifiertests", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_urlclassifiertests_urlclassifiertests_commentsscheme", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineLibrary/Tests/MacMagazineLibraryTests/URLClassifierTests.swift", "source_location": "L8", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_urlclassifiertests_urlclassifiertests", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_urlclassifiertests_urlclassifiertests_disqusanchor", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineLibrary/Tests/MacMagazineLibraryTests/URLClassifierTests.swift", "source_location": "L14", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_urlclassifiertests_urlclassifiertests", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_urlclassifiertests_urlclassifiertests_instagram", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineLibrary/Tests/MacMagazineLibraryTests/URLClassifierTests.swift", "source_location": "L20", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_urlclassifiertests_urlclassifiertests", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_urlclassifiertests_urlclassifiertests_appstore", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineLibrary/Tests/MacMagazineLibraryTests/URLClassifierTests.swift", "source_location": "L26", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_urlclassifiertests_urlclassifiertests", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_urlclassifiertests_urlclassifiertests_itunes", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineLibrary/Tests/MacMagazineLibraryTests/URLClassifierTests.swift", "source_location": "L32", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_urlclassifiertests_urlclassifiertests", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_urlclassifiertests_urlclassifiertests_youtube", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineLibrary/Tests/MacMagazineLibraryTests/URLClassifierTests.swift", "source_location": "L38", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_urlclassifiertests_urlclassifiertests", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_urlclassifiertests_urlclassifiertests_youtube", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineLibrary/Tests/MacMagazineLibraryTests/URLClassifierTests.swift", "source_location": "L44", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_urlclassifiertests_urlclassifiertests", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_urlclassifiertests_urlclassifiertests_macmagazinepost", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineLibrary/Tests/MacMagazineLibraryTests/URLClassifierTests.swift", "source_location": "L50", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_urlclassifiertests_urlclassifiertests", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_urlclassifiertests_urlclassifiertests_external", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineLibrary/Tests/MacMagazineLibraryTests/URLClassifierTests.swift", "source_location": "L56", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_urlclassifiertests_urlclassifiertests", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_urlclassifiertests_urlclassifiertests_walletpass", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineLibrary/Tests/MacMagazineLibraryTests/URLClassifierTests.swift", "source_location": "L62", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_urlclassifiertests_urlclassifiertests", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_urlclassifiertests_urlclassifiertests_walletpasstakesprecedenceoverhost", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineLibrary/Tests/MacMagazineLibraryTests/URLClassifierTests.swift", "source_location": "L68", "weight": 1.0}], "raw_calls": [{"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_urlclassifiertests_urlclassifiertests_commentsscheme", "callee": "classify", "is_member_call": true, "source_file": "MacMagazine/Features/MacMagazineLibrary/Tests/MacMagazineLibraryTests/URLClassifierTests.swift", "source_location": "L11", "receiver": "URLClassifier"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_urlclassifiertests_urlclassifiertests_disqusanchor", "callee": "classify", "is_member_call": true, "source_file": "MacMagazine/Features/MacMagazineLibrary/Tests/MacMagazineLibraryTests/URLClassifierTests.swift", "source_location": "L17", "receiver": "URLClassifier"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_urlclassifiertests_urlclassifiertests_instagram", "callee": "classify", "is_member_call": true, "source_file": "MacMagazine/Features/MacMagazineLibrary/Tests/MacMagazineLibraryTests/URLClassifierTests.swift", "source_location": "L23", "receiver": "URLClassifier"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_urlclassifiertests_urlclassifiertests_appstore", "callee": "classify", "is_member_call": true, "source_file": "MacMagazine/Features/MacMagazineLibrary/Tests/MacMagazineLibraryTests/URLClassifierTests.swift", "source_location": "L29", "receiver": "URLClassifier"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_urlclassifiertests_urlclassifiertests_itunes", "callee": "classify", "is_member_call": true, "source_file": "MacMagazine/Features/MacMagazineLibrary/Tests/MacMagazineLibraryTests/URLClassifierTests.swift", "source_location": "L35", "receiver": "URLClassifier"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_urlclassifiertests_urlclassifiertests_youtube", "callee": "classify", "is_member_call": true, "source_file": "MacMagazine/Features/MacMagazineLibrary/Tests/MacMagazineLibraryTests/URLClassifierTests.swift", "source_location": "L41", "receiver": "URLClassifier"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_urlclassifiertests_urlclassifiertests_youtube", "callee": "classify", "is_member_call": true, "source_file": "MacMagazine/Features/MacMagazineLibrary/Tests/MacMagazineLibraryTests/URLClassifierTests.swift", "source_location": "L47", "receiver": "URLClassifier"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_urlclassifiertests_urlclassifiertests_macmagazinepost", "callee": "classify", "is_member_call": true, "source_file": "MacMagazine/Features/MacMagazineLibrary/Tests/MacMagazineLibraryTests/URLClassifierTests.swift", "source_location": "L53", "receiver": "URLClassifier"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_urlclassifiertests_urlclassifiertests_external", "callee": "classify", "is_member_call": true, "source_file": "MacMagazine/Features/MacMagazineLibrary/Tests/MacMagazineLibraryTests/URLClassifierTests.swift", "source_location": "L59", "receiver": "URLClassifier"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_urlclassifiertests_urlclassifiertests_walletpass", "callee": "classify", "is_member_call": true, "source_file": "MacMagazine/Features/MacMagazineLibrary/Tests/MacMagazineLibraryTests/URLClassifierTests.swift", "source_location": "L65", "receiver": "URLClassifier"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazinelibrary_tests_macmagazinelibrarytests_urlclassifiertests_urlclassifiertests_walletpasstakesprecedenceoverhost", "callee": "classify", "is_member_call": true, "source_file": "MacMagazine/Features/MacMagazineLibrary/Tests/MacMagazineLibraryTests/URLClassifierTests.swift", "source_location": "L71", "receiver": "URLClassifier"}]} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.9.12/1baea275c3617b16eaf7a69d1fddb0229a80eb4ec70c2627abf939e18147e45f.json b/graphify-out/cache/ast/v0.9.12/1baea275c3617b16eaf7a69d1fddb0229a80eb4ec70c2627abf939e18147e45f.json new file mode 100644 index 00000000..3da9ad2c --- /dev/null +++ b/graphify-out/cache/ast/v0.9.12/1baea275c3617b16eaf7a69d1fddb0229a80eb4ec70c2627abf939e18147e45f.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_sanity_check_skill_md", "label": "SKILL.md", "file_type": "document", "source_file": ".claude/skills/ios-sanity-check/SKILL.md", "source_location": "L1"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_sanity_check_skill_ios_codebase_sanity_check", "label": "iOS Codebase Sanity Check", "file_type": "document", "source_file": ".claude/skills/ios-sanity-check/SKILL.md", "source_location": "L7"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_sanity_check_skill_how_to_run", "label": "How to Run", "file_type": "document", "source_file": ".claude/skills/ios-sanity-check/SKILL.md", "source_location": "L11"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_sanity_check_skill_audit_dimensions", "label": "Audit Dimensions", "file_type": "document", "source_file": ".claude/skills/ios-sanity-check/SKILL.md", "source_location": "L17"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_sanity_check_skill_1_obvious_comments", "label": "1. Obvious Comments", "file_type": "document", "source_file": ".claude/skills/ios-sanity-check/SKILL.md", "source_location": "L21"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_sanity_check_skill_2_force_unwraps_in_production_code", "label": "2. Force Unwraps in Production Code", "file_type": "document", "source_file": ".claude/skills/ios-sanity-check/SKILL.md", "source_location": "L26"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_sanity_check_skill_3_observable_usage", "label": "3. @Observable Usage", "file_type": "document", "source_file": ".claude/skills/ios-sanity-check/SKILL.md", "source_location": "L31"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_sanity_check_skill_4_card_system_compliance", "label": "4. Card System Compliance", "file_type": "document", "source_file": ".claude/skills/ios-sanity-check/SKILL.md", "source_location": "L35"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_sanity_check_skill_5_hardcoded_colors", "label": "5. Hardcoded Colors", "file_type": "document", "source_file": ".claude/skills/ios-sanity-check/SKILL.md", "source_location": "L42"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_sanity_check_skill_6_swiftlint_compliance", "label": "6. SwiftLint Compliance", "file_type": "document", "source_file": ".claude/skills/ios-sanity-check/SKILL.md", "source_location": "L47"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_sanity_check_skill_7_dry_violations", "label": "7. DRY Violations", "file_type": "document", "source_file": ".claude/skills/ios-sanity-check/SKILL.md", "source_location": "L51"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_sanity_check_skill_8_solid_violations", "label": "8. SOLID Violations", "file_type": "document", "source_file": ".claude/skills/ios-sanity-check/SKILL.md", "source_location": "L57"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_sanity_check_skill_9_search_system_integrity", "label": "9. Search System Integrity", "file_type": "document", "source_file": ".claude/skills/ios-sanity-check/SKILL.md", "source_location": "L63"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_sanity_check_skill_10_webview_system_integrity", "label": "10. WebView System Integrity", "file_type": "document", "source_file": ".claude/skills/ios-sanity-check/SKILL.md", "source_location": "L70"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_sanity_check_skill_report_format", "label": "Report Format", "file_type": "document", "source_file": ".claude/skills/ios-sanity-check/SKILL.md", "source_location": "L77"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_sanity_check_skill_grading_a_0_a_1_2_b_3_6_c_7_15_f_16", "label": "Grading: A+ (0), A (1-2), B (3-6), C (7-15), F (16+)", "file_type": "document", "source_file": ".claude/skills/ios-sanity-check/SKILL.md", "source_location": "L84"}], "edges": [{"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_sanity_check_skill_md", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_sanity_check_skill_ios_codebase_sanity_check", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/skills/ios-sanity-check/SKILL.md", "source_location": "L7", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_sanity_check_skill_ios_codebase_sanity_check", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_sanity_check_skill_how_to_run", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/skills/ios-sanity-check/SKILL.md", "source_location": "L11", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_sanity_check_skill_ios_codebase_sanity_check", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_sanity_check_skill_audit_dimensions", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/skills/ios-sanity-check/SKILL.md", "source_location": "L17", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_sanity_check_skill_audit_dimensions", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_sanity_check_skill_1_obvious_comments", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/skills/ios-sanity-check/SKILL.md", "source_location": "L21", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_sanity_check_skill_audit_dimensions", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_sanity_check_skill_2_force_unwraps_in_production_code", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/skills/ios-sanity-check/SKILL.md", "source_location": "L26", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_sanity_check_skill_audit_dimensions", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_sanity_check_skill_3_observable_usage", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/skills/ios-sanity-check/SKILL.md", "source_location": "L31", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_sanity_check_skill_audit_dimensions", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_sanity_check_skill_4_card_system_compliance", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/skills/ios-sanity-check/SKILL.md", "source_location": "L35", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_sanity_check_skill_audit_dimensions", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_sanity_check_skill_5_hardcoded_colors", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/skills/ios-sanity-check/SKILL.md", "source_location": "L42", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_sanity_check_skill_audit_dimensions", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_sanity_check_skill_6_swiftlint_compliance", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/skills/ios-sanity-check/SKILL.md", "source_location": "L47", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_sanity_check_skill_audit_dimensions", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_sanity_check_skill_7_dry_violations", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/skills/ios-sanity-check/SKILL.md", "source_location": "L51", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_sanity_check_skill_audit_dimensions", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_sanity_check_skill_8_solid_violations", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/skills/ios-sanity-check/SKILL.md", "source_location": "L57", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_sanity_check_skill_audit_dimensions", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_sanity_check_skill_9_search_system_integrity", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/skills/ios-sanity-check/SKILL.md", "source_location": "L63", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_sanity_check_skill_audit_dimensions", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_sanity_check_skill_10_webview_system_integrity", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/skills/ios-sanity-check/SKILL.md", "source_location": "L70", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_sanity_check_skill_ios_codebase_sanity_check", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_sanity_check_skill_report_format", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/skills/ios-sanity-check/SKILL.md", "source_location": "L77", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_sanity_check_skill_report_format", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_sanity_check_skill_grading_a_0_a_1_2_b_3_6_c_7_15_f_16", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/skills/ios-sanity-check/SKILL.md", "source_location": "L84", "weight": 1.0}], "input_tokens": 0, "output_tokens": 0} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.9.12/20ec1b4809659b810e9c64fd77c5642753307a5a60241975db912e365df94248.json b/graphify-out/cache/ast/v0.9.12/20ec1b4809659b810e9c64fd77c5642753307a5a60241975db912e365df94248.json new file mode 100644 index 00000000..16575931 --- /dev/null +++ b/graphify-out/cache/ast/v0.9.12/20ec1b4809659b810e9c64fd77c5642753307a5a60241975db912e365df94248.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_md", "label": "CONTRIBUTING.md", "file_type": "document", "source_file": "Support/CONTRIBUTING.md", "source_location": "L1"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_guia_de_contribui\u00e7\u00e3o", "label": "Guia de Contribui\u00e7\u00e3o", "file_type": "document", "source_file": "Support/CONTRIBUTING.md", "source_location": "L1"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_sum\u00e1rio", "label": "Sum\u00e1rio", "file_type": "document", "source_file": "Support/CONTRIBUTING.md", "source_location": "L5"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_pr\u00e9_requisitos", "label": "Pr\u00e9-requisitos", "file_type": "document", "source_file": "Support/CONTRIBUTING.md", "source_location": "L18"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_configura\u00e7\u00e3o_do_ambiente", "label": "Configura\u00e7\u00e3o do ambiente", "file_type": "document", "source_file": "Support/CONTRIBUTING.md", "source_location": "L33"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_1_clone_o_reposit\u00f3rio", "label": "1. Clone o reposit\u00f3rio", "file_type": "document", "source_file": "Support/CONTRIBUTING.md", "source_location": "L35"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_2_configure_o_firebase", "label": "2. Configure o Firebase", "file_type": "document", "source_file": "Support/CONTRIBUTING.md", "source_location": "L46"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_3_abra_o_projeto_no_xcode", "label": "3. Abra o projeto no Xcode", "file_type": "document", "source_file": "Support/CONTRIBUTING.md", "source_location": "L58"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_4_resolva_as_depend\u00eancias", "label": "4. Resolva as depend\u00eancias", "file_type": "document", "source_file": "Support/CONTRIBUTING.md", "source_location": "L64"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_5_selecione_o_scheme_e_dispositivo", "label": "5. Selecione o scheme e dispositivo", "file_type": "document", "source_file": "Support/CONTRIBUTING.md", "source_location": "L68"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_6_build_inicial", "label": "6. Build inicial", "file_type": "document", "source_file": "Support/CONTRIBUTING.md", "source_location": "L73"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_fluxo_de_trabalho", "label": "Fluxo de trabalho", "file_type": "document", "source_file": "Support/CONTRIBUTING.md", "source_location": "L79"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_1_mantenha_seu_fork_atualizado", "label": "1. Mantenha seu fork atualizado", "file_type": "document", "source_file": "Support/CONTRIBUTING.md", "source_location": "L81"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_2_crie_uma_branch", "label": "2. Crie uma branch", "file_type": "document", "source_file": "Support/CONTRIBUTING.md", "source_location": "L92"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_3_desenvolva", "label": "3. Desenvolva", "file_type": "document", "source_file": "Support/CONTRIBUTING.md", "source_location": "L111"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_4_teste_localmente", "label": "4. Teste localmente", "file_type": "document", "source_file": "Support/CONTRIBUTING.md", "source_location": "L117"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_padr\u00f5es_de_c\u00f3digo", "label": "Padr\u00f5es de c\u00f3digo", "file_type": "document", "source_file": "Support/CONTRIBUTING.md", "source_location": "L128"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_swiftlint", "label": "SwiftLint", "file_type": "document", "source_file": "Support/CONTRIBUTING.md", "source_location": "L130"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_code_style", "label": "Code Style", "file_type": "document", "source_file": "Support/CONTRIBUTING.md", "source_location": "L142"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_arquitetura", "label": "Arquitetura", "file_type": "document", "source_file": "Support/CONTRIBUTING.md", "source_location": "L152"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_executando_testes", "label": "Executando testes", "file_type": "document", "source_file": "Support/CONTRIBUTING.md", "source_location": "L161"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_via_xcode", "label": "Via Xcode", "file_type": "document", "source_file": "Support/CONTRIBUTING.md", "source_location": "L163"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_via_linha_de_comando", "label": "Via linha de comando", "file_type": "document", "source_file": "Support/CONTRIBUTING.md", "source_location": "L169"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_criando_um_pull_request", "label": "Criando um Pull Request", "file_type": "document", "source_file": "Support/CONTRIBUTING.md", "source_location": "L183"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_1_push_da_sua_branch", "label": "1. Push da sua branch", "file_type": "document", "source_file": "Support/CONTRIBUTING.md", "source_location": "L185"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_2_abra_o_pull_request", "label": "2. Abra o Pull Request", "file_type": "document", "source_file": "Support/CONTRIBUTING.md", "source_location": "L191"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_3_t\u00edtulo_do_pr_importante", "label": "3. T\u00edtulo do PR (IMPORTANTE)", "file_type": "document", "source_file": "Support/CONTRIBUTING.md", "source_location": "L195"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_tipos_v\u00e1lidos", "label": "Tipos v\u00e1lidos", "file_type": "document", "source_file": "Support/CONTRIBUTING.md", "source_location": "L203"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_exemplos_de_t\u00edtulos_v\u00e1lidos", "label": "Exemplos de t\u00edtulos v\u00e1lidos", "file_type": "document", "source_file": "Support/CONTRIBUTING.md", "source_location": "L219"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_regra_especial_para_fix", "label": "Regra especial para `fix`", "file_type": "document", "source_file": "Support/CONTRIBUTING.md", "source_location": "L228"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_4_preencha_o_template", "label": "4. Preencha o template", "file_type": "document", "source_file": "Support/CONTRIBUTING.md", "source_location": "L236"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_5_verifique_a_base_branch", "label": "5. Verifique a base branch", "file_type": "document", "source_file": "Support/CONTRIBUTING.md", "source_location": "L247"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_valida\u00e7\u00f5es_autom\u00e1ticas", "label": "Valida\u00e7\u00f5es autom\u00e1ticas", "file_type": "document", "source_file": "Support/CONTRIBUTING.md", "source_location": "L255"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_1_branch_atualizada", "label": "1. Branch atualizada", "file_type": "document", "source_file": "Support/CONTRIBUTING.md", "source_location": "L259"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_2_t\u00edtulo_do_pr", "label": "2. T\u00edtulo do PR", "file_type": "document", "source_file": "Support/CONTRIBUTING.md", "source_location": "L269"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_3_swiftlint", "label": "3. SwiftLint", "file_type": "document", "source_file": "Support/CONTRIBUTING.md", "source_location": "L273"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_4_testes", "label": "4. Testes", "file_type": "document", "source_file": "Support/CONTRIBUTING.md", "source_location": "L281"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_status_das_valida\u00e7\u00f5es", "label": "Status das valida\u00e7\u00f5es", "file_type": "document", "source_file": "Support/CONTRIBUTING.md", "source_location": "L285"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_processo_de_revis\u00e3o", "label": "Processo de revis\u00e3o", "file_type": "document", "source_file": "Support/CONTRIBUTING.md", "source_location": "L297"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_1_aguarde_revis\u00e3o", "label": "1. Aguarde revis\u00e3o", "file_type": "document", "source_file": "Support/CONTRIBUTING.md", "source_location": "L299"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_2_responda_aos_coment\u00e1rios", "label": "2. Responda aos coment\u00e1rios", "file_type": "document", "source_file": "Support/CONTRIBUTING.md", "source_location": "L307"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_3_atualize_seu_pr", "label": "3. Atualize seu PR", "file_type": "document", "source_file": "Support/CONTRIBUTING.md", "source_location": "L313"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_4_aprova\u00e7\u00e3o_e_merge", "label": "4. Aprova\u00e7\u00e3o e merge", "file_type": "document", "source_file": "Support/CONTRIBUTING.md", "source_location": "L323"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_d\u00favidas", "label": "D\u00favidas?", "file_type": "document", "source_file": "Support/CONTRIBUTING.md", "source_location": "L331"}], "edges": [{"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_md", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_guia_de_contribui\u00e7\u00e3o", "relation": "contains", "confidence": "EXTRACTED", "source_file": "Support/CONTRIBUTING.md", "source_location": "L1", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_guia_de_contribui\u00e7\u00e3o", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_sum\u00e1rio", "relation": "contains", "confidence": "EXTRACTED", "source_file": "Support/CONTRIBUTING.md", "source_location": "L5", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_guia_de_contribui\u00e7\u00e3o", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_pr\u00e9_requisitos", "relation": "contains", "confidence": "EXTRACTED", "source_file": "Support/CONTRIBUTING.md", "source_location": "L18", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_guia_de_contribui\u00e7\u00e3o", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_configura\u00e7\u00e3o_do_ambiente", "relation": "contains", "confidence": "EXTRACTED", "source_file": "Support/CONTRIBUTING.md", "source_location": "L33", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_configura\u00e7\u00e3o_do_ambiente", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_1_clone_o_reposit\u00f3rio", "relation": "contains", "confidence": "EXTRACTED", "source_file": "Support/CONTRIBUTING.md", "source_location": "L35", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_configura\u00e7\u00e3o_do_ambiente", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_2_configure_o_firebase", "relation": "contains", "confidence": "EXTRACTED", "source_file": "Support/CONTRIBUTING.md", "source_location": "L46", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_md", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_support_firebase_md", "relation": "references", "confidence": "EXTRACTED", "source_file": "Support/CONTRIBUTING.md", "source_location": "L56", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_configura\u00e7\u00e3o_do_ambiente", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_3_abra_o_projeto_no_xcode", "relation": "contains", "confidence": "EXTRACTED", "source_file": "Support/CONTRIBUTING.md", "source_location": "L58", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_configura\u00e7\u00e3o_do_ambiente", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_4_resolva_as_depend\u00eancias", "relation": "contains", "confidence": "EXTRACTED", "source_file": "Support/CONTRIBUTING.md", "source_location": "L64", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_configura\u00e7\u00e3o_do_ambiente", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_5_selecione_o_scheme_e_dispositivo", "relation": "contains", "confidence": "EXTRACTED", "source_file": "Support/CONTRIBUTING.md", "source_location": "L68", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_configura\u00e7\u00e3o_do_ambiente", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_6_build_inicial", "relation": "contains", "confidence": "EXTRACTED", "source_file": "Support/CONTRIBUTING.md", "source_location": "L73", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_guia_de_contribui\u00e7\u00e3o", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_fluxo_de_trabalho", "relation": "contains", "confidence": "EXTRACTED", "source_file": "Support/CONTRIBUTING.md", "source_location": "L79", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_fluxo_de_trabalho", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_1_mantenha_seu_fork_atualizado", "relation": "contains", "confidence": "EXTRACTED", "source_file": "Support/CONTRIBUTING.md", "source_location": "L81", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_fluxo_de_trabalho", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_2_crie_uma_branch", "relation": "contains", "confidence": "EXTRACTED", "source_file": "Support/CONTRIBUTING.md", "source_location": "L92", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_fluxo_de_trabalho", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_3_desenvolva", "relation": "contains", "confidence": "EXTRACTED", "source_file": "Support/CONTRIBUTING.md", "source_location": "L111", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_fluxo_de_trabalho", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_4_teste_localmente", "relation": "contains", "confidence": "EXTRACTED", "source_file": "Support/CONTRIBUTING.md", "source_location": "L117", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_guia_de_contribui\u00e7\u00e3o", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_padr\u00f5es_de_c\u00f3digo", "relation": "contains", "confidence": "EXTRACTED", "source_file": "Support/CONTRIBUTING.md", "source_location": "L128", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_padr\u00f5es_de_c\u00f3digo", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_swiftlint", "relation": "contains", "confidence": "EXTRACTED", "source_file": "Support/CONTRIBUTING.md", "source_location": "L130", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_padr\u00f5es_de_c\u00f3digo", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_code_style", "relation": "contains", "confidence": "EXTRACTED", "source_file": "Support/CONTRIBUTING.md", "source_location": "L142", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_padr\u00f5es_de_c\u00f3digo", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_arquitetura", "relation": "contains", "confidence": "EXTRACTED", "source_file": "Support/CONTRIBUTING.md", "source_location": "L152", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_guia_de_contribui\u00e7\u00e3o", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_executando_testes", "relation": "contains", "confidence": "EXTRACTED", "source_file": "Support/CONTRIBUTING.md", "source_location": "L161", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_executando_testes", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_via_xcode", "relation": "contains", "confidence": "EXTRACTED", "source_file": "Support/CONTRIBUTING.md", "source_location": "L163", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_executando_testes", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_via_linha_de_comando", "relation": "contains", "confidence": "EXTRACTED", "source_file": "Support/CONTRIBUTING.md", "source_location": "L169", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_guia_de_contribui\u00e7\u00e3o", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_criando_um_pull_request", "relation": "contains", "confidence": "EXTRACTED", "source_file": "Support/CONTRIBUTING.md", "source_location": "L183", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_criando_um_pull_request", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_1_push_da_sua_branch", "relation": "contains", "confidence": "EXTRACTED", "source_file": "Support/CONTRIBUTING.md", "source_location": "L185", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_criando_um_pull_request", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_2_abra_o_pull_request", "relation": "contains", "confidence": "EXTRACTED", "source_file": "Support/CONTRIBUTING.md", "source_location": "L191", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_criando_um_pull_request", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_3_t\u00edtulo_do_pr_importante", "relation": "contains", "confidence": "EXTRACTED", "source_file": "Support/CONTRIBUTING.md", "source_location": "L195", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_3_t\u00edtulo_do_pr_importante", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_tipos_v\u00e1lidos", "relation": "contains", "confidence": "EXTRACTED", "source_file": "Support/CONTRIBUTING.md", "source_location": "L203", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_3_t\u00edtulo_do_pr_importante", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_exemplos_de_t\u00edtulos_v\u00e1lidos", "relation": "contains", "confidence": "EXTRACTED", "source_file": "Support/CONTRIBUTING.md", "source_location": "L219", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_3_t\u00edtulo_do_pr_importante", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_regra_especial_para_fix", "relation": "contains", "confidence": "EXTRACTED", "source_file": "Support/CONTRIBUTING.md", "source_location": "L228", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_criando_um_pull_request", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_4_preencha_o_template", "relation": "contains", "confidence": "EXTRACTED", "source_file": "Support/CONTRIBUTING.md", "source_location": "L236", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_criando_um_pull_request", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_5_verifique_a_base_branch", "relation": "contains", "confidence": "EXTRACTED", "source_file": "Support/CONTRIBUTING.md", "source_location": "L247", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_guia_de_contribui\u00e7\u00e3o", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_valida\u00e7\u00f5es_autom\u00e1ticas", "relation": "contains", "confidence": "EXTRACTED", "source_file": "Support/CONTRIBUTING.md", "source_location": "L255", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_valida\u00e7\u00f5es_autom\u00e1ticas", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_1_branch_atualizada", "relation": "contains", "confidence": "EXTRACTED", "source_file": "Support/CONTRIBUTING.md", "source_location": "L259", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_valida\u00e7\u00f5es_autom\u00e1ticas", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_2_t\u00edtulo_do_pr", "relation": "contains", "confidence": "EXTRACTED", "source_file": "Support/CONTRIBUTING.md", "source_location": "L269", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_valida\u00e7\u00f5es_autom\u00e1ticas", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_3_swiftlint", "relation": "contains", "confidence": "EXTRACTED", "source_file": "Support/CONTRIBUTING.md", "source_location": "L273", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_valida\u00e7\u00f5es_autom\u00e1ticas", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_4_testes", "relation": "contains", "confidence": "EXTRACTED", "source_file": "Support/CONTRIBUTING.md", "source_location": "L281", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_valida\u00e7\u00f5es_autom\u00e1ticas", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_status_das_valida\u00e7\u00f5es", "relation": "contains", "confidence": "EXTRACTED", "source_file": "Support/CONTRIBUTING.md", "source_location": "L285", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_guia_de_contribui\u00e7\u00e3o", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_processo_de_revis\u00e3o", "relation": "contains", "confidence": "EXTRACTED", "source_file": "Support/CONTRIBUTING.md", "source_location": "L297", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_processo_de_revis\u00e3o", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_1_aguarde_revis\u00e3o", "relation": "contains", "confidence": "EXTRACTED", "source_file": "Support/CONTRIBUTING.md", "source_location": "L299", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_processo_de_revis\u00e3o", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_2_responda_aos_coment\u00e1rios", "relation": "contains", "confidence": "EXTRACTED", "source_file": "Support/CONTRIBUTING.md", "source_location": "L307", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_processo_de_revis\u00e3o", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_3_atualize_seu_pr", "relation": "contains", "confidence": "EXTRACTED", "source_file": "Support/CONTRIBUTING.md", "source_location": "L313", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_processo_de_revis\u00e3o", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_4_aprova\u00e7\u00e3o_e_merge", "relation": "contains", "confidence": "EXTRACTED", "source_file": "Support/CONTRIBUTING.md", "source_location": "L323", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_guia_de_contribui\u00e7\u00e3o", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_d\u00favidas", "relation": "contains", "confidence": "EXTRACTED", "source_file": "Support/CONTRIBUTING.md", "source_location": "L331", "weight": 1.0}], "input_tokens": 0, "output_tokens": 0} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.9.12/2e629640dbb83325ec2902358b892a765a65bc8fa710b9f3c68e1adc51abd04d.json b/graphify-out/cache/ast/v0.9.12/2e629640dbb83325ec2902358b892a765a65bc8fa710b9f3c68e1adc51abd04d.json new file mode 100644 index 00000000..d2a2a7a5 --- /dev/null +++ b/graphify-out/cache/ast/v0.9.12/2e629640dbb83325ec2902358b892a765a65bc8fa710b9f3c68e1adc51abd04d.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_agents_architecture_guardian_md", "label": "architecture-guardian.md", "file_type": "document", "source_file": ".claude/agents/architecture-guardian.md", "source_location": "L1"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_agents_architecture_guardian_checks_report_pass_fail_with_evidence_for_each", "label": "Checks (report PASS/FAIL with evidence for each)", "file_type": "document", "source_file": ".claude/agents/architecture-guardian.md", "source_location": "L11"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_agents_architecture_guardian_output", "label": "Output", "file_type": "document", "source_file": ".claude/agents/architecture-guardian.md", "source_location": "L31"}], "edges": [{"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_agents_architecture_guardian_md", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_agents_architecture_guardian_checks_report_pass_fail_with_evidence_for_each", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/agents/architecture-guardian.md", "source_location": "L11", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_agents_architecture_guardian_md", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_agents_architecture_guardian_output", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/agents/architecture-guardian.md", "source_location": "L31", "weight": 1.0}], "input_tokens": 0, "output_tokens": 0} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.9.12/31cd0cce3f4ed8beb65871806da0b91f70e984919f5849d47ac008f76587515f.json b/graphify-out/cache/ast/v0.9.12/31cd0cce3f4ed8beb65871806da0b91f70e984919f5849d47ac008f76587515f.json new file mode 100644 index 00000000..06b1f146 --- /dev/null +++ b/graphify-out/cache/ast/v0.9.12/31cd0cce3f4ed8beb65871806da0b91f70e984919f5849d47ac008f76587515f.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_implement_skill_md", "label": "SKILL.md", "file_type": "document", "source_file": ".claude/skills/ios-implement/SKILL.md", "source_location": "L1"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_implement_skill_ios_feature_implementation", "label": "iOS Feature Implementation", "file_type": "document", "source_file": ".claude/skills/ios-implement/SKILL.md", "source_location": "L6"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_implement_skill_workflow_4_phases", "label": "Workflow: 4 Phases", "file_type": "document", "source_file": ".claude/skills/ios-implement/SKILL.md", "source_location": "L17"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_implement_skill_phase_1_pre_flight_no_code_yet", "label": "Phase 1: Pre-Flight (NO CODE YET)", "file_type": "document", "source_file": ".claude/skills/ios-implement/SKILL.md", "source_location": "L19"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_implement_skill_phase_2_planning", "label": "Phase 2: Planning", "file_type": "document", "source_file": ".claude/skills/ios-implement/SKILL.md", "source_location": "L37"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_implement_skill_phase_3_implementation_step_by_step", "label": "Phase 3: Implementation (Step by Step)", "file_type": "document", "source_file": ".claude/skills/ios-implement/SKILL.md", "source_location": "L46"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_implement_skill_viewmodel", "label": "ViewModel", "file_type": "document", "source_file": ".claude/skills/ios-implement/SKILL.md", "source_location": "L50"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_implement_skill_views", "label": "Views", "file_type": "document", "source_file": ".claude/skills/ios-implement/SKILL.md", "source_location": "L56"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_implement_skill_tests", "label": "Tests", "file_type": "document", "source_file": ".claude/skills/ios-implement/SKILL.md", "source_location": "L62"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_implement_skill_phase_4_definition_of_done", "label": "Phase 4: Definition of Done", "file_type": "document", "source_file": ".claude/skills/ios-implement/SKILL.md", "source_location": "L67"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_implement_skill_enforcement_rules", "label": "Enforcement Rules", "file_type": "document", "source_file": ".claude/skills/ios-implement/SKILL.md", "source_location": "L73"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_implement_skill_fail_conditions_start_over_if_you", "label": "FAIL Conditions \u2014 Start Over If You:", "file_type": "document", "source_file": ".claude/skills/ios-implement/SKILL.md", "source_location": "L75"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_implement_skill_success_conditions", "label": "SUCCESS Conditions", "file_type": "document", "source_file": ".claude/skills/ios-implement/SKILL.md", "source_location": "L82"}], "edges": [{"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_implement_skill_md", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_implement_skill_ios_feature_implementation", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/skills/ios-implement/SKILL.md", "source_location": "L6", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_implement_skill_ios_feature_implementation", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_implement_skill_workflow_4_phases", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/skills/ios-implement/SKILL.md", "source_location": "L17", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_implement_skill_workflow_4_phases", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_implement_skill_phase_1_pre_flight_no_code_yet", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/skills/ios-implement/SKILL.md", "source_location": "L19", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_implement_skill_workflow_4_phases", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_implement_skill_phase_2_planning", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/skills/ios-implement/SKILL.md", "source_location": "L37", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_implement_skill_workflow_4_phases", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_implement_skill_phase_3_implementation_step_by_step", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/skills/ios-implement/SKILL.md", "source_location": "L46", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_implement_skill_phase_3_implementation_step_by_step", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_implement_skill_viewmodel", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/skills/ios-implement/SKILL.md", "source_location": "L50", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_implement_skill_phase_3_implementation_step_by_step", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_implement_skill_views", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/skills/ios-implement/SKILL.md", "source_location": "L56", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_implement_skill_phase_3_implementation_step_by_step", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_implement_skill_tests", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/skills/ios-implement/SKILL.md", "source_location": "L62", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_implement_skill_workflow_4_phases", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_implement_skill_phase_4_definition_of_done", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/skills/ios-implement/SKILL.md", "source_location": "L67", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_implement_skill_ios_feature_implementation", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_implement_skill_enforcement_rules", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/skills/ios-implement/SKILL.md", "source_location": "L73", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_implement_skill_enforcement_rules", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_implement_skill_fail_conditions_start_over_if_you", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/skills/ios-implement/SKILL.md", "source_location": "L75", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_implement_skill_enforcement_rules", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_implement_skill_success_conditions", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/skills/ios-implement/SKILL.md", "source_location": "L82", "weight": 1.0}], "input_tokens": 0, "output_tokens": 0} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.9.12/324cfb0da0d8ed3ea848f24d8add0852dc9d4ea6b9151e800104dac88ba924ae.json b/graphify-out/cache/ast/v0.9.12/324cfb0da0d8ed3ea848f24d8add0852dc9d4ea6b9151e800104dac88ba924ae.json new file mode 100644 index 00000000..6ee44391 --- /dev/null +++ b/graphify-out/cache/ast/v0.9.12/324cfb0da0d8ed3ea848f24d8add0852dc9d4ea6b9151e800104dac88ba924ae.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_firebase_md", "label": "FIREBASE.md", "file_type": "document", "source_file": "Support/FIREBASE.md", "source_location": "L1"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_firebase_firebase_configuration", "label": "Firebase Configuration", "file_type": "document", "source_file": "Support/FIREBASE.md", "source_location": "L1"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_firebase_overview", "label": "Overview", "file_type": "document", "source_file": "Support/FIREBASE.md", "source_location": "L5"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_firebase_setup_for_local_development", "label": "Setup for Local Development", "file_type": "document", "source_file": "Support/FIREBASE.md", "source_location": "L9"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_firebase_ci_cd_setup_bitrise", "label": "CI/CD Setup (Bitrise)", "file_type": "document", "source_file": "Support/FIREBASE.md", "source_location": "L34"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_firebase_option_1_using_environment_variables_recommended", "label": "Option 1: Using Environment Variables (Recommended)", "file_type": "document", "source_file": "Support/FIREBASE.md", "source_location": "L36"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_firebase_option_2_using_secure_file_storage", "label": "Option 2: Using Secure File Storage", "file_type": "document", "source_file": "Support/FIREBASE.md", "source_location": "L59"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_firebase_how_it_works", "label": "How It Works", "file_type": "document", "source_file": "Support/FIREBASE.md", "source_location": "L87"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_firebase_security_notes", "label": "Security Notes", "file_type": "document", "source_file": "Support/FIREBASE.md", "source_location": "L95"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_firebase_troubleshooting", "label": "Troubleshooting", "file_type": "document", "source_file": "Support/FIREBASE.md", "source_location": "L102"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_firebase_app_won_t_build_locally", "label": "App won't build locally", "file_type": "document", "source_file": "Support/FIREBASE.md", "source_location": "L104"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_firebase_firebase_not_working_on_bitrise", "label": "Firebase not working on Bitrise", "file_type": "document", "source_file": "Support/FIREBASE.md", "source_location": "L108"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_firebase_firebase_disabled_locally", "label": "Firebase disabled locally", "file_type": "document", "source_file": "Support/FIREBASE.md", "source_location": "L113"}], "edges": [{"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_firebase_md", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_firebase_firebase_configuration", "relation": "contains", "confidence": "EXTRACTED", "source_file": "Support/FIREBASE.md", "source_location": "L1", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_firebase_firebase_configuration", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_firebase_overview", "relation": "contains", "confidence": "EXTRACTED", "source_file": "Support/FIREBASE.md", "source_location": "L5", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_firebase_firebase_configuration", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_firebase_setup_for_local_development", "relation": "contains", "confidence": "EXTRACTED", "source_file": "Support/FIREBASE.md", "source_location": "L9", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_firebase_firebase_configuration", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_firebase_ci_cd_setup_bitrise", "relation": "contains", "confidence": "EXTRACTED", "source_file": "Support/FIREBASE.md", "source_location": "L34", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_firebase_ci_cd_setup_bitrise", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_firebase_option_1_using_environment_variables_recommended", "relation": "contains", "confidence": "EXTRACTED", "source_file": "Support/FIREBASE.md", "source_location": "L36", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_firebase_ci_cd_setup_bitrise", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_firebase_option_2_using_secure_file_storage", "relation": "contains", "confidence": "EXTRACTED", "source_file": "Support/FIREBASE.md", "source_location": "L59", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_firebase_firebase_configuration", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_firebase_how_it_works", "relation": "contains", "confidence": "EXTRACTED", "source_file": "Support/FIREBASE.md", "source_location": "L87", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_firebase_firebase_configuration", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_firebase_security_notes", "relation": "contains", "confidence": "EXTRACTED", "source_file": "Support/FIREBASE.md", "source_location": "L95", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_firebase_firebase_configuration", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_firebase_troubleshooting", "relation": "contains", "confidence": "EXTRACTED", "source_file": "Support/FIREBASE.md", "source_location": "L102", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_firebase_troubleshooting", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_firebase_app_won_t_build_locally", "relation": "contains", "confidence": "EXTRACTED", "source_file": "Support/FIREBASE.md", "source_location": "L104", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_firebase_troubleshooting", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_firebase_firebase_not_working_on_bitrise", "relation": "contains", "confidence": "EXTRACTED", "source_file": "Support/FIREBASE.md", "source_location": "L108", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_firebase_troubleshooting", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_firebase_firebase_disabled_locally", "relation": "contains", "confidence": "EXTRACTED", "source_file": "Support/FIREBASE.md", "source_location": "L113", "weight": 1.0}], "input_tokens": 0, "output_tokens": 0} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.9.12/328f25b7484af3fceb0ecd589bca93ba213a79d104e6427ea6eec280cea83e71.json b/graphify-out/cache/ast/v0.9.12/328f25b7484af3fceb0ecd589bca93ba213a79d104e6427ea6eec280cea83e71.json new file mode 100644 index 00000000..c2ab9507 --- /dev/null +++ b/graphify-out/cache/ast/v0.9.12/328f25b7484af3fceb0ecd589bca93ba213a79d104e6427ea6eec280cea83e71.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_data_layer_md", "label": "data-layer.md", "file_type": "document", "source_file": ".claude/rules/data-layer.md", "source_location": "L1"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_data_layer_data_layer_swiftdata_search_podcast_multi_platform", "label": "Data Layer \u2014 SwiftData, search, podcast, multi-platform", "file_type": "document", "source_file": ".claude/rules/data-layer.md", "source_location": "L1"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_data_layer_swiftdata_models", "label": "SwiftData models", "file_type": "document", "source_file": ".claude/rules/data-layer.md", "source_location": "L3"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_data_layer_data_sources", "label": "Data sources", "file_type": "document", "source_file": ".claude/rules/data-layer.md", "source_location": "L20"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_data_layer_search_system_searchlibrary", "label": "Search system (SearchLibrary)", "file_type": "document", "source_file": ".claude/rules/data-layer.md", "source_location": "L27"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_data_layer_two_phase_search", "label": "Two-phase search", "file_type": "document", "source_file": ".claude/rules/data-layer.md", "source_location": "L29"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_data_layer_nlp_pipeline_apple_naturallanguage_framework", "label": "NLP pipeline (Apple NaturalLanguage framework)", "file_type": "document", "source_file": ".claude/rules/data-layer.md", "source_location": "L34"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_data_layer_key_types", "label": "Key types", "file_type": "document", "source_file": ".claude/rules/data-layer.md", "source_location": "L41"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_data_layer_result_classification_remote", "label": "Result classification (remote)", "file_type": "document", "source_file": ".claude/rules/data-layer.md", "source_location": "L54"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_data_layer_podcast_system_podcastlibrary", "label": "Podcast system (PodcastLibrary)", "file_type": "document", "source_file": ".claude/rules/data-layer.md", "source_location": "L63"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_data_layer_podcastplayermanager_mainactor_observable", "label": "PodcastPlayerManager (`@MainActor @Observable`)", "file_type": "document", "source_file": ".claude/rules/data-layer.md", "source_location": "L65"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_data_layer_card_views", "label": "Card views", "file_type": "document", "source_file": ".claude/rules/data-layer.md", "source_location": "L73"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_data_layer_mini_player", "label": "Mini player", "file_type": "document", "source_file": ".claude/rules/data-layer.md", "source_location": "L81"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_data_layer_multi_platform", "label": "Multi-platform", "file_type": "document", "source_file": ".claude/rules/data-layer.md", "source_location": "L88"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_data_layer_external_dependencies", "label": "External dependencies", "file_type": "document", "source_file": ".claude/rules/data-layer.md", "source_location": "L96"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_data_layer_private_libraries_package_https_github_com_cassio_rossi_libraries_git", "label": "Private Libraries package (`https://github.com/cassio-rossi/Libraries.git`)", "file_type": "document", "source_file": ".claude/rules/data-layer.md", "source_location": "L98"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_data_layer_third_party", "label": "Third-party", "file_type": "document", "source_file": ".claude/rules/data-layer.md", "source_location": "L111"}], "edges": [{"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_data_layer_md", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_data_layer_data_layer_swiftdata_search_podcast_multi_platform", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/rules/data-layer.md", "source_location": "L1", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_data_layer_data_layer_swiftdata_search_podcast_multi_platform", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_data_layer_swiftdata_models", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/rules/data-layer.md", "source_location": "L3", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_data_layer_data_layer_swiftdata_search_podcast_multi_platform", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_data_layer_data_sources", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/rules/data-layer.md", "source_location": "L20", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_data_layer_data_layer_swiftdata_search_podcast_multi_platform", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_data_layer_search_system_searchlibrary", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/rules/data-layer.md", "source_location": "L27", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_data_layer_search_system_searchlibrary", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_data_layer_two_phase_search", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/rules/data-layer.md", "source_location": "L29", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_data_layer_search_system_searchlibrary", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_data_layer_nlp_pipeline_apple_naturallanguage_framework", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/rules/data-layer.md", "source_location": "L34", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_data_layer_search_system_searchlibrary", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_data_layer_key_types", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/rules/data-layer.md", "source_location": "L41", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_data_layer_search_system_searchlibrary", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_data_layer_result_classification_remote", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/rules/data-layer.md", "source_location": "L54", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_data_layer_data_layer_swiftdata_search_podcast_multi_platform", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_data_layer_podcast_system_podcastlibrary", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/rules/data-layer.md", "source_location": "L63", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_data_layer_podcast_system_podcastlibrary", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_data_layer_podcastplayermanager_mainactor_observable", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/rules/data-layer.md", "source_location": "L65", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_data_layer_podcast_system_podcastlibrary", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_data_layer_card_views", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/rules/data-layer.md", "source_location": "L73", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_data_layer_podcast_system_podcastlibrary", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_data_layer_mini_player", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/rules/data-layer.md", "source_location": "L81", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_data_layer_data_layer_swiftdata_search_podcast_multi_platform", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_data_layer_multi_platform", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/rules/data-layer.md", "source_location": "L88", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_data_layer_data_layer_swiftdata_search_podcast_multi_platform", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_data_layer_external_dependencies", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/rules/data-layer.md", "source_location": "L96", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_data_layer_external_dependencies", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_data_layer_private_libraries_package_https_github_com_cassio_rossi_libraries_git", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/rules/data-layer.md", "source_location": "L98", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_data_layer_external_dependencies", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_data_layer_third_party", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/rules/data-layer.md", "source_location": "L111", "weight": 1.0}], "input_tokens": 0, "output_tokens": 0} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.9.12/3bac2fe7adfa5d523a075ab137a6cbcc4505e6d003c83505b35dcac5375bcbde.json b/graphify-out/cache/ast/v0.9.12/3bac2fe7adfa5d523a075ab137a6cbcc4505e6d003c83505b35dcac5375bcbde.json new file mode 100644 index 00000000..50fc1543 --- /dev/null +++ b/graphify-out/cache/ast/v0.9.12/3bac2fe7adfa5d523a075ab137a6cbcc4505e6d003c83505b35dcac5375bcbde.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmnavigationdecider_swift", "label": "MMNavigationDecider.swift", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMNavigationDecider.swift", "source_location": "L1"}, {"id": "macmagazinelibrary", "label": "MacMagazineLibrary", "file_type": "code", "type": "module", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMNavigationDecider.swift", "source_location": "L1"}, {"id": "swiftui", "label": "SwiftUI", "file_type": "code", "type": "module", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMNavigationDecider.swift", "source_location": "L2"}, {"id": "webkit", "label": "WebKit", "file_type": "code", "type": "module", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMNavigationDecider.swift", "source_location": "L3"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmnavigationdecider_mmnavigationdecider", "label": "MMNavigationDecider", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMNavigationDecider.swift", "source_location": "L5", "_callable": true}, {"id": "webpage", "label": "WebPage", "file_type": "code", "source_file": "", "source_location": ""}, {"id": "string", "label": "String", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMNavigationDecider.swift"}, {"id": "void", "label": "Void", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMNavigationDecider.swift"}, {"id": "url", "label": "URL", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMNavigationDecider.swift"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmnavigationdecider_mmnavigationdecider_decidepolicy", "label": ".decidePolicy()", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMNavigationDecider.swift", "source_location": "L11", "_callable": true}, {"id": "wknavigationactionpolicy", "label": "WKNavigationActionPolicy", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMNavigationDecider.swift"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmnavigationdecider_mmnavigationdecider_open", "label": ".open()", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMNavigationDecider.swift", "source_location": "L42", "_callable": true}], "edges": [{"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmnavigationdecider_swift", "target": "macmagazinelibrary", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMNavigationDecider.swift", "source_location": "L1", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmnavigationdecider_swift", "target": "swiftui", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMNavigationDecider.swift", "source_location": "L2", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmnavigationdecider_swift", "target": "webkit", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMNavigationDecider.swift", "source_location": "L3", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmnavigationdecider_swift", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmnavigationdecider_mmnavigationdecider", "relation": "contains", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMNavigationDecider.swift", "source_location": "L5", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmnavigationdecider_mmnavigationdecider", "target": "webpage", "relation": "inherits", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMNavigationDecider.swift", "source_location": "L5", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmnavigationdecider_mmnavigationdecider", "target": "string", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMNavigationDecider.swift", "source_location": "L7", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmnavigationdecider_mmnavigationdecider", "target": "void", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMNavigationDecider.swift", "source_location": "L7", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmnavigationdecider_mmnavigationdecider", "target": "url", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMNavigationDecider.swift", "source_location": "L8", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmnavigationdecider_mmnavigationdecider", "target": "void", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMNavigationDecider.swift", "source_location": "L8", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmnavigationdecider_mmnavigationdecider", "target": "url", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMNavigationDecider.swift", "source_location": "L9", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmnavigationdecider_mmnavigationdecider", "target": "void", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMNavigationDecider.swift", "source_location": "L9", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmnavigationdecider_mmnavigationdecider", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmnavigationdecider_mmnavigationdecider_decidepolicy", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMNavigationDecider.swift", "source_location": "L11", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmnavigationdecider_mmnavigationdecider_decidepolicy", "target": "webpage", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMNavigationDecider.swift", "source_location": "L11", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmnavigationdecider_mmnavigationdecider_decidepolicy", "target": "webpage", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMNavigationDecider.swift", "source_location": "L11", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmnavigationdecider_mmnavigationdecider_decidepolicy", "target": "wknavigationactionpolicy", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMNavigationDecider.swift", "source_location": "L11", "weight": 1.0, "context": "return_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmnavigationdecider_mmnavigationdecider", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmnavigationdecider_mmnavigationdecider_open", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMNavigationDecider.swift", "source_location": "L42", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmnavigationdecider_mmnavigationdecider_open", "target": "url", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMNavigationDecider.swift", "source_location": "L42", "weight": 1.0, "context": "parameter_type"}], "raw_calls": [{"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmnavigationdecider_mmnavigationdecider_decidepolicy", "callee": "classify", "is_member_call": true, "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMNavigationDecider.swift", "source_location": "L21", "receiver": "URLClassifier"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmnavigationdecider_mmnavigationdecider_decidepolicy", "callee": "onOpenComments", "is_member_call": false, "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMNavigationDecider.swift", "source_location": "L23", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmnavigationdecider_mmnavigationdecider_decidepolicy", "callee": "onOpenWalletPass", "is_member_call": false, "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMNavigationDecider.swift", "source_location": "L25", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmnavigationdecider_mmnavigationdecider_decidepolicy", "callee": "handler", "is_member_call": false, "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMNavigationDecider.swift", "source_location": "L28", "receiver": null}], "swift_type_table": {"path": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMNavigationDecider.swift", "table": {"onOpenComments": "String", "onOpenInternalLink": "URL", "onOpenWalletPass": "URL", "action": "WebPage", "preferences": "WebPage", "url": "URL"}}} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.9.12/3c3ef0cdcf4604ff14640863feca4c86221797acfb27638864a6d01570edec9d.json b/graphify-out/cache/ast/v0.9.12/3c3ef0cdcf4604ff14640863feca4c86221797acfb27638864a6d01570edec9d.json new file mode 100644 index 00000000..20aaa7a3 --- /dev/null +++ b/graphify-out/cache/ast/v0.9.12/3c3ef0cdcf4604ff14640863feca4c86221797acfb27638864a6d01570edec9d.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_agents_swift_code_reviewer_md", "label": "swift-code-reviewer.md", "file_type": "document", "source_file": ".claude/agents/swift-code-reviewer.md", "source_location": "L1"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_agents_swift_code_reviewer_read_first", "label": "Read first", "file_type": "document", "source_file": ".claude/agents/swift-code-reviewer.md", "source_location": "L11"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_agents_swift_code_reviewer_review_for", "label": "Review for", "file_type": "document", "source_file": ".claude/agents/swift-code-reviewer.md", "source_location": "L18"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_agents_swift_code_reviewer_output", "label": "Output", "file_type": "document", "source_file": ".claude/agents/swift-code-reviewer.md", "source_location": "L39"}], "edges": [{"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_agents_swift_code_reviewer_md", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_agents_swift_code_reviewer_read_first", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/agents/swift-code-reviewer.md", "source_location": "L11", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_agents_swift_code_reviewer_md", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_agents_swift_code_reviewer_review_for", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/agents/swift-code-reviewer.md", "source_location": "L18", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_agents_swift_code_reviewer_md", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_agents_swift_code_reviewer_output", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/agents/swift-code-reviewer.md", "source_location": "L39", "weight": 1.0}], "input_tokens": 0, "output_tokens": 0} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.9.12/3f2d820dbd39715b61987cc56c235332bac8d071dabc4f636280c451cfbc7e4a.json b/graphify-out/cache/ast/v0.9.12/3f2d820dbd39715b61987cc56c235332bac8d071dabc4f636280c451cfbc7e4a.json new file mode 100644 index 00000000..12a329e0 --- /dev/null +++ b/graphify-out/cache/ast/v0.9.12/3f2d820dbd39715b61987cc56c235332bac8d071dabc4f636280c451cfbc7e4a.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_carddensity_swift", "label": "CardDensity.swift", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardDensity.swift", "source_location": "L1"}, {"id": "swiftui", "label": "SwiftUI", "file_type": "code", "type": "module", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardDensity.swift", "source_location": "L1"}, {"id": "uicomponentslibrary", "label": "UIComponentsLibrary", "file_type": "code", "type": "module", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardDensity.swift", "source_location": "L2"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_carddensity_carddensity", "label": "CardDensity", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardDensity.swift", "source_location": "L4", "_callable": true}, {"id": "font", "label": "Font", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardDensity.swift"}, {"id": "int", "label": "Int", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardDensity.swift"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_carddensity_carddensity_titlefont", "label": ".titleFont()", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardDensity.swift", "source_location": "L20", "_callable": true}, {"id": "cardstyle", "label": "CardStyle", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardDensity.swift"}, {"id": "bool", "label": "Bool", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardDensity.swift"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_carddensity_carddensity_titlelinelimit", "label": ".titleLineLimit()", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardDensity.swift", "source_location": "L31", "_callable": true}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_carddensity_carddensity_from", "label": ".from()", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardDensity.swift", "source_location": "L42", "_callable": true}, {"id": "cgfloat", "label": "CGFloat", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardDensity.swift"}], "edges": [{"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_carddensity_swift", "target": "swiftui", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardDensity.swift", "source_location": "L1", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_carddensity_swift", "target": "uicomponentslibrary", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardDensity.swift", "source_location": "L2", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_carddensity_swift", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_carddensity_carddensity", "relation": "contains", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardDensity.swift", "source_location": "L4", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_carddensity_carddensity", "target": "font", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardDensity.swift", "source_location": "L5", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_carddensity_carddensity", "target": "int", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardDensity.swift", "source_location": "L12", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_carddensity_carddensity", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_carddensity_carddensity_titlefont", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardDensity.swift", "source_location": "L20", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_carddensity_carddensity_titlefont", "target": "cardstyle", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardDensity.swift", "source_location": "L20", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_carddensity_carddensity_titlefont", "target": "bool", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardDensity.swift", "source_location": "L20", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_carddensity_carddensity_titlefont", "target": "font", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardDensity.swift", "source_location": "L20", "weight": 1.0, "context": "return_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_carddensity_carddensity", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_carddensity_carddensity_titlelinelimit", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardDensity.swift", "source_location": "L31", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_carddensity_carddensity_titlelinelimit", "target": "cardstyle", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardDensity.swift", "source_location": "L31", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_carddensity_carddensity_titlelinelimit", "target": "int", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardDensity.swift", "source_location": "L31", "weight": 1.0, "context": "return_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_carddensity_carddensity", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_carddensity_carddensity_from", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardDensity.swift", "source_location": "L42", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_carddensity_carddensity_from", "target": "cgfloat", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardDensity.swift", "source_location": "L42", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_carddensity_carddensity_from", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_carddensity_carddensity", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardDensity.swift", "source_location": "L42", "weight": 1.0, "context": "return_type"}], "raw_calls": [], "swift_extensions": [{"nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_carddensity_carddensity", "label": "CardDensity"}], "swift_type_table": {"path": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardDensity.swift", "table": {"titleFont": "Font", "titleLineLimit": "Int", "style": "CardStyle", "isHeader": "Bool", "width": "CGFloat"}}} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.9.12/4ab7a8d21ced571faac705faffc8fc7873d1a3fc524a847badee89b2378ee2a5.json b/graphify-out/cache/ast/v0.9.12/4ab7a8d21ced571faac705faffc8fc7873d1a3fc524a847badee89b2378ee2a5.json new file mode 100644 index 00000000..630dae4f --- /dev/null +++ b/graphify-out/cache/ast/v0.9.12/4ab7a8d21ced571faac705faffc8fc7873d1a3fc524a847badee89b2378ee2a5.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_webviewloadpolicy_swift", "label": "WebViewLoadPolicy.swift", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WebViewLoadPolicy.swift", "source_location": "L1"}, {"id": "foundation", "label": "Foundation", "file_type": "code", "type": "module", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WebViewLoadPolicy.swift", "source_location": "L1"}, {"id": "swiftui", "label": "SwiftUI", "file_type": "code", "type": "module", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WebViewLoadPolicy.swift", "source_location": "L2"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_webviewloadpolicy_webviewloadpolicy", "label": "WebViewLoadPolicy", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WebViewLoadPolicy.swift", "source_location": "L5", "_callable": true}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_webviewloadpolicy_webviewloadpolicy_shouldload", "label": ".shouldLoad()", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WebViewLoadPolicy.swift", "source_location": "L10", "_callable": true}, {"id": "uuid", "label": "UUID", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WebViewLoadPolicy.swift"}, {"id": "bool", "label": "Bool", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WebViewLoadPolicy.swift"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_webviewloadpolicy_webviewloadpolicy_shouldhandlecolorschemechange", "label": ".shouldHandleColorSchemeChange()", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WebViewLoadPolicy.swift", "source_location": "L17", "_callable": true}, {"id": "scenephase", "label": "ScenePhase", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WebViewLoadPolicy.swift"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_webviewloadpolicy_webviewloadpolicy_needscolorschemereconciliation", "label": ".needsColorSchemeReconciliation()", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WebViewLoadPolicy.swift", "source_location": "L23", "_callable": true}, {"id": "colorscheme", "label": "ColorScheme", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WebViewLoadPolicy.swift"}], "edges": [{"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_webviewloadpolicy_swift", "target": "foundation", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WebViewLoadPolicy.swift", "source_location": "L1", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_webviewloadpolicy_swift", "target": "swiftui", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WebViewLoadPolicy.swift", "source_location": "L2", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_webviewloadpolicy_swift", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_webviewloadpolicy_webviewloadpolicy", "relation": "contains", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WebViewLoadPolicy.swift", "source_location": "L5", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_webviewloadpolicy_webviewloadpolicy", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_webviewloadpolicy_webviewloadpolicy_shouldload", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WebViewLoadPolicy.swift", "source_location": "L10", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_webviewloadpolicy_webviewloadpolicy_shouldload", "target": "uuid", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WebViewLoadPolicy.swift", "source_location": "L10", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_webviewloadpolicy_webviewloadpolicy_shouldload", "target": "uuid", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WebViewLoadPolicy.swift", "source_location": "L10", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_webviewloadpolicy_webviewloadpolicy_shouldload", "target": "bool", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WebViewLoadPolicy.swift", "source_location": "L10", "weight": 1.0, "context": "return_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_webviewloadpolicy_webviewloadpolicy", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_webviewloadpolicy_webviewloadpolicy_shouldhandlecolorschemechange", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WebViewLoadPolicy.swift", "source_location": "L17", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_webviewloadpolicy_webviewloadpolicy_shouldhandlecolorschemechange", "target": "scenephase", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WebViewLoadPolicy.swift", "source_location": "L17", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_webviewloadpolicy_webviewloadpolicy_shouldhandlecolorschemechange", "target": "bool", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WebViewLoadPolicy.swift", "source_location": "L17", "weight": 1.0, "context": "return_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_webviewloadpolicy_webviewloadpolicy", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_webviewloadpolicy_webviewloadpolicy_needscolorschemereconciliation", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WebViewLoadPolicy.swift", "source_location": "L23", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_webviewloadpolicy_webviewloadpolicy_needscolorschemereconciliation", "target": "colorscheme", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WebViewLoadPolicy.swift", "source_location": "L23", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_webviewloadpolicy_webviewloadpolicy_needscolorschemereconciliation", "target": "colorscheme", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WebViewLoadPolicy.swift", "source_location": "L23", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_webviewloadpolicy_webviewloadpolicy_needscolorschemereconciliation", "target": "bool", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WebViewLoadPolicy.swift", "source_location": "L23", "weight": 1.0, "context": "return_type"}], "raw_calls": [], "swift_type_table": {"path": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WebViewLoadPolicy.swift", "table": {"trigger": "UUID", "completedTrigger": "UUID", "scenePhase": "ScenePhase", "current": "ColorScheme", "applied": "ColorScheme"}}} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.9.12/4c4dbfc5ddd710b954cc66e8f874bbbbbbb80887a156667106d52e7267fe380f.json b/graphify-out/cache/ast/v0.9.12/4c4dbfc5ddd710b954cc66e8f874bbbbbbb80887a156667106d52e7267fe380f.json new file mode 100644 index 00000000..cd618802 --- /dev/null +++ b/graphify-out/cache/ast/v0.9.12/4c4dbfc5ddd710b954cc66e8f874bbbbbbb80887a156667106d52e7267fe380f.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_newsview_swift", "label": "NewsView.swift", "file_type": "code", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/NewsView.swift", "source_location": "L1"}, {"id": "analyticslibrary", "label": "AnalyticsLibrary", "file_type": "code", "type": "module", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/NewsView.swift", "source_location": "L1"}, {"id": "feedlibrary", "label": "FeedLibrary", "file_type": "code", "type": "module", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/NewsView.swift", "source_location": "L2"}, {"id": "loggerlibrary", "label": "LoggerLibrary", "file_type": "code", "type": "module", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/NewsView.swift", "source_location": "L3"}, {"id": "macmagazinelibrary", "label": "MacMagazineLibrary", "file_type": "code", "type": "module", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/NewsView.swift", "source_location": "L4"}, {"id": "macmagazineuilibrary", "label": "MacMagazineUILibrary", "file_type": "code", "type": "module", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/NewsView.swift", "source_location": "L5"}, {"id": "storagelibrary", "label": "StorageLibrary", "file_type": "code", "type": "module", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/NewsView.swift", "source_location": "L6"}, {"id": "swiftdata", "label": "SwiftData", "file_type": "code", "type": "module", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/NewsView.swift", "source_location": "L7"}, {"id": "swiftui", "label": "SwiftUI", "file_type": "code", "type": "module", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/NewsView.swift", "source_location": "L8"}, {"id": "uicomponentslibrary", "label": "UIComponentsLibrary", "file_type": "code", "type": "module", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/NewsView.swift", "source_location": "L9"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_newsview_newsview", "label": "NewsView", "file_type": "code", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/NewsView.swift", "source_location": "L13", "_callable": true}, {"id": "view", "label": "View", "file_type": "code", "source_file": "", "source_location": ""}, {"id": "themecolor", "label": "ThemeColor", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/NewsView.swift"}, {"id": "analyticsmanager", "label": "AnalyticsManager", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/NewsView.swift"}, {"id": "newsviewmodel", "label": "NewsViewModel", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/NewsView.swift"}, {"id": "bool", "label": "Bool", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/NewsView.swift"}, {"id": "newscategory", "label": "NewsCategory", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/NewsView.swift"}, {"id": "scrollposition", "label": "ScrollPosition", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/NewsView.swift"}, {"id": "string", "label": "String", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/NewsView.swift"}, {"id": "feeddb", "label": "FeedDB", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/NewsView.swift"}, {"id": "filter", "label": "Filter", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/NewsView.swift"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_newsview_newsview_init", "label": ".init()", "file_type": "code", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/NewsView.swift", "source_location": "L44", "_callable": true}, {"id": "database", "label": "Database", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/NewsView.swift"}, {"id": "binding", "label": "Binding", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/NewsView.swift"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_newsview_newsview_handletap", "label": ".handleTap()", "file_type": "code", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/NewsView.swift", "source_location": "L198", "_callable": true}, {"id": "int", "label": "Int", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/NewsView.swift"}, {"id": "cgfloat", "label": "CGFloat", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/NewsView.swift"}], "edges": [{"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_newsview_swift", "target": "analyticslibrary", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/NewsView.swift", "source_location": "L1", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_newsview_swift", "target": "feedlibrary", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/NewsView.swift", "source_location": "L2", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_newsview_swift", "target": "loggerlibrary", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/NewsView.swift", "source_location": "L3", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_newsview_swift", "target": "macmagazinelibrary", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/NewsView.swift", "source_location": "L4", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_newsview_swift", "target": "macmagazineuilibrary", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/NewsView.swift", "source_location": "L5", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_newsview_swift", "target": "storagelibrary", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/NewsView.swift", "source_location": "L6", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_newsview_swift", "target": "swiftdata", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/NewsView.swift", "source_location": "L7", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_newsview_swift", "target": "swiftui", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/NewsView.swift", "source_location": "L8", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_newsview_swift", "target": "uicomponentslibrary", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/NewsView.swift", "source_location": "L9", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_newsview_swift", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_newsview_newsview", "relation": "contains", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/NewsView.swift", "source_location": "L13", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_newsview_newsview", "target": "view", "relation": "implements", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/NewsView.swift", "source_location": "L13", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_newsview_newsview", "target": "themecolor", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/NewsView.swift", "source_location": "L17", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_newsview_newsview", "target": "analyticsmanager", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/NewsView.swift", "source_location": "L25", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_newsview_newsview", "target": "newsviewmodel", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/NewsView.swift", "source_location": "L29", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_newsview_newsview", "target": "bool", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/NewsView.swift", "source_location": "L31", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_newsview_newsview", "target": "newscategory", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/NewsView.swift", "source_location": "L32", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_newsview_newsview", "target": "scrollposition", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/NewsView.swift", "source_location": "L33", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_newsview_newsview", "target": "string", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/NewsView.swift", "source_location": "L34", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_newsview_newsview", "target": "feeddb", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/NewsView.swift", "source_location": "L37", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_newsview_newsview", "target": "filter", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/NewsView.swift", "source_location": "L39", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_newsview_newsview", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_newsview_newsview_init", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/NewsView.swift", "source_location": "L44", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_newsview_newsview_init", "target": "database", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/NewsView.swift", "source_location": "L44", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_newsview_newsview_init", "target": "binding", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/NewsView.swift", "source_location": "L44", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_newsview_newsview_init", "target": "bool", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/NewsView.swift", "source_location": "L44", "weight": 1.0, "context": "generic_arg"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_newsview_newsview_init", "target": "binding", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/NewsView.swift", "source_location": "L44", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_newsview_newsview_init", "target": "newscategory", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/NewsView.swift", "source_location": "L44", "weight": 1.0, "context": "generic_arg"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_newsview_newsview_init", "target": "filter", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/NewsView.swift", "source_location": "L44", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_newsview_newsview_init", "target": "binding", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/NewsView.swift", "source_location": "L44", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_newsview_newsview_init", "target": "scrollposition", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/NewsView.swift", "source_location": "L44", "weight": 1.0, "context": "generic_arg"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_newsview_newsview", "target": "view", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/NewsView.swift", "source_location": "L77", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_newsview_swift", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_newsview_newsview", "relation": "contains", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/NewsView.swift", "source_location": "L127", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_newsview_newsview", "target": "view", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/NewsView.swift", "source_location": "L128", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_newsview_newsview", "target": "view", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/NewsView.swift", "source_location": "L169", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_newsview_swift", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_newsview_newsview", "relation": "contains", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/NewsView.swift", "source_location": "L197", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_newsview_newsview", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_newsview_newsview_handletap", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/NewsView.swift", "source_location": "L198", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_newsview_newsview_handletap", "target": "feeddb", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/NewsView.swift", "source_location": "L198", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_newsview_swift", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_newsview_newsview", "relation": "contains", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/NewsView.swift", "source_location": "L210", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_newsview_newsview", "target": "view", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/NewsView.swift", "source_location": "L211", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_newsview_newsview", "target": "view", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/NewsView.swift", "source_location": "L228", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_newsview_newsview", "target": "view", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/NewsView.swift", "source_location": "L243", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_newsview_swift", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_newsview_newsview", "relation": "contains", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/NewsView.swift", "source_location": "L258", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_newsview_newsview", "target": "int", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/NewsView.swift", "source_location": "L260", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_newsview_newsview", "target": "feeddb", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/NewsView.swift", "source_location": "L265", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_newsview_newsview", "target": "feeddb", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/NewsView.swift", "source_location": "L271", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_newsview_newsview", "target": "bool", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/NewsView.swift", "source_location": "L282", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_newsview_newsview", "target": "cgfloat", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/NewsView.swift", "source_location": "L287", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_newsview_newsview_init", "target": "newsviewmodel", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/NewsView.swift", "source_location": "L51", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_newsview_newsview_handletap", "target": "int", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/NewsView.swift", "source_location": "L200", "weight": 1.0}], "raw_calls": [{"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_newsview_newsview_init", "callee": "Query", "is_member_call": false, "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/NewsView.swift", "source_location": "L62", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_newsview_newsview_init", "callee": "Query", "is_member_call": false, "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/NewsView.swift", "source_location": "L68", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_newsview_newsview_handletap", "callee": "track", "is_member_call": true, "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/NewsView.swift", "source_location": "L199", "receiver": "analytics"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_newsview_newsview_handletap", "callee": "newsStarted", "is_member_call": true, "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/NewsView.swift", "source_location": "L200", "receiver": "AnalyticsConstants"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_newsview_newsview", "callee": "Logger", "is_member_call": false, "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/NewsView.swift", "source_location": "L40", "receiver": null}], "swift_extensions": [{"nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_newsview_newsview", "label": "NewsView"}, {"nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_newsview_newsview", "label": "NewsView"}, {"nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_newsview_newsview", "label": "NewsView"}, {"nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_newsview_newsview", "label": "NewsView"}], "swift_type_table": {"path": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/NewsView.swift", "table": {"theme": "ThemeColor", "analytics": "AnalyticsManager", "viewModel": "NewsViewModel", "favorite": "Binding", "category": "Binding", "scrollPosition": "Binding", "search": "String", "allNews": "FeedDB", "filters": "Filter", "logger": "Logger", "storage": "Database", "body": "View", "content": "View", "newsCards": "View", "post": "FeedDB", "newsDetailView": "View", "favoriteView": "View", "shareView": "View", "highlightsLimit": "Int", "highlights": "FeedDB", "news": "FeedDB", "shouldShowHighlights": "Bool", "aspectRatio": "CGFloat"}}} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.9.12/4e19627e0f36f18d33fd77c8221bcdbf4680b8570630e59b18f795f6423716ea.json b/graphify-out/cache/ast/v0.9.12/4e19627e0f36f18d33fd77c8221bcdbf4680b8570630e59b18f795f6423716ea.json new file mode 100644 index 00000000..66c3cdea --- /dev/null +++ b/graphify-out/cache/ast/v0.9.12/4e19627e0f36f18d33fd77c8221bcdbf4680b8570630e59b18f795f6423716ea.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_agents_test_runner_md", "label": "test-runner.md", "file_type": "document", "source_file": ".claude/agents/test-runner.md", "source_location": "L1"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_agents_test_runner_steps", "label": "Steps", "file_type": "document", "source_file": ".claude/agents/test-runner.md", "source_location": "L10"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_agents_test_runner_output", "label": "Output", "file_type": "document", "source_file": ".claude/agents/test-runner.md", "source_location": "L35"}], "edges": [{"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_agents_test_runner_md", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_agents_test_runner_steps", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/agents/test-runner.md", "source_location": "L10", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_agents_test_runner_md", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_agents_test_runner_output", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/agents/test-runner.md", "source_location": "L35", "weight": 1.0}], "input_tokens": 0, "output_tokens": 0} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.9.12/4f7a5c66eda0b7dab4e4ccb0a294fb138b1375f72403081ef49d09b00f6ebf14.json b/graphify-out/cache/ast/v0.9.12/4f7a5c66eda0b7dab4e4ccb0a294fb138b1375f72403081ef49d09b00f6ebf14.json new file mode 100644 index 00000000..aa6c4828 --- /dev/null +++ b/graphify-out/cache/ast/v0.9.12/4f7a5c66eda0b7dab4e4ccb0a294fb138b1375f72403081ef49d09b00f6ebf14.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_videoslibrary_sources_videos_card_adaptivevideocard_swift", "label": "AdaptiveVideoCard.swift", "file_type": "code", "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/Card/AdaptiveVideoCard.swift", "source_location": "L1"}, {"id": "analyticslibrary", "label": "AnalyticsLibrary", "file_type": "code", "type": "module", "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/Card/AdaptiveVideoCard.swift", "source_location": "L1"}, {"id": "macmagazinelibrary", "label": "MacMagazineLibrary", "file_type": "code", "type": "module", "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/Card/AdaptiveVideoCard.swift", "source_location": "L2"}, {"id": "macmagazineuilibrary", "label": "MacMagazineUILibrary", "file_type": "code", "type": "module", "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/Card/AdaptiveVideoCard.swift", "source_location": "L3"}, {"id": "swiftdata", "label": "SwiftData", "file_type": "code", "type": "module", "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/Card/AdaptiveVideoCard.swift", "source_location": "L4"}, {"id": "swiftui", "label": "SwiftUI", "file_type": "code", "type": "module", "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/Card/AdaptiveVideoCard.swift", "source_location": "L5"}, {"id": "youtubelibrary", "label": "YouTubeLibrary", "file_type": "code", "type": "module", "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/Card/AdaptiveVideoCard.swift", "source_location": "L6"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_videoslibrary_sources_videos_card_adaptivevideocard_adaptivevideocard", "label": "AdaptiveVideoCard", "file_type": "code", "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/Card/AdaptiveVideoCard.swift", "source_location": "L8", "_callable": true}, {"id": "videocard", "label": "VideoCard", "file_type": "code", "source_file": "", "source_location": ""}, {"id": "modelcontext", "label": "ModelContext", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/VideosLibrary/Sources/Videos/Card/AdaptiveVideoCard.swift"}, {"id": "analyticsmanager", "label": "AnalyticsManager", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/VideosLibrary/Sources/Videos/Card/AdaptiveVideoCard.swift"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_videoslibrary_sources_videos_card_adaptivevideocard_adaptivevideocard_init", "label": ".init()", "file_type": "code", "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/Card/AdaptiveVideoCard.swift", "source_location": "L16", "_callable": true}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_videoslibrary_sources_videos_card_adaptivevideocard_adaptivevideocard_makebody", "label": ".makeBody()", "file_type": "code", "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/Card/AdaptiveVideoCard.swift", "source_location": "L26", "_callable": true}, {"id": "videodb", "label": "VideoDB", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/VideosLibrary/Sources/Videos/Card/AdaptiveVideoCard.swift"}, {"id": "view", "label": "View", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/VideosLibrary/Sources/Videos/Card/AdaptiveVideoCard.swift"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_videoslibrary_sources_videos_card_adaptivevideocard_adaptivebody", "label": "AdaptiveBody", "file_type": "code", "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/Card/AdaptiveVideoCard.swift", "source_location": "L30", "_callable": true}, {"id": "themecolor", "label": "ThemeColor", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/VideosLibrary/Sources/Videos/Card/AdaptiveVideoCard.swift"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_videoslibrary_sources_videos_card_adaptivevideocard_mmvideodbpreview", "label": "MMVideoDBPreview", "file_type": "code", "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/Card/AdaptiveVideoCard.swift", "source_location": "L53", "_callable": true}], "edges": [{"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_videoslibrary_sources_videos_card_adaptivevideocard_swift", "target": "analyticslibrary", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/Card/AdaptiveVideoCard.swift", "source_location": "L1", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_videoslibrary_sources_videos_card_adaptivevideocard_swift", "target": "macmagazinelibrary", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/Card/AdaptiveVideoCard.swift", "source_location": "L2", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_videoslibrary_sources_videos_card_adaptivevideocard_swift", "target": "macmagazineuilibrary", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/Card/AdaptiveVideoCard.swift", "source_location": "L3", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_videoslibrary_sources_videos_card_adaptivevideocard_swift", "target": "swiftdata", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/Card/AdaptiveVideoCard.swift", "source_location": "L4", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_videoslibrary_sources_videos_card_adaptivevideocard_swift", "target": "swiftui", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/Card/AdaptiveVideoCard.swift", "source_location": "L5", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_videoslibrary_sources_videos_card_adaptivevideocard_swift", "target": "youtubelibrary", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/Card/AdaptiveVideoCard.swift", "source_location": "L6", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_videoslibrary_sources_videos_card_adaptivevideocard_swift", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_videoslibrary_sources_videos_card_adaptivevideocard_adaptivevideocard", "relation": "contains", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/Card/AdaptiveVideoCard.swift", "source_location": "L8", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_videoslibrary_sources_videos_card_adaptivevideocard_adaptivevideocard", "target": "videocard", "relation": "implements", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/Card/AdaptiveVideoCard.swift", "source_location": "L8", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_videoslibrary_sources_videos_card_adaptivevideocard_adaptivevideocard", "target": "youtubelibrary", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/Card/AdaptiveVideoCard.swift", "source_location": "L10", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_videoslibrary_sources_videos_card_adaptivevideocard_adaptivevideocard", "target": "youtubelibrary", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/Card/AdaptiveVideoCard.swift", "source_location": "L11", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_videoslibrary_sources_videos_card_adaptivevideocard_adaptivevideocard", "target": "modelcontext", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/Card/AdaptiveVideoCard.swift", "source_location": "L13", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_videoslibrary_sources_videos_card_adaptivevideocard_adaptivevideocard", "target": "analyticsmanager", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/Card/AdaptiveVideoCard.swift", "source_location": "L14", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_videoslibrary_sources_videos_card_adaptivevideocard_adaptivevideocard", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_videoslibrary_sources_videos_card_adaptivevideocard_adaptivevideocard_init", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/Card/AdaptiveVideoCard.swift", "source_location": "L16", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_videoslibrary_sources_videos_card_adaptivevideocard_adaptivevideocard", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_videoslibrary_sources_videos_card_adaptivevideocard_adaptivevideocard_init", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/Card/AdaptiveVideoCard.swift", "source_location": "L18", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_videoslibrary_sources_videos_card_adaptivevideocard_adaptivevideocard_init", "target": "modelcontext", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/Card/AdaptiveVideoCard.swift", "source_location": "L18", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_videoslibrary_sources_videos_card_adaptivevideocard_adaptivevideocard_init", "target": "analyticsmanager", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/Card/AdaptiveVideoCard.swift", "source_location": "L18", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_videoslibrary_sources_videos_card_adaptivevideocard_adaptivevideocard", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_videoslibrary_sources_videos_card_adaptivevideocard_adaptivevideocard_makebody", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/Card/AdaptiveVideoCard.swift", "source_location": "L26", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_videoslibrary_sources_videos_card_adaptivevideocard_adaptivevideocard_makebody", "target": "videodb", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/Card/AdaptiveVideoCard.swift", "source_location": "L26", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_videoslibrary_sources_videos_card_adaptivevideocard_adaptivevideocard_makebody", "target": "view", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/Card/AdaptiveVideoCard.swift", "source_location": "L26", "weight": 1.0, "context": "return_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_videoslibrary_sources_videos_card_adaptivevideocard_swift", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_videoslibrary_sources_videos_card_adaptivevideocard_adaptivebody", "relation": "contains", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/Card/AdaptiveVideoCard.swift", "source_location": "L30", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_videoslibrary_sources_videos_card_adaptivevideocard_adaptivebody", "target": "view", "relation": "implements", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/Card/AdaptiveVideoCard.swift", "source_location": "L30", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_videoslibrary_sources_videos_card_adaptivevideocard_adaptivebody", "target": "themecolor", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/Card/AdaptiveVideoCard.swift", "source_location": "L31", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_videoslibrary_sources_videos_card_adaptivevideocard_adaptivebody", "target": "videodb", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/Card/AdaptiveVideoCard.swift", "source_location": "L34", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_videoslibrary_sources_videos_card_adaptivevideocard_adaptivebody", "target": "modelcontext", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/Card/AdaptiveVideoCard.swift", "source_location": "L35", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_videoslibrary_sources_videos_card_adaptivevideocard_adaptivebody", "target": "analyticsmanager", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/Card/AdaptiveVideoCard.swift", "source_location": "L36", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_videoslibrary_sources_videos_card_adaptivevideocard_adaptivebody", "target": "view", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/Card/AdaptiveVideoCard.swift", "source_location": "L38", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_videoslibrary_sources_videos_card_adaptivevideocard_swift", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_videoslibrary_sources_videos_card_adaptivevideocard_mmvideodbpreview", "relation": "contains", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/Card/AdaptiveVideoCard.swift", "source_location": "L53", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_videoslibrary_sources_videos_card_adaptivevideocard_adaptivevideocard_makebody", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_videoslibrary_sources_videos_card_adaptivevideocard_adaptivebody", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/Card/AdaptiveVideoCard.swift", "source_location": "L27", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_videoslibrary_sources_videos_card_adaptivevideocard_mmvideodbpreview", "target": "videodb", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/VideosLibrary/Sources/Videos/Card/AdaptiveVideoCard.swift", "source_location": "L55", "weight": 1.0}], "raw_calls": [], "swift_type_table": {"path": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/VideosLibrary/Sources/Videos/Card/AdaptiveVideoCard.swift", "table": {"accessibilityLabels": "YouTubeLibrary", "accessibilityButtons": "YouTubeLibrary", "context": "ModelContext", "analytics": "AnalyticsManager", "data": "VideoDB", "theme": "ThemeColor", "body": "View", "sample": "VideoDB"}}} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.9.12/519013a79a7c328c0bf88d7ff6c3359fdd5b46894d903d34fdeff3c52baaac68.json b/graphify-out/cache/ast/v0.9.12/519013a79a7c328c0bf88d7ff6c3359fdd5b46894d903d34fdeff3c52baaac68.json new file mode 100644 index 00000000..21abf2b7 --- /dev/null +++ b/graphify-out/cache/ast/v0.9.12/519013a79a7c328c0bf88d7ff6c3359fdd5b46894d903d34fdeff3c52baaac68.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_swift", "label": "FeedViewModel.swift", "file_type": "code", "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", "source_location": "L1"}, {"id": "foundation", "label": "Foundation", "file_type": "code", "type": "module", "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", "source_location": "L1"}, {"id": "macmagazinelibrary", "label": "MacMagazineLibrary", "file_type": "code", "type": "module", "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", "source_location": "L2"}, {"id": "networklibrary", "label": "NetworkLibrary", "file_type": "code", "type": "module", "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", "source_location": "L3"}, {"id": "storagelibrary", "label": "StorageLibrary", "file_type": "code", "type": "module", "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", "source_location": "L4"}, {"id": "swiftdata", "label": "SwiftData", "file_type": "code", "type": "module", "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", "source_location": "L5"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel", "label": "FeedViewModel", "file_type": "code", "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", "source_location": "L7", "_callable": true}, {"id": "status", "label": "Status", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_status", "label": "Status", "file_type": "code", "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", "source_location": "L11", "_callable": true}, {"id": "equatable", "label": "Equatable", "file_type": "code", "source_file": "", "source_location": ""}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_status_idle", "label": "idle", "file_type": "code", "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", "source_location": "L12"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_status_loading", "label": "loading", "file_type": "code", "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", "source_location": "L13"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_status_done", "label": "done", "file_type": "code", "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", "source_location": "L14"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_status_error", "label": "error", "file_type": "code", "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", "source_location": "L15"}, {"id": "string", "label": "String", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift"}, {"id": "database", "label": "Database", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift"}, {"id": "networkservice", "label": "NetworkService", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift"}, {"id": "modelcontext", "label": "ModelContext", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_init", "label": ".init()", "file_type": "code", "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", "source_location": "L32", "_callable": true}, {"id": "network", "label": "Network", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_getfeed", "label": ".getFeed()", "file_type": "code", "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", "source_location": "L40", "_callable": true}, {"id": "int", "label": "Int", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_getwidgetdata", "label": ".getWidgetData()", "file_type": "code", "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", "source_location": "L68", "_callable": true}, {"id": "widgetdata", "label": "WidgetData", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_getpodcast", "label": ".getPodcast()", "file_type": "code", "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", "source_location": "L78", "_callable": true}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_getwatchfeed", "label": ".getWatchFeed()", "file_type": "code", "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", "source_location": "L90", "_callable": true}, {"id": "feeddb", "label": "FeedDB", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_search", "label": ".search()", "file_type": "code", "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", "source_location": "L109", "_callable": true}, {"id": "podcastdb", "label": "PodcastDB", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_fetch", "label": ".fetch()", "file_type": "code", "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", "source_location": "L127", "_callable": true}, {"id": "newscategory", "label": "NewsCategory", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift"}, {"id": "bool", "label": "Bool", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift"}, {"id": "xmlpost", "label": "XMLPost", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_parse", "label": ".parse()", "file_type": "code", "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", "source_location": "L150", "_callable": true}, {"id": "data", "label": "Data", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift"}, {"id": "checkedcontinuation", "label": "CheckedContinuation", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift"}, {"id": "error", "label": "Error", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift"}], "edges": [{"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_swift", "target": "foundation", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", "source_location": "L1", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_swift", "target": "macmagazinelibrary", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", "source_location": "L2", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_swift", "target": "networklibrary", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", "source_location": "L3", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_swift", "target": "storagelibrary", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", "source_location": "L4", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_swift", "target": "swiftdata", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", "source_location": "L5", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_swift", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel", "relation": "contains", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", "source_location": "L7", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel", "target": "status", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", "source_location": "L9", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_swift", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_status", "relation": "contains", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", "source_location": "L11", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_status", "target": "equatable", "relation": "implements", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", "source_location": "L11", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_status", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_status_idle", "relation": "case_of", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", "source_location": "L12", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_status", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_status_loading", "relation": "case_of", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", "source_location": "L13", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_status", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_status_done", "relation": "case_of", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", "source_location": "L14", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_status", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_status_error", "relation": "case_of", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", "source_location": "L15", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_status", "target": "string", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", "source_location": "L15", "weight": 1.0, "context": "type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_status", "target": "string", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", "source_location": "L17", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel", "target": "database", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", "source_location": "L27", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel", "target": "networkservice", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", "source_location": "L28", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel", "target": "modelcontext", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", "source_location": "L30", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_init", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", "source_location": "L32", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_init", "target": "network", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", "source_location": "L32", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_init", "target": "database", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", "source_location": "L32", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_getfeed", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", "source_location": "L40", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_getfeed", "target": "int", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", "source_location": "L40", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_getwidgetdata", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", "source_location": "L68", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_getwidgetdata", "target": "int", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", "source_location": "L68", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_getwidgetdata", "target": "widgetdata", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", "source_location": "L68", "weight": 1.0, "context": "return_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_getpodcast", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", "source_location": "L78", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_getpodcast", "target": "int", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", "source_location": "L78", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_getwatchfeed", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", "source_location": "L90", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_getwatchfeed", "target": "feeddb", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", "source_location": "L90", "weight": 1.0, "context": "return_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_swift", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel", "relation": "contains", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", "source_location": "L108", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_search", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", "source_location": "L109", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_search", "target": "string", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", "source_location": "L109", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_search", "target": "int", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", "source_location": "L109", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_search", "target": "feeddb", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", "source_location": "L109", "weight": 1.0, "context": "return_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_search", "target": "podcastdb", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", "source_location": "L109", "weight": 1.0, "context": "return_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_swift", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel", "relation": "contains", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", "source_location": "L126", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_fetch", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", "source_location": "L127", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_fetch", "target": "newscategory", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", "source_location": "L127", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_fetch", "target": "int", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", "source_location": "L127", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_fetch", "target": "bool", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", "source_location": "L127", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_fetch", "target": "xmlpost", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", "source_location": "L127", "weight": 1.0, "context": "return_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_swift", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel", "relation": "contains", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", "source_location": "L149", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_parse", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", "source_location": "L150", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_parse", "target": "data", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", "source_location": "L150", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_parse", "target": "string", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", "source_location": "L150", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_parse", "target": "int", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", "source_location": "L150", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_parse", "target": "bool", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", "source_location": "L150", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_parse", "target": "checkedcontinuation", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", "source_location": "L150", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_parse", "target": "xmlpost", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", "source_location": "L150", "weight": 1.0, "context": "generic_arg"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_parse", "target": "error", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", "source_location": "L150", "weight": 1.0, "context": "generic_arg"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_init", "target": "networkservice", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", "source_location": "L37", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_getfeed", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_fetch", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", "source_location": "L45", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_getwidgetdata", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_fetch", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", "source_location": "L70", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_getpodcast", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_fetch", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", "source_location": "L82", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_getwatchfeed", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_fetch", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", "source_location": "L94", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_search", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_parse", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", "source_location": "L112", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_fetch", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_parse", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", "source_location": "L135", "weight": 1.0}], "raw_calls": [{"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_getfeed", "callee": "Task", "is_member_call": false, "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", "source_location": "L44", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_getfeed", "callee": "save", "is_member_call": true, "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", "source_location": "L60", "receiver": "storage"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_getwidgetdata", "callee": "prefix", "is_member_call": true, "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", "source_location": "L71", "receiver": "data"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_getpodcast", "callee": "save", "is_member_call": true, "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", "source_location": "L83", "receiver": "storage"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_getwatchfeed", "callee": "prefix", "is_member_call": true, "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", "source_location": "L95", "receiver": "feed"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_getwatchfeed", "callee": "save", "is_member_call": true, "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", "source_location": "L96", "receiver": "storage"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_search", "callee": "withCheckedThrowingContinuation", "is_member_call": false, "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", "source_location": "L111", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_fetch", "callee": "withCheckedThrowingContinuation", "is_member_call": false, "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", "source_location": "L134", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_parse", "callee": "XMLParser", "is_member_call": false, "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", "source_location": "L157", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel_parse", "callee": "APIXMLParser", "is_member_call": false, "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", "source_location": "L158", "receiver": null}], "swift_extensions": [{"nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel", "label": "FeedViewModel"}, {"nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel", "label": "FeedViewModel"}, {"nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_viewmodel_feedviewmodel_feedviewmodel", "label": "FeedViewModel"}], "swift_type_table": {"path": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift", "table": {"status": "Status", "reason": "String", "storage": "Database", "networkService": "NetworkService", "context": "ModelContext", "network": "Network", "page": "Int", "limit": "Int", "term": "String", "category": "String", "parseFullContent": "Bool", "data": "Data", "numberOfPosts": "Int", "continuation": "CheckedContinuation", "apiParser": "APIXMLParser", "parser": "XMLParser"}}} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.9.12/53c614e3b2800f6cacfcfd1732546565614da16d57fb0880befdb98b146378be.json b/graphify-out/cache/ast/v0.9.12/53c614e3b2800f6cacfcfd1732546565614da16d57fb0880befdb98b146378be.json new file mode 100644 index 00000000..02f27ed6 --- /dev/null +++ b/graphify-out/cache/ast/v0.9.12/53c614e3b2800f6cacfcfd1732546565614da16d57fb0880befdb98b146378be.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_newscard_swift", "label": "NewsCard.swift", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/NewsCard.swift", "source_location": "L1"}, {"id": "macmagazinelibrary", "label": "MacMagazineLibrary", "file_type": "code", "type": "module", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/NewsCard.swift", "source_location": "L1"}, {"id": "swiftui", "label": "SwiftUI", "file_type": "code", "type": "module", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/NewsCard.swift", "source_location": "L2"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_newscard_newscard", "label": "NewsCard", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/NewsCard.swift", "source_location": "L4", "_callable": true}, {"id": "view", "label": "View", "file_type": "code", "source_file": "", "source_location": ""}, {"id": "cardcontent", "label": "CardContent", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/NewsCard.swift"}, {"id": "void", "label": "Void", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/NewsCard.swift"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_newscard_newscard_init", "label": ".init()", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/NewsCard.swift", "source_location": "L11", "_callable": true}], "edges": [{"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_newscard_swift", "target": "macmagazinelibrary", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/NewsCard.swift", "source_location": "L1", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_newscard_swift", "target": "swiftui", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/NewsCard.swift", "source_location": "L2", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_newscard_swift", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_newscard_newscard", "relation": "contains", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/NewsCard.swift", "source_location": "L4", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_newscard_newscard", "target": "view", "relation": "implements", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/NewsCard.swift", "source_location": "L4", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_newscard_newscard", "target": "cardcontent", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/NewsCard.swift", "source_location": "L8", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_newscard_newscard", "target": "void", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/NewsCard.swift", "source_location": "L9", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_newscard_newscard", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_newscard_newscard_init", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/NewsCard.swift", "source_location": "L11", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_newscard_newscard_init", "target": "cardcontent", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/NewsCard.swift", "source_location": "L11", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_newscard_newscard_init", "target": "void", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/NewsCard.swift", "source_location": "L11", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_newscard_newscard", "target": "view", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/NewsCard.swift", "source_location": "L19", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_newscard_swift", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_newscard_newscard", "relation": "contains", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/NewsCard.swift", "source_location": "L26", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_newscard_newscard", "target": "view", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/NewsCard.swift", "source_location": "L27", "weight": 1.0, "context": "field"}], "raw_calls": [], "swift_extensions": [{"nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_newscard_newscard", "label": "NewsCard"}], "swift_type_table": {"path": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/NewsCard.swift", "table": {"data": "CardContent", "onSelect": "Void", "body": "View", "content": "View"}}} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.9.12/552d55a3cba4bb648d2a9b8b299a88375a807f979c757c6206a2899622a4d2c0.json b/graphify-out/cache/ast/v0.9.12/552d55a3cba4bb648d2a9b8b299a88375a807f979c757c6206a2899622a4d2c0.json new file mode 100644 index 00000000..2a16d605 --- /dev/null +++ b/graphify-out/cache/ast/v0.9.12/552d55a3cba4bb648d2a9b8b299a88375a807f979c757c6206a2899622a4d2c0.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_md", "label": "CLAUDE.md", "file_type": "document", "source_file": "CLAUDE.md", "source_location": "L1"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_claude_md_macmagazine", "label": "CLAUDE.md \u2014 MacMagazine", "file_type": "document", "source_file": "CLAUDE.md", "source_location": "L1"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_what_this_is", "label": "What this is", "file_type": "document", "source_file": "CLAUDE.md", "source_location": "L7"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_build_commands", "label": "Build Commands", "file_type": "document", "source_file": "CLAUDE.md", "source_location": "L16"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_module_map_dependencies_flow_downward_only", "label": "Module map (dependencies flow downward only)", "file_type": "document", "source_file": "CLAUDE.md", "source_location": "L49"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_the_golden_rules", "label": "The golden rules", "file_type": "document", "source_file": "CLAUDE.md", "source_location": "L63"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_anti_hallucination_contract_the_most_important_section", "label": "Anti-hallucination contract (the most important section)", "file_type": "document", "source_file": "CLAUDE.md", "source_location": "L81"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_read_on_demand_do_not_duplicate_their_content_here", "label": "Rules (read on demand \u2014 do not duplicate their content here)", "file_type": "document", "source_file": "CLAUDE.md", "source_location": "L91"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_agents_claude_agents", "label": "Agents (`.claude/agents/`)", "file_type": "document", "source_file": "CLAUDE.md", "source_location": "L101"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_claude_skills", "label": "Skills (`.claude/skills/`)", "file_type": "document", "source_file": "CLAUDE.md", "source_location": "L110"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_guardrails_deterministic_see_claude_settings_json_claude_hooks", "label": "Guardrails (deterministic \u2014 see `.claude/settings.json` + `.claude/hooks/`)", "file_type": "document", "source_file": "CLAUDE.md", "source_location": "L124"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_definition_of_done_all_must_hold_before_you_say_done", "label": "Definition of Done (all must hold before you say \"done\")", "file_type": "document", "source_file": "CLAUDE.md", "source_location": "L133"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_conventions", "label": "Conventions", "file_type": "document", "source_file": "CLAUDE.md", "source_location": "L145"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_graphify", "label": "graphify", "file_type": "document", "source_file": "CLAUDE.md", "source_location": "L155"}], "edges": [{"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_md", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_claude_md_macmagazine", "relation": "contains", "confidence": "EXTRACTED", "source_file": "CLAUDE.md", "source_location": "L1", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_claude_md_macmagazine", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_what_this_is", "relation": "contains", "confidence": "EXTRACTED", "source_file": "CLAUDE.md", "source_location": "L7", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_claude_md_macmagazine", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_build_commands", "relation": "contains", "confidence": "EXTRACTED", "source_file": "CLAUDE.md", "source_location": "L16", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_claude_md_macmagazine", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_module_map_dependencies_flow_downward_only", "relation": "contains", "confidence": "EXTRACTED", "source_file": "CLAUDE.md", "source_location": "L49", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_claude_md_macmagazine", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_the_golden_rules", "relation": "contains", "confidence": "EXTRACTED", "source_file": "CLAUDE.md", "source_location": "L63", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_claude_md_macmagazine", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_anti_hallucination_contract_the_most_important_section", "relation": "contains", "confidence": "EXTRACTED", "source_file": "CLAUDE.md", "source_location": "L81", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_claude_md_macmagazine", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_read_on_demand_do_not_duplicate_their_content_here", "relation": "contains", "confidence": "EXTRACTED", "source_file": "CLAUDE.md", "source_location": "L91", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_claude_md_macmagazine", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_agents_claude_agents", "relation": "contains", "confidence": "EXTRACTED", "source_file": "CLAUDE.md", "source_location": "L101", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_claude_md_macmagazine", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_claude_skills", "relation": "contains", "confidence": "EXTRACTED", "source_file": "CLAUDE.md", "source_location": "L110", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_claude_md_macmagazine", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_guardrails_deterministic_see_claude_settings_json_claude_hooks", "relation": "contains", "confidence": "EXTRACTED", "source_file": "CLAUDE.md", "source_location": "L124", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_claude_md_macmagazine", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_definition_of_done_all_must_hold_before_you_say_done", "relation": "contains", "confidence": "EXTRACTED", "source_file": "CLAUDE.md", "source_location": "L133", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_claude_md_macmagazine", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_conventions", "relation": "contains", "confidence": "EXTRACTED", "source_file": "CLAUDE.md", "source_location": "L145", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_claude_md_macmagazine", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_graphify", "relation": "contains", "confidence": "EXTRACTED", "source_file": "CLAUDE.md", "source_location": "L155", "weight": 1.0}], "input_tokens": 0, "output_tokens": 0} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.9.12/5bcc97b2689ba56fae4df00aab5112c083071ec176e623862441261764b87a4d.json b/graphify-out/cache/ast/v0.9.12/5bcc97b2689ba56fae4df00aab5112c083071ec176e623862441261764b87a4d.json new file mode 100644 index 00000000..9ada5ffb --- /dev/null +++ b/graphify-out/cache/ast/v0.9.12/5bcc97b2689ba56fae4df00aab5112c083071ec176e623862441261764b87a4d.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_favoriteandshare_favoritebutton_swift", "label": "FavoriteButton.swift", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/FavoriteAndShare/FavoriteButton.swift", "source_location": "L1"}, {"id": "swiftui", "label": "SwiftUI", "file_type": "code", "type": "module", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/FavoriteAndShare/FavoriteButton.swift", "source_location": "L1"}, {"id": "uikit", "label": "UIKit", "file_type": "code", "type": "module", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/FavoriteAndShare/FavoriteButton.swift", "source_location": "L3"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_favoriteandshare_favoritebutton_favoritebutton", "label": "FavoriteButton", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/FavoriteAndShare/FavoriteButton.swift", "source_location": "L6", "_callable": true}, {"id": "view", "label": "View", "file_type": "code", "source_file": "", "source_location": ""}, {"id": "string", "label": "String", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/FavoriteAndShare/FavoriteButton.swift"}, {"id": "bool", "label": "Bool", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/FavoriteAndShare/FavoriteButton.swift"}, {"id": "void", "label": "Void", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/FavoriteAndShare/FavoriteButton.swift"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_favoriteandshare_favoritebutton_favoritebutton_init", "label": ".init()", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/FavoriteAndShare/FavoriteButton.swift", "source_location": "L11", "_callable": true}], "edges": [{"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_favoriteandshare_favoritebutton_swift", "target": "swiftui", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/FavoriteAndShare/FavoriteButton.swift", "source_location": "L1", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_favoriteandshare_favoritebutton_swift", "target": "uikit", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/FavoriteAndShare/FavoriteButton.swift", "source_location": "L3", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_favoriteandshare_favoritebutton_swift", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_favoriteandshare_favoritebutton_favoritebutton", "relation": "contains", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/FavoriteAndShare/FavoriteButton.swift", "source_location": "L6", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_favoriteandshare_favoritebutton_favoritebutton", "target": "view", "relation": "implements", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/FavoriteAndShare/FavoriteButton.swift", "source_location": "L6", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_favoriteandshare_favoritebutton_favoritebutton", "target": "string", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/FavoriteAndShare/FavoriteButton.swift", "source_location": "L7", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_favoriteandshare_favoritebutton_favoritebutton", "target": "bool", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/FavoriteAndShare/FavoriteButton.swift", "source_location": "L8", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_favoriteandshare_favoritebutton_favoritebutton", "target": "void", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/FavoriteAndShare/FavoriteButton.swift", "source_location": "L9", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_favoriteandshare_favoritebutton_favoritebutton", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_favoriteandshare_favoritebutton_favoritebutton_init", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/FavoriteAndShare/FavoriteButton.swift", "source_location": "L11", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_favoriteandshare_favoritebutton_favoritebutton_init", "target": "string", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/FavoriteAndShare/FavoriteButton.swift", "source_location": "L11", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_favoriteandshare_favoritebutton_favoritebutton_init", "target": "bool", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/FavoriteAndShare/FavoriteButton.swift", "source_location": "L11", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_favoriteandshare_favoritebutton_favoritebutton_init", "target": "void", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/FavoriteAndShare/FavoriteButton.swift", "source_location": "L11", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_favoriteandshare_favoritebutton_favoritebutton", "target": "view", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/FavoriteAndShare/FavoriteButton.swift", "source_location": "L21", "weight": 1.0, "context": "field"}], "raw_calls": [], "swift_type_table": {"path": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/FavoriteAndShare/FavoriteButton.swift", "table": {"name": "String", "favorite": "Bool", "action": "Void", "body": "View"}}} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.9.12/5eb0c3efcd28cc376b67c83e8d36da5fea193cba905727bb9fc01aa63fe174b7.json b/graphify-out/cache/ast/v0.9.12/5eb0c3efcd28cc376b67c83e8d36da5fea193cba905727bb9fc01aa63fe174b7.json new file mode 100644 index 00000000..735ba6d0 --- /dev/null +++ b/graphify-out/cache/ast/v0.9.12/5eb0c3efcd28cc376b67c83e8d36da5fea193cba905727bb9fc01aa63fe174b7.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_swift_style_md", "label": "swift-style.md", "file_type": "document", "source_file": ".claude/rules/swift-style.md", "source_location": "L1"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_swift_style_swift_style_naming_optionals_lint_comments", "label": "Swift Style \u2014 naming, optionals, lint, comments", "file_type": "document", "source_file": ".claude/rules/swift-style.md", "source_location": "L1"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_swift_style_naming", "label": "Naming", "file_type": "document", "source_file": ".claude/rules/swift-style.md", "source_location": "L6"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_swift_style_files_layout", "label": "Files & layout", "file_type": "document", "source_file": ".claude/rules/swift-style.md", "source_location": "L13"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_swift_style_optionals_errors", "label": "Optionals & errors", "file_type": "document", "source_file": ".claude/rules/swift-style.md", "source_location": "L20"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_swift_style_swiftlint_configuration_highlights", "label": "SwiftLint configuration highlights", "file_type": "document", "source_file": ".claude/rules/swift-style.md", "source_location": "L26"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_swift_style_comments_zero_tolerance_for_obvious_comments", "label": "Comments \u2014 zero tolerance for obvious comments", "file_type": "document", "source_file": ".claude/rules/swift-style.md", "source_location": "L40"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_swift_style_api_design", "label": "API design", "file_type": "document", "source_file": ".claude/rules/swift-style.md", "source_location": "L49"}], "edges": [{"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_swift_style_md", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_swift_style_swift_style_naming_optionals_lint_comments", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/rules/swift-style.md", "source_location": "L1", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_swift_style_swift_style_naming_optionals_lint_comments", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_swift_style_naming", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/rules/swift-style.md", "source_location": "L6", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_swift_style_swift_style_naming_optionals_lint_comments", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_swift_style_files_layout", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/rules/swift-style.md", "source_location": "L13", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_swift_style_swift_style_naming_optionals_lint_comments", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_swift_style_optionals_errors", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/rules/swift-style.md", "source_location": "L20", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_swift_style_swift_style_naming_optionals_lint_comments", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_swift_style_swiftlint_configuration_highlights", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/rules/swift-style.md", "source_location": "L26", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_swift_style_swift_style_naming_optionals_lint_comments", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_swift_style_comments_zero_tolerance_for_obvious_comments", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/rules/swift-style.md", "source_location": "L40", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_swift_style_swift_style_naming_optionals_lint_comments", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_swift_style_api_design", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/rules/swift-style.md", "source_location": "L49", "weight": 1.0}], "input_tokens": 0, "output_tokens": 0} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.9.12/61c046f4a1b8c006bd6526be8a255f291d5e2ce26e0beb74a9d76476525a95ba.json b/graphify-out/cache/ast/v0.9.12/61c046f4a1b8c006bd6526be8a255f291d5e2ce26e0beb74a9d76476525a95ba.json new file mode 100644 index 00000000..5e26da58 --- /dev/null +++ b/graphify-out/cache/ast/v0.9.12/61c046f4a1b8c006bd6526be8a255f291d5e2ce26e0beb74a9d76476525a95ba.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_favoriteandshare_readbutton_swift", "label": "ReadButton.swift", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/FavoriteAndShare/ReadButton.swift", "source_location": "L1"}, {"id": "swiftui", "label": "SwiftUI", "file_type": "code", "type": "module", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/FavoriteAndShare/ReadButton.swift", "source_location": "L1"}, {"id": "uikit", "label": "UIKit", "file_type": "code", "type": "module", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/FavoriteAndShare/ReadButton.swift", "source_location": "L3"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_favoriteandshare_readbutton_readbutton", "label": "ReadButton", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/FavoriteAndShare/ReadButton.swift", "source_location": "L6", "_callable": true}, {"id": "view", "label": "View", "file_type": "code", "source_file": "", "source_location": ""}, {"id": "string", "label": "String", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/FavoriteAndShare/ReadButton.swift"}, {"id": "bool", "label": "Bool", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/FavoriteAndShare/ReadButton.swift"}, {"id": "void", "label": "Void", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/FavoriteAndShare/ReadButton.swift"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_favoriteandshare_readbutton_readbutton_init", "label": ".init()", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/FavoriteAndShare/ReadButton.swift", "source_location": "L11", "_callable": true}], "edges": [{"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_favoriteandshare_readbutton_swift", "target": "swiftui", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/FavoriteAndShare/ReadButton.swift", "source_location": "L1", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_favoriteandshare_readbutton_swift", "target": "uikit", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/FavoriteAndShare/ReadButton.swift", "source_location": "L3", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_favoriteandshare_readbutton_swift", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_favoriteandshare_readbutton_readbutton", "relation": "contains", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/FavoriteAndShare/ReadButton.swift", "source_location": "L6", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_favoriteandshare_readbutton_readbutton", "target": "view", "relation": "implements", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/FavoriteAndShare/ReadButton.swift", "source_location": "L6", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_favoriteandshare_readbutton_readbutton", "target": "string", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/FavoriteAndShare/ReadButton.swift", "source_location": "L7", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_favoriteandshare_readbutton_readbutton", "target": "bool", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/FavoriteAndShare/ReadButton.swift", "source_location": "L8", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_favoriteandshare_readbutton_readbutton", "target": "void", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/FavoriteAndShare/ReadButton.swift", "source_location": "L9", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_favoriteandshare_readbutton_readbutton", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_favoriteandshare_readbutton_readbutton_init", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/FavoriteAndShare/ReadButton.swift", "source_location": "L11", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_favoriteandshare_readbutton_readbutton_init", "target": "string", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/FavoriteAndShare/ReadButton.swift", "source_location": "L11", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_favoriteandshare_readbutton_readbutton_init", "target": "bool", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/FavoriteAndShare/ReadButton.swift", "source_location": "L11", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_favoriteandshare_readbutton_readbutton_init", "target": "void", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/FavoriteAndShare/ReadButton.swift", "source_location": "L11", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_favoriteandshare_readbutton_readbutton", "target": "view", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/FavoriteAndShare/ReadButton.swift", "source_location": "L21", "weight": 1.0, "context": "field"}], "raw_calls": [], "swift_type_table": {"path": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/FavoriteAndShare/ReadButton.swift", "table": {"name": "String", "read": "Bool", "action": "Void", "body": "View"}}} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.9.12/625bec010ca509a9d6a2e8f50f483ce1b881febd47f525b08aa83b7cf160599d.json b/graphify-out/cache/ast/v0.9.12/625bec010ca509a9d6a2e8f50f483ce1b881febd47f525b08aa83b7cf160599d.json new file mode 100644 index 00000000..4c21a07a --- /dev/null +++ b/graphify-out/cache/ast/v0.9.12/625bec010ca509a9d6a2e8f50f483ce1b881febd47f525b08aa83b7cf160599d.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_package_swift", "label": "Package.swift", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Package.swift", "source_location": "L1"}, {"id": "packagedescription", "label": "PackageDescription", "file_type": "code", "type": "module", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Package.swift", "source_location": "L4"}], "edges": [{"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_package_swift", "target": "packagedescription", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Package.swift", "source_location": "L4", "weight": 1.0}], "raw_calls": []} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.9.12/705b998f83f00e8e1216a55a742f5ba90bf2887d522735c26c0a420f6a414246.json b/graphify-out/cache/ast/v0.9.12/705b998f83f00e8e1216a55a742f5ba90bf2887d522735c26c0a420f6a414246.json new file mode 100644 index 00000000..c7447fa6 --- /dev/null +++ b/graphify-out/cache/ast/v0.9.12/705b998f83f00e8e1216a55a742f5ba90bf2887d522735c26c0a420f6a414246.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_walletpassservicetests_swift", "label": "WalletPassServiceTests.swift", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/WalletPassServiceTests.swift", "source_location": "L1"}, {"id": "foundation", "label": "Foundation", "file_type": "code", "type": "module", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/WalletPassServiceTests.swift", "source_location": "L1"}, {"id": "macmagazineuilibrary", "label": "MacMagazineUILibrary", "file_type": "code", "type": "module", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/WalletPassServiceTests.swift", "source_location": "L2"}, {"id": "networklibrary", "label": "NetworkLibrary", "file_type": "code", "type": "module", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/WalletPassServiceTests.swift", "source_location": "L3"}, {"id": "testing", "label": "Testing", "file_type": "code", "type": "module", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/WalletPassServiceTests.swift", "source_location": "L4"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_walletpassservicetests_walletpassservicetests", "label": "WalletPassServiceTests", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/WalletPassServiceTests.swift", "source_location": "L6", "_callable": true}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_walletpassservicetests_walletpassservicetests_fetchpassnetworkfailure", "label": ".fetchPassNetworkFailure()", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/WalletPassServiceTests.swift", "source_location": "L10", "_callable": true}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_walletpassservicetests_walletpassservicetests_fetchpassinvaliddata", "label": ".fetchPassInvalidData()", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/WalletPassServiceTests.swift", "source_location": "L19", "_callable": true}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_walletpassservicetests_stubnetwork", "label": "StubNetwork", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/WalletPassServiceTests.swift", "source_location": "L31", "_callable": true}, {"id": "network", "label": "Network", "file_type": "code", "source_file": "", "source_location": ""}, {"id": "sendable", "label": "Sendable", "file_type": "code", "source_file": "", "source_location": ""}, {"id": "customhost", "label": "CustomHost", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/WalletPassServiceTests.swift"}, {"id": "data", "label": "Data", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/WalletPassServiceTests.swift"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_walletpassservicetests_stubnetwork_get", "label": ".get()", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/WalletPassServiceTests.swift", "source_location": "L35", "_callable": true}, {"id": "url", "label": "URL", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/WalletPassServiceTests.swift"}, {"id": "string", "label": "String", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/WalletPassServiceTests.swift"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_walletpassservicetests_stubnetwork_post", "label": ".post()", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/WalletPassServiceTests.swift", "source_location": "L36", "_callable": true}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_walletpassservicetests_stubnetwork_ping", "label": ".ping()", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/WalletPassServiceTests.swift", "source_location": "L37", "_callable": true}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_walletpassservicetests_failingnetworkstub", "label": "FailingNetworkStub", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/WalletPassServiceTests.swift", "source_location": "L40", "_callable": true}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_walletpassservicetests_failingnetworkstub_get", "label": ".get()", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/WalletPassServiceTests.swift", "source_location": "L43", "_callable": true}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_walletpassservicetests_failingnetworkstub_post", "label": ".post()", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/WalletPassServiceTests.swift", "source_location": "L44", "_callable": true}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_walletpassservicetests_failingnetworkstub_ping", "label": ".ping()", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/WalletPassServiceTests.swift", "source_location": "L45", "_callable": true}], "edges": [{"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_walletpassservicetests_swift", "target": "foundation", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/WalletPassServiceTests.swift", "source_location": "L1", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_walletpassservicetests_swift", "target": "macmagazineuilibrary", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/WalletPassServiceTests.swift", "source_location": "L2", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_walletpassservicetests_swift", "target": "networklibrary", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/WalletPassServiceTests.swift", "source_location": "L3", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_walletpassservicetests_swift", "target": "testing", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/WalletPassServiceTests.swift", "source_location": "L4", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_walletpassservicetests_swift", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_walletpassservicetests_walletpassservicetests", "relation": "contains", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/WalletPassServiceTests.swift", "source_location": "L6", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_walletpassservicetests_walletpassservicetests", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_walletpassservicetests_walletpassservicetests_fetchpassnetworkfailure", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/WalletPassServiceTests.swift", "source_location": "L10", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_walletpassservicetests_walletpassservicetests", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_walletpassservicetests_walletpassservicetests_fetchpassinvaliddata", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/WalletPassServiceTests.swift", "source_location": "L19", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_walletpassservicetests_swift", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_walletpassservicetests_stubnetwork", "relation": "contains", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/WalletPassServiceTests.swift", "source_location": "L31", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_walletpassservicetests_stubnetwork", "target": "network", "relation": "implements", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/WalletPassServiceTests.swift", "source_location": "L31", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_walletpassservicetests_stubnetwork", "target": "sendable", "relation": "implements", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/WalletPassServiceTests.swift", "source_location": "L31", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_walletpassservicetests_stubnetwork", "target": "customhost", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/WalletPassServiceTests.swift", "source_location": "L32", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_walletpassservicetests_stubnetwork", "target": "data", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/WalletPassServiceTests.swift", "source_location": "L33", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_walletpassservicetests_stubnetwork", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_walletpassservicetests_stubnetwork_get", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/WalletPassServiceTests.swift", "source_location": "L35", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_walletpassservicetests_stubnetwork_get", "target": "url", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/WalletPassServiceTests.swift", "source_location": "L35", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_walletpassservicetests_stubnetwork_get", "target": "string", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/WalletPassServiceTests.swift", "source_location": "L35", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_walletpassservicetests_stubnetwork_get", "target": "string", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/WalletPassServiceTests.swift", "source_location": "L35", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_walletpassservicetests_stubnetwork_get", "target": "data", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/WalletPassServiceTests.swift", "source_location": "L35", "weight": 1.0, "context": "return_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_walletpassservicetests_stubnetwork", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_walletpassservicetests_stubnetwork_post", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/WalletPassServiceTests.swift", "source_location": "L36", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_walletpassservicetests_stubnetwork_post", "target": "url", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/WalletPassServiceTests.swift", "source_location": "L36", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_walletpassservicetests_stubnetwork_post", "target": "string", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/WalletPassServiceTests.swift", "source_location": "L36", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_walletpassservicetests_stubnetwork_post", "target": "string", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/WalletPassServiceTests.swift", "source_location": "L36", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_walletpassservicetests_stubnetwork_post", "target": "data", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/WalletPassServiceTests.swift", "source_location": "L36", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_walletpassservicetests_stubnetwork_post", "target": "data", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/WalletPassServiceTests.swift", "source_location": "L36", "weight": 1.0, "context": "return_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_walletpassservicetests_stubnetwork", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_walletpassservicetests_stubnetwork_ping", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/WalletPassServiceTests.swift", "source_location": "L37", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_walletpassservicetests_stubnetwork_ping", "target": "url", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/WalletPassServiceTests.swift", "source_location": "L37", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_walletpassservicetests_swift", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_walletpassservicetests_failingnetworkstub", "relation": "contains", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/WalletPassServiceTests.swift", "source_location": "L40", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_walletpassservicetests_failingnetworkstub", "target": "network", "relation": "implements", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/WalletPassServiceTests.swift", "source_location": "L40", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_walletpassservicetests_failingnetworkstub", "target": "sendable", "relation": "implements", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/WalletPassServiceTests.swift", "source_location": "L40", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_walletpassservicetests_failingnetworkstub", "target": "customhost", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/WalletPassServiceTests.swift", "source_location": "L41", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_walletpassservicetests_failingnetworkstub", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_walletpassservicetests_failingnetworkstub_get", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/WalletPassServiceTests.swift", "source_location": "L43", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_walletpassservicetests_failingnetworkstub_get", "target": "url", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/WalletPassServiceTests.swift", "source_location": "L43", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_walletpassservicetests_failingnetworkstub_get", "target": "string", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/WalletPassServiceTests.swift", "source_location": "L43", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_walletpassservicetests_failingnetworkstub_get", "target": "string", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/WalletPassServiceTests.swift", "source_location": "L43", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_walletpassservicetests_failingnetworkstub_get", "target": "data", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/WalletPassServiceTests.swift", "source_location": "L43", "weight": 1.0, "context": "return_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_walletpassservicetests_failingnetworkstub", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_walletpassservicetests_failingnetworkstub_post", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/WalletPassServiceTests.swift", "source_location": "L44", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_walletpassservicetests_failingnetworkstub_post", "target": "url", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/WalletPassServiceTests.swift", "source_location": "L44", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_walletpassservicetests_failingnetworkstub_post", "target": "string", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/WalletPassServiceTests.swift", "source_location": "L44", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_walletpassservicetests_failingnetworkstub_post", "target": "string", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/WalletPassServiceTests.swift", "source_location": "L44", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_walletpassservicetests_failingnetworkstub_post", "target": "data", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/WalletPassServiceTests.swift", "source_location": "L44", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_walletpassservicetests_failingnetworkstub_post", "target": "data", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/WalletPassServiceTests.swift", "source_location": "L44", "weight": 1.0, "context": "return_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_walletpassservicetests_failingnetworkstub", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_walletpassservicetests_failingnetworkstub_ping", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/WalletPassServiceTests.swift", "source_location": "L45", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_walletpassservicetests_failingnetworkstub_ping", "target": "url", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/WalletPassServiceTests.swift", "source_location": "L45", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_walletpassservicetests_walletpassservicetests_fetchpassnetworkfailure", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_walletpassservicetests_failingnetworkstub", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/WalletPassServiceTests.swift", "source_location": "L12", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_walletpassservicetests_walletpassservicetests_fetchpassinvaliddata", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_walletpassservicetests_stubnetwork", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/WalletPassServiceTests.swift", "source_location": "L21", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_walletpassservicetests_walletpassservicetests_fetchpassinvaliddata", "target": "data", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/WalletPassServiceTests.swift", "source_location": "L21", "weight": 1.0}], "raw_calls": [{"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_walletpassservicetests_walletpassservicetests_fetchpassnetworkfailure", "callee": "WalletPassService", "is_member_call": false, "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/WalletPassServiceTests.swift", "source_location": "L12", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_walletpassservicetests_walletpassservicetests_fetchpassnetworkfailure", "callee": "fetchPass", "is_member_call": true, "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/WalletPassServiceTests.swift", "source_location": "L15", "receiver": "sut"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_walletpassservicetests_walletpassservicetests_fetchpassinvaliddata", "callee": "WalletPassService", "is_member_call": false, "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/WalletPassServiceTests.swift", "source_location": "L21", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_tests_macmagazineuilibrarytests_walletpassservicetests_walletpassservicetests_fetchpassinvaliddata", "callee": "fetchPass", "is_member_call": true, "source_file": "MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/WalletPassServiceTests.swift", "source_location": "L24", "receiver": "sut"}], "swift_type_table": {"path": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/WalletPassServiceTests.swift", "table": {"customHost": "CustomHost", "data": "Data", "url": "URL", "headers": "String", "body": "Data", "sut": "WalletPassService"}}} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.9.12/713e783a442ca9284873b0ebabaa791acdd2fb390e7d46ef1d681660832703b6.json b/graphify-out/cache/ast/v0.9.12/713e783a442ca9284873b0ebabaa791acdd2fb390e7d46ef1d681660832703b6.json new file mode 100644 index 00000000..03a5b882 --- /dev/null +++ b/graphify-out/cache/ast/v0.9.12/713e783a442ca9284873b0ebabaa791acdd2fb390e7d46ef1d681660832703b6.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_macmagazine_features_news_newsview_swift", "label": "NewsView.swift", "file_type": "code", "source_file": "MacMagazine/MacMagazine/Features/News/NewsView.swift", "source_location": "L1"}, {"id": "analyticslibrary", "label": "AnalyticsLibrary", "file_type": "code", "type": "module", "source_file": "MacMagazine/MacMagazine/Features/News/NewsView.swift", "source_location": "L1"}, {"id": "macmagazinelibrary", "label": "MacMagazineLibrary", "file_type": "code", "type": "module", "source_file": "MacMagazine/MacMagazine/Features/News/NewsView.swift", "source_location": "L2"}, {"id": "macmagazineuilibrary", "label": "MacMagazineUILibrary", "file_type": "code", "type": "module", "source_file": "MacMagazine/MacMagazine/Features/News/NewsView.swift", "source_location": "L3"}, {"id": "newslibrary", "label": "NewsLibrary", "file_type": "code", "type": "module", "source_file": "MacMagazine/MacMagazine/Features/News/NewsView.swift", "source_location": "L4"}, {"id": "settingslibrary", "label": "SettingsLibrary", "file_type": "code", "type": "module", "source_file": "MacMagazine/MacMagazine/Features/News/NewsView.swift", "source_location": "L5"}, {"id": "storagelibrary", "label": "StorageLibrary", "file_type": "code", "type": "module", "source_file": "MacMagazine/MacMagazine/Features/News/NewsView.swift", "source_location": "L6"}, {"id": "swiftui", "label": "SwiftUI", "file_type": "code", "type": "module", "source_file": "MacMagazine/MacMagazine/Features/News/NewsView.swift", "source_location": "L7"}, {"id": "uicomponentslibrary", "label": "UIComponentsLibrary", "file_type": "code", "type": "module", "source_file": "MacMagazine/MacMagazine/Features/News/NewsView.swift", "source_location": "L8"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_macmagazine_features_news_newsview_newsview", "label": "NewsView", "file_type": "code", "source_file": "MacMagazine/MacMagazine/Features/News/NewsView.swift", "source_location": "L10", "_callable": true}, {"id": "view", "label": "View", "file_type": "code", "source_file": "", "source_location": ""}, {"id": "themecolor", "label": "ThemeColor", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/MacMagazine/Features/News/NewsView.swift"}, {"id": "toolbartype", "label": "ToolbarType", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/MacMagazine/Features/News/NewsView.swift"}], "edges": [{"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_macmagazine_features_news_newsview_swift", "target": "analyticslibrary", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/MacMagazine/Features/News/NewsView.swift", "source_location": "L1", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_macmagazine_features_news_newsview_swift", "target": "macmagazinelibrary", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/MacMagazine/Features/News/NewsView.swift", "source_location": "L2", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_macmagazine_features_news_newsview_swift", "target": "macmagazineuilibrary", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/MacMagazine/Features/News/NewsView.swift", "source_location": "L3", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_macmagazine_features_news_newsview_swift", "target": "newslibrary", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/MacMagazine/Features/News/NewsView.swift", "source_location": "L4", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_macmagazine_features_news_newsview_swift", "target": "settingslibrary", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/MacMagazine/Features/News/NewsView.swift", "source_location": "L5", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_macmagazine_features_news_newsview_swift", "target": "storagelibrary", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/MacMagazine/Features/News/NewsView.swift", "source_location": "L6", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_macmagazine_features_news_newsview_swift", "target": "swiftui", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/MacMagazine/Features/News/NewsView.swift", "source_location": "L7", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_macmagazine_features_news_newsview_swift", "target": "uicomponentslibrary", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/MacMagazine/Features/News/NewsView.swift", "source_location": "L8", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_macmagazine_features_news_newsview_swift", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_macmagazine_features_news_newsview_newsview", "relation": "contains", "confidence": "EXTRACTED", "source_file": "MacMagazine/MacMagazine/Features/News/NewsView.swift", "source_location": "L10", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_macmagazine_features_news_newsview_newsview", "target": "view", "relation": "implements", "confidence": "EXTRACTED", "source_file": "MacMagazine/MacMagazine/Features/News/NewsView.swift", "source_location": "L10", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_macmagazine_features_news_newsview_newsview", "target": "themecolor", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/MacMagazine/Features/News/NewsView.swift", "source_location": "L12", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_macmagazine_features_news_newsview_newsview", "target": "view", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/MacMagazine/Features/News/NewsView.swift", "source_location": "L20", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_macmagazine_features_news_newsview_swift", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_macmagazine_features_news_newsview_newsview", "relation": "contains", "confidence": "EXTRACTED", "source_file": "MacMagazine/MacMagazine/Features/News/NewsView.swift", "source_location": "L49", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_macmagazine_features_news_newsview_newsview", "target": "view", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/MacMagazine/Features/News/NewsView.swift", "source_location": "L50", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_macmagazine_features_news_newsview_newsview", "target": "view", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/MacMagazine/Features/News/NewsView.swift", "source_location": "L63", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_macmagazine_features_news_newsview_newsview", "target": "view", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/MacMagazine/Features/News/NewsView.swift", "source_location": "L75", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_macmagazine_features_news_newsview_newsview", "target": "view", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/MacMagazine/Features/News/NewsView.swift", "source_location": "L86", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_macmagazine_features_news_newsview_swift", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_macmagazine_features_news_newsview_newsview", "relation": "contains", "confidence": "EXTRACTED", "source_file": "MacMagazine/MacMagazine/Features/News/NewsView.swift", "source_location": "L97", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_macmagazine_features_news_newsview_newsview", "target": "toolbartype", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/MacMagazine/Features/News/NewsView.swift", "source_location": "L98", "weight": 1.0, "context": "field"}], "raw_calls": [{"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_macmagazine_features_news_newsview_newsview", "callee": "ScrollPosition", "is_member_call": false, "source_file": "MacMagazine/MacMagazine/Features/News/NewsView.swift", "source_location": "L17", "receiver": null}], "swift_extensions": [{"nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_macmagazine_features_news_newsview_newsview", "label": "NewsView"}, {"nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_macmagazine_features_news_newsview_newsview", "label": "NewsView"}], "swift_type_table": {"path": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/MacMagazine/Features/News/NewsView.swift", "table": {"theme": "ThemeColor", "scrollPosition": "ScrollPosition", "newsCategory": "NewsCategory", "body": "View", "categoriesButton": "View", "favoriteButton": "View", "categories": "View", "content": "View", "toolbarType": "ToolbarType"}}} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.9.12/7a945d509ef6d45416fdacd4b1d40666f94759ba02c12b3f27400eb91368944c.json b/graphify-out/cache/ast/v0.9.12/7a945d509ef6d45416fdacd4b1d40666f94759ba02c12b3f27400eb91368944c.json new file mode 100644 index 00000000..54a4d365 --- /dev/null +++ b/graphify-out/cache/ast/v0.9.12/7a945d509ef6d45416fdacd4b1d40666f94759ba02c12b3f27400eb91368944c.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_swift", "label": "StorageService.swift", "file_type": "code", "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/StorageService.swift", "source_location": "L1"}, {"id": "foundation", "label": "Foundation", "file_type": "code", "type": "module", "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/StorageService.swift", "source_location": "L1"}, {"id": "macmagazinelibrary", "label": "MacMagazineLibrary", "file_type": "code", "type": "module", "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/StorageService.swift", "source_location": "L2"}, {"id": "storagelibrary", "label": "StorageLibrary", "file_type": "code", "type": "module", "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/StorageService.swift", "source_location": "L3"}, {"id": "swiftdata", "label": "SwiftData", "file_type": "code", "type": "module", "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/StorageService.swift", "source_location": "L4"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database", "label": "Database", "file_type": "code", "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/StorageService.swift", "source_location": "L8", "_callable": true}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database_save", "label": ".save()", "file_type": "code", "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/StorageService.swift", "source_location": "L9", "_callable": true}, {"id": "feeddb", "label": "FeedDB", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/StorageService.swift"}, {"id": "newscategory", "label": "NewsCategory", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/StorageService.swift"}, {"id": "modelcontext", "label": "ModelContext", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/StorageService.swift"}, {"id": "set", "label": "Set", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/StorageService.swift"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database_reconcile", "label": ".reconcile()", "file_type": "code", "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/StorageService.swift", "source_location": "L74", "_callable": true}, {"id": "podcastdb", "label": "PodcastDB", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/StorageService.swift"}], "edges": [{"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_swift", "target": "foundation", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/StorageService.swift", "source_location": "L1", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_swift", "target": "macmagazinelibrary", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/StorageService.swift", "source_location": "L2", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_swift", "target": "storagelibrary", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/StorageService.swift", "source_location": "L3", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_swift", "target": "swiftdata", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/StorageService.swift", "source_location": "L4", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_swift", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database", "relation": "contains", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/StorageService.swift", "source_location": "L8", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database_save", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/StorageService.swift", "source_location": "L9", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database_save", "target": "feeddb", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/StorageService.swift", "source_location": "L9", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database_save", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/StorageService.swift", "source_location": "L18", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database_save", "target": "feeddb", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/StorageService.swift", "source_location": "L18", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database_save", "target": "feeddb", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/StorageService.swift", "source_location": "L18", "weight": 1.0, "context": "return_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database_save", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/StorageService.swift", "source_location": "L30", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database_save", "target": "newscategory", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/StorageService.swift", "source_location": "L30", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database_save", "target": "feeddb", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/StorageService.swift", "source_location": "L30", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database_save", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/StorageService.swift", "source_location": "L42", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database_save", "target": "feeddb", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/StorageService.swift", "source_location": "L42", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database_save", "target": "modelcontext", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/StorageService.swift", "source_location": "L42", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database_save", "target": "feeddb", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/StorageService.swift", "source_location": "L42", "weight": 1.0, "context": "return_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database", "target": "set", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/StorageService.swift", "source_location": "L70", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database", "target": "newscategory", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/StorageService.swift", "source_location": "L70", "weight": 1.0, "context": "generic_arg"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database_reconcile", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/StorageService.swift", "source_location": "L74", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database_reconcile", "target": "newscategory", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/StorageService.swift", "source_location": "L74", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database_reconcile", "target": "feeddb", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/StorageService.swift", "source_location": "L74", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database_reconcile", "target": "modelcontext", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/StorageService.swift", "source_location": "L74", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_swift", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database", "relation": "contains", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/StorageService.swift", "source_location": "L100", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database_save", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/StorageService.swift", "source_location": "L101", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database_save", "target": "podcastdb", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/StorageService.swift", "source_location": "L101", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database_save", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/StorageService.swift", "source_location": "L110", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database_save", "target": "podcastdb", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/StorageService.swift", "source_location": "L110", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database_save", "target": "podcastdb", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/StorageService.swift", "source_location": "L110", "weight": 1.0, "context": "return_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database_save", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/StorageService.swift", "source_location": "L116", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database_save", "target": "podcastdb", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/StorageService.swift", "source_location": "L116", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database_save", "target": "modelcontext", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/StorageService.swift", "source_location": "L116", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database_save", "target": "podcastdb", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/StorageService.swift", "source_location": "L116", "weight": 1.0, "context": "return_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database_save", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database_reconcile", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/StorageService.swift", "source_location": "L37", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database_reconcile", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database_save", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/StorageService.swift", "source_location": "L94", "weight": 1.0}], "raw_calls": [{"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database_save", "callee": "forEach", "is_member_call": true, "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/StorageService.swift", "source_location": "L12", "receiver": "feed"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database_save", "callee": "deduplicate", "is_member_call": true, "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/StorageService.swift", "source_location": "L15", "receiver": "FeedDB"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database_save", "callee": "forEach", "is_member_call": true, "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/StorageService.swift", "source_location": "L34", "receiver": "group"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database_save", "callee": "deduplicate", "is_member_call": true, "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/StorageService.swift", "source_location": "L39", "receiver": "FeedDB"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database_save", "callee": "FetchDescriptor", "is_member_call": false, "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/StorageService.swift", "source_location": "L46", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database_save", "callee": "fetch", "is_member_call": true, "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/StorageService.swift", "source_location": "L48", "receiver": "ctx"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database_save", "callee": "insert", "is_member_call": true, "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/StorageService.swift", "source_location": "L59", "receiver": "ctx"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database_reconcile", "callee": "contains", "is_member_call": true, "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/StorageService.swift", "source_location": "L76", "receiver": "Self"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database_reconcile", "callee": "fetch", "is_member_call": true, "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/StorageService.swift", "source_location": "L86", "receiver": "ctx"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database_reconcile", "callee": "contains", "is_member_call": true, "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/StorageService.swift", "source_location": "L87", "receiver": "$0"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database_reconcile", "callee": "contains", "is_member_call": true, "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/StorageService.swift", "source_location": "L87", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database_reconcile", "callee": "removeAll", "is_member_call": true, "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/StorageService.swift", "source_location": "L91", "receiver": "post"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database_save", "callee": "forEach", "is_member_call": true, "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/StorageService.swift", "source_location": "L104", "receiver": "podcast"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database_save", "callee": "deduplicate", "is_member_call": true, "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/StorageService.swift", "source_location": "L107", "receiver": "PodcastDB"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database_save", "callee": "FetchDescriptor", "is_member_call": false, "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/StorageService.swift", "source_location": "L120", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database_save", "callee": "fetch", "is_member_call": true, "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/StorageService.swift", "source_location": "L122", "receiver": "ctx"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database_save", "callee": "insert", "is_member_call": true, "source_file": "MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/StorageService.swift", "source_location": "L134", "receiver": "ctx"}], "swift_extensions": [{"nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database", "label": "Database"}, {"nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_sources_feedlibrary_services_storageservice_database", "label": "Database"}], "swift_type_table": {"path": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/StorageService.swift", "table": {"feed": "FeedDB", "groups": "NewsCategory", "ctx": "ModelContext", "reconcilableCategories": "Set", "category": "NewsCategory", "fetched": "FeedDB", "podcast": "PodcastDB", "descriptor": "FetchDescriptor", "fetchedIds": "Set"}}} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.9.12/89544c9550b473435097c522fd5dfe2c8758a84b24a0c2e572dfe98df26f6f19.json b/graphify-out/cache/ast/v0.9.12/89544c9550b473435097c522fd5dfe2c8758a84b24a0c2e572dfe98df26f6f19.json new file mode 100644 index 00000000..8ba22c42 --- /dev/null +++ b/graphify-out/cache/ast/v0.9.12/89544c9550b473435097c522fd5dfe2c8758a84b24a0c2e572dfe98df26f6f19.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_postsvisibilityviewmodel_swift", "label": "PostsVisibilityViewModel.swift", "file_type": "code", "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/PostsVisibilityViewModel.swift", "source_location": "L1"}, {"id": "foundation", "label": "Foundation", "file_type": "code", "type": "module", "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/PostsVisibilityViewModel.swift", "source_location": "L1"}, {"id": "macmagazinelibrary", "label": "MacMagazineLibrary", "file_type": "code", "type": "module", "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/PostsVisibilityViewModel.swift", "source_location": "L2"}, {"id": "storagelibrary", "label": "StorageLibrary", "file_type": "code", "type": "module", "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/PostsVisibilityViewModel.swift", "source_location": "L3"}, {"id": "swiftdata", "label": "SwiftData", "file_type": "code", "type": "module", "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/PostsVisibilityViewModel.swift", "source_location": "L4"}, {"id": "uicomponentslibrary", "label": "UIComponentsLibrary", "file_type": "code", "type": "module", "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/PostsVisibilityViewModel.swift", "source_location": "L5"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_postsvisibilityviewmodel_postsvisibilityviewmodel", "label": "PostsVisibilityViewModel", "file_type": "code", "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/PostsVisibilityViewModel.swift", "source_location": "L7", "_callable": true}, {"id": "database", "label": "Database", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/PostsVisibilityViewModel.swift"}, {"id": "persistentmodel", "label": "PersistentModel", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/PostsVisibilityViewModel.swift"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_postsvisibilityviewmodel_postsvisibilityviewmodel_set", "label": ".set()", "file_type": "code", "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/PostsVisibilityViewModel.swift", "source_location": "L14", "_callable": true}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_postsvisibilityviewmodel_postsvisibilityviewmodel_flush", "label": ".flush()", "file_type": "code", "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/PostsVisibilityViewModel.swift", "source_location": "L24", "_callable": true}, {"id": "cache", "label": "Cache", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/PostsVisibilityViewModel.swift"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_postsvisibilityviewmodel_postsvisibilityviewmodel_cleanall", "label": ".cleanAll()", "file_type": "code", "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/PostsVisibilityViewModel.swift", "source_location": "L36", "_callable": true}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_postsvisibilityviewmodel_postsvisibilityviewmodel_keepfavoritesandstatus", "label": ".keepFavoritesAndStatus()", "file_type": "code", "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/PostsVisibilityViewModel.swift", "source_location": "L45", "_callable": true}], "edges": [{"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_postsvisibilityviewmodel_swift", "target": "foundation", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/PostsVisibilityViewModel.swift", "source_location": "L1", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_postsvisibilityviewmodel_swift", "target": "macmagazinelibrary", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/PostsVisibilityViewModel.swift", "source_location": "L2", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_postsvisibilityviewmodel_swift", "target": "storagelibrary", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/PostsVisibilityViewModel.swift", "source_location": "L3", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_postsvisibilityviewmodel_swift", "target": "swiftdata", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/PostsVisibilityViewModel.swift", "source_location": "L4", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_postsvisibilityviewmodel_swift", "target": "uicomponentslibrary", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/PostsVisibilityViewModel.swift", "source_location": "L5", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_postsvisibilityviewmodel_swift", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_postsvisibilityviewmodel_postsvisibilityviewmodel", "relation": "contains", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/PostsVisibilityViewModel.swift", "source_location": "L7", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_postsvisibilityviewmodel_postsvisibilityviewmodel", "target": "database", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/PostsVisibilityViewModel.swift", "source_location": "L9", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_postsvisibilityviewmodel_postsvisibilityviewmodel", "target": "persistentmodel", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/PostsVisibilityViewModel.swift", "source_location": "L10", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_postsvisibilityviewmodel_swift", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_postsvisibilityviewmodel_postsvisibilityviewmodel", "relation": "contains", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/PostsVisibilityViewModel.swift", "source_location": "L13", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_postsvisibilityviewmodel_postsvisibilityviewmodel", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_postsvisibilityviewmodel_postsvisibilityviewmodel_set", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/PostsVisibilityViewModel.swift", "source_location": "L14", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_postsvisibilityviewmodel_postsvisibilityviewmodel_set", "target": "database", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/PostsVisibilityViewModel.swift", "source_location": "L14", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_postsvisibilityviewmodel_postsvisibilityviewmodel_set", "target": "persistentmodel", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/PostsVisibilityViewModel.swift", "source_location": "L14", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_postsvisibilityviewmodel_swift", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_postsvisibilityviewmodel_postsvisibilityviewmodel", "relation": "contains", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/PostsVisibilityViewModel.swift", "source_location": "L23", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_postsvisibilityviewmodel_postsvisibilityviewmodel", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_postsvisibilityviewmodel_postsvisibilityviewmodel_flush", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/PostsVisibilityViewModel.swift", "source_location": "L24", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_postsvisibilityviewmodel_postsvisibilityviewmodel_flush", "target": "cache", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/PostsVisibilityViewModel.swift", "source_location": "L24", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_postsvisibilityviewmodel_swift", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_postsvisibilityviewmodel_postsvisibilityviewmodel", "relation": "contains", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/PostsVisibilityViewModel.swift", "source_location": "L35", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_postsvisibilityviewmodel_postsvisibilityviewmodel", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_postsvisibilityviewmodel_postsvisibilityviewmodel_cleanall", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/PostsVisibilityViewModel.swift", "source_location": "L36", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_postsvisibilityviewmodel_postsvisibilityviewmodel", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_postsvisibilityviewmodel_postsvisibilityviewmodel_keepfavoritesandstatus", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/PostsVisibilityViewModel.swift", "source_location": "L45", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_postsvisibilityviewmodel_postsvisibilityviewmodel_flush", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_postsvisibilityviewmodel_postsvisibilityviewmodel_cleanall", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/PostsVisibilityViewModel.swift", "source_location": "L29", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_postsvisibilityviewmodel_postsvisibilityviewmodel_flush", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_postsvisibilityviewmodel_postsvisibilityviewmodel_keepfavoritesandstatus", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/PostsVisibilityViewModel.swift", "source_location": "L30", "weight": 1.0}], "raw_calls": [{"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_postsvisibilityviewmodel_postsvisibilityviewmodel_flush", "callee": "Task", "is_member_call": false, "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/PostsVisibilityViewModel.swift", "source_location": "L26", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_postsvisibilityviewmodel_postsvisibilityviewmodel_flush", "callee": "clearCache", "is_member_call": true, "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/PostsVisibilityViewModel.swift", "source_location": "L26", "receiver": "CachedAsyncImage"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_postsvisibilityviewmodel_postsvisibilityviewmodel_cleanall", "callee": "forEach", "is_member_call": true, "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/PostsVisibilityViewModel.swift", "source_location": "L38", "receiver": "models"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_postsvisibilityviewmodel_postsvisibilityviewmodel_cleanall", "callee": "delete", "is_member_call": true, "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/PostsVisibilityViewModel.swift", "source_location": "L40", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_postsvisibilityviewmodel_postsvisibilityviewmodel_keepfavoritesandstatus", "callee": "forEach", "is_member_call": true, "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/PostsVisibilityViewModel.swift", "source_location": "L47", "receiver": "models"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_postsvisibilityviewmodel_postsvisibilityviewmodel_keepfavoritesandstatus", "callee": "deleteNonFavorites", "is_member_call": true, "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/PostsVisibilityViewModel.swift", "source_location": "L48", "receiver": null}], "swift_extensions": [{"nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_postsvisibilityviewmodel_postsvisibilityviewmodel", "label": "PostsVisibilityViewModel"}, {"nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_postsvisibilityviewmodel_postsvisibilityviewmodel", "label": "PostsVisibilityViewModel"}, {"nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_settingslibrary_sources_settingslibrary_viewmodels_postsvisibilityviewmodel_postsvisibilityviewmodel", "label": "PostsVisibilityViewModel"}], "swift_type_table": {"path": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/PostsVisibilityViewModel.swift", "table": {"storage": "Database", "models": "PersistentModel", "cache": "Cache"}}} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.9.12/8dab1400d5ab71df9372e3bec2301f8b968a4d4e5a0fb2c2af90f969fea725b9.json b/graphify-out/cache/ast/v0.9.12/8dab1400d5ab71df9372e3bec2301f8b968a4d4e5a0fb2c2af90f969fea725b9.json new file mode 100644 index 00000000..a87b2651 --- /dev/null +++ b/graphify-out/cache/ast/v0.9.12/8dab1400d5ab71df9372e3bec2301f8b968a4d4e5a0fb2c2af90f969fea725b9.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_agents_ios_principal_engineer_md", "label": "ios-principal-engineer.md", "file_type": "document", "source_file": ".claude/agents/ios-principal-engineer.md", "source_location": "L1"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_agents_ios_principal_engineer_your_prime_directives", "label": "YOUR PRIME DIRECTIVES", "file_type": "document", "source_file": ".claude/agents/ios-principal-engineer.md", "source_location": "L11"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_agents_ios_principal_engineer_directive_1_read_before_you_write_no_exceptions", "label": "DIRECTIVE 1: READ BEFORE YOU WRITE \u2014 NO EXCEPTIONS", "file_type": "document", "source_file": ".claude/agents/ios-principal-engineer.md", "source_location": "L15"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_agents_ios_principal_engineer_directive_2_follow_claude_md_and_claude_rules_as_absolute_law", "label": "DIRECTIVE 2: FOLLOW CLAUDE.md AND `.claude/rules/` AS ABSOLUTE LAW", "file_type": "document", "source_file": ".claude/agents/ios-principal-engineer.md", "source_location": "L33"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_agents_ios_principal_engineer_directive_3_architecture_compliance", "label": "DIRECTIVE 3: ARCHITECTURE COMPLIANCE", "file_type": "document", "source_file": ".claude/agents/ios-principal-engineer.md", "source_location": "L69"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_agents_ios_principal_engineer_directive_4_solid_dry_and_clean_code", "label": "DIRECTIVE 4: SOLID, DRY, AND CLEAN CODE", "file_type": "document", "source_file": ".claude/agents/ios-principal-engineer.md", "source_location": "L88"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_agents_ios_principal_engineer_directive_5_self_verification_checklist", "label": "DIRECTIVE 5: SELF-VERIFICATION CHECKLIST", "file_type": "document", "source_file": ".claude/agents/ios-principal-engineer.md", "source_location": "L96"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_agents_ios_principal_engineer_directive_6_when_in_doubt_read_more_code", "label": "DIRECTIVE 6: WHEN IN DOUBT, READ MORE CODE", "file_type": "document", "source_file": ".claude/agents/ios-principal-engineer.md", "source_location": "L116"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_agents_ios_principal_engineer_directive_7_proactive_excellence", "label": "DIRECTIVE 7: PROACTIVE EXCELLENCE", "file_type": "document", "source_file": ".claude/agents/ios-principal-engineer.md", "source_location": "L120"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_agents_ios_principal_engineer_workflow", "label": "WORKFLOW", "file_type": "document", "source_file": ".claude/agents/ios-principal-engineer.md", "source_location": "L126"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_agents_ios_principal_engineer_hard_learned_lessons", "label": "HARD-LEARNED LESSONS", "file_type": "document", "source_file": ".claude/agents/ios-principal-engineer.md", "source_location": "L137"}], "edges": [{"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_agents_ios_principal_engineer_md", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_agents_ios_principal_engineer_your_prime_directives", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/agents/ios-principal-engineer.md", "source_location": "L11", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_agents_ios_principal_engineer_your_prime_directives", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_agents_ios_principal_engineer_directive_1_read_before_you_write_no_exceptions", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/agents/ios-principal-engineer.md", "source_location": "L15", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_agents_ios_principal_engineer_your_prime_directives", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_agents_ios_principal_engineer_directive_2_follow_claude_md_and_claude_rules_as_absolute_law", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/agents/ios-principal-engineer.md", "source_location": "L33", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_agents_ios_principal_engineer_your_prime_directives", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_agents_ios_principal_engineer_directive_3_architecture_compliance", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/agents/ios-principal-engineer.md", "source_location": "L69", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_agents_ios_principal_engineer_your_prime_directives", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_agents_ios_principal_engineer_directive_4_solid_dry_and_clean_code", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/agents/ios-principal-engineer.md", "source_location": "L88", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_agents_ios_principal_engineer_your_prime_directives", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_agents_ios_principal_engineer_directive_5_self_verification_checklist", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/agents/ios-principal-engineer.md", "source_location": "L96", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_agents_ios_principal_engineer_your_prime_directives", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_agents_ios_principal_engineer_directive_6_when_in_doubt_read_more_code", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/agents/ios-principal-engineer.md", "source_location": "L116", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_agents_ios_principal_engineer_your_prime_directives", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_agents_ios_principal_engineer_directive_7_proactive_excellence", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/agents/ios-principal-engineer.md", "source_location": "L120", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_agents_ios_principal_engineer_md", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_agents_ios_principal_engineer_workflow", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/agents/ios-principal-engineer.md", "source_location": "L126", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_agents_ios_principal_engineer_md", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_agents_ios_principal_engineer_hard_learned_lessons", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/agents/ios-principal-engineer.md", "source_location": "L137", "weight": 1.0}], "input_tokens": 0, "output_tokens": 0} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.9.12/91eb3fe17f91eb0626aa56c88fd71825fef74678c8965cbd0517d006d7f3b58a.json b/graphify-out/cache/ast/v0.9.12/91eb3fe17f91eb0626aa56c88fd71825fef74678c8965cbd0517d006d7f3b58a.json new file mode 100644 index 00000000..abf63f64 --- /dev/null +++ b/graphify-out/cache/ast/v0.9.12/91eb3fe17f91eb0626aa56c88fd71825fef74678c8965cbd0517d006d7f3b58a.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_fix_skill_md", "label": "SKILL.md", "file_type": "document", "source_file": ".claude/skills/ios-fix/SKILL.md", "source_location": "L1"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_fix_skill_ios_bug_fix_refactoring", "label": "iOS Bug Fix & Refactoring", "file_type": "document", "source_file": ".claude/skills/ios-fix/SKILL.md", "source_location": "L6"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_fix_skill_workflow_3_steps", "label": "Workflow: 3 Steps", "file_type": "document", "source_file": ".claude/skills/ios-fix/SKILL.md", "source_location": "L18"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_fix_skill_step_1_investigation_mandatory", "label": "Step 1: Investigation (MANDATORY)", "file_type": "document", "source_file": ".claude/skills/ios-fix/SKILL.md", "source_location": "L20"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_fix_skill_step_2_fix_implementation", "label": "Step 2: Fix Implementation", "file_type": "document", "source_file": ".claude/skills/ios-fix/SKILL.md", "source_location": "L55"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_fix_skill_step_3_verification", "label": "Step 3: Verification", "file_type": "document", "source_file": ".claude/skills/ios-fix/SKILL.md", "source_location": "L72"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_fix_skill_common_macmagazine_bug_patterns", "label": "Common MacMagazine Bug Patterns", "file_type": "document", "source_file": ".claude/skills/ios-fix/SKILL.md", "source_location": "L96"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_fix_skill_search_results_showing_wrong_card_type", "label": "Search results showing wrong card type", "file_type": "document", "source_file": ".claude/skills/ios-fix/SKILL.md", "source_location": "L98"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_fix_skill_remote_search_missing_podcasts_videos", "label": "Remote search missing podcasts/videos", "file_type": "document", "source_file": ".claude/skills/ios-fix/SKILL.md", "source_location": "L102"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_fix_skill_webview_horizontal_scroll_on_small_content", "label": "WebView horizontal scroll on small content", "file_type": "document", "source_file": ".claude/skills/ios-fix/SKILL.md", "source_location": "L106"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_fix_skill_theme_colors_wrong_in_dark_mode", "label": "Theme colors wrong in dark mode", "file_type": "document", "source_file": ".claude/skills/ios-fix/SKILL.md", "source_location": "L110"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_fix_skill_enforcement", "label": "Enforcement", "file_type": "document", "source_file": ".claude/skills/ios-fix/SKILL.md", "source_location": "L116"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_fix_skill_fail_conditions", "label": "FAIL Conditions", "file_type": "document", "source_file": ".claude/skills/ios-fix/SKILL.md", "source_location": "L118"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_fix_skill_success_conditions", "label": "SUCCESS Conditions", "file_type": "document", "source_file": ".claude/skills/ios-fix/SKILL.md", "source_location": "L124"}], "edges": [{"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_fix_skill_md", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_fix_skill_ios_bug_fix_refactoring", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/skills/ios-fix/SKILL.md", "source_location": "L6", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_fix_skill_ios_bug_fix_refactoring", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_fix_skill_workflow_3_steps", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/skills/ios-fix/SKILL.md", "source_location": "L18", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_fix_skill_workflow_3_steps", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_fix_skill_step_1_investigation_mandatory", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/skills/ios-fix/SKILL.md", "source_location": "L20", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_fix_skill_workflow_3_steps", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_fix_skill_step_2_fix_implementation", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/skills/ios-fix/SKILL.md", "source_location": "L55", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_fix_skill_workflow_3_steps", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_fix_skill_step_3_verification", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/skills/ios-fix/SKILL.md", "source_location": "L72", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_fix_skill_ios_bug_fix_refactoring", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_fix_skill_common_macmagazine_bug_patterns", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/skills/ios-fix/SKILL.md", "source_location": "L96", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_fix_skill_common_macmagazine_bug_patterns", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_fix_skill_search_results_showing_wrong_card_type", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/skills/ios-fix/SKILL.md", "source_location": "L98", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_fix_skill_common_macmagazine_bug_patterns", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_fix_skill_remote_search_missing_podcasts_videos", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/skills/ios-fix/SKILL.md", "source_location": "L102", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_fix_skill_common_macmagazine_bug_patterns", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_fix_skill_webview_horizontal_scroll_on_small_content", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/skills/ios-fix/SKILL.md", "source_location": "L106", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_fix_skill_common_macmagazine_bug_patterns", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_fix_skill_theme_colors_wrong_in_dark_mode", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/skills/ios-fix/SKILL.md", "source_location": "L110", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_fix_skill_ios_bug_fix_refactoring", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_fix_skill_enforcement", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/skills/ios-fix/SKILL.md", "source_location": "L116", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_fix_skill_enforcement", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_fix_skill_fail_conditions", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/skills/ios-fix/SKILL.md", "source_location": "L118", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_fix_skill_enforcement", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_fix_skill_success_conditions", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/skills/ios-fix/SKILL.md", "source_location": "L124", "weight": 1.0}], "input_tokens": 0, "output_tokens": 0} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.9.12/92c6a89080c320d2316580a5758781935cac49ca8ec7ac6d9e66f0f1fee8fcca.json b/graphify-out/cache/ast/v0.9.12/92c6a89080c320d2316580a5758781935cac49ca8ec7ac6d9e66f0f1fee8fcca.json new file mode 100644 index 00000000..feb05bc4 --- /dev/null +++ b/graphify-out/cache/ast/v0.9.12/92c6a89080c320d2316580a5758781935cac49ca8ec7ac6d9e66f0f1fee8fcca.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_urlclassifier_swift", "label": "URLClassifier.swift", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/URLClassifier.swift", "source_location": "L1"}, {"id": "foundation", "label": "Foundation", "file_type": "code", "type": "module", "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/URLClassifier.swift", "source_location": "L1"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_urlclassifier_urlclassification", "label": "URLClassification", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/URLClassifier.swift", "source_location": "L3", "_callable": true}, {"id": "equatable", "label": "Equatable", "file_type": "code", "source_file": "", "source_location": ""}, {"id": "sendable", "label": "Sendable", "file_type": "code", "source_file": "", "source_location": ""}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_urlclassifier_urlclassification_comments", "label": "comments", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/URLClassifier.swift", "source_location": "L4"}, {"id": "string", "label": "String", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/URLClassifier.swift"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_urlclassifier_urlclassification_walletpass", "label": "walletPass", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/URLClassifier.swift", "source_location": "L5"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_urlclassifier_urlclassification_macmagazinepost", "label": "macmagazinePost", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/URLClassifier.swift", "source_location": "L6"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_urlclassifier_urlclassification_appstore", "label": "appStore", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/URLClassifier.swift", "source_location": "L7"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_urlclassifier_urlclassification_youtube", "label": "youTube", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/URLClassifier.swift", "source_location": "L8"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_urlclassifier_urlclassification_instagram", "label": "instagram", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/URLClassifier.swift", "source_location": "L9"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_urlclassifier_urlclassification_external", "label": "external", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/URLClassifier.swift", "source_location": "L10"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_urlclassifier_urlclassifier", "label": "URLClassifier", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/URLClassifier.swift", "source_location": "L13", "_callable": true}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_urlclassifier_urlclassifier_classify", "label": ".classify()", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/URLClassifier.swift", "source_location": "L14", "_callable": true}, {"id": "url", "label": "URL", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/URLClassifier.swift"}], "edges": [{"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_urlclassifier_swift", "target": "foundation", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/URLClassifier.swift", "source_location": "L1", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_urlclassifier_swift", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_urlclassifier_urlclassification", "relation": "contains", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/URLClassifier.swift", "source_location": "L3", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_urlclassifier_urlclassification", "target": "equatable", "relation": "implements", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/URLClassifier.swift", "source_location": "L3", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_urlclassifier_urlclassification", "target": "sendable", "relation": "implements", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/URLClassifier.swift", "source_location": "L3", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_urlclassifier_urlclassification", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_urlclassifier_urlclassification_comments", "relation": "case_of", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/URLClassifier.swift", "source_location": "L4", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_urlclassifier_urlclassification", "target": "string", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/URLClassifier.swift", "source_location": "L4", "weight": 1.0, "context": "type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_urlclassifier_urlclassification", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_urlclassifier_urlclassification_walletpass", "relation": "case_of", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/URLClassifier.swift", "source_location": "L5", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_urlclassifier_urlclassification", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_urlclassifier_urlclassification_macmagazinepost", "relation": "case_of", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/URLClassifier.swift", "source_location": "L6", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_urlclassifier_urlclassification", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_urlclassifier_urlclassification_appstore", "relation": "case_of", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/URLClassifier.swift", "source_location": "L7", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_urlclassifier_urlclassification", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_urlclassifier_urlclassification_youtube", "relation": "case_of", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/URLClassifier.swift", "source_location": "L8", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_urlclassifier_urlclassification", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_urlclassifier_urlclassification_instagram", "relation": "case_of", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/URLClassifier.swift", "source_location": "L9", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_urlclassifier_urlclassification", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_urlclassifier_urlclassification_external", "relation": "case_of", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/URLClassifier.swift", "source_location": "L10", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_urlclassifier_swift", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_urlclassifier_urlclassifier", "relation": "contains", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/URLClassifier.swift", "source_location": "L13", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_urlclassifier_urlclassifier", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_urlclassifier_urlclassifier_classify", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/URLClassifier.swift", "source_location": "L14", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_urlclassifier_urlclassifier_classify", "target": "url", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/URLClassifier.swift", "source_location": "L14", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_urlclassifier_urlclassifier_classify", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_urlclassifier_urlclassification", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/URLClassifier.swift", "source_location": "L14", "weight": 1.0, "context": "return_type"}], "raw_calls": [{"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_urlclassifier_urlclassifier_classify", "callee": "replacingOccurrences", "is_member_call": true, "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/URLClassifier.swift", "source_location": "L17", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_urlclassifier_urlclassifier_classify", "callee": "replacingOccurrences", "is_member_call": true, "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/URLClassifier.swift", "source_location": "L17", "receiver": "url"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_urlclassifier_urlclassifier_classify", "callee": "replacingOccurrences", "is_member_call": true, "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/URLClassifier.swift", "source_location": "L25", "receiver": "url"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_urlclassifier_urlclassifier_classify", "callee": "lowercased", "is_member_call": true, "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/URLClassifier.swift", "source_location": "L31", "receiver": "url"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_urlclassifier_urlclassifier_classify", "callee": "lowercased", "is_member_call": true, "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/URLClassifier.swift", "source_location": "L35", "receiver": "url"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_urlclassifier_urlclassifier_classify", "callee": "contains", "is_member_call": true, "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/URLClassifier.swift", "source_location": "L38", "receiver": "host"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_urlclassifier_urlclassifier_classify", "callee": "contains", "is_member_call": true, "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/URLClassifier.swift", "source_location": "L43", "receiver": "host"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_urlclassifier_urlclassifier_classify", "callee": "contains", "is_member_call": true, "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/URLClassifier.swift", "source_location": "L43", "receiver": "host"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_urlclassifier_urlclassifier_classify", "callee": "contains", "is_member_call": true, "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/URLClassifier.swift", "source_location": "L48", "receiver": "host"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_urlclassifier_urlclassifier_classify", "callee": "contains", "is_member_call": true, "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/URLClassifier.swift", "source_location": "L48", "receiver": "host"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazinelibrary_sources_macmagazinelibrary_urlclassifier_urlclassifier_classify", "callee": "contains", "is_member_call": true, "source_file": "MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/URLClassifier.swift", "source_location": "L53", "receiver": "host"}], "swift_type_table": {"path": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/URLClassifier.swift", "table": {"url": "URL"}}} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.9.12/92eb2b3acdef7fe43ba047984d9339690dfa5e6fcbd8ec6cd2674ee8656045e6.json b/graphify-out/cache/ast/v0.9.12/92eb2b3acdef7fe43ba047984d9339690dfa5e6fcbd8ec6cd2674ee8656045e6.json new file mode 100644 index 00000000..07d3c1ea --- /dev/null +++ b/graphify-out/cache/ast/v0.9.12/92eb2b3acdef7fe43ba047984d9339690dfa5e6fcbd8ec6cd2674ee8656045e6.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_walletpass_walletpasssheet_swift", "label": "WalletPassSheet.swift", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WalletPass/WalletPassSheet.swift", "source_location": "L1"}, {"id": "passkit", "label": "PassKit", "file_type": "code", "type": "module", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WalletPass/WalletPassSheet.swift", "source_location": "L1"}, {"id": "swiftui", "label": "SwiftUI", "file_type": "code", "type": "module", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WalletPass/WalletPassSheet.swift", "source_location": "L2"}, {"id": "uikit", "label": "UIKit", "file_type": "code", "type": "module", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WalletPass/WalletPassSheet.swift", "source_location": "L3"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_walletpass_walletpasssheet_walletpasssheet", "label": "WalletPassSheet", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WalletPass/WalletPassSheet.swift", "source_location": "L6", "_callable": true}, {"id": "view", "label": "View", "file_type": "code", "source_file": "", "source_location": ""}, {"id": "url", "label": "URL", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WalletPass/WalletPassSheet.swift"}, {"id": "void", "label": "Void", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WalletPass/WalletPassSheet.swift"}, {"id": "pkaddpassesviewcontroller", "label": "PKAddPassesViewController", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WalletPass/WalletPassSheet.swift"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_walletpass_walletpasssheet_walletpasssheet_loadpass", "label": ".loadPass()", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WalletPass/WalletPassSheet.swift", "source_location": "L27", "_callable": true}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_walletpass_walletpasssheet_addpassesview", "label": "AddPassesView", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WalletPass/WalletPassSheet.swift", "source_location": "L45", "_callable": true}, {"id": "uiviewcontrollerrepresentable", "label": "UIViewControllerRepresentable", "file_type": "code", "source_file": "", "source_location": ""}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_walletpass_walletpasssheet_addpassesview_makeuiviewcontroller", "label": ".makeUIViewController()", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WalletPass/WalletPassSheet.swift", "source_location": "L49", "_callable": true}, {"id": "context", "label": "Context", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WalletPass/WalletPassSheet.swift"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_walletpass_walletpasssheet_addpassesview_updateuiviewcontroller", "label": ".updateUIViewController()", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WalletPass/WalletPassSheet.swift", "source_location": "L54", "_callable": true}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_walletpass_walletpasssheet_addpassesview_makecoordinator", "label": ".makeCoordinator()", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WalletPass/WalletPassSheet.swift", "source_location": "L56", "_callable": true}, {"id": "coordinator", "label": "Coordinator", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WalletPass/WalletPassSheet.swift"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_walletpass_walletpasssheet_coordinator", "label": "Coordinator", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WalletPass/WalletPassSheet.swift", "source_location": "L60", "_callable": true}, {"id": "nsobject", "label": "NSObject", "file_type": "code", "source_file": "", "source_location": ""}, {"id": "pkaddpassesviewcontrollerdelegate", "label": "PKAddPassesViewControllerDelegate", "file_type": "code", "source_file": "", "source_location": ""}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_walletpass_walletpasssheet_coordinator_init", "label": ".init()", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WalletPass/WalletPassSheet.swift", "source_location": "L63", "_callable": true}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_walletpass_walletpasssheet_coordinator_addpassesviewcontrollerdidfinish", "label": ".addPassesViewControllerDidFinish()", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WalletPass/WalletPassSheet.swift", "source_location": "L67", "_callable": true}], "edges": [{"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_walletpass_walletpasssheet_swift", "target": "passkit", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WalletPass/WalletPassSheet.swift", "source_location": "L1", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_walletpass_walletpasssheet_swift", "target": "swiftui", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WalletPass/WalletPassSheet.swift", "source_location": "L2", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_walletpass_walletpasssheet_swift", "target": "uikit", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WalletPass/WalletPassSheet.swift", "source_location": "L3", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_walletpass_walletpasssheet_swift", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_walletpass_walletpasssheet_walletpasssheet", "relation": "contains", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WalletPass/WalletPassSheet.swift", "source_location": "L6", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_walletpass_walletpasssheet_walletpasssheet", "target": "view", "relation": "implements", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WalletPass/WalletPassSheet.swift", "source_location": "L6", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_walletpass_walletpasssheet_walletpasssheet", "target": "url", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WalletPass/WalletPassSheet.swift", "source_location": "L7", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_walletpass_walletpasssheet_walletpasssheet", "target": "void", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WalletPass/WalletPassSheet.swift", "source_location": "L8", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_walletpass_walletpasssheet_walletpasssheet", "target": "pkaddpassesviewcontroller", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WalletPass/WalletPassSheet.swift", "source_location": "L10", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_walletpass_walletpasssheet_walletpasssheet", "target": "view", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WalletPass/WalletPassSheet.swift", "source_location": "L13", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_walletpass_walletpasssheet_swift", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_walletpass_walletpasssheet_walletpasssheet", "relation": "contains", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WalletPass/WalletPassSheet.swift", "source_location": "L26", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_walletpass_walletpasssheet_walletpasssheet", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_walletpass_walletpasssheet_walletpasssheet_loadpass", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WalletPass/WalletPassSheet.swift", "source_location": "L27", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_walletpass_walletpasssheet_swift", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_walletpass_walletpasssheet_addpassesview", "relation": "contains", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WalletPass/WalletPassSheet.swift", "source_location": "L45", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_walletpass_walletpasssheet_addpassesview", "target": "uiviewcontrollerrepresentable", "relation": "implements", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WalletPass/WalletPassSheet.swift", "source_location": "L45", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_walletpass_walletpasssheet_addpassesview", "target": "pkaddpassesviewcontroller", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WalletPass/WalletPassSheet.swift", "source_location": "L46", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_walletpass_walletpasssheet_addpassesview", "target": "void", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WalletPass/WalletPassSheet.swift", "source_location": "L47", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_walletpass_walletpasssheet_addpassesview", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_walletpass_walletpasssheet_addpassesview_makeuiviewcontroller", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WalletPass/WalletPassSheet.swift", "source_location": "L49", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_walletpass_walletpasssheet_addpassesview_makeuiviewcontroller", "target": "context", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WalletPass/WalletPassSheet.swift", "source_location": "L49", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_walletpass_walletpasssheet_addpassesview_makeuiviewcontroller", "target": "pkaddpassesviewcontroller", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WalletPass/WalletPassSheet.swift", "source_location": "L49", "weight": 1.0, "context": "return_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_walletpass_walletpasssheet_addpassesview", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_walletpass_walletpasssheet_addpassesview_updateuiviewcontroller", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WalletPass/WalletPassSheet.swift", "source_location": "L54", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_walletpass_walletpasssheet_addpassesview_updateuiviewcontroller", "target": "pkaddpassesviewcontroller", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WalletPass/WalletPassSheet.swift", "source_location": "L54", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_walletpass_walletpasssheet_addpassesview_updateuiviewcontroller", "target": "context", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WalletPass/WalletPassSheet.swift", "source_location": "L54", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_walletpass_walletpasssheet_addpassesview", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_walletpass_walletpasssheet_addpassesview_makecoordinator", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WalletPass/WalletPassSheet.swift", "source_location": "L56", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_walletpass_walletpasssheet_addpassesview_makecoordinator", "target": "coordinator", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WalletPass/WalletPassSheet.swift", "source_location": "L56", "weight": 1.0, "context": "return_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_walletpass_walletpasssheet_swift", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_walletpass_walletpasssheet_coordinator", "relation": "contains", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WalletPass/WalletPassSheet.swift", "source_location": "L60", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_walletpass_walletpasssheet_coordinator", "target": "nsobject", "relation": "inherits", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WalletPass/WalletPassSheet.swift", "source_location": "L60", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_walletpass_walletpasssheet_coordinator", "target": "pkaddpassesviewcontrollerdelegate", "relation": "implements", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WalletPass/WalletPassSheet.swift", "source_location": "L60", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_walletpass_walletpasssheet_coordinator", "target": "void", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WalletPass/WalletPassSheet.swift", "source_location": "L61", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_walletpass_walletpasssheet_coordinator", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_walletpass_walletpasssheet_coordinator_init", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WalletPass/WalletPassSheet.swift", "source_location": "L63", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_walletpass_walletpasssheet_coordinator_init", "target": "void", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WalletPass/WalletPassSheet.swift", "source_location": "L63", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_walletpass_walletpasssheet_coordinator", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_walletpass_walletpasssheet_coordinator_addpassesviewcontrollerdidfinish", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WalletPass/WalletPassSheet.swift", "source_location": "L67", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_walletpass_walletpasssheet_coordinator_addpassesviewcontrollerdidfinish", "target": "pkaddpassesviewcontroller", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WalletPass/WalletPassSheet.swift", "source_location": "L67", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_walletpass_walletpasssheet_walletpasssheet_loadpass", "target": "pkaddpassesviewcontroller", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WalletPass/WalletPassSheet.swift", "source_location": "L31", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_walletpass_walletpasssheet_addpassesview_makecoordinator", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_walletpass_walletpasssheet_coordinator", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WalletPass/WalletPassSheet.swift", "source_location": "L57", "weight": 1.0}], "raw_calls": [{"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_walletpass_walletpasssheet_walletpasssheet_loadpass", "callee": "fetchPass", "is_member_call": true, "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WalletPass/WalletPassSheet.swift", "source_location": "L30", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_walletpass_walletpasssheet_walletpasssheet_loadpass", "callee": "WalletPassService", "is_member_call": false, "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WalletPass/WalletPassSheet.swift", "source_location": "L30", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_walletpass_walletpasssheet_coordinator_addpassesviewcontrollerdidfinish", "callee": "onDismiss", "is_member_call": false, "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WalletPass/WalletPassSheet.swift", "source_location": "L68", "receiver": null}], "swift_extensions": [{"nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_walletpass_walletpasssheet_walletpasssheet", "label": "WalletPassSheet"}], "swift_type_table": {"path": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WalletPass/WalletPassSheet.swift", "table": {"url": "URL", "onDismiss": "Void", "addPassesController": "PKAddPassesViewController", "status": "WebViewStatus", "body": "View", "controller": "PKAddPassesViewController", "context": "Context", "uiViewController": "PKAddPassesViewController"}}} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.9.12/96273c79ce8781532d85e81587bc09b687446d7f4e8ce119bcea9a410041df3e.json b/graphify-out/cache/ast/v0.9.12/96273c79ce8781532d85e81587bc09b687446d7f4e8ce119bcea9a410041df3e.json new file mode 100644 index 00000000..5cd3fe35 --- /dev/null +++ b/graphify-out/cache/ast/v0.9.12/96273c79ce8781532d85e81587bc09b687446d7f4e8ce119bcea9a410041df3e.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_components_collectionviewwithheader_swift", "label": "CollectionViewWithHeader.swift", "file_type": "code", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/CollectionViewWithHeader.swift", "source_location": "L1"}, {"id": "swiftui", "label": "SwiftUI", "file_type": "code", "type": "module", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/CollectionViewWithHeader.swift", "source_location": "L1"}, {"id": "uicomponentslibrary", "label": "UIComponentsLibrary", "file_type": "code", "type": "module", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/CollectionViewWithHeader.swift", "source_location": "L2"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_components_collectionviewwithheader_collectionviewwithheader", "label": "CollectionViewWithHeader", "file_type": "code", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/CollectionViewWithHeader.swift", "source_location": "L8", "_callable": true}, {"id": "view", "label": "View", "file_type": "code", "source_file": "", "source_location": ""}, {"id": "scrollposition", "label": "ScrollPosition", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/CollectionViewWithHeader.swift"}, {"id": "string", "label": "String", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/CollectionViewWithHeader.swift"}, {"id": "apistatus", "label": "APIStatus", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/CollectionViewWithHeader.swift"}, {"id": "bool", "label": "Bool", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/CollectionViewWithHeader.swift"}, {"id": "int", "label": "Int", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/CollectionViewWithHeader.swift"}, {"id": "carddensity", "label": "CardDensity", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/CollectionViewWithHeader.swift"}, {"id": "header", "label": "Header", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/CollectionViewWithHeader.swift"}, {"id": "void", "label": "Void", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/CollectionViewWithHeader.swift"}, {"id": "content", "label": "Content", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/CollectionViewWithHeader.swift"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_components_collectionviewwithheader_collectionviewwithheader_init", "label": ".init()", "file_type": "code", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/CollectionViewWithHeader.swift", "source_location": "L35", "_callable": true}, {"id": "binding", "label": "Binding", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/CollectionViewWithHeader.swift"}], "edges": [{"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_components_collectionviewwithheader_swift", "target": "swiftui", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/CollectionViewWithHeader.swift", "source_location": "L1", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_components_collectionviewwithheader_swift", "target": "uicomponentslibrary", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/CollectionViewWithHeader.swift", "source_location": "L2", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_components_collectionviewwithheader_swift", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_components_collectionviewwithheader_collectionviewwithheader", "relation": "contains", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/CollectionViewWithHeader.swift", "source_location": "L8", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_components_collectionviewwithheader_collectionviewwithheader", "target": "view", "relation": "implements", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/CollectionViewWithHeader.swift", "source_location": "L8", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_components_collectionviewwithheader_collectionviewwithheader", "target": "scrollposition", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/CollectionViewWithHeader.swift", "source_location": "L13", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_components_collectionviewwithheader_collectionviewwithheader", "target": "string", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/CollectionViewWithHeader.swift", "source_location": "L15", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_components_collectionviewwithheader_collectionviewwithheader", "target": "apistatus", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/CollectionViewWithHeader.swift", "source_location": "L16", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_components_collectionviewwithheader_collectionviewwithheader", "target": "bool", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/CollectionViewWithHeader.swift", "source_location": "L17", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_components_collectionviewwithheader_collectionviewwithheader", "target": "bool", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/CollectionViewWithHeader.swift", "source_location": "L18", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_components_collectionviewwithheader_collectionviewwithheader", "target": "bool", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/CollectionViewWithHeader.swift", "source_location": "L19", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_components_collectionviewwithheader_collectionviewwithheader", "target": "int", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/CollectionViewWithHeader.swift", "source_location": "L20", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_components_collectionviewwithheader_collectionviewwithheader", "target": "carddensity", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/CollectionViewWithHeader.swift", "source_location": "L21", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_components_collectionviewwithheader_collectionviewwithheader", "target": "header", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/CollectionViewWithHeader.swift", "source_location": "L23", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_components_collectionviewwithheader_collectionviewwithheader", "target": "void", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/CollectionViewWithHeader.swift", "source_location": "L24", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_components_collectionviewwithheader_collectionviewwithheader", "target": "content", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/CollectionViewWithHeader.swift", "source_location": "L25", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_components_collectionviewwithheader_collectionviewwithheader", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_components_collectionviewwithheader_collectionviewwithheader_init", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/CollectionViewWithHeader.swift", "source_location": "L35", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_components_collectionviewwithheader_collectionviewwithheader_init", "target": "string", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/CollectionViewWithHeader.swift", "source_location": "L35", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_components_collectionviewwithheader_collectionviewwithheader_init", "target": "apistatus", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/CollectionViewWithHeader.swift", "source_location": "L35", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_components_collectionviewwithheader_collectionviewwithheader_init", "target": "bool", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/CollectionViewWithHeader.swift", "source_location": "L35", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_components_collectionviewwithheader_collectionviewwithheader_init", "target": "binding", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/CollectionViewWithHeader.swift", "source_location": "L35", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_components_collectionviewwithheader_collectionviewwithheader_init", "target": "scrollposition", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/CollectionViewWithHeader.swift", "source_location": "L35", "weight": 1.0, "context": "generic_arg"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_components_collectionviewwithheader_collectionviewwithheader_init", "target": "bool", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/CollectionViewWithHeader.swift", "source_location": "L35", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_components_collectionviewwithheader_collectionviewwithheader_init", "target": "bool", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/CollectionViewWithHeader.swift", "source_location": "L35", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_components_collectionviewwithheader_collectionviewwithheader_init", "target": "int", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/CollectionViewWithHeader.swift", "source_location": "L35", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_components_collectionviewwithheader_collectionviewwithheader_init", "target": "header", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/CollectionViewWithHeader.swift", "source_location": "L35", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_components_collectionviewwithheader_collectionviewwithheader_init", "target": "content", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/CollectionViewWithHeader.swift", "source_location": "L35", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_components_collectionviewwithheader_collectionviewwithheader_init", "target": "void", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/CollectionViewWithHeader.swift", "source_location": "L35", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_components_collectionviewwithheader_collectionviewwithheader", "target": "view", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/CollectionViewWithHeader.swift", "source_location": "L62", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_components_collectionviewwithheader_swift", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_components_collectionviewwithheader_collectionviewwithheader", "relation": "contains", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/CollectionViewWithHeader.swift", "source_location": "L98", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_components_collectionviewwithheader_collectionviewwithheader", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_components_collectionviewwithheader_collectionviewwithheader_init", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/CollectionViewWithHeader.swift", "source_location": "L99", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_components_collectionviewwithheader_collectionviewwithheader_init", "target": "string", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/CollectionViewWithHeader.swift", "source_location": "L99", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_components_collectionviewwithheader_collectionviewwithheader_init", "target": "apistatus", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/CollectionViewWithHeader.swift", "source_location": "L99", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_components_collectionviewwithheader_collectionviewwithheader_init", "target": "bool", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/CollectionViewWithHeader.swift", "source_location": "L99", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_components_collectionviewwithheader_collectionviewwithheader_init", "target": "binding", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/CollectionViewWithHeader.swift", "source_location": "L99", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_components_collectionviewwithheader_collectionviewwithheader_init", "target": "scrollposition", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/CollectionViewWithHeader.swift", "source_location": "L99", "weight": 1.0, "context": "generic_arg"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_components_collectionviewwithheader_collectionviewwithheader_init", "target": "bool", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/CollectionViewWithHeader.swift", "source_location": "L99", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_components_collectionviewwithheader_collectionviewwithheader_init", "target": "bool", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/CollectionViewWithHeader.swift", "source_location": "L99", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_components_collectionviewwithheader_collectionviewwithheader_init", "target": "int", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/CollectionViewWithHeader.swift", "source_location": "L99", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_components_collectionviewwithheader_collectionviewwithheader_init", "target": "content", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/CollectionViewWithHeader.swift", "source_location": "L99", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_components_collectionviewwithheader_collectionviewwithheader_init", "target": "void", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/CollectionViewWithHeader.swift", "source_location": "L99", "weight": 1.0, "context": "parameter_type"}], "raw_calls": [{"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_components_collectionviewwithheader_collectionviewwithheader", "callee": "GridItem", "is_member_call": false, "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/CollectionViewWithHeader.swift", "source_location": "L27", "receiver": null}], "swift_extensions": [{"nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_components_collectionviewwithheader_collectionviewwithheader", "label": "CollectionViewWithHeader"}], "swift_type_table": {"path": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/CollectionViewWithHeader.swift", "table": {"cardWidth": "CGFloat", "scrollPosition": "Binding", "title": "String", "status": "APIStatus", "usesDensity": "Bool", "favorite": "Bool", "isSearching": "Bool", "quantity": "Int", "density": "CardDensity", "header": "Header", "retryAction": "Void", "content": "Content", "grid": "GridItem", "body": "View"}}} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.9.12/96c095f5f4ac8ed8102d2c7d18de6d112c73c533ced60b3647376401f8245ff4.json b/graphify-out/cache/ast/v0.9.12/96c095f5f4ac8ed8102d2c7d18de6d112c73c533ced60b3647376401f8245ff4.json new file mode 100644 index 00000000..7943ebf4 --- /dev/null +++ b/graphify-out/cache/ast/v0.9.12/96c095f5f4ac8ed8102d2c7d18de6d112c73c533ced60b3647376401f8245ff4.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_components_feedhighlightcardview_swift", "label": "FeedHighlightCardView.swift", "file_type": "code", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/FeedHighlightCardView.swift", "source_location": "L1"}, {"id": "analyticslibrary", "label": "AnalyticsLibrary", "file_type": "code", "type": "module", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/FeedHighlightCardView.swift", "source_location": "L1"}, {"id": "feedlibrary", "label": "FeedLibrary", "file_type": "code", "type": "module", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/FeedHighlightCardView.swift", "source_location": "L2"}, {"id": "macmagazinelibrary", "label": "MacMagazineLibrary", "file_type": "code", "type": "module", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/FeedHighlightCardView.swift", "source_location": "L3"}, {"id": "macmagazineuilibrary", "label": "MacMagazineUILibrary", "file_type": "code", "type": "module", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/FeedHighlightCardView.swift", "source_location": "L4"}, {"id": "swiftdata", "label": "SwiftData", "file_type": "code", "type": "module", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/FeedHighlightCardView.swift", "source_location": "L5"}, {"id": "swiftui", "label": "SwiftUI", "file_type": "code", "type": "module", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/FeedHighlightCardView.swift", "source_location": "L6"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_components_feedhighlightcardview_feedhighlightcardview", "label": "FeedHighlightCardView", "file_type": "code", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/FeedHighlightCardView.swift", "source_location": "L12", "_callable": true}, {"id": "view", "label": "View", "file_type": "code", "source_file": "", "source_location": ""}, {"id": "feeddb", "label": "FeedDB", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/FeedHighlightCardView.swift"}, {"id": "analyticsmanager", "label": "AnalyticsManager", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/FeedHighlightCardView.swift"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_components_feedhighlightcardview_feedhighlightcardview_init", "label": ".init()", "file_type": "code", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/FeedHighlightCardView.swift", "source_location": "L44", "_callable": true}], "edges": [{"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_components_feedhighlightcardview_swift", "target": "analyticslibrary", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/FeedHighlightCardView.swift", "source_location": "L1", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_components_feedhighlightcardview_swift", "target": "feedlibrary", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/FeedHighlightCardView.swift", "source_location": "L2", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_components_feedhighlightcardview_swift", "target": "macmagazinelibrary", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/FeedHighlightCardView.swift", "source_location": "L3", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_components_feedhighlightcardview_swift", "target": "macmagazineuilibrary", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/FeedHighlightCardView.swift", "source_location": "L4", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_components_feedhighlightcardview_swift", "target": "swiftdata", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/FeedHighlightCardView.swift", "source_location": "L5", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_components_feedhighlightcardview_swift", "target": "swiftui", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/FeedHighlightCardView.swift", "source_location": "L6", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_components_feedhighlightcardview_swift", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_components_feedhighlightcardview_feedhighlightcardview", "relation": "contains", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/FeedHighlightCardView.swift", "source_location": "L12", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_components_feedhighlightcardview_feedhighlightcardview", "target": "view", "relation": "implements", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/FeedHighlightCardView.swift", "source_location": "L12", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_components_feedhighlightcardview_feedhighlightcardview", "target": "feeddb", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/FeedHighlightCardView.swift", "source_location": "L16", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_components_feedhighlightcardview_feedhighlightcardview", "target": "analyticsmanager", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/FeedHighlightCardView.swift", "source_location": "L20", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_components_feedhighlightcardview_feedhighlightcardview", "target": "view", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/FeedHighlightCardView.swift", "source_location": "L24", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_components_feedhighlightcardview_feedhighlightcardview", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_components_feedhighlightcardview_feedhighlightcardview_init", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/FeedHighlightCardView.swift", "source_location": "L44", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_newslibrary_sources_newslibrary_views_components_feedhighlightcardview_feedhighlightcardview_init", "target": "feeddb", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/FeedHighlightCardView.swift", "source_location": "L44", "weight": 1.0, "context": "parameter_type"}], "raw_calls": [], "swift_type_table": {"path": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/FeedHighlightCardView.swift", "table": {"post": "FeedDB", "analytics": "AnalyticsManager", "body": "View"}}} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.9.12/9a486b91a30afceae312a7c5de3316a6def3702027d227c07c4788ca13917c53.json b/graphify-out/cache/ast/v0.9.12/9a486b91a30afceae312a7c5de3316a6def3702027d227c07c4788ca13917c53.json new file mode 100644 index 00000000..bdfa821c --- /dev/null +++ b/graphify-out/cache/ast/v0.9.12/9a486b91a30afceae312a7c5de3316a6def3702027d227c07c4788ca13917c53.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_concurrency_md", "label": "concurrency.md", "file_type": "document", "source_file": ".claude/rules/concurrency.md", "source_location": "L1"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_concurrency_concurrency_swift_6_2_structured_only", "label": "Concurrency \u2014 Swift 6.2, structured only", "file_type": "document", "source_file": ".claude/rules/concurrency.md", "source_location": "L1"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_concurrency_required_patterns", "label": "Required patterns", "file_type": "document", "source_file": ".claude/rules/concurrency.md", "source_location": "L5"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_concurrency_legacy_migrate_when_touching_never_write_new", "label": "Legacy (migrate when touching, never write new)", "file_type": "document", "source_file": ".claude/rules/concurrency.md", "source_location": "L14"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_concurrency_banned_the_posttooluse_hook_blocks_these", "label": "Banned (the PostToolUse hook blocks these)", "file_type": "document", "source_file": ".claude/rules/concurrency.md", "source_location": "L19"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_concurrency_example_shape", "label": "Example shape", "file_type": "document", "source_file": ".claude/rules/concurrency.md", "source_location": "L24"}], "edges": [{"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_concurrency_md", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_concurrency_concurrency_swift_6_2_structured_only", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/rules/concurrency.md", "source_location": "L1", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_concurrency_concurrency_swift_6_2_structured_only", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_concurrency_required_patterns", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/rules/concurrency.md", "source_location": "L5", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_concurrency_concurrency_swift_6_2_structured_only", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_concurrency_legacy_migrate_when_touching_never_write_new", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/rules/concurrency.md", "source_location": "L14", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_concurrency_concurrency_swift_6_2_structured_only", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_concurrency_banned_the_posttooluse_hook_blocks_these", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/rules/concurrency.md", "source_location": "L19", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_concurrency_concurrency_swift_6_2_structured_only", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_concurrency_example_shape", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/rules/concurrency.md", "source_location": "L24", "weight": 1.0}], "input_tokens": 0, "output_tokens": 0} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.9.12/9a926a384fac80310935687b003c5615d090b1c859deac5ccfee61f85bf4fe82.json b/graphify-out/cache/ast/v0.9.12/9a926a384fac80310935687b003c5615d090b1c859deac5ccfee61f85bf4fe82.json new file mode 100644 index 00000000..81b70b7a --- /dev/null +++ b/graphify-out/cache/ast/v0.9.12/9a926a384fac80310935687b003c5615d090b1c859deac5ccfee61f85bf4fe82.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_ui_systems_md", "label": "ui-systems.md", "file_type": "document", "source_file": ".claude/rules/ui-systems.md", "source_location": "L1"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_ui_systems_ui_systems_cards_webviews_theme", "label": "UI Systems \u2014 cards, WebViews, theme", "file_type": "document", "source_file": ".claude/rules/ui-systems.md", "source_location": "L1"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_ui_systems_card_system_macmagazineuilibrary", "label": "Card system (MacMagazineUILibrary)", "file_type": "document", "source_file": ".claude/rules/ui-systems.md", "source_location": "L3"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_ui_systems_cardcontent_universal_data_model", "label": "CardContent \u2014 universal data model", "file_type": "document", "source_file": ".claude/rules/ui-systems.md", "source_location": "L7"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_ui_systems_cardcontenttype_content_variants", "label": "CardContentType \u2014 content variants", "file_type": "document", "source_file": ".claude/rules/ui-systems.md", "source_location": "L21"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_ui_systems_cardstyle_layout_variants", "label": "CardStyle \u2014 layout variants", "file_type": "document", "source_file": ".claude/rules/ui-systems.md", "source_location": "L29"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_ui_systems_newscard_smart_dispatcher", "label": "NewsCard \u2014 smart dispatcher", "file_type": "document", "source_file": ".claude/rules/ui-systems.md", "source_location": "L39"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_ui_systems_which_card_for_which_content", "label": "Which card for which content", "file_type": "document", "source_file": ".claude/rules/ui-systems.md", "source_location": "L46"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_ui_systems_category_to_style_mapping_newscategory_style", "label": "Category-to-style mapping (NewsCategory.style)", "file_type": "document", "source_file": ".claude/rules/ui-systems.md", "source_location": "L54"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_ui_systems_webview_system_macmagazineuilibrary_webview", "label": "WebView system (MacMagazineUILibrary/Webview/)", "file_type": "document", "source_file": ".claude/rules/ui-systems.md", "source_location": "L62"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_ui_systems_user_scripts", "label": "User scripts", "file_type": "document", "source_file": ".claude/rules/ui-systems.md", "source_location": "L83"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_ui_systems_theme_system", "label": "Theme system", "file_type": "document", "source_file": ".claude/rules/ui-systems.md", "source_location": "L97"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_ui_systems_accessibility", "label": "Accessibility", "file_type": "document", "source_file": ".claude/rules/ui-systems.md", "source_location": "L119"}], "edges": [{"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_ui_systems_md", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_ui_systems_ui_systems_cards_webviews_theme", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/rules/ui-systems.md", "source_location": "L1", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_ui_systems_ui_systems_cards_webviews_theme", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_ui_systems_card_system_macmagazineuilibrary", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/rules/ui-systems.md", "source_location": "L3", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_ui_systems_card_system_macmagazineuilibrary", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_ui_systems_cardcontent_universal_data_model", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/rules/ui-systems.md", "source_location": "L7", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_ui_systems_card_system_macmagazineuilibrary", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_ui_systems_cardcontenttype_content_variants", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/rules/ui-systems.md", "source_location": "L21", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_ui_systems_card_system_macmagazineuilibrary", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_ui_systems_cardstyle_layout_variants", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/rules/ui-systems.md", "source_location": "L29", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_ui_systems_card_system_macmagazineuilibrary", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_ui_systems_newscard_smart_dispatcher", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/rules/ui-systems.md", "source_location": "L39", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_ui_systems_card_system_macmagazineuilibrary", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_ui_systems_which_card_for_which_content", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/rules/ui-systems.md", "source_location": "L46", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_ui_systems_card_system_macmagazineuilibrary", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_ui_systems_category_to_style_mapping_newscategory_style", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/rules/ui-systems.md", "source_location": "L54", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_ui_systems_ui_systems_cards_webviews_theme", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_ui_systems_webview_system_macmagazineuilibrary_webview", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/rules/ui-systems.md", "source_location": "L62", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_ui_systems_webview_system_macmagazineuilibrary_webview", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_ui_systems_user_scripts", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/rules/ui-systems.md", "source_location": "L83", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_ui_systems_ui_systems_cards_webviews_theme", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_ui_systems_theme_system", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/rules/ui-systems.md", "source_location": "L97", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_ui_systems_ui_systems_cards_webviews_theme", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_ui_systems_accessibility", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/rules/ui-systems.md", "source_location": "L119", "weight": 1.0}], "input_tokens": 0, "output_tokens": 0} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.9.12/9fa39a3cc821ec1b3263f454050173890126021f2743c40ab2fe6b04e9cd72d4.json b/graphify-out/cache/ast/v0.9.12/9fa39a3cc821ec1b3263f454050173890126021f2743c40ab2fe6b04e9cd72d4.json new file mode 100644 index 00000000..3164f731 --- /dev/null +++ b/graphify-out/cache/ast/v0.9.12/9fa39a3cc821ec1b3263f454050173890126021f2743c40ab2fe6b04e9cd72d4.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_aboutview_swift", "label": "AboutView.swift", "file_type": "code", "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/AboutView.swift", "source_location": "L1"}, {"id": "analyticslibrary", "label": "AnalyticsLibrary", "file_type": "code", "type": "module", "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/AboutView.swift", "source_location": "L1"}, {"id": "macmagazinelibrary", "label": "MacMagazineLibrary", "file_type": "code", "type": "module", "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/AboutView.swift", "source_location": "L2"}, {"id": "swiftui", "label": "SwiftUI", "file_type": "code", "type": "module", "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/AboutView.swift", "source_location": "L3"}, {"id": "uicomponentslibrary", "label": "UIComponentsLibrary", "file_type": "code", "type": "module", "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/AboutView.swift", "source_location": "L4"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_aboutview_aboutview", "label": "AboutView", "file_type": "code", "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/AboutView.swift", "source_location": "L6", "_callable": true}, {"id": "view", "label": "View", "file_type": "code", "source_file": "", "source_location": ""}, {"id": "analyticsmanager", "label": "AnalyticsManager", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/AboutView.swift"}, {"id": "themecolor", "label": "ThemeColor", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/AboutView.swift"}, {"id": "aboutviewmodel", "label": "AboutViewModel", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/AboutView.swift"}], "edges": [{"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_aboutview_swift", "target": "analyticslibrary", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/AboutView.swift", "source_location": "L1", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_aboutview_swift", "target": "macmagazinelibrary", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/AboutView.swift", "source_location": "L2", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_aboutview_swift", "target": "swiftui", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/AboutView.swift", "source_location": "L3", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_aboutview_swift", "target": "uicomponentslibrary", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/AboutView.swift", "source_location": "L4", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_aboutview_swift", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_aboutview_aboutview", "relation": "contains", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/AboutView.swift", "source_location": "L6", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_aboutview_aboutview", "target": "view", "relation": "implements", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/AboutView.swift", "source_location": "L6", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_aboutview_aboutview", "target": "analyticsmanager", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/AboutView.swift", "source_location": "L7", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_aboutview_aboutview", "target": "themecolor", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/AboutView.swift", "source_location": "L8", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_aboutview_aboutview", "target": "aboutviewmodel", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/AboutView.swift", "source_location": "L11", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_aboutview_aboutview", "target": "view", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/AboutView.swift", "source_location": "L13", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_aboutview_swift", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_aboutview_aboutview", "relation": "contains", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/AboutView.swift", "source_location": "L24", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_aboutview_aboutview", "target": "view", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/AboutView.swift", "source_location": "L25", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_aboutview_swift", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_aboutview_aboutview", "relation": "contains", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/AboutView.swift", "source_location": "L35", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_aboutview_aboutview", "target": "view", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/AboutView.swift", "source_location": "L36", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_aboutview_aboutview", "target": "view", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/AboutView.swift", "source_location": "L48", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_aboutview_aboutview", "target": "aboutviewmodel", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/AboutView.swift", "source_location": "L9", "weight": 1.0}], "raw_calls": [], "swift_extensions": [{"nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_aboutview_aboutview", "label": "AboutView"}, {"nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_settingslibrary_sources_settingslibrary_views_supplementals_aboutview_aboutview", "label": "AboutView"}], "swift_type_table": {"path": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/AboutView.swift", "table": {"analytics": "AnalyticsManager", "theme": "ThemeColor", "viewModel": "AboutViewModel", "presentingContent": "AboutViewModel", "body": "View", "footerView": "View", "headerView": "View", "optionsView": "View"}}} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.9.12/b106487be73dc5a3a6e53e0399926b8652b45937167fe5840dd3ef74cdc816ac.json b/graphify-out/cache/ast/v0.9.12/b106487be73dc5a3a6e53e0399926b8652b45937167fe5840dd3ef74cdc816ac.json new file mode 100644 index 00000000..a14e5f9b --- /dev/null +++ b/graphify-out/cache/ast/v0.9.12/b106487be73dc5a3a6e53e0399926b8652b45937167fe5840dd3ef74cdc816ac.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_readme_md", "label": "README.md", "file_type": "document", "source_file": "README.md", "source_location": "L1"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_readme_app_do_macmagazine_para_ios", "label": "App do MacMagazine para iOS", "file_type": "document", "source_file": "README.md", "source_location": "L1"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_readme_funcionalidades", "label": "Funcionalidades", "file_type": "document", "source_file": "README.md", "source_location": "L7"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_readme_sobre_esta_vers\u00e3o", "label": "Sobre esta vers\u00e3o", "file_type": "document", "source_file": "README.md", "source_location": "L23"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_readme_requisitos", "label": "Requisitos", "file_type": "document", "source_file": "README.md", "source_location": "L33"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_readme_come\u00e7ando", "label": "Come\u00e7ando", "file_type": "document", "source_file": "README.md", "source_location": "L38"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_readme_configura\u00e7\u00e3o_r\u00e1pida", "label": "Configura\u00e7\u00e3o r\u00e1pida", "file_type": "document", "source_file": "README.md", "source_location": "L42"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_readme_contribuindo", "label": "Contribuindo", "file_type": "document", "source_file": "README.md", "source_location": "L56"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_readme_desenvolvimento_com_ia_claude_code", "label": "Desenvolvimento com IA (Claude Code)", "file_type": "document", "source_file": "README.md", "source_location": "L66"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_readme_como_funciona", "label": "Como funciona", "file_type": "document", "source_file": "README.md", "source_location": "L70"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_readme_como_usar", "label": "Como usar", "file_type": "document", "source_file": "README.md", "source_location": "L90"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_readme_guardrails", "label": "Guardrails", "file_type": "document", "source_file": "README.md", "source_location": "L110"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_readme_bug_reporting_e_feature_requests", "label": "Bug Reporting e Feature Requests", "file_type": "document", "source_file": "README.md", "source_location": "L118"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_readme_documenta\u00e7\u00e3o_adicional", "label": "Documenta\u00e7\u00e3o adicional", "file_type": "document", "source_file": "README.md", "source_location": "L124"}], "edges": [{"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_readme_md", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_readme_app_do_macmagazine_para_ios", "relation": "contains", "confidence": "EXTRACTED", "source_file": "README.md", "source_location": "L1", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_readme_app_do_macmagazine_para_ios", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_readme_funcionalidades", "relation": "contains", "confidence": "EXTRACTED", "source_file": "README.md", "source_location": "L7", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_readme_app_do_macmagazine_para_ios", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_readme_sobre_esta_vers\u00e3o", "relation": "contains", "confidence": "EXTRACTED", "source_file": "README.md", "source_location": "L23", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_readme_app_do_macmagazine_para_ios", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_readme_requisitos", "relation": "contains", "confidence": "EXTRACTED", "source_file": "README.md", "source_location": "L33", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_readme_app_do_macmagazine_para_ios", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_readme_come\u00e7ando", "relation": "contains", "confidence": "EXTRACTED", "source_file": "README.md", "source_location": "L38", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_readme_md", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_contributing_md", "relation": "references", "confidence": "EXTRACTED", "source_file": "README.md", "source_location": "L40", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_readme_come\u00e7ando", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_readme_configura\u00e7\u00e3o_r\u00e1pida", "relation": "contains", "confidence": "EXTRACTED", "source_file": "README.md", "source_location": "L42", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_readme_app_do_macmagazine_para_ios", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_readme_contribuindo", "relation": "contains", "confidence": "EXTRACTED", "source_file": "README.md", "source_location": "L56", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_readme_app_do_macmagazine_para_ios", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_readme_desenvolvimento_com_ia_claude_code", "relation": "contains", "confidence": "EXTRACTED", "source_file": "README.md", "source_location": "L66", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_readme_desenvolvimento_com_ia_claude_code", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_readme_como_funciona", "relation": "contains", "confidence": "EXTRACTED", "source_file": "README.md", "source_location": "L70", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_readme_md", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_md", "relation": "references", "confidence": "EXTRACTED", "source_file": "README.md", "source_location": "L72", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_readme_desenvolvimento_com_ia_claude_code", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_readme_como_usar", "relation": "contains", "confidence": "EXTRACTED", "source_file": "README.md", "source_location": "L90", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_readme_desenvolvimento_com_ia_claude_code", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_readme_guardrails", "relation": "contains", "confidence": "EXTRACTED", "source_file": "README.md", "source_location": "L110", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_readme_app_do_macmagazine_para_ios", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_readme_bug_reporting_e_feature_requests", "relation": "contains", "confidence": "EXTRACTED", "source_file": "README.md", "source_location": "L118", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_readme_app_do_macmagazine_para_ios", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_readme_documenta\u00e7\u00e3o_adicional", "relation": "contains", "confidence": "EXTRACTED", "source_file": "README.md", "source_location": "L124", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_readme_md", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_support_firebase_md", "relation": "references", "confidence": "EXTRACTED", "source_file": "README.md", "source_location": "L129", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_readme_md", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_readme_md", "relation": "references", "confidence": "EXTRACTED", "source_file": "README.md", "source_location": "L131", "weight": 1.0}], "input_tokens": 0, "output_tokens": 0} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.9.12/bd26f9177a55663a42084fe38ee6498842d4d28dcefb287aa9650236d6931fc8.json b/graphify-out/cache/ast/v0.9.12/bd26f9177a55663a42084fe38ee6498842d4d28dcefb287aa9650236d6931fc8.json new file mode 100644 index 00000000..8d010b8e --- /dev/null +++ b/graphify-out/cache/ast/v0.9.12/bd26f9177a55663a42084fe38ee6498842d4d28dcefb287aa9650236d6931fc8.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_testing_md", "label": "testing.md", "file_type": "document", "source_file": ".claude/rules/testing.md", "source_location": "L1"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_testing_testing_swift_testing", "label": "Testing \u2014 Swift Testing", "file_type": "document", "source_file": ".claude/rules/testing.md", "source_location": "L1"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_testing_where_tests_live", "label": "Where tests live", "file_type": "document", "source_file": ".claude/rules/testing.md", "source_location": "L5"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_testing_pattern", "label": "Pattern", "file_type": "document", "source_file": ".claude/rules/testing.md", "source_location": "L12"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_testing_rules", "label": "Rules", "file_type": "document", "source_file": ".claude/rules/testing.md", "source_location": "L27"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_testing_what_to_test", "label": "What to test", "file_type": "document", "source_file": ".claude/rules/testing.md", "source_location": "L36"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_testing_definition_of_tested", "label": "Definition of tested", "file_type": "document", "source_file": ".claude/rules/testing.md", "source_location": "L41"}], "edges": [{"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_testing_md", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_testing_testing_swift_testing", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/rules/testing.md", "source_location": "L1", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_testing_testing_swift_testing", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_testing_where_tests_live", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/rules/testing.md", "source_location": "L5", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_testing_testing_swift_testing", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_testing_pattern", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/rules/testing.md", "source_location": "L12", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_testing_testing_swift_testing", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_testing_rules", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/rules/testing.md", "source_location": "L27", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_testing_testing_swift_testing", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_testing_what_to_test", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/rules/testing.md", "source_location": "L36", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_testing_testing_swift_testing", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_testing_definition_of_tested", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/rules/testing.md", "source_location": "L41", "weight": 1.0}], "input_tokens": 0, "output_tokens": 0} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.9.12/c32a80557719d0b4c1a84f01a5b5491e40b36c0fef0ae6d87f0bfc9d0bb42561.json b/graphify-out/cache/ast/v0.9.12/c32a80557719d0b4c1a84f01a5b5491e40b36c0fef0ae6d87f0bfc9d0bb42561.json new file mode 100644 index 00000000..c0897b6c --- /dev/null +++ b/graphify-out/cache/ast/v0.9.12/c32a80557719d0b4c1a84f01a5b5491e40b36c0fef0ae6d87f0bfc9d0bb42561.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_cardaccessibilitymodifier_swift", "label": "CardAccessibilityModifier.swift", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardAccessibilityModifier.swift", "source_location": "L1"}, {"id": "swiftui", "label": "SwiftUI", "file_type": "code", "type": "module", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardAccessibilityModifier.swift", "source_location": "L1"}, {"id": "utilitylibrary", "label": "UtilityLibrary", "file_type": "code", "type": "module", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardAccessibilityModifier.swift", "source_location": "L2"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_cardaccessibilitymodifier_cardlabel", "label": "CardLabel", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardAccessibilityModifier.swift", "source_location": "L4", "_callable": true}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_cardaccessibilitymodifier_cardlabel_title", "label": "title", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardAccessibilityModifier.swift", "source_location": "L5"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_cardaccessibilitymodifier_cardlabel_date", "label": "date", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardAccessibilityModifier.swift", "source_location": "L6"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_cardaccessibilitymodifier_cardlabel_datewithtime", "label": "dateWithTime", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardAccessibilityModifier.swift", "source_location": "L7"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_cardaccessibilitymodifier_cardlabel_author", "label": "author", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardAccessibilityModifier.swift", "source_location": "L8"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_cardaccessibilitymodifier_cardlabel_duration", "label": "duration", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardAccessibilityModifier.swift", "source_location": "L9"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_cardaccessibilitymodifier_array", "label": "Array", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardAccessibilityModifier.swift", "source_location": "L12", "_callable": true}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_cardaccessibilitymodifier_array_maketext", "label": ".makeText()", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardAccessibilityModifier.swift", "source_location": "L13", "_callable": true}, {"id": "string", "label": "String", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardAccessibilityModifier.swift"}, {"id": "cardcontent", "label": "CardContent", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardAccessibilityModifier.swift"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_cardaccessibilitymodifier_cardbutton", "label": "CardButton", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardAccessibilityModifier.swift", "source_location": "L31", "_callable": true}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_cardaccessibilitymodifier_cardbutton_read", "label": "read", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardAccessibilityModifier.swift", "source_location": "L32"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_cardaccessibilitymodifier_cardbutton_share", "label": "share", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardAccessibilityModifier.swift", "source_location": "L33"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_cardaccessibilitymodifier_cardbutton_favorite", "label": "favorite", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardAccessibilityModifier.swift", "source_location": "L34"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_cardaccessibilitymodifier_array_makebuttons", "label": ".makeButtons()", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardAccessibilityModifier.swift", "source_location": "L38", "_callable": true}, {"id": "view", "label": "View", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardAccessibilityModifier.swift"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_cardaccessibilitymodifier_view", "label": "View", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardAccessibilityModifier.swift", "source_location": "L53", "_callable": true}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_cardaccessibilitymodifier_view_cardaccessibility", "label": ".cardAccessibility()", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardAccessibilityModifier.swift", "source_location": "L54", "_callable": true}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_cardaccessibilitymodifier_cardaccessibilitymodifier", "label": "CardAccessibilityModifier", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardAccessibilityModifier.swift", "source_location": "L69", "_callable": true}, {"id": "viewmodifier", "label": "ViewModifier", "file_type": "code", "source_file": "", "source_location": ""}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_cardaccessibilitymodifier_cardaccessibilitymodifier_body", "label": ".body()", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardAccessibilityModifier.swift", "source_location": "L75", "_callable": true}, {"id": "content", "label": "Content", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardAccessibilityModifier.swift"}], "edges": [{"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_cardaccessibilitymodifier_swift", "target": "swiftui", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardAccessibilityModifier.swift", "source_location": "L1", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_cardaccessibilitymodifier_swift", "target": "utilitylibrary", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardAccessibilityModifier.swift", "source_location": "L2", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_cardaccessibilitymodifier_swift", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_cardaccessibilitymodifier_cardlabel", "relation": "contains", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardAccessibilityModifier.swift", "source_location": "L4", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_cardaccessibilitymodifier_cardlabel", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_cardaccessibilitymodifier_cardlabel_title", "relation": "case_of", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardAccessibilityModifier.swift", "source_location": "L5", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_cardaccessibilitymodifier_cardlabel", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_cardaccessibilitymodifier_cardlabel_date", "relation": "case_of", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardAccessibilityModifier.swift", "source_location": "L6", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_cardaccessibilitymodifier_cardlabel", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_cardaccessibilitymodifier_cardlabel_datewithtime", "relation": "case_of", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardAccessibilityModifier.swift", "source_location": "L7", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_cardaccessibilitymodifier_cardlabel", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_cardaccessibilitymodifier_cardlabel_author", "relation": "case_of", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardAccessibilityModifier.swift", "source_location": "L8", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_cardaccessibilitymodifier_cardlabel", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_cardaccessibilitymodifier_cardlabel_duration", "relation": "case_of", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardAccessibilityModifier.swift", "source_location": "L9", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_cardaccessibilitymodifier_swift", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_cardaccessibilitymodifier_array", "relation": "contains", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardAccessibilityModifier.swift", "source_location": "L12", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_cardaccessibilitymodifier_array", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_cardaccessibilitymodifier_array_maketext", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardAccessibilityModifier.swift", "source_location": "L13", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_cardaccessibilitymodifier_array_maketext", "target": "string", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardAccessibilityModifier.swift", "source_location": "L13", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_cardaccessibilitymodifier_array_maketext", "target": "cardcontent", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardAccessibilityModifier.swift", "source_location": "L13", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_cardaccessibilitymodifier_array_maketext", "target": "string", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardAccessibilityModifier.swift", "source_location": "L13", "weight": 1.0, "context": "return_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_cardaccessibilitymodifier_swift", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_cardaccessibilitymodifier_cardbutton", "relation": "contains", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardAccessibilityModifier.swift", "source_location": "L31", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_cardaccessibilitymodifier_cardbutton", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_cardaccessibilitymodifier_cardbutton_read", "relation": "case_of", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardAccessibilityModifier.swift", "source_location": "L32", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_cardaccessibilitymodifier_cardbutton", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_cardaccessibilitymodifier_cardbutton_share", "relation": "case_of", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardAccessibilityModifier.swift", "source_location": "L33", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_cardaccessibilitymodifier_cardbutton", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_cardaccessibilitymodifier_cardbutton_favorite", "relation": "case_of", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardAccessibilityModifier.swift", "source_location": "L34", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_cardaccessibilitymodifier_swift", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_cardaccessibilitymodifier_array", "relation": "contains", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardAccessibilityModifier.swift", "source_location": "L37", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_cardaccessibilitymodifier_array", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_cardaccessibilitymodifier_array_makebuttons", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardAccessibilityModifier.swift", "source_location": "L38", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_cardaccessibilitymodifier_array_makebuttons", "target": "cardcontent", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardAccessibilityModifier.swift", "source_location": "L38", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_cardaccessibilitymodifier_array_makebuttons", "target": "view", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardAccessibilityModifier.swift", "source_location": "L38", "weight": 1.0, "context": "return_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_cardaccessibilitymodifier_swift", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_cardaccessibilitymodifier_view", "relation": "contains", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardAccessibilityModifier.swift", "source_location": "L53", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_cardaccessibilitymodifier_view", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_cardaccessibilitymodifier_view_cardaccessibility", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardAccessibilityModifier.swift", "source_location": "L54", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_cardaccessibilitymodifier_view_cardaccessibility", "target": "cardcontent", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardAccessibilityModifier.swift", "source_location": "L54", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_cardaccessibilitymodifier_view_cardaccessibility", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_cardaccessibilitymodifier_cardlabel", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardAccessibilityModifier.swift", "source_location": "L54", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_cardaccessibilitymodifier_view_cardaccessibility", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_cardaccessibilitymodifier_cardbutton", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardAccessibilityModifier.swift", "source_location": "L54", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_cardaccessibilitymodifier_view_cardaccessibility", "target": "string", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardAccessibilityModifier.swift", "source_location": "L54", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_cardaccessibilitymodifier_view_cardaccessibility", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_cardaccessibilitymodifier_view", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardAccessibilityModifier.swift", "source_location": "L54", "weight": 1.0, "context": "return_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_cardaccessibilitymodifier_swift", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_cardaccessibilitymodifier_cardaccessibilitymodifier", "relation": "contains", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardAccessibilityModifier.swift", "source_location": "L69", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_cardaccessibilitymodifier_cardaccessibilitymodifier", "target": "viewmodifier", "relation": "implements", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardAccessibilityModifier.swift", "source_location": "L69", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_cardaccessibilitymodifier_cardaccessibilitymodifier", "target": "cardcontent", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardAccessibilityModifier.swift", "source_location": "L70", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_cardaccessibilitymodifier_cardaccessibilitymodifier", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_cardaccessibilitymodifier_cardlabel", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardAccessibilityModifier.swift", "source_location": "L71", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_cardaccessibilitymodifier_cardaccessibilitymodifier", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_cardaccessibilitymodifier_cardbutton", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardAccessibilityModifier.swift", "source_location": "L72", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_cardaccessibilitymodifier_cardaccessibilitymodifier", "target": "string", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardAccessibilityModifier.swift", "source_location": "L73", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_cardaccessibilitymodifier_cardaccessibilitymodifier", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_cardaccessibilitymodifier_cardaccessibilitymodifier_body", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardAccessibilityModifier.swift", "source_location": "L75", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_cardaccessibilitymodifier_cardaccessibilitymodifier_body", "target": "content", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardAccessibilityModifier.swift", "source_location": "L75", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_cardaccessibilitymodifier_cardaccessibilitymodifier_body", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_cardaccessibilitymodifier_view", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardAccessibilityModifier.swift", "source_location": "L75", "weight": 1.0, "context": "return_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_cardaccessibilitymodifier_view_cardaccessibility", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_cardaccessibilitymodifier_cardaccessibilitymodifier", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardAccessibilityModifier.swift", "source_location": "L60", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_cardaccessibilitymodifier_cardaccessibilitymodifier_body", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_cardaccessibilitymodifier_array_maketext", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardAccessibilityModifier.swift", "source_location": "L78", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_cardaccessibilitymodifier_cardaccessibilitymodifier_body", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_cardaccessibilitymodifier_array_makebuttons", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardAccessibilityModifier.swift", "source_location": "L82", "weight": 1.0}], "raw_calls": [{"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_cardaccessibilitymodifier_array_maketext", "callee": "forEach", "is_member_call": true, "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardAccessibilityModifier.swift", "source_location": "L15", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_cardaccessibilitymodifier_array_maketext", "callee": "append", "is_member_call": true, "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardAccessibilityModifier.swift", "source_location": "L17", "receiver": "text"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_cardaccessibilitymodifier_array_maketext", "callee": "append", "is_member_call": true, "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardAccessibilityModifier.swift", "source_location": "L18", "receiver": "text"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_cardaccessibilitymodifier_array_maketext", "callee": "toTimeAgoDisplay", "is_member_call": true, "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardAccessibilityModifier.swift", "source_location": "L18", "receiver": "data"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_cardaccessibilitymodifier_array_maketext", "callee": "append", "is_member_call": true, "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardAccessibilityModifier.swift", "source_location": "L19", "receiver": "text"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_cardaccessibilitymodifier_array_maketext", "callee": "toTimeAgoDisplay", "is_member_call": true, "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardAccessibilityModifier.swift", "source_location": "L19", "receiver": "data"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_cardaccessibilitymodifier_array_maketext", "callee": "append", "is_member_call": true, "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardAccessibilityModifier.swift", "source_location": "L22", "receiver": "text"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_cardaccessibilitymodifier_array_maketext", "callee": "append", "is_member_call": true, "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardAccessibilityModifier.swift", "source_location": "L24", "receiver": "text"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_cardaccessibilitymodifier_array_maketext", "callee": "joined", "is_member_call": true, "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardAccessibilityModifier.swift", "source_location": "L27", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_cardaccessibilitymodifier_array_makebuttons", "callee": "ForEach", "is_member_call": false, "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardAccessibilityModifier.swift", "source_location": "L40", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_cardaccessibilitymodifier_array_makebuttons", "callee": "ReadButton", "is_member_call": false, "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardAccessibilityModifier.swift", "source_location": "L43", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_cardaccessibilitymodifier_array_makebuttons", "callee": "FavoriteButton", "is_member_call": false, "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardAccessibilityModifier.swift", "source_location": "L45", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_cardaccessibilitymodifier_array_makebuttons", "callee": "ShareButton", "is_member_call": false, "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardAccessibilityModifier.swift", "source_location": "L47", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_cardaccessibilitymodifier_view_cardaccessibility", "callee": "modifier", "is_member_call": false, "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardAccessibilityModifier.swift", "source_location": "L60", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_cardaccessibilitymodifier_cardaccessibilitymodifier_body", "callee": "accessibilityActions", "is_member_call": true, "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardAccessibilityModifier.swift", "source_location": "L76", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_cardaccessibilitymodifier_cardaccessibilitymodifier_body", "callee": "accessibilityAddTraits", "is_member_call": true, "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardAccessibilityModifier.swift", "source_location": "L76", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_cardaccessibilitymodifier_cardaccessibilitymodifier_body", "callee": "accessibilityHint", "is_member_call": true, "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardAccessibilityModifier.swift", "source_location": "L76", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_cardaccessibilitymodifier_cardaccessibilitymodifier_body", "callee": "accessibilityLabel", "is_member_call": true, "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardAccessibilityModifier.swift", "source_location": "L76", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_cardaccessibilitymodifier_cardaccessibilitymodifier_body", "callee": "accessibilityElement", "is_member_call": true, "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardAccessibilityModifier.swift", "source_location": "L76", "receiver": "content"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_cardaccessibilitymodifier_cardaccessibilitymodifier_body", "callee": "Text", "is_member_call": false, "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardAccessibilityModifier.swift", "source_location": "L78", "receiver": null}], "swift_extensions": [{"nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_cardaccessibilitymodifier_array", "label": "Array"}, {"nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_cardaccessibilitymodifier_array", "label": "Array"}, {"nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_extensions_cardaccessibilitymodifier_view", "label": "View"}], "swift_type_table": {"path": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardAccessibilityModifier.swift", "table": {"title": "String", "data": "CardContent", "labels": "CardLabel", "buttons": "CardButton", "hint": "String", "content": "Content"}}} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.9.12/c9b28f960610c81dcd57578426c0e320cbf199c48acc5b2b7bd33eadb17031a8.json b/graphify-out/cache/ast/v0.9.12/c9b28f960610c81dcd57578426c0e320cbf199c48acc5b2b7bd33eadb17031a8.json new file mode 100644 index 00000000..f1804505 --- /dev/null +++ b/graphify-out/cache/ast/v0.9.12/c9b28f960610c81dcd57578426c0e320cbf199c48acc5b2b7bd33eadb17031a8.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_podcastlibrary_sources_podcast_views_card_adaptivepodcastcardview_swift", "label": "AdaptivePodcastCardView.swift", "file_type": "code", "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Card/AdaptivePodcastCardView.swift", "source_location": "L1"}, {"id": "feedlibrary", "label": "FeedLibrary", "file_type": "code", "type": "module", "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Card/AdaptivePodcastCardView.swift", "source_location": "L1"}, {"id": "macmagazinelibrary", "label": "MacMagazineLibrary", "file_type": "code", "type": "module", "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Card/AdaptivePodcastCardView.swift", "source_location": "L2"}, {"id": "macmagazineuilibrary", "label": "MacMagazineUILibrary", "file_type": "code", "type": "module", "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Card/AdaptivePodcastCardView.swift", "source_location": "L3"}, {"id": "swiftui", "label": "SwiftUI", "file_type": "code", "type": "module", "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Card/AdaptivePodcastCardView.swift", "source_location": "L4"}, {"id": "uicomponentslibrary", "label": "UIComponentsLibrary", "file_type": "code", "type": "module", "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Card/AdaptivePodcastCardView.swift", "source_location": "L5"}, {"id": "utilitylibrary", "label": "UtilityLibrary", "file_type": "code", "type": "module", "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Card/AdaptivePodcastCardView.swift", "source_location": "L6"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_podcastlibrary_sources_podcast_views_card_adaptivepodcastcardview_adaptivepodcastcardview", "label": "AdaptivePodcastCardView", "file_type": "code", "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Card/AdaptivePodcastCardView.swift", "source_location": "L8", "_callable": true}, {"id": "view", "label": "View", "file_type": "code", "source_file": "", "source_location": ""}, {"id": "cardcontent", "label": "CardContent", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Card/AdaptivePodcastCardView.swift"}, {"id": "void", "label": "Void", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Card/AdaptivePodcastCardView.swift"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_podcastlibrary_sources_podcast_views_card_adaptivepodcastcardview_adaptivepodcastcardview_init", "label": ".init()", "file_type": "code", "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Card/AdaptivePodcastCardView.swift", "source_location": "L13", "_callable": true}], "edges": [{"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_podcastlibrary_sources_podcast_views_card_adaptivepodcastcardview_swift", "target": "feedlibrary", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Card/AdaptivePodcastCardView.swift", "source_location": "L1", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_podcastlibrary_sources_podcast_views_card_adaptivepodcastcardview_swift", "target": "macmagazinelibrary", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Card/AdaptivePodcastCardView.swift", "source_location": "L2", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_podcastlibrary_sources_podcast_views_card_adaptivepodcastcardview_swift", "target": "macmagazineuilibrary", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Card/AdaptivePodcastCardView.swift", "source_location": "L3", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_podcastlibrary_sources_podcast_views_card_adaptivepodcastcardview_swift", "target": "swiftui", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Card/AdaptivePodcastCardView.swift", "source_location": "L4", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_podcastlibrary_sources_podcast_views_card_adaptivepodcastcardview_swift", "target": "uicomponentslibrary", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Card/AdaptivePodcastCardView.swift", "source_location": "L5", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_podcastlibrary_sources_podcast_views_card_adaptivepodcastcardview_swift", "target": "utilitylibrary", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Card/AdaptivePodcastCardView.swift", "source_location": "L6", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_podcastlibrary_sources_podcast_views_card_adaptivepodcastcardview_swift", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_podcastlibrary_sources_podcast_views_card_adaptivepodcastcardview_adaptivepodcastcardview", "relation": "contains", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Card/AdaptivePodcastCardView.swift", "source_location": "L8", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_podcastlibrary_sources_podcast_views_card_adaptivepodcastcardview_adaptivepodcastcardview", "target": "view", "relation": "implements", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Card/AdaptivePodcastCardView.swift", "source_location": "L8", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_podcastlibrary_sources_podcast_views_card_adaptivepodcastcardview_adaptivepodcastcardview", "target": "cardcontent", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Card/AdaptivePodcastCardView.swift", "source_location": "L10", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_podcastlibrary_sources_podcast_views_card_adaptivepodcastcardview_adaptivepodcastcardview", "target": "void", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Card/AdaptivePodcastCardView.swift", "source_location": "L11", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_podcastlibrary_sources_podcast_views_card_adaptivepodcastcardview_adaptivepodcastcardview", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_podcastlibrary_sources_podcast_views_card_adaptivepodcastcardview_adaptivepodcastcardview_init", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Card/AdaptivePodcastCardView.swift", "source_location": "L13", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_podcastlibrary_sources_podcast_views_card_adaptivepodcastcardview_adaptivepodcastcardview_init", "target": "cardcontent", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Card/AdaptivePodcastCardView.swift", "source_location": "L13", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_podcastlibrary_sources_podcast_views_card_adaptivepodcastcardview_adaptivepodcastcardview_init", "target": "void", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Card/AdaptivePodcastCardView.swift", "source_location": "L13", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_podcastlibrary_sources_podcast_views_card_adaptivepodcastcardview_adaptivepodcastcardview", "target": "view", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Card/AdaptivePodcastCardView.swift", "source_location": "L18", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_podcastlibrary_sources_podcast_views_card_adaptivepodcastcardview_adaptivepodcastcardview", "target": "view", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Card/AdaptivePodcastCardView.swift", "source_location": "L28", "weight": 1.0, "context": "field"}], "raw_calls": [], "swift_type_table": {"path": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Card/AdaptivePodcastCardView.swift", "table": {"podcast": "CardContent", "onPlay": "Void", "body": "View", "content": "View"}}} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.9.12/cc3cfe9a9f911565282ec33b687a349915d9013bee9315f9a79f0e876c89daac.json b/graphify-out/cache/ast/v0.9.12/cc3cfe9a9f911565282ec33b687a349915d9013bee9315f9a79f0e876c89daac.json new file mode 100644 index 00000000..b63cffca --- /dev/null +++ b/graphify-out/cache/ast/v0.9.12/cc3cfe9a9f911565282ec33b687a349915d9013bee9315f9a79f0e876c89daac.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardstyle_swift", "label": "CardStyle.swift", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Model/CardStyle.swift", "source_location": "L1"}, {"id": "foundation", "label": "Foundation", "file_type": "code", "type": "module", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Model/CardStyle.swift", "source_location": "L1"}, {"id": "macmagazinelibrary", "label": "MacMagazineLibrary", "file_type": "code", "type": "module", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Model/CardStyle.swift", "source_location": "L2"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardstyle_cardstyle", "label": "CardStyle", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Model/CardStyle.swift", "source_location": "L4", "_callable": true}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardstyle_cardstyle_header", "label": "header", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Model/CardStyle.swift", "source_location": "L5"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardstyle_cardstyle_leadingimage", "label": "leadingImage", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Model/CardStyle.swift", "source_location": "L6"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardstyle_cardstyle_highlight", "label": "highlight", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Model/CardStyle.swift", "source_location": "L7"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardstyle_cardstyle_glass", "label": "glass", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Model/CardStyle.swift", "source_location": "L8"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardstyle_newscategory", "label": "NewsCategory", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Model/CardStyle.swift", "source_location": "L11", "_callable": true}], "edges": [{"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardstyle_swift", "target": "foundation", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Model/CardStyle.swift", "source_location": "L1", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardstyle_swift", "target": "macmagazinelibrary", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Model/CardStyle.swift", "source_location": "L2", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardstyle_swift", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardstyle_cardstyle", "relation": "contains", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Model/CardStyle.swift", "source_location": "L4", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardstyle_cardstyle", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardstyle_cardstyle_header", "relation": "case_of", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Model/CardStyle.swift", "source_location": "L5", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardstyle_cardstyle", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardstyle_cardstyle_leadingimage", "relation": "case_of", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Model/CardStyle.swift", "source_location": "L6", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardstyle_cardstyle", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardstyle_cardstyle_highlight", "relation": "case_of", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Model/CardStyle.swift", "source_location": "L7", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardstyle_cardstyle", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardstyle_cardstyle_glass", "relation": "case_of", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Model/CardStyle.swift", "source_location": "L8", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardstyle_swift", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardstyle_newscategory", "relation": "contains", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Model/CardStyle.swift", "source_location": "L11", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardstyle_newscategory", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardstyle_cardstyle", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Model/CardStyle.swift", "source_location": "L12", "weight": 1.0, "context": "field"}], "raw_calls": [], "swift_extensions": [{"nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_model_cardstyle_newscategory", "label": "NewsCategory"}], "swift_type_table": {"path": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Model/CardStyle.swift", "table": {"style": "CardStyle"}}} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.9.12/cfba4faddc37f0e92c4bb08c8ec3f33deb8139805b2763eb83cded3c76ec956c.json b/graphify-out/cache/ast/v0.9.12/cfba4faddc37f0e92c4bb08c8ec3f33deb8139805b2763eb83cded3c76ec956c.json new file mode 100644 index 00000000..c65a3fee --- /dev/null +++ b/graphify-out/cache/ast/v0.9.12/cfba4faddc37f0e92c4bb08c8ec3f33deb8139805b2763eb83cded3c76ec956c.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_anti_hallucination_md", "label": "anti-hallucination.md", "file_type": "document", "source_file": ".claude/rules/anti-hallucination.md", "source_location": "L1"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_anti_hallucination_anti_hallucination_pattern_fidelity_contract", "label": "Anti-hallucination & pattern-fidelity contract", "file_type": "document", "source_file": ".claude/rules/anti-hallucination.md", "source_location": "L1"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_anti_hallucination_1_never_invent_apis_or_symbols", "label": "1. Never invent APIs or symbols", "file_type": "document", "source_file": ".claude/rules/anti-hallucination.md", "source_location": "L7"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_anti_hallucination_2_mirror_the_project_s_patterns_don_t_freelance", "label": "2. Mirror the project's patterns \u2014 don't freelance", "file_type": "document", "source_file": ".claude/rules/anti-hallucination.md", "source_location": "L16"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_anti_hallucination_3_cite_where_you_act", "label": "3. Cite where you act", "file_type": "document", "source_file": ".claude/rules/anti-hallucination.md", "source_location": "L24"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_anti_hallucination_4_never_fabricate_results", "label": "4. Never fabricate results", "file_type": "document", "source_file": ".claude/rules/anti-hallucination.md", "source_location": "L29"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_anti_hallucination_5_prefer_i_don_t_know_over_a_plausible_guess", "label": "5. Prefer \"I don't know\" over a plausible guess", "file_type": "document", "source_file": ".claude/rules/anti-hallucination.md", "source_location": "L36"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_anti_hallucination_6_stay_in_scope", "label": "6. Stay in scope", "file_type": "document", "source_file": ".claude/rules/anti-hallucination.md", "source_location": "L42"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_anti_hallucination_7_self_check_before_declaring_done", "label": "7. Self-check before declaring done", "file_type": "document", "source_file": ".claude/rules/anti-hallucination.md", "source_location": "L48"}], "edges": [{"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_anti_hallucination_md", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_anti_hallucination_anti_hallucination_pattern_fidelity_contract", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/rules/anti-hallucination.md", "source_location": "L1", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_anti_hallucination_anti_hallucination_pattern_fidelity_contract", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_anti_hallucination_1_never_invent_apis_or_symbols", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/rules/anti-hallucination.md", "source_location": "L7", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_anti_hallucination_anti_hallucination_pattern_fidelity_contract", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_anti_hallucination_2_mirror_the_project_s_patterns_don_t_freelance", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/rules/anti-hallucination.md", "source_location": "L16", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_anti_hallucination_anti_hallucination_pattern_fidelity_contract", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_anti_hallucination_3_cite_where_you_act", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/rules/anti-hallucination.md", "source_location": "L24", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_anti_hallucination_anti_hallucination_pattern_fidelity_contract", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_anti_hallucination_4_never_fabricate_results", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/rules/anti-hallucination.md", "source_location": "L29", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_anti_hallucination_anti_hallucination_pattern_fidelity_contract", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_anti_hallucination_5_prefer_i_don_t_know_over_a_plausible_guess", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/rules/anti-hallucination.md", "source_location": "L36", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_anti_hallucination_anti_hallucination_pattern_fidelity_contract", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_anti_hallucination_6_stay_in_scope", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/rules/anti-hallucination.md", "source_location": "L42", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_anti_hallucination_anti_hallucination_pattern_fidelity_contract", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_anti_hallucination_7_self_check_before_declaring_done", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/rules/anti-hallucination.md", "source_location": "L48", "weight": 1.0}], "input_tokens": 0, "output_tokens": 0} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.9.12/d4d80245bb06086ae5c8478adf2de4b13c52becf1ad3fa080083660b6540c596.json b/graphify-out/cache/ast/v0.9.12/d4d80245bb06086ae5c8478adf2de4b13c52becf1ad3fa080083660b6540c596.json new file mode 100644 index 00000000..44199067 --- /dev/null +++ b/graphify-out/cache/ast/v0.9.12/d4d80245bb06086ae5c8478adf2de4b13c52becf1ad3fa080083660b6540c596.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_swift", "label": "MMWebView.swift", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift", "source_location": "L1"}, {"id": "foundation", "label": "Foundation", "file_type": "code", "type": "module", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift", "source_location": "L1"}, {"id": "macmagazinelibrary", "label": "MacMagazineLibrary", "file_type": "code", "type": "module", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift", "source_location": "L2"}, {"id": "swiftui", "label": "SwiftUI", "file_type": "code", "type": "module", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift", "source_location": "L3"}, {"id": "webkit", "label": "WebKit", "file_type": "code", "type": "module", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift", "source_location": "L4"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview", "label": "MMWebView", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift", "source_location": "L6", "_callable": true}, {"id": "view", "label": "View", "file_type": "code", "source_file": "", "source_location": ""}, {"id": "url", "label": "URL", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift"}, {"id": "webpage", "label": "WebPage", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift"}, {"id": "colorscheme", "label": "ColorScheme", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift"}, {"id": "string", "label": "String", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift"}, {"id": "void", "label": "Void", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview_init", "label": ".init()", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift", "source_location": "L25", "_callable": true}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview_applycolorscheme", "label": ".applyColorScheme()", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift", "source_location": "L103", "_callable": true}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview_makeloadaction", "label": ".makeLoadAction()", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift", "source_location": "L109", "_callable": true}, {"id": "mainactor", "label": "MainActor", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift"}, {"id": "async", "label": "async", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview_urlloadaction", "label": ".urlLoadAction()", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift", "source_location": "L117", "_callable": true}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview_makepage", "label": ".makePage()", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift", "source_location": "L129", "_callable": true}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview_makeconfiguration", "label": ".makeConfiguration()", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift", "source_location": "L168", "_callable": true}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview_makecookies", "label": ".makeCookies()", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift", "source_location": "L182", "_callable": true}, {"id": "httpcookie", "label": "HTTPCookie", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview_updatecookies", "label": ".updateCookies()", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift", "source_location": "L189", "_callable": true}], "edges": [{"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_swift", "target": "foundation", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift", "source_location": "L1", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_swift", "target": "macmagazinelibrary", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift", "source_location": "L2", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_swift", "target": "swiftui", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift", "source_location": "L3", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_swift", "target": "webkit", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift", "source_location": "L4", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_swift", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview", "relation": "contains", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift", "source_location": "L6", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview", "target": "view", "relation": "implements", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift", "source_location": "L6", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview", "target": "url", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift", "source_location": "L12", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview", "target": "url", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift", "source_location": "L13", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview", "target": "webpage", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift", "source_location": "L14", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview", "target": "colorscheme", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift", "source_location": "L19", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview", "target": "string", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift", "source_location": "L21", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview", "target": "string", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift", "source_location": "L22", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview", "target": "void", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift", "source_location": "L23", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview_init", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift", "source_location": "L25", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview_init", "target": "string", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift", "source_location": "L25", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview_init", "target": "string", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift", "source_location": "L25", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview_init", "target": "void", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift", "source_location": "L25", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview", "target": "view", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift", "source_location": "L35", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_swift", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview", "relation": "contains", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift", "source_location": "L102", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview_applycolorscheme", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift", "source_location": "L103", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview_applycolorscheme", "target": "colorscheme", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift", "source_location": "L103", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview_makeloadaction", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift", "source_location": "L109", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview_makeloadaction", "target": "mainactor", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift", "source_location": "L109", "weight": 1.0, "context": "return_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview_makeloadaction", "target": "async", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift", "source_location": "L109", "weight": 1.0, "context": "return_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview_makeloadaction", "target": "void", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift", "source_location": "L109", "weight": 1.0, "context": "return_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview_urlloadaction", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift", "source_location": "L117", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview_urlloadaction", "target": "mainactor", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift", "source_location": "L117", "weight": 1.0, "context": "return_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview_makepage", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift", "source_location": "L129", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview_makepage", "target": "webpage", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift", "source_location": "L129", "weight": 1.0, "context": "return_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview_makeconfiguration", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift", "source_location": "L168", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview_makeconfiguration", "target": "webpage", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift", "source_location": "L168", "weight": 1.0, "context": "return_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview_makecookies", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift", "source_location": "L182", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview_makecookies", "target": "colorscheme", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift", "source_location": "L182", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview_makecookies", "target": "httpcookie", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift", "source_location": "L182", "weight": 1.0, "context": "return_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview_updatecookies", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift", "source_location": "L189", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview_updatecookies", "target": "colorscheme", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift", "source_location": "L189", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview_makeloadaction", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview_urlloadaction", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift", "source_location": "L110", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview_makepage", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview_makeconfiguration", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift", "source_location": "L137", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview_makepage", "target": "webpage", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift", "source_location": "L150", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview_makepage", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview_makecookies", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift", "source_location": "L158", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview_updatecookies", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview_makecookies", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift", "source_location": "L190", "weight": 1.0}], "raw_calls": [{"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview_applycolorscheme", "callee": "reload", "is_member_call": true, "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift", "source_location": "L106", "receiver": "page"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview_makeloadaction", "callee": "hasPage", "is_member_call": true, "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift", "source_location": "L111", "receiver": "WebPageCache"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview_urlloadaction", "callee": "load", "is_member_call": true, "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift", "source_location": "L120", "receiver": "page"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview_urlloadaction", "callee": "URLRequest", "is_member_call": false, "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift", "source_location": "L120", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview_urlloadaction", "callee": "sleep", "is_member_call": true, "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift", "source_location": "L122", "receiver": "Task"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview_makepage", "callee": "page", "is_member_call": true, "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift", "source_location": "L141", "receiver": "WebPageCache"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview_makepage", "callee": "galleryHandler", "is_member_call": true, "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift", "source_location": "L147", "receiver": "WebPageCache"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview_makepage", "callee": "setCookie", "is_member_call": true, "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift", "source_location": "L161", "receiver": "cookieStore"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview_makeconfiguration", "callee": "Configuration", "is_member_call": true, "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift", "source_location": "L169", "receiver": "WebPage"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview_makeconfiguration", "callee": "addUserScript", "is_member_call": true, "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift", "source_location": "L172", "receiver": "contentController"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview_makeconfiguration", "callee": "addUserScript", "is_member_call": true, "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift", "source_location": "L173", "receiver": "contentController"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview_makeconfiguration", "callee": "addUserScript", "is_member_call": true, "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift", "source_location": "L174", "receiver": "contentController"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview_makeconfiguration", "callee": "addUserScript", "is_member_call": true, "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift", "source_location": "L175", "receiver": "contentController"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview_makeconfiguration", "callee": "addUserScript", "is_member_call": true, "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift", "source_location": "L176", "receiver": "contentController"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview_makeconfiguration", "callee": "add", "is_member_call": true, "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift", "source_location": "L177", "receiver": "contentController"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview_makecookies", "callee": "isDarkMode", "is_member_call": true, "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift", "source_location": "L184", "receiver": "Utils"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview_updatecookies", "callee": "default", "is_member_call": true, "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift", "source_location": "L191", "receiver": "WKWebsiteDataStore"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview_updatecookies", "callee": "setCookie", "is_member_call": true, "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift", "source_location": "L193", "receiver": "cookieStore"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview", "callee": "MMNavigationDecider", "is_member_call": false, "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift", "source_location": "L15", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview", "callee": "GalleryStateMessageHandler", "is_member_call": false, "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift", "source_location": "L16", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview", "callee": "UUID", "is_member_call": false, "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift", "source_location": "L18", "receiver": null}], "swift_extensions": [{"nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_mmwebview_mmwebview", "label": "MMWebView"}], "swift_type_table": {"path": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift", "table": {"internalLinkURL": "URL", "walletPassURL": "URL", "page": "WebPage", "navigationDecider": "MMNavigationDecider", "galleryStateHandler": "GalleryStateMessageHandler", "reloadID": "UUID", "appliedColorScheme": "ColorScheme", "url": "String", "cacheKey": "String", "dismissAction": "Void", "body": "View", "scheme": "ColorScheme", "colorScheme": "ColorScheme"}}} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.9.12/d5b4d494dca744bc51b040a4f1145b3eba509ab606d2be931473fd5854a646cb.json b/graphify-out/cache/ast/v0.9.12/d5b4d494dca744bc51b040a4f1145b3eba509ab606d2be931473fd5854a646cb.json new file mode 100644 index 00000000..c1037327 --- /dev/null +++ b/graphify-out/cache/ast/v0.9.12/d5b4d494dca744bc51b040a4f1145b3eba509ab606d2be931473fd5854a646cb.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_settingslibrary_sources_settingslibrary_views_settingsview_swift", "label": "SettingsView.swift", "file_type": "code", "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/SettingsView.swift", "source_location": "L1"}, {"id": "analyticslibrary", "label": "AnalyticsLibrary", "file_type": "code", "type": "module", "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/SettingsView.swift", "source_location": "L1"}, {"id": "macmagazinelibrary", "label": "MacMagazineLibrary", "file_type": "code", "type": "module", "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/SettingsView.swift", "source_location": "L2"}, {"id": "macmagazineuilibrary", "label": "MacMagazineUILibrary", "file_type": "code", "type": "module", "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/SettingsView.swift", "source_location": "L3"}, {"id": "swiftui", "label": "SwiftUI", "file_type": "code", "type": "module", "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/SettingsView.swift", "source_location": "L4"}, {"id": "webkit", "label": "WebKit", "file_type": "code", "type": "module", "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/SettingsView.swift", "source_location": "L5"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_settingslibrary_sources_settingslibrary_views_settingsview_settingsview", "label": "SettingsView", "file_type": "code", "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/SettingsView.swift", "source_location": "L7", "_callable": true}, {"id": "view", "label": "View", "file_type": "code", "source_file": "", "source_location": ""}, {"id": "analyticsmanager", "label": "AnalyticsManager", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/SettingsView.swift"}, {"id": "themecolor", "label": "ThemeColor", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/SettingsView.swift"}, {"id": "url", "label": "URL", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/SettingsView.swift"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_settingslibrary_sources_settingslibrary_views_settingsview_settingsview_init", "label": ".init()", "file_type": "code", "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/SettingsView.swift", "source_location": "L17", "_callable": true}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_settingslibrary_sources_settingslibrary_views_settingsview_contentsheet", "label": "ContentSheet", "file_type": "code", "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/SettingsView.swift", "source_location": "L114", "_callable": true}, {"id": "webpage", "label": "WebPage", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/SettingsView.swift"}, {"id": "string", "label": "String", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/SettingsView.swift"}, {"id": "void", "label": "Void", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/SettingsView.swift"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_settingslibrary_sources_settingslibrary_views_settingsview_patronloginsheet", "label": "PatronLoginSheet", "file_type": "code", "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/SettingsView.swift", "source_location": "L162", "_callable": true}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_settingslibrary_sources_settingslibrary_views_settingsview_patronloginsheet_makeloginpage", "label": ".makeLoginPage()", "file_type": "code", "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/SettingsView.swift", "source_location": "L208", "_callable": true}, {"id": "storagelibrary", "label": "StorageLibrary", "file_type": "code", "type": "module", "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/SettingsView.swift", "source_location": "L218"}], "edges": [{"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_settingslibrary_sources_settingslibrary_views_settingsview_swift", "target": "analyticslibrary", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/SettingsView.swift", "source_location": "L1", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_settingslibrary_sources_settingslibrary_views_settingsview_swift", "target": "macmagazinelibrary", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/SettingsView.swift", "source_location": "L2", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_settingslibrary_sources_settingslibrary_views_settingsview_swift", "target": "macmagazineuilibrary", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/SettingsView.swift", "source_location": "L3", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_settingslibrary_sources_settingslibrary_views_settingsview_swift", "target": "swiftui", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/SettingsView.swift", "source_location": "L4", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_settingslibrary_sources_settingslibrary_views_settingsview_swift", "target": "webkit", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/SettingsView.swift", "source_location": "L5", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_settingslibrary_sources_settingslibrary_views_settingsview_swift", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_settingslibrary_sources_settingslibrary_views_settingsview_settingsview", "relation": "contains", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/SettingsView.swift", "source_location": "L7", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_settingslibrary_sources_settingslibrary_views_settingsview_settingsview", "target": "view", "relation": "implements", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/SettingsView.swift", "source_location": "L7", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_settingslibrary_sources_settingslibrary_views_settingsview_settingsview", "target": "analyticsmanager", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/SettingsView.swift", "source_location": "L8", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_settingslibrary_sources_settingslibrary_views_settingsview_settingsview", "target": "themecolor", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/SettingsView.swift", "source_location": "L9", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_settingslibrary_sources_settingslibrary_views_settingsview_settingsview", "target": "url", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/SettingsView.swift", "source_location": "L15", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_settingslibrary_sources_settingslibrary_views_settingsview_settingsview", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_settingslibrary_sources_settingslibrary_views_settingsview_settingsview_init", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/SettingsView.swift", "source_location": "L17", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_settingslibrary_sources_settingslibrary_views_settingsview_settingsview", "target": "view", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/SettingsView.swift", "source_location": "L19", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_settingslibrary_sources_settingslibrary_views_settingsview_swift", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_settingslibrary_sources_settingslibrary_views_settingsview_settingsview", "relation": "contains", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/SettingsView.swift", "source_location": "L44", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_settingslibrary_sources_settingslibrary_views_settingsview_settingsview", "target": "view", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/SettingsView.swift", "source_location": "L45", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_settingslibrary_sources_settingslibrary_views_settingsview_settingsview", "target": "view", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/SettingsView.swift", "source_location": "L68", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_settingslibrary_sources_settingslibrary_views_settingsview_settingsview", "target": "view", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/SettingsView.swift", "source_location": "L89", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_settingslibrary_sources_settingslibrary_views_settingsview_swift", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_settingslibrary_sources_settingslibrary_views_settingsview_contentsheet", "relation": "contains", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/SettingsView.swift", "source_location": "L114", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_settingslibrary_sources_settingslibrary_views_settingsview_contentsheet", "target": "view", "relation": "implements", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/SettingsView.swift", "source_location": "L114", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_settingslibrary_sources_settingslibrary_views_settingsview_contentsheet", "target": "webpage", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/SettingsView.swift", "source_location": "L116", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_settingslibrary_sources_settingslibrary_views_settingsview_contentsheet", "target": "string", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/SettingsView.swift", "source_location": "L118", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_settingslibrary_sources_settingslibrary_views_settingsview_contentsheet", "target": "string", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/SettingsView.swift", "source_location": "L119", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_settingslibrary_sources_settingslibrary_views_settingsview_contentsheet", "target": "void", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/SettingsView.swift", "source_location": "L120", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_settingslibrary_sources_settingslibrary_views_settingsview_contentsheet", "target": "analyticsmanager", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/SettingsView.swift", "source_location": "L121", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_settingslibrary_sources_settingslibrary_views_settingsview_contentsheet", "target": "view", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/SettingsView.swift", "source_location": "L123", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_settingslibrary_sources_settingslibrary_views_settingsview_swift", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_settingslibrary_sources_settingslibrary_views_settingsview_patronloginsheet", "relation": "contains", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/SettingsView.swift", "source_location": "L162", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_settingslibrary_sources_settingslibrary_views_settingsview_patronloginsheet", "target": "view", "relation": "implements", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/SettingsView.swift", "source_location": "L162", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_settingslibrary_sources_settingslibrary_views_settingsview_patronloginsheet", "target": "webpage", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/SettingsView.swift", "source_location": "L163", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_settingslibrary_sources_settingslibrary_views_settingsview_patronloginsheet", "target": "void", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/SettingsView.swift", "source_location": "L165", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_settingslibrary_sources_settingslibrary_views_settingsview_patronloginsheet", "target": "void", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/SettingsView.swift", "source_location": "L166", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_settingslibrary_sources_settingslibrary_views_settingsview_patronloginsheet", "target": "analyticsmanager", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/SettingsView.swift", "source_location": "L167", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_settingslibrary_sources_settingslibrary_views_settingsview_patronloginsheet", "target": "view", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/SettingsView.swift", "source_location": "L169", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_settingslibrary_sources_settingslibrary_views_settingsview_patronloginsheet", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_settingslibrary_sources_settingslibrary_views_settingsview_patronloginsheet_makeloginpage", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/SettingsView.swift", "source_location": "L208", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_settingslibrary_sources_settingslibrary_views_settingsview_patronloginsheet_makeloginpage", "target": "webpage", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/SettingsView.swift", "source_location": "L208", "weight": 1.0, "context": "return_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_settingslibrary_sources_settingslibrary_views_settingsview_swift", "target": "storagelibrary", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/SettingsView.swift", "source_location": "L218", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_settingslibrary_sources_settingslibrary_views_settingsview_patronloginsheet_makeloginpage", "target": "webpage", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/SettingsView.swift", "source_location": "L213", "weight": 1.0}], "raw_calls": [{"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_settingslibrary_sources_settingslibrary_views_settingsview_patronloginsheet_makeloginpage", "callee": "Configuration", "is_member_call": true, "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/SettingsView.swift", "source_location": "L209", "receiver": "WebPage"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_settingslibrary_sources_settingslibrary_views_settingsview_patronloginsheet_makeloginpage", "callee": "addUserScript", "is_member_call": true, "source_file": "MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/SettingsView.swift", "source_location": "L210", "receiver": "configuration"}], "swift_extensions": [{"nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_settingslibrary_sources_settingslibrary_views_settingsview_settingsview", "label": "SettingsView"}], "swift_type_table": {"path": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/SettingsView.swift", "table": {"analytics": "AnalyticsManager", "theme": "ThemeColor", "editMode": "EditMode", "urlToOpen": "URL", "body": "View", "settingsContent": "View", "posts": "View", "appearance": "View", "page": "WebPage", "url": "String", "title": "String", "onDismiss": "Void", "onLoginSuccess": "Void"}}} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.9.12/d8a7f233cb2cd57d16ae155b21a367b4f80a4055a942851258eea730d0fed325.json b/graphify-out/cache/ast/v0.9.12/d8a7f233cb2cd57d16ae155b21a367b4f80a4055a942851258eea730d0fed325.json new file mode 100644 index 00000000..b5ed8746 --- /dev/null +++ b/graphify-out/cache/ast/v0.9.12/d8a7f233cb2cd57d16ae155b21a367b4f80a4055a942851258eea730d0fed325.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_swift", "label": "StorageServiceTests.swift", "file_type": "code", "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L1"}, {"id": "feedlibrary", "label": "FeedLibrary", "file_type": "code", "type": "module", "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L1"}, {"id": "foundation", "label": "Foundation", "file_type": "code", "type": "module", "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L2"}, {"id": "macmagazinelibrary", "label": "MacMagazineLibrary", "file_type": "code", "type": "module", "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L3"}, {"id": "storagelibrary", "label": "StorageLibrary", "file_type": "code", "type": "module", "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L4"}, {"id": "testing", "label": "Testing", "file_type": "code", "type": "module", "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L5"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests", "label": "StorageServiceTests", "file_type": "code", "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L7", "_callable": true}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_saveinsertsnewfeeditem", "label": ".saveInsertsNewFeedItem()", "file_type": "code", "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L13", "_callable": true}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_saveupdatesexistingfeeditem", "label": ".saveUpdatesExistingFeedItem()", "file_type": "code", "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L40", "_callable": true}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_saveupdatesallfeedproperties", "label": ".saveUpdatesAllFeedProperties()", "file_type": "code", "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L73", "_callable": true}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savesarrayoffeeditems", "label": ".savesArrayOfFeedItems()", "file_type": "code", "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L107", "_callable": true}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savesemptyarrayoffeeditems", "label": ".savesEmptyArrayOfFeedItems()", "file_type": "code", "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L128", "_callable": true}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savesduplicatefeeditemsinarray", "label": ".savesDuplicateFeedItemsInArray()", "file_type": "code", "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L142", "_callable": true}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_saveinsertsnewpodcastitem", "label": ".saveInsertsNewPodcastItem()", "file_type": "code", "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L162", "_callable": true}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_saveupdatesexistingpodcastitem", "label": ".saveUpdatesExistingPodcastItem()", "file_type": "code", "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L192", "_callable": true}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_saveupdatesallpodcastproperties", "label": ".saveUpdatesAllPodcastProperties()", "file_type": "code", "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L222", "_callable": true}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savesarrayofpodcastitems", "label": ".savesArrayOfPodcastItems()", "file_type": "code", "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L260", "_callable": true}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savesemptyarrayofpodcastitems", "label": ".savesEmptyArrayOfPodcastItems()", "file_type": "code", "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L281", "_callable": true}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savesduplicatepodcastitemsinarray", "label": ".savesDuplicatePodcastItemsInArray()", "file_type": "code", "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L295", "_callable": true}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savesmultiplemodeltypes", "label": ".savesMultipleModelTypes()", "file_type": "code", "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L315", "_callable": true}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savepreservesfavoritestatusforfeed", "label": ".savePreservesFavoriteStatusForFeed()", "file_type": "code", "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L333", "_callable": true}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savepreservesreadstatusforfeed", "label": ".savePreservesReadStatusForFeed()", "file_type": "code", "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L347", "_callable": true}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savemergescategoriesforfeed", "label": ".saveMergesCategoriesForFeed()", "file_type": "code", "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L367", "_callable": true}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_groupedsaveaddscategorykey", "label": ".groupedSaveAddsCategoryKey()", "file_type": "code", "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L385", "_callable": true}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_groupedsaveremovesstalecategorykey", "label": ".groupedSaveRemovesStaleCategoryKey()", "file_type": "code", "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L396", "_callable": true}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_groupedsavepreservessiblingcategorykey", "label": ".groupedSavePreservesSiblingCategoryKey()", "file_type": "code", "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L421", "_callable": true}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_groupedsaveskipsreconciliationforemptyresult", "label": ".groupedSaveSkipsReconciliationForEmptyResult()", "file_type": "code", "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L443", "_callable": true}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_groupedsavepreserveskeyoutsidedatewindow", "label": ".groupedSavePreservesKeyOutsideDateWindow()", "file_type": "code", "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L460", "_callable": true}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_groupedsavedoesnotreconcilenewscategory", "label": ".groupedSaveDoesNotReconcileNewsCategory()", "file_type": "code", "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L482", "_callable": true}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savepreservesfavoritestatusforpodcast", "label": ".savePreservesFavoriteStatusForPodcast()", "file_type": "code", "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L503", "_callable": true}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savepreservesplaybackpositionforpodcast", "label": ".savePreservesPlaybackPositionForPodcast()", "file_type": "code", "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L517", "_callable": true}], "edges": [{"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_swift", "target": "feedlibrary", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L1", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_swift", "target": "foundation", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L2", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_swift", "target": "macmagazinelibrary", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L3", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_swift", "target": "storagelibrary", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L4", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_swift", "target": "testing", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L5", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_swift", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests", "relation": "contains", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L7", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_saveinsertsnewfeeditem", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L13", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_saveupdatesexistingfeeditem", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L40", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_saveupdatesallfeedproperties", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L73", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savesarrayoffeeditems", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L107", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savesemptyarrayoffeeditems", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L128", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savesduplicatefeeditemsinarray", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L142", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_saveinsertsnewpodcastitem", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L162", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_saveupdatesexistingpodcastitem", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L192", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_saveupdatesallpodcastproperties", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L222", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savesarrayofpodcastitems", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L260", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savesemptyarrayofpodcastitems", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L281", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savesduplicatepodcastitemsinarray", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L295", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savesmultiplemodeltypes", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L315", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savepreservesfavoritestatusforfeed", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L333", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savepreservesreadstatusforfeed", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L347", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savemergescategoriesforfeed", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L367", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_groupedsaveaddscategorykey", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L385", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_groupedsaveremovesstalecategorykey", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L396", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_groupedsavepreservessiblingcategorykey", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L421", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_groupedsaveskipsreconciliationforemptyresult", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L443", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_groupedsavepreserveskeyoutsidedatewindow", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L460", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_groupedsavedoesnotreconcilenewscategory", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L482", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savepreservesfavoritestatusforpodcast", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L503", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savepreservesplaybackpositionforpodcast", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L517", "weight": 1.0}], "raw_calls": [{"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_saveinsertsnewfeeditem", "callee": "Database", "is_member_call": false, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L16", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_saveinsertsnewfeeditem", "callee": "FeedDB", "is_member_call": false, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L17", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_saveinsertsnewfeeditem", "callee": "save", "is_member_call": true, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L30", "receiver": "storage"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_saveinsertsnewfeeditem", "callee": "fetch", "is_member_call": true, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L34", "receiver": "storage"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_saveupdatesexistingfeeditem", "callee": "Database", "is_member_call": false, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L43", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_saveupdatesexistingfeeditem", "callee": "FeedDB", "is_member_call": false, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L44", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_saveupdatesexistingfeeditem", "callee": "save", "is_member_call": true, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L52", "receiver": "storage"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_saveupdatesexistingfeeditem", "callee": "FeedDB", "is_member_call": false, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L54", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_saveupdatesexistingfeeditem", "callee": "save", "is_member_call": true, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L64", "receiver": "storage"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_saveupdatesexistingfeeditem", "callee": "fetch", "is_member_call": true, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L67", "receiver": "storage"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_saveupdatesallfeedproperties", "callee": "Database", "is_member_call": false, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L76", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_saveupdatesallfeedproperties", "callee": "FeedDB", "is_member_call": false, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L77", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_saveupdatesallfeedproperties", "callee": "save", "is_member_call": true, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L78", "receiver": "storage"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_saveupdatesallfeedproperties", "callee": "FeedDB", "is_member_call": false, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L81", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_saveupdatesallfeedproperties", "callee": "save", "is_member_call": true, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L94", "receiver": "storage"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_saveupdatesallfeedproperties", "callee": "fetch", "is_member_call": true, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L97", "receiver": "storage"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savesarrayoffeeditems", "callee": "Database", "is_member_call": false, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L110", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savesarrayoffeeditems", "callee": "FeedDB", "is_member_call": false, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L112", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savesarrayoffeeditems", "callee": "FeedDB", "is_member_call": false, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L113", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savesarrayoffeeditems", "callee": "FeedDB", "is_member_call": false, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L114", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savesarrayoffeeditems", "callee": "save", "is_member_call": true, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L118", "receiver": "storage"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savesarrayoffeeditems", "callee": "fetch", "is_member_call": true, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L121", "receiver": "storage"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savesarrayoffeeditems", "callee": "contains", "is_member_call": true, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L123", "receiver": "fetched"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savesarrayoffeeditems", "callee": "contains", "is_member_call": true, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L124", "receiver": "fetched"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savesarrayoffeeditems", "callee": "contains", "is_member_call": true, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L125", "receiver": "fetched"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savesemptyarrayoffeeditems", "callee": "Database", "is_member_call": false, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L131", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savesemptyarrayoffeeditems", "callee": "save", "is_member_call": true, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L135", "receiver": "storage"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savesemptyarrayoffeeditems", "callee": "fetch", "is_member_call": true, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L138", "receiver": "storage"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savesduplicatefeeditemsinarray", "callee": "Database", "is_member_call": false, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L145", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savesduplicatefeeditemsinarray", "callee": "FeedDB", "is_member_call": false, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L147", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savesduplicatefeeditemsinarray", "callee": "FeedDB", "is_member_call": false, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L148", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savesduplicatefeeditemsinarray", "callee": "save", "is_member_call": true, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L152", "receiver": "storage"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savesduplicatefeeditemsinarray", "callee": "fetch", "is_member_call": true, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L155", "receiver": "storage"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_saveinsertsnewpodcastitem", "callee": "Database", "is_member_call": false, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L165", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_saveinsertsnewpodcastitem", "callee": "PodcastDB", "is_member_call": false, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L166", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_saveinsertsnewpodcastitem", "callee": "save", "is_member_call": true, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L181", "receiver": "storage"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_saveinsertsnewpodcastitem", "callee": "fetch", "is_member_call": true, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L185", "receiver": "storage"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_saveupdatesexistingpodcastitem", "callee": "Database", "is_member_call": false, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L195", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_saveupdatesexistingpodcastitem", "callee": "PodcastDB", "is_member_call": false, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L196", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_saveupdatesexistingpodcastitem", "callee": "save", "is_member_call": true, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L202", "receiver": "storage"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_saveupdatesexistingpodcastitem", "callee": "PodcastDB", "is_member_call": false, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L204", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_saveupdatesexistingpodcastitem", "callee": "save", "is_member_call": true, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L212", "receiver": "storage"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_saveupdatesexistingpodcastitem", "callee": "fetch", "is_member_call": true, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L215", "receiver": "storage"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_saveupdatesallpodcastproperties", "callee": "Database", "is_member_call": false, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L225", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_saveupdatesallpodcastproperties", "callee": "PodcastDB", "is_member_call": false, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L226", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_saveupdatesallpodcastproperties", "callee": "save", "is_member_call": true, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L227", "receiver": "storage"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_saveupdatesallpodcastproperties", "callee": "PodcastDB", "is_member_call": false, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L230", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_saveupdatesallpodcastproperties", "callee": "save", "is_member_call": true, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L245", "receiver": "storage"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_saveupdatesallpodcastproperties", "callee": "fetch", "is_member_call": true, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L248", "receiver": "storage"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savesarrayofpodcastitems", "callee": "Database", "is_member_call": false, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L263", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savesarrayofpodcastitems", "callee": "PodcastDB", "is_member_call": false, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L265", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savesarrayofpodcastitems", "callee": "PodcastDB", "is_member_call": false, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L266", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savesarrayofpodcastitems", "callee": "PodcastDB", "is_member_call": false, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L267", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savesarrayofpodcastitems", "callee": "save", "is_member_call": true, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L271", "receiver": "storage"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savesarrayofpodcastitems", "callee": "fetch", "is_member_call": true, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L274", "receiver": "storage"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savesarrayofpodcastitems", "callee": "contains", "is_member_call": true, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L276", "receiver": "fetched"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savesarrayofpodcastitems", "callee": "contains", "is_member_call": true, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L277", "receiver": "fetched"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savesarrayofpodcastitems", "callee": "contains", "is_member_call": true, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L278", "receiver": "fetched"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savesemptyarrayofpodcastitems", "callee": "Database", "is_member_call": false, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L284", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savesemptyarrayofpodcastitems", "callee": "save", "is_member_call": true, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L288", "receiver": "storage"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savesemptyarrayofpodcastitems", "callee": "fetch", "is_member_call": true, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L291", "receiver": "storage"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savesduplicatepodcastitemsinarray", "callee": "Database", "is_member_call": false, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L298", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savesduplicatepodcastitemsinarray", "callee": "PodcastDB", "is_member_call": false, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L300", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savesduplicatepodcastitemsinarray", "callee": "PodcastDB", "is_member_call": false, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L301", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savesduplicatepodcastitemsinarray", "callee": "save", "is_member_call": true, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L305", "receiver": "storage"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savesduplicatepodcastitemsinarray", "callee": "fetch", "is_member_call": true, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L308", "receiver": "storage"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savesmultiplemodeltypes", "callee": "Database", "is_member_call": false, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L318", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savesmultiplemodeltypes", "callee": "FeedDB", "is_member_call": false, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L319", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savesmultiplemodeltypes", "callee": "PodcastDB", "is_member_call": false, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L320", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savesmultiplemodeltypes", "callee": "save", "is_member_call": true, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L323", "receiver": "storage"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savesmultiplemodeltypes", "callee": "save", "is_member_call": true, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L324", "receiver": "storage"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savesmultiplemodeltypes", "callee": "fetch", "is_member_call": true, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L327", "receiver": "storage"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savesmultiplemodeltypes", "callee": "fetch", "is_member_call": true, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L328", "receiver": "storage"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savepreservesfavoritestatusforfeed", "callee": "Database", "is_member_call": false, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L335", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savepreservesfavoritestatusforfeed", "callee": "FeedDB", "is_member_call": false, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L336", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savepreservesfavoritestatusforfeed", "callee": "save", "is_member_call": true, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L337", "receiver": "storage"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savepreservesfavoritestatusforfeed", "callee": "FeedDB", "is_member_call": false, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L339", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savepreservesfavoritestatusforfeed", "callee": "save", "is_member_call": true, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L340", "receiver": "storage"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savepreservesfavoritestatusforfeed", "callee": "fetch", "is_member_call": true, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L342", "receiver": "storage"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savepreservesreadstatusforfeed", "callee": "Database", "is_member_call": false, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L349", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savepreservesreadstatusforfeed", "callee": "FeedDB", "is_member_call": false, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L350", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savepreservesreadstatusforfeed", "callee": "save", "is_member_call": true, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L351", "receiver": "storage"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savepreservesreadstatusforfeed", "callee": "fetch", "is_member_call": true, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L355", "receiver": "storage"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savepreservesreadstatusforfeed", "callee": "save", "is_member_call": true, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L357", "receiver": "storage"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savepreservesreadstatusforfeed", "callee": "FeedDB", "is_member_call": false, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L359", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savepreservesreadstatusforfeed", "callee": "save", "is_member_call": true, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L360", "receiver": "storage"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savepreservesreadstatusforfeed", "callee": "fetch", "is_member_call": true, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L362", "receiver": "storage"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savemergescategoriesforfeed", "callee": "Database", "is_member_call": false, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L369", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savemergescategoriesforfeed", "callee": "FeedDB", "is_member_call": false, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L370", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savemergescategoriesforfeed", "callee": "save", "is_member_call": true, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L371", "receiver": "storage"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savemergescategoriesforfeed", "callee": "FeedDB", "is_member_call": false, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L373", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savemergescategoriesforfeed", "callee": "save", "is_member_call": true, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L374", "receiver": "storage"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savemergescategoriesforfeed", "callee": "fetch", "is_member_call": true, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L376", "receiver": "storage"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savemergescategoriesforfeed", "callee": "contains", "is_member_call": true, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L378", "receiver": "cats"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savemergescategoriesforfeed", "callee": "contains", "is_member_call": true, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L379", "receiver": "cats"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savemergescategoriesforfeed", "callee": "contains", "is_member_call": true, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L380", "receiver": "cats"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_groupedsaveaddscategorykey", "callee": "Database", "is_member_call": false, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L387", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_groupedsaveaddscategorykey", "callee": "FeedDB", "is_member_call": false, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L388", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_groupedsaveaddscategorykey", "callee": "save", "is_member_call": true, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L390", "receiver": "storage"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_groupedsaveaddscategorykey", "callee": "fetch", "is_member_call": true, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L392", "receiver": "storage"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_groupedsaveaddscategorykey", "callee": "contains", "is_member_call": true, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L393", "receiver": "fetched"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_groupedsaveremovesstalecategorykey", "callee": "Database", "is_member_call": false, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L398", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_groupedsaveremovesstalecategorykey", "callee": "FeedDB", "is_member_call": false, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L403", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_groupedsaveremovesstalecategorykey", "callee": "save", "is_member_call": true, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L409", "receiver": "storage"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_groupedsaveremovesstalecategorykey", "callee": "FeedDB", "is_member_call": false, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L411", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_groupedsaveremovesstalecategorykey", "callee": "FeedDB", "is_member_call": false, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L412", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_groupedsaveremovesstalecategorykey", "callee": "save", "is_member_call": true, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L414", "receiver": "storage"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_groupedsaveremovesstalecategorykey", "callee": "fetch", "is_member_call": true, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L417", "receiver": "storage"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_groupedsaveremovesstalecategorykey", "callee": "contains", "is_member_call": true, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L418", "receiver": "fetched"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_groupedsavepreservessiblingcategorykey", "callee": "Database", "is_member_call": false, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L423", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_groupedsavepreservessiblingcategorykey", "callee": "FeedDB", "is_member_call": false, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L426", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_groupedsavepreservessiblingcategorykey", "callee": "save", "is_member_call": true, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L432", "receiver": "storage"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_groupedsavepreservessiblingcategorykey", "callee": "FeedDB", "is_member_call": false, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L434", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_groupedsavepreservessiblingcategorykey", "callee": "save", "is_member_call": true, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L435", "receiver": "storage"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_groupedsavepreservessiblingcategorykey", "callee": "fetch", "is_member_call": true, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L438", "receiver": "storage"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_groupedsavepreservessiblingcategorykey", "callee": "contains", "is_member_call": true, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L439", "receiver": "fetched"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_groupedsavepreservessiblingcategorykey", "callee": "contains", "is_member_call": true, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L440", "receiver": "fetched"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_groupedsaveskipsreconciliationforemptyresult", "callee": "Database", "is_member_call": false, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L445", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_groupedsaveskipsreconciliationforemptyresult", "callee": "FeedDB", "is_member_call": false, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L446", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_groupedsaveskipsreconciliationforemptyresult", "callee": "save", "is_member_call": true, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L452", "receiver": "storage"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_groupedsaveskipsreconciliationforemptyresult", "callee": "save", "is_member_call": true, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L454", "receiver": "storage"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_groupedsaveskipsreconciliationforemptyresult", "callee": "fetch", "is_member_call": true, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L456", "receiver": "storage"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_groupedsaveskipsreconciliationforemptyresult", "callee": "contains", "is_member_call": true, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L457", "receiver": "fetched"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_groupedsavepreserveskeyoutsidedatewindow", "callee": "Database", "is_member_call": false, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L462", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_groupedsavepreserveskeyoutsidedatewindow", "callee": "FeedDB", "is_member_call": false, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L466", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_groupedsavepreserveskeyoutsidedatewindow", "callee": "save", "is_member_call": true, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L472", "receiver": "storage"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_groupedsavepreserveskeyoutsidedatewindow", "callee": "FeedDB", "is_member_call": false, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L474", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_groupedsavepreserveskeyoutsidedatewindow", "callee": "save", "is_member_call": true, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L475", "receiver": "storage"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_groupedsavepreserveskeyoutsidedatewindow", "callee": "fetch", "is_member_call": true, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L478", "receiver": "storage"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_groupedsavepreserveskeyoutsidedatewindow", "callee": "contains", "is_member_call": true, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L479", "receiver": "fetched"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_groupedsavedoesnotreconcilenewscategory", "callee": "Database", "is_member_call": false, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L484", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_groupedsavedoesnotreconcilenewscategory", "callee": "FeedDB", "is_member_call": false, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L487", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_groupedsavedoesnotreconcilenewscategory", "callee": "save", "is_member_call": true, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L493", "receiver": "storage"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_groupedsavedoesnotreconcilenewscategory", "callee": "FeedDB", "is_member_call": false, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L495", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_groupedsavedoesnotreconcilenewscategory", "callee": "save", "is_member_call": true, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L496", "receiver": "storage"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_groupedsavedoesnotreconcilenewscategory", "callee": "fetch", "is_member_call": true, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L499", "receiver": "storage"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_groupedsavedoesnotreconcilenewscategory", "callee": "contains", "is_member_call": true, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L500", "receiver": "fetched"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savepreservesfavoritestatusforpodcast", "callee": "Database", "is_member_call": false, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L505", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savepreservesfavoritestatusforpodcast", "callee": "PodcastDB", "is_member_call": false, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L506", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savepreservesfavoritestatusforpodcast", "callee": "save", "is_member_call": true, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L507", "receiver": "storage"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savepreservesfavoritestatusforpodcast", "callee": "PodcastDB", "is_member_call": false, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L509", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savepreservesfavoritestatusforpodcast", "callee": "save", "is_member_call": true, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L510", "receiver": "storage"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savepreservesfavoritestatusforpodcast", "callee": "fetch", "is_member_call": true, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L512", "receiver": "storage"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savepreservesplaybackpositionforpodcast", "callee": "Database", "is_member_call": false, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L519", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savepreservesplaybackpositionforpodcast", "callee": "PodcastDB", "is_member_call": false, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L520", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savepreservesplaybackpositionforpodcast", "callee": "save", "is_member_call": true, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L521", "receiver": "storage"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savepreservesplaybackpositionforpodcast", "callee": "PodcastDB", "is_member_call": false, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L523", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savepreservesplaybackpositionforpodcast", "callee": "save", "is_member_call": true, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L524", "receiver": "storage"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_feedlibrary_tests_feedlibrarytests_storageservicetests_storageservicetests_savepreservesplaybackpositionforpodcast", "callee": "fetch", "is_member_call": true, "source_file": "MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "source_location": "L526", "receiver": "storage"}], "swift_type_table": {"path": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift", "table": {"feed": "FeedDB", "storage": "Database", "updated": "FeedDB", "original": "FeedDB", "newDate": "Date", "podcast": "PodcastDB", "cats": "Set", "post": "FeedDB", "after": "FeedDB", "before": "FeedDB", "dehighlighted": "FeedDB", "later": "Date", "dehighlightedDate": "Date", "earlier": "Date", "otherReview": "FeedDB", "multiCategory": "FeedDB", "date": "Date", "highlighted": "FeedDB", "recentHighlight": "FeedDB", "oldHighlight": "FeedDB", "recent": "Date", "farInThePast": "Date", "otherPost": "FeedDB"}}} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.9.12/dc40a93e0c773949ae7f73de1d434bd679f06edb2a0cfa4995be6c0dcbdbde72.json b/graphify-out/cache/ast/v0.9.12/dc40a93e0c773949ae7f73de1d434bd679f06edb2a0cfa4995be6c0dcbdbde72.json new file mode 100644 index 00000000..80f4f4f4 --- /dev/null +++ b/graphify-out/cache/ast/v0.9.12/dc40a93e0c773949ae7f73de1d434bd679f06edb2a0cfa4995be6c0dcbdbde72.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_swift", "label": "ManagedWebView.swift", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/ManagedWebView.swift", "source_location": "L1"}, {"id": "swiftui", "label": "SwiftUI", "file_type": "code", "type": "module", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/ManagedWebView.swift", "source_location": "L1"}, {"id": "webkit", "label": "WebKit", "file_type": "code", "type": "module", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/ManagedWebView.swift", "source_location": "L2"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_managedwebviewstyle", "label": "ManagedWebViewStyle", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/ManagedWebView.swift", "source_location": "L5", "_callable": true}, {"id": "edge", "label": "Edge", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/ManagedWebView.swift"}, {"id": "bool", "label": "Bool", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/ManagedWebView.swift"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_managedwebviewstyle_init", "label": ".init()", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/ManagedWebView.swift", "source_location": "L9", "_callable": true}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_managedwebview", "label": "ManagedWebView", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/ManagedWebView.swift", "source_location": "L27", "_callable": true}, {"id": "view", "label": "View", "file_type": "code", "source_file": "", "source_location": ""}, {"id": "uuid", "label": "UUID", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/ManagedWebView.swift"}, {"id": "colorscheme", "label": "ColorScheme", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/ManagedWebView.swift"}, {"id": "mainactor", "label": "MainActor", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/ManagedWebView.swift"}, {"id": "webpage", "label": "WebPage", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/ManagedWebView.swift"}, {"id": "async", "label": "async", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/ManagedWebView.swift"}, {"id": "void", "label": "Void", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/ManagedWebView.swift"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_managedwebview_init", "label": ".init()", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/ManagedWebView.swift", "source_location": "L46", "_callable": true}, {"id": "binding", "label": "Binding", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/ManagedWebView.swift"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_managedwebview_handlecolorschemechange", "label": ".handleColorSchemeChange()", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/ManagedWebView.swift", "source_location": "L131", "_callable": true}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_managedwebview_performload", "label": ".performLoad()", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/ManagedWebView.swift", "source_location": "L141", "_callable": true}], "edges": [{"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_swift", "target": "swiftui", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/ManagedWebView.swift", "source_location": "L1", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_swift", "target": "webkit", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/ManagedWebView.swift", "source_location": "L2", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_swift", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_managedwebviewstyle", "relation": "contains", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/ManagedWebView.swift", "source_location": "L5", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_managedwebviewstyle", "target": "edge", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/ManagedWebView.swift", "source_location": "L6", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_managedwebviewstyle", "target": "bool", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/ManagedWebView.swift", "source_location": "L7", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_managedwebviewstyle", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_managedwebviewstyle_init", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/ManagedWebView.swift", "source_location": "L9", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_managedwebviewstyle_init", "target": "edge", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/ManagedWebView.swift", "source_location": "L9", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_managedwebviewstyle_init", "target": "bool", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/ManagedWebView.swift", "source_location": "L9", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_swift", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_managedwebview", "relation": "contains", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/ManagedWebView.swift", "source_location": "L27", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_managedwebview", "target": "view", "relation": "implements", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/ManagedWebView.swift", "source_location": "L27", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_managedwebview", "target": "uuid", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/ManagedWebView.swift", "source_location": "L35", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_managedwebview", "target": "colorscheme", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/ManagedWebView.swift", "source_location": "L36", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_managedwebview", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_managedwebviewstyle", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/ManagedWebView.swift", "source_location": "L38", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_managedwebview", "target": "mainactor", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/ManagedWebView.swift", "source_location": "L39", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_managedwebview", "target": "webpage", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/ManagedWebView.swift", "source_location": "L39", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_managedwebview", "target": "mainactor", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/ManagedWebView.swift", "source_location": "L40", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_managedwebview", "target": "async", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/ManagedWebView.swift", "source_location": "L40", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_managedwebview", "target": "void", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/ManagedWebView.swift", "source_location": "L40", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_managedwebview", "target": "mainactor", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/ManagedWebView.swift", "source_location": "L41", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_managedwebview", "target": "async", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/ManagedWebView.swift", "source_location": "L41", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_managedwebview", "target": "void", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/ManagedWebView.swift", "source_location": "L41", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_managedwebview", "target": "mainactor", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/ManagedWebView.swift", "source_location": "L42", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_managedwebview", "target": "async", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/ManagedWebView.swift", "source_location": "L42", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_managedwebview", "target": "void", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/ManagedWebView.swift", "source_location": "L42", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_managedwebview", "target": "webpage", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/ManagedWebView.swift", "source_location": "L43", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_managedwebview", "target": "uuid", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/ManagedWebView.swift", "source_location": "L44", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_managedwebview", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_managedwebview_init", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/ManagedWebView.swift", "source_location": "L46", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_managedwebview_init", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_managedwebviewstyle", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/ManagedWebView.swift", "source_location": "L46", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_managedwebview_init", "target": "mainactor", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/ManagedWebView.swift", "source_location": "L46", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_managedwebview_init", "target": "mainactor", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/ManagedWebView.swift", "source_location": "L46", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_managedwebview_init", "target": "async", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/ManagedWebView.swift", "source_location": "L46", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_managedwebview_init", "target": "void", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/ManagedWebView.swift", "source_location": "L46", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_managedwebview_init", "target": "mainactor", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/ManagedWebView.swift", "source_location": "L46", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_managedwebview_init", "target": "async", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/ManagedWebView.swift", "source_location": "L46", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_managedwebview_init", "target": "void", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/ManagedWebView.swift", "source_location": "L46", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_managedwebview_init", "target": "mainactor", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/ManagedWebView.swift", "source_location": "L46", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_managedwebview_init", "target": "async", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/ManagedWebView.swift", "source_location": "L46", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_managedwebview_init", "target": "void", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/ManagedWebView.swift", "source_location": "L46", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_managedwebview_init", "target": "binding", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/ManagedWebView.swift", "source_location": "L46", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_managedwebview_init", "target": "webpage", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/ManagedWebView.swift", "source_location": "L46", "weight": 1.0, "context": "generic_arg"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_managedwebview_init", "target": "uuid", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/ManagedWebView.swift", "source_location": "L46", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_managedwebview", "target": "view", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/ManagedWebView.swift", "source_location": "L64", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_swift", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_managedwebview", "relation": "contains", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/ManagedWebView.swift", "source_location": "L113", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_managedwebview", "target": "view", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/ManagedWebView.swift", "source_location": "L114", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_managedwebview", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_managedwebview_handlecolorschemechange", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/ManagedWebView.swift", "source_location": "L131", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_managedwebview_handlecolorschemechange", "target": "colorscheme", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/ManagedWebView.swift", "source_location": "L131", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_managedwebview", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_managedwebview_performload", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/ManagedWebView.swift", "source_location": "L141", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_managedwebview_performload", "target": "webpage", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/ManagedWebView.swift", "source_location": "L141", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_managedwebview_handlecolorschemechange", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_managedwebview_performload", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/ManagedWebView.swift", "source_location": "L137", "weight": 1.0}], "raw_calls": [{"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_managedwebview_handlecolorschemechange", "callee": "Task", "is_member_call": false, "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/ManagedWebView.swift", "source_location": "L134", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_managedwebview_handlecolorschemechange", "callee": "onColorSchemeChange", "is_member_call": false, "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/ManagedWebView.swift", "source_location": "L136", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_managedwebview_performload", "callee": "loadAction", "is_member_call": false, "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/ManagedWebView.swift", "source_location": "L151", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_managedwebview_performload", "callee": "postLoadAction", "is_member_call": false, "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/ManagedWebView.swift", "source_location": "L156", "receiver": null}], "swift_extensions": [{"nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_managedwebview_managedwebview", "label": "ManagedWebView"}], "swift_type_table": {"path": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/ManagedWebView.swift", "table": {"ignoredSafeAreaEdges": "Edge", "backForwardGesturesDisabled": "Bool", "viewStatus": "WebViewStatus", "completedLoadTrigger": "UUID", "appliedColorScheme": "ColorScheme", "style": "ManagedWebViewStyle", "pageProvider": "MainActor", "loadAction": "MainActor", "postLoadAction": "MainActor", "onColorSchemeChange": "MainActor", "page": "WebPage", "reloadTrigger": "UUID", "body": "View", "webview": "View", "scheme": "ColorScheme"}}} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.9.12/dee1f07771b6e50fec89b74a1beb949c4a7edad8a19db771f4c6a6eb115134d5.json b/graphify-out/cache/ast/v0.9.12/dee1f07771b6e50fec89b74a1beb949c4a7edad8a19db771f4c6a6eb115134d5.json new file mode 100644 index 00000000..9a736330 --- /dev/null +++ b/graphify-out/cache/ast/v0.9.12/dee1f07771b6e50fec89b74a1beb949c4a7edad8a19db771f4c6a6eb115134d5.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_architecture_md", "label": "architecture.md", "file_type": "document", "source_file": ".claude/rules/architecture.md", "source_location": "L1"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_architecture_architecture_modular_spm_mvvm_environment_injection", "label": "Architecture \u2014 modular SPM, MVVM, environment injection", "file_type": "document", "source_file": ".claude/rules/architecture.md", "source_location": "L1"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_architecture_modular_spm_structure", "label": "Modular SPM structure", "file_type": "document", "source_file": ".claude/rules/architecture.md", "source_location": "L3"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_architecture_dependency_rules_enforced_by_review_the_architecture_guardian_agent", "label": "Dependency rules (enforced by review + the architecture-guardian agent)", "file_type": "document", "source_file": ".claude/rules/architecture.md", "source_location": "L21"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_architecture_build_targets", "label": "Build targets", "file_type": "document", "source_file": ".claude/rules/architecture.md", "source_location": "L28"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_architecture_adding_a_new_module", "label": "Adding a new module", "file_type": "document", "source_file": ".claude/rules/architecture.md", "source_location": "L37"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_architecture_navigation_state", "label": "Navigation & state", "file_type": "document", "source_file": ".claude/rules/architecture.md", "source_location": "L45"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_architecture_environment_injection_macmagazineapp", "label": "Environment injection (MacMagazineApp)", "file_type": "document", "source_file": ".claude/rules/architecture.md", "source_location": "L51"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_architecture_custom_environment_values", "label": "Custom environment values", "file_type": "document", "source_file": ".claude/rules/architecture.md", "source_location": "L65"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_architecture_tab_system", "label": "Tab system", "file_type": "document", "source_file": ".claude/rules/architecture.md", "source_location": "L74"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_architecture_deep_linking", "label": "Deep linking", "file_type": "document", "source_file": ".claude/rules/architecture.md", "source_location": "L82"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_architecture_mvvm_roles", "label": "MVVM roles", "file_type": "document", "source_file": ".claude/rules/architecture.md", "source_location": "L86"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_architecture_solid_dry_in_this_codebase", "label": "SOLID & DRY in this codebase", "file_type": "document", "source_file": ".claude/rules/architecture.md", "source_location": "L92"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_architecture_when_the_pattern_doesn_t_fit", "label": "When the pattern doesn't fit", "file_type": "document", "source_file": ".claude/rules/architecture.md", "source_location": "L101"}], "edges": [{"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_architecture_md", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_architecture_architecture_modular_spm_mvvm_environment_injection", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/rules/architecture.md", "source_location": "L1", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_architecture_architecture_modular_spm_mvvm_environment_injection", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_architecture_modular_spm_structure", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/rules/architecture.md", "source_location": "L3", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_architecture_architecture_modular_spm_mvvm_environment_injection", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_architecture_dependency_rules_enforced_by_review_the_architecture_guardian_agent", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/rules/architecture.md", "source_location": "L21", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_architecture_architecture_modular_spm_mvvm_environment_injection", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_architecture_build_targets", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/rules/architecture.md", "source_location": "L28", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_architecture_architecture_modular_spm_mvvm_environment_injection", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_architecture_adding_a_new_module", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/rules/architecture.md", "source_location": "L37", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_architecture_architecture_modular_spm_mvvm_environment_injection", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_architecture_navigation_state", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/rules/architecture.md", "source_location": "L45", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_architecture_navigation_state", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_architecture_environment_injection_macmagazineapp", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/rules/architecture.md", "source_location": "L51", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_architecture_navigation_state", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_architecture_custom_environment_values", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/rules/architecture.md", "source_location": "L65", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_architecture_navigation_state", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_architecture_tab_system", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/rules/architecture.md", "source_location": "L74", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_architecture_navigation_state", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_architecture_deep_linking", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/rules/architecture.md", "source_location": "L82", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_architecture_architecture_modular_spm_mvvm_environment_injection", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_architecture_mvvm_roles", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/rules/architecture.md", "source_location": "L86", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_architecture_architecture_modular_spm_mvvm_environment_injection", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_architecture_solid_dry_in_this_codebase", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/rules/architecture.md", "source_location": "L92", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_architecture_architecture_modular_spm_mvvm_environment_injection", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_rules_architecture_when_the_pattern_doesn_t_fit", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/rules/architecture.md", "source_location": "L101", "weight": 1.0}], "input_tokens": 0, "output_tokens": 0} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.9.12/e0bf41cb7801a5e65704991fd45c9b4eef34bb0f61df86d557c0fe189992aeeb.json b/graphify-out/cache/ast/v0.9.12/e0bf41cb7801a5e65704991fd45c9b4eef34bb0f61df86d557c0fe189992aeeb.json new file mode 100644 index 00000000..af8f3f13 --- /dev/null +++ b/graphify-out/cache/ast/v0.9.12/e0bf41cb7801a5e65704991fd45c9b4eef34bb0f61df86d557c0fe189992aeeb.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_favoriteandshare_sharebutton_swift", "label": "ShareButton.swift", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/FavoriteAndShare/ShareButton.swift", "source_location": "L1"}, {"id": "swiftui", "label": "SwiftUI", "file_type": "code", "type": "module", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/FavoriteAndShare/ShareButton.swift", "source_location": "L1"}, {"id": "utilitylibrary", "label": "UtilityLibrary", "file_type": "code", "type": "module", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/FavoriteAndShare/ShareButton.swift", "source_location": "L2"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_favoriteandshare_sharebutton_sharebutton", "label": "ShareButton", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/FavoriteAndShare/ShareButton.swift", "source_location": "L4", "_callable": true}, {"id": "view", "label": "View", "file_type": "code", "source_file": "", "source_location": ""}, {"id": "string", "label": "String", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/FavoriteAndShare/ShareButton.swift"}, {"id": "url", "label": "URL", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/FavoriteAndShare/ShareButton.swift"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_favoriteandshare_sharebutton_sharebutton_init", "label": ".init()", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/FavoriteAndShare/ShareButton.swift", "source_location": "L8", "_callable": true}], "edges": [{"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_favoriteandshare_sharebutton_swift", "target": "swiftui", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/FavoriteAndShare/ShareButton.swift", "source_location": "L1", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_favoriteandshare_sharebutton_swift", "target": "utilitylibrary", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/FavoriteAndShare/ShareButton.swift", "source_location": "L2", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_favoriteandshare_sharebutton_swift", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_favoriteandshare_sharebutton_sharebutton", "relation": "contains", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/FavoriteAndShare/ShareButton.swift", "source_location": "L4", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_favoriteandshare_sharebutton_sharebutton", "target": "view", "relation": "implements", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/FavoriteAndShare/ShareButton.swift", "source_location": "L4", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_favoriteandshare_sharebutton_sharebutton", "target": "string", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/FavoriteAndShare/ShareButton.swift", "source_location": "L5", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_favoriteandshare_sharebutton_sharebutton", "target": "url", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/FavoriteAndShare/ShareButton.swift", "source_location": "L6", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_favoriteandshare_sharebutton_sharebutton", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_favoriteandshare_sharebutton_sharebutton_init", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/FavoriteAndShare/ShareButton.swift", "source_location": "L8", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_favoriteandshare_sharebutton_sharebutton_init", "target": "string", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/FavoriteAndShare/ShareButton.swift", "source_location": "L8", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_favoriteandshare_sharebutton_sharebutton_init", "target": "string", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/FavoriteAndShare/ShareButton.swift", "source_location": "L8", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_cards_views_components_favoriteandshare_sharebutton_sharebutton", "target": "view", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/FavoriteAndShare/ShareButton.swift", "source_location": "L17", "weight": 1.0, "context": "field"}], "raw_calls": [], "swift_type_table": {"path": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/FavoriteAndShare/ShareButton.swift", "table": {"title": "String", "url": "String", "body": "View"}}} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.9.12/e14f3e12fe67ab05b814a0ad704bc62f4c406c37c230d550be27b3784901fcf3.json b/graphify-out/cache/ast/v0.9.12/e14f3e12fe67ab05b814a0ad704bc62f4c406c37c230d550be27b3784901fcf3.json new file mode 100644 index 00000000..3b1d85bf --- /dev/null +++ b/graphify-out/cache/ast/v0.9.12/e14f3e12fe67ab05b814a0ad704bc62f4c406c37c230d550be27b3784901fcf3.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_start_skill_md", "label": "SKILL.md", "file_type": "document", "source_file": ".claude/skills/ios-start/SKILL.md", "source_location": "L1"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_start_skill_ios_feature_start_checklist", "label": "iOS Feature Start Checklist", "file_type": "document", "source_file": ".claude/skills/ios-start/SKILL.md", "source_location": "L6"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_start_skill_before_writing_code", "label": "Before Writing Code", "file_type": "document", "source_file": ".claude/skills/ios-start/SKILL.md", "source_location": "L10"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_start_skill_1_understand_requirements", "label": "1. Understand Requirements", "file_type": "document", "source_file": ".claude/skills/ios-start/SKILL.md", "source_location": "L12"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_start_skill_2_search_for_existing_code_avoid_duplication", "label": "2. Search for Existing Code (Avoid Duplication)", "file_type": "document", "source_file": ".claude/skills/ios-start/SKILL.md", "source_location": "L18"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_start_skill_3_study_existing_implementations_critical", "label": "3. Study Existing Implementations (CRITICAL)", "file_type": "document", "source_file": ".claude/skills/ios-start/SKILL.md", "source_location": "L25"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_start_skill_4_design_architecture", "label": "4. Design Architecture", "file_type": "document", "source_file": ".claude/skills/ios-start/SKILL.md", "source_location": "L39"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_start_skill_5_set_up_feature_branch", "label": "5. Set Up Feature Branch", "file_type": "document", "source_file": ".claude/skills/ios-start/SKILL.md", "source_location": "L46"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_start_skill_6_build_system_reference", "label": "6. Build System Reference", "file_type": "document", "source_file": ".claude/skills/ios-start/SKILL.md", "source_location": "L54"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_start_skill_module_location_reference", "label": "Module Location Reference", "file_type": "document", "source_file": ".claude/skills/ios-start/SKILL.md", "source_location": "L76"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_start_skill_architecture_patterns", "label": "Architecture Patterns", "file_type": "document", "source_file": ".claude/skills/ios-start/SKILL.md", "source_location": "L92"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_start_skill_viewmodel_pattern", "label": "ViewModel Pattern", "file_type": "document", "source_file": ".claude/skills/ios-start/SKILL.md", "source_location": "L94"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_start_skill_view_pattern", "label": "View Pattern", "file_type": "document", "source_file": ".claude/skills/ios-start/SKILL.md", "source_location": "L109"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_start_skill_single_expression_returns_idiomatic_swift", "label": "Single-Expression Returns (Idiomatic Swift)", "file_type": "document", "source_file": ".claude/skills/ios-start/SKILL.md", "source_location": "L124"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_start_skill_red_flags_during_planning", "label": "Red Flags During Planning", "file_type": "document", "source_file": ".claude/skills/ios-start/SKILL.md", "source_location": "L138"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_start_skill_ready_to_start", "label": "Ready to Start?", "file_type": "document", "source_file": ".claude/skills/ios-start/SKILL.md", "source_location": "L148"}], "edges": [{"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_start_skill_md", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_start_skill_ios_feature_start_checklist", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/skills/ios-start/SKILL.md", "source_location": "L6", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_start_skill_ios_feature_start_checklist", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_start_skill_before_writing_code", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/skills/ios-start/SKILL.md", "source_location": "L10", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_start_skill_before_writing_code", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_start_skill_1_understand_requirements", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/skills/ios-start/SKILL.md", "source_location": "L12", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_start_skill_before_writing_code", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_start_skill_2_search_for_existing_code_avoid_duplication", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/skills/ios-start/SKILL.md", "source_location": "L18", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_start_skill_before_writing_code", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_start_skill_3_study_existing_implementations_critical", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/skills/ios-start/SKILL.md", "source_location": "L25", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_start_skill_before_writing_code", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_start_skill_4_design_architecture", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/skills/ios-start/SKILL.md", "source_location": "L39", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_start_skill_before_writing_code", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_start_skill_5_set_up_feature_branch", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/skills/ios-start/SKILL.md", "source_location": "L46", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_start_skill_before_writing_code", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_start_skill_6_build_system_reference", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/skills/ios-start/SKILL.md", "source_location": "L54", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_start_skill_ios_feature_start_checklist", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_start_skill_module_location_reference", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/skills/ios-start/SKILL.md", "source_location": "L76", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_start_skill_ios_feature_start_checklist", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_start_skill_architecture_patterns", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/skills/ios-start/SKILL.md", "source_location": "L92", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_start_skill_architecture_patterns", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_start_skill_viewmodel_pattern", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/skills/ios-start/SKILL.md", "source_location": "L94", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_start_skill_architecture_patterns", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_start_skill_view_pattern", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/skills/ios-start/SKILL.md", "source_location": "L109", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_start_skill_architecture_patterns", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_start_skill_single_expression_returns_idiomatic_swift", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/skills/ios-start/SKILL.md", "source_location": "L124", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_start_skill_ios_feature_start_checklist", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_start_skill_red_flags_during_planning", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/skills/ios-start/SKILL.md", "source_location": "L138", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_start_skill_ios_feature_start_checklist", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_ios_start_skill_ready_to_start", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/skills/ios-start/SKILL.md", "source_location": "L148", "weight": 1.0}], "input_tokens": 0, "output_tokens": 0} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.9.12/e1a9239afe73bdef3d80ca80c50dd303fec5621e2b8229539475226d0a282d16.json b/graphify-out/cache/ast/v0.9.12/e1a9239afe73bdef3d80ca80c50dd303fec5621e2b8229539475226d0a282d16.json new file mode 100644 index 00000000..69a23938 --- /dev/null +++ b/graphify-out/cache/ast/v0.9.12/e1a9239afe73bdef3d80ca80c50dd303fec5621e2b8229539475226d0a282d16.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_settings_json", "label": "settings.json", "file_type": "code", "source_file": ".claude/settings.json", "source_location": "L1"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_settings_schema", "label": "$schema", "file_type": "code", "source_file": ".claude/settings.json", "source_location": "L2"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_settings_permissions", "label": "permissions", "file_type": "code", "source_file": ".claude/settings.json", "source_location": "L3"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_settings_permissions_allow", "label": "allow", "file_type": "code", "source_file": ".claude/settings.json", "source_location": "L4"}, {"id": "ref_read", "label": "Read", "file_type": "concept", "source_file": ".claude/settings.json", "source_location": "L4"}, {"id": "ref_grep", "label": "Grep", "file_type": "concept", "source_file": ".claude/settings.json", "source_location": "L4"}, {"id": "ref_glob", "label": "Glob", "file_type": "concept", "source_file": ".claude/settings.json", "source_location": "L4"}, {"id": "ref_edit", "label": "Edit", "file_type": "concept", "source_file": ".claude/settings.json", "source_location": "L4"}, {"id": "ref_write", "label": "Write", "file_type": "concept", "source_file": ".claude/settings.json", "source_location": "L4"}, {"id": "ref_bash_xcodebuild", "label": "Bash(xcodebuild:*)", "file_type": "concept", "source_file": ".claude/settings.json", "source_location": "L4"}, {"id": "ref_bash_swiftlint", "label": "Bash(swiftlint:*)", "file_type": "concept", "source_file": ".claude/settings.json", "source_location": "L4"}, {"id": "ref_bash_xcrun_simctl", "label": "Bash(xcrun simctl:*)", "file_type": "concept", "source_file": ".claude/settings.json", "source_location": "L4"}, {"id": "ref_bash_swift_build", "label": "Bash(swift build:*)", "file_type": "concept", "source_file": ".claude/settings.json", "source_location": "L4"}, {"id": "ref_bash_swift_test", "label": "Bash(swift test:*)", "file_type": "concept", "source_file": ".claude/settings.json", "source_location": "L4"}, {"id": "ref_bash_swift_package", "label": "Bash(swift package:*)", "file_type": "concept", "source_file": ".claude/settings.json", "source_location": "L4"}, {"id": "ref_bash_find", "label": "Bash(find:*)", "file_type": "concept", "source_file": ".claude/settings.json", "source_location": "L4"}, {"id": "ref_bash_support_scripts", "label": "Bash(./Support/Scripts/*)", "file_type": "concept", "source_file": ".claude/settings.json", "source_location": "L4"}, {"id": "ref_bash_git_status", "label": "Bash(git status)", "file_type": "concept", "source_file": ".claude/settings.json", "source_location": "L4"}, {"id": "ref_bash_git_diff", "label": "Bash(git diff:*)", "file_type": "concept", "source_file": ".claude/settings.json", "source_location": "L4"}, {"id": "ref_bash_git_log", "label": "Bash(git log:*)", "file_type": "concept", "source_file": ".claude/settings.json", "source_location": "L4"}, {"id": "ref_bash_git_add", "label": "Bash(git add:*)", "file_type": "concept", "source_file": ".claude/settings.json", "source_location": "L4"}, {"id": "ref_bash_git_commit", "label": "Bash(git commit:*)", "file_type": "concept", "source_file": ".claude/settings.json", "source_location": "L4"}, {"id": "ref_bash_git_push", "label": "Bash(git push:*)", "file_type": "concept", "source_file": ".claude/settings.json", "source_location": "L4"}, {"id": "ref_bash_git_switch", "label": "Bash(git switch:*)", "file_type": "concept", "source_file": ".claude/settings.json", "source_location": "L4"}, {"id": "ref_bash_git_checkout", "label": "Bash(git checkout:*)", "file_type": "concept", "source_file": ".claude/settings.json", "source_location": "L4"}, {"id": "ref_bash_gh_issue", "label": "Bash(gh issue:*)", "file_type": "concept", "source_file": ".claude/settings.json", "source_location": "L4"}, {"id": "ref_bash_gh_pr", "label": "Bash(gh pr:*)", "file_type": "concept", "source_file": ".claude/settings.json", "source_location": "L4"}, {"id": "ref_bash_gh_repo", "label": "Bash(gh repo:*)", "file_type": "concept", "source_file": ".claude/settings.json", "source_location": "L4"}, {"id": "ref_bash_gh_api", "label": "Bash(gh api:*)", "file_type": "concept", "source_file": ".claude/settings.json", "source_location": "L4"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_settings_permissions_ask", "label": "ask", "file_type": "code", "source_file": ".claude/settings.json", "source_location": "L31"}, {"id": "ref_edit_xcodeproj", "label": "Edit(./**/*.xcodeproj/**)", "file_type": "concept", "source_file": ".claude/settings.json", "source_location": "L31"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_settings_permissions_deny", "label": "deny", "file_type": "code", "source_file": ".claude/settings.json", "source_location": "L34"}, {"id": "ref_read_env", "label": "Read(./.env)", "file_type": "concept", "source_file": ".claude/settings.json", "source_location": "L34"}, {"id": "ref_read_xcconfig", "label": "Read(./**/*.xcconfig)", "file_type": "concept", "source_file": ".claude/settings.json", "source_location": "L34"}, {"id": "ref_read_googleservice_info_plist", "label": "Read(./**/GoogleService-Info.plist)", "file_type": "concept", "source_file": ".claude/settings.json", "source_location": "L34"}, {"id": "ref_read_p8", "label": "Read(./**/*.p8)", "file_type": "concept", "source_file": ".claude/settings.json", "source_location": "L34"}, {"id": "ref_read_p12", "label": "Read(./**/*.p12)", "file_type": "concept", "source_file": ".claude/settings.json", "source_location": "L34"}, {"id": "ref_read_mobileprovision", "label": "Read(./**/*.mobileprovision)", "file_type": "concept", "source_file": ".claude/settings.json", "source_location": "L34"}, {"id": "ref_read_git", "label": "Read(./.git/**)", "file_type": "concept", "source_file": ".claude/settings.json", "source_location": "L34"}, {"id": "ref_bash_rm_rf", "label": "Bash(rm -rf:*)", "file_type": "concept", "source_file": ".claude/settings.json", "source_location": "L34"}, {"id": "ref_bash_sudo", "label": "Bash(sudo:*)", "file_type": "concept", "source_file": ".claude/settings.json", "source_location": "L34"}, {"id": "ref_bash_git_push_force", "label": "Bash(git push --force:*)", "file_type": "concept", "source_file": ".claude/settings.json", "source_location": "L34"}, {"id": "ref_bash_git_push_f", "label": "Bash(git push -f:*)", "file_type": "concept", "source_file": ".claude/settings.json", "source_location": "L34"}, {"id": "ref_bash_git_reset_hard", "label": "Bash(git reset --hard:*)", "file_type": "concept", "source_file": ".claude/settings.json", "source_location": "L34"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_settings_hooks", "label": "hooks", "file_type": "code", "source_file": ".claude/settings.json", "source_location": "L50"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_settings_hooks_pretooluse", "label": "PreToolUse", "file_type": "code", "source_file": ".claude/settings.json", "source_location": "L51"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_settings_hooks_posttooluse", "label": "PostToolUse", "file_type": "code", "source_file": ".claude/settings.json", "source_location": "L80"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_settings_hooks_stop", "label": "Stop", "file_type": "code", "source_file": ".claude/settings.json", "source_location": "L91"}], "edges": [{"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_settings_json", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_settings_schema", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/settings.json", "source_location": "L2", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_settings_json", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_settings_permissions", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/settings.json", "source_location": "L3", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_settings_permissions", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_settings_permissions_allow", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/settings.json", "source_location": "L4", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_settings_permissions_allow", "target": "ref_read", "relation": "extends", "confidence": "EXTRACTED", "source_file": ".claude/settings.json", "source_location": "L4", "weight": 1.0, "context": "import"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_settings_permissions_allow", "target": "ref_grep", "relation": "extends", "confidence": "EXTRACTED", "source_file": ".claude/settings.json", "source_location": "L4", "weight": 1.0, "context": "import"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_settings_permissions_allow", "target": "ref_glob", "relation": "extends", "confidence": "EXTRACTED", "source_file": ".claude/settings.json", "source_location": "L4", "weight": 1.0, "context": "import"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_settings_permissions_allow", "target": "ref_edit", "relation": "extends", "confidence": "EXTRACTED", "source_file": ".claude/settings.json", "source_location": "L4", "weight": 1.0, "context": "import"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_settings_permissions_allow", "target": "ref_write", "relation": "extends", "confidence": "EXTRACTED", "source_file": ".claude/settings.json", "source_location": "L4", "weight": 1.0, "context": "import"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_settings_permissions_allow", "target": "ref_bash_xcodebuild", "relation": "extends", "confidence": "EXTRACTED", "source_file": ".claude/settings.json", "source_location": "L4", "weight": 1.0, "context": "import"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_settings_permissions_allow", "target": "ref_bash_swiftlint", "relation": "extends", "confidence": "EXTRACTED", "source_file": ".claude/settings.json", "source_location": "L4", "weight": 1.0, "context": "import"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_settings_permissions_allow", "target": "ref_bash_xcrun_simctl", "relation": "extends", "confidence": "EXTRACTED", "source_file": ".claude/settings.json", "source_location": "L4", "weight": 1.0, "context": "import"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_settings_permissions_allow", "target": "ref_bash_swift_build", "relation": "extends", "confidence": "EXTRACTED", "source_file": ".claude/settings.json", "source_location": "L4", "weight": 1.0, "context": "import"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_settings_permissions_allow", "target": "ref_bash_swift_test", "relation": "extends", "confidence": "EXTRACTED", "source_file": ".claude/settings.json", "source_location": "L4", "weight": 1.0, "context": "import"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_settings_permissions_allow", "target": "ref_bash_swift_package", "relation": "extends", "confidence": "EXTRACTED", "source_file": ".claude/settings.json", "source_location": "L4", "weight": 1.0, "context": "import"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_settings_permissions_allow", "target": "ref_bash_find", "relation": "extends", "confidence": "EXTRACTED", "source_file": ".claude/settings.json", "source_location": "L4", "weight": 1.0, "context": "import"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_settings_permissions_allow", "target": "ref_bash_support_scripts", "relation": "extends", "confidence": "EXTRACTED", "source_file": ".claude/settings.json", "source_location": "L4", "weight": 1.0, "context": "import"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_settings_permissions_allow", "target": "ref_bash_git_status", "relation": "extends", "confidence": "EXTRACTED", "source_file": ".claude/settings.json", "source_location": "L4", "weight": 1.0, "context": "import"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_settings_permissions_allow", "target": "ref_bash_git_diff", "relation": "extends", "confidence": "EXTRACTED", "source_file": ".claude/settings.json", "source_location": "L4", "weight": 1.0, "context": "import"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_settings_permissions_allow", "target": "ref_bash_git_log", "relation": "extends", "confidence": "EXTRACTED", "source_file": ".claude/settings.json", "source_location": "L4", "weight": 1.0, "context": "import"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_settings_permissions_allow", "target": "ref_bash_git_add", "relation": "extends", "confidence": "EXTRACTED", "source_file": ".claude/settings.json", "source_location": "L4", "weight": 1.0, "context": "import"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_settings_permissions_allow", "target": "ref_bash_git_commit", "relation": "extends", "confidence": "EXTRACTED", "source_file": ".claude/settings.json", "source_location": "L4", "weight": 1.0, "context": "import"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_settings_permissions_allow", "target": "ref_bash_git_push", "relation": "extends", "confidence": "EXTRACTED", "source_file": ".claude/settings.json", "source_location": "L4", "weight": 1.0, "context": "import"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_settings_permissions_allow", "target": "ref_bash_git_switch", "relation": "extends", "confidence": "EXTRACTED", "source_file": ".claude/settings.json", "source_location": "L4", "weight": 1.0, "context": "import"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_settings_permissions_allow", "target": "ref_bash_git_checkout", "relation": "extends", "confidence": "EXTRACTED", "source_file": ".claude/settings.json", "source_location": "L4", "weight": 1.0, "context": "import"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_settings_permissions_allow", "target": "ref_bash_gh_issue", "relation": "extends", "confidence": "EXTRACTED", "source_file": ".claude/settings.json", "source_location": "L4", "weight": 1.0, "context": "import"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_settings_permissions_allow", "target": "ref_bash_gh_pr", "relation": "extends", "confidence": "EXTRACTED", "source_file": ".claude/settings.json", "source_location": "L4", "weight": 1.0, "context": "import"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_settings_permissions_allow", "target": "ref_bash_gh_repo", "relation": "extends", "confidence": "EXTRACTED", "source_file": ".claude/settings.json", "source_location": "L4", "weight": 1.0, "context": "import"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_settings_permissions_allow", "target": "ref_bash_gh_api", "relation": "extends", "confidence": "EXTRACTED", "source_file": ".claude/settings.json", "source_location": "L4", "weight": 1.0, "context": "import"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_settings_permissions", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_settings_permissions_ask", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/settings.json", "source_location": "L31", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_settings_permissions_ask", "target": "ref_edit_xcodeproj", "relation": "extends", "confidence": "EXTRACTED", "source_file": ".claude/settings.json", "source_location": "L31", "weight": 1.0, "context": "import"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_settings_permissions", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_settings_permissions_deny", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/settings.json", "source_location": "L34", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_settings_permissions_deny", "target": "ref_read_env", "relation": "extends", "confidence": "EXTRACTED", "source_file": ".claude/settings.json", "source_location": "L34", "weight": 1.0, "context": "import"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_settings_permissions_deny", "target": "ref_read_env", "relation": "extends", "confidence": "EXTRACTED", "source_file": ".claude/settings.json", "source_location": "L34", "weight": 1.0, "context": "import"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_settings_permissions_deny", "target": "ref_read_xcconfig", "relation": "extends", "confidence": "EXTRACTED", "source_file": ".claude/settings.json", "source_location": "L34", "weight": 1.0, "context": "import"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_settings_permissions_deny", "target": "ref_read_googleservice_info_plist", "relation": "extends", "confidence": "EXTRACTED", "source_file": ".claude/settings.json", "source_location": "L34", "weight": 1.0, "context": "import"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_settings_permissions_deny", "target": "ref_read_p8", "relation": "extends", "confidence": "EXTRACTED", "source_file": ".claude/settings.json", "source_location": "L34", "weight": 1.0, "context": "import"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_settings_permissions_deny", "target": "ref_read_p12", "relation": "extends", "confidence": "EXTRACTED", "source_file": ".claude/settings.json", "source_location": "L34", "weight": 1.0, "context": "import"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_settings_permissions_deny", "target": "ref_read_mobileprovision", "relation": "extends", "confidence": "EXTRACTED", "source_file": ".claude/settings.json", "source_location": "L34", "weight": 1.0, "context": "import"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_settings_permissions_deny", "target": "ref_read_git", "relation": "extends", "confidence": "EXTRACTED", "source_file": ".claude/settings.json", "source_location": "L34", "weight": 1.0, "context": "import"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_settings_permissions_deny", "target": "ref_bash_rm_rf", "relation": "extends", "confidence": "EXTRACTED", "source_file": ".claude/settings.json", "source_location": "L34", "weight": 1.0, "context": "import"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_settings_permissions_deny", "target": "ref_bash_sudo", "relation": "extends", "confidence": "EXTRACTED", "source_file": ".claude/settings.json", "source_location": "L34", "weight": 1.0, "context": "import"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_settings_permissions_deny", "target": "ref_bash_git_push_force", "relation": "extends", "confidence": "EXTRACTED", "source_file": ".claude/settings.json", "source_location": "L34", "weight": 1.0, "context": "import"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_settings_permissions_deny", "target": "ref_bash_git_push_f", "relation": "extends", "confidence": "EXTRACTED", "source_file": ".claude/settings.json", "source_location": "L34", "weight": 1.0, "context": "import"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_settings_permissions_deny", "target": "ref_bash_git_reset_hard", "relation": "extends", "confidence": "EXTRACTED", "source_file": ".claude/settings.json", "source_location": "L34", "weight": 1.0, "context": "import"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_settings_json", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_settings_hooks", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/settings.json", "source_location": "L50", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_settings_hooks", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_settings_hooks_pretooluse", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/settings.json", "source_location": "L51", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_settings_hooks", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_settings_hooks_posttooluse", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/settings.json", "source_location": "L80", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_settings_hooks", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_settings_hooks_stop", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/settings.json", "source_location": "L91", "weight": 1.0}]} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.9.12/ecf475f41a672b3a1bf27fe3dece5ba4249a7c80df1bbc96f42e26c1a6b8efd2.json b/graphify-out/cache/ast/v0.9.12/ecf475f41a672b3a1bf27fe3dece5ba4249a7c80df1bbc96f42e26c1a6b8efd2.json new file mode 100644 index 00000000..d6191d48 --- /dev/null +++ b/graphify-out/cache/ast/v0.9.12/ecf475f41a672b3a1bf27fe3dece5ba4249a7c80df1bbc96f42e26c1a6b8efd2.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist_swift", "label": "SearchResultsList.swift", "file_type": "code", "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchResultsList.swift", "source_location": "L1"}, {"id": "analyticslibrary", "label": "AnalyticsLibrary", "file_type": "code", "type": "module", "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchResultsList.swift", "source_location": "L1"}, {"id": "feedlibrary", "label": "FeedLibrary", "file_type": "code", "type": "module", "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchResultsList.swift", "source_location": "L2"}, {"id": "macmagazinelibrary", "label": "MacMagazineLibrary", "file_type": "code", "type": "module", "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchResultsList.swift", "source_location": "L3"}, {"id": "macmagazineuilibrary", "label": "MacMagazineUILibrary", "file_type": "code", "type": "module", "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchResultsList.swift", "source_location": "L4"}, {"id": "newslibrary", "label": "NewsLibrary", "file_type": "code", "type": "module", "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchResultsList.swift", "source_location": "L5"}, {"id": "podcastlibrary", "label": "PodcastLibrary", "file_type": "code", "type": "module", "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchResultsList.swift", "source_location": "L6"}, {"id": "swiftdata", "label": "SwiftData", "file_type": "code", "type": "module", "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchResultsList.swift", "source_location": "L7"}, {"id": "swiftui", "label": "SwiftUI", "file_type": "code", "type": "module", "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchResultsList.swift", "source_location": "L8"}, {"id": "videoslibrary", "label": "VideosLibrary", "file_type": "code", "type": "module", "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchResultsList.swift", "source_location": "L9"}, {"id": "youtubelibrary", "label": "YouTubeLibrary", "file_type": "code", "type": "module", "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchResultsList.swift", "source_location": "L10"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist_searchresultslist", "label": "SearchResultsList", "file_type": "code", "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchResultsList.swift", "source_location": "L12", "_callable": true}, {"id": "view", "label": "View", "file_type": "code", "source_file": "", "source_location": ""}, {"id": "analyticsmanager", "label": "AnalyticsManager", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchResultsList.swift"}, {"id": "searchresult", "label": "SearchResult", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchResultsList.swift"}, {"id": "feeddb", "label": "FeedDB", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchResultsList.swift"}, {"id": "void", "label": "Void", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchResultsList.swift"}, {"id": "podcastdb", "label": "PodcastDB", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchResultsList.swift"}, {"id": "videodb", "label": "VideoDB", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchResultsList.swift"}, {"id": "string", "label": "String", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchResultsList.swift"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist_searchresultslist_resultcard", "label": ".resultCard()", "file_type": "code", "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchResultsList.swift", "source_location": "L33", "_callable": true}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist_searchresultslist_newscard", "label": ".newsCard()", "file_type": "code", "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchResultsList.swift", "source_location": "L50", "_callable": true}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist_searchresultslist_podcastcard", "label": ".podcastCard()", "file_type": "code", "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchResultsList.swift", "source_location": "L70", "_callable": true}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist_searchresultslist_videocard", "label": ".videoCard()", "file_type": "code", "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchResultsList.swift", "source_location": "L85", "_callable": true}], "edges": [{"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist_swift", "target": "analyticslibrary", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchResultsList.swift", "source_location": "L1", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist_swift", "target": "feedlibrary", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchResultsList.swift", "source_location": "L2", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist_swift", "target": "macmagazinelibrary", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchResultsList.swift", "source_location": "L3", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist_swift", "target": "macmagazineuilibrary", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchResultsList.swift", "source_location": "L4", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist_swift", "target": "newslibrary", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchResultsList.swift", "source_location": "L5", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist_swift", "target": "podcastlibrary", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchResultsList.swift", "source_location": "L6", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist_swift", "target": "swiftdata", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchResultsList.swift", "source_location": "L7", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist_swift", "target": "swiftui", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchResultsList.swift", "source_location": "L8", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist_swift", "target": "videoslibrary", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchResultsList.swift", "source_location": "L9", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist_swift", "target": "youtubelibrary", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchResultsList.swift", "source_location": "L10", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist_swift", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist_searchresultslist", "relation": "contains", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchResultsList.swift", "source_location": "L12", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist_searchresultslist", "target": "view", "relation": "implements", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchResultsList.swift", "source_location": "L12", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist_searchresultslist", "target": "analyticsmanager", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchResultsList.swift", "source_location": "L14", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist_searchresultslist", "target": "searchresult", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchResultsList.swift", "source_location": "L16", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist_searchresultslist", "target": "feeddb", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchResultsList.swift", "source_location": "L17", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist_searchresultslist", "target": "void", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchResultsList.swift", "source_location": "L17", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist_searchresultslist", "target": "podcastdb", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchResultsList.swift", "source_location": "L18", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist_searchresultslist", "target": "void", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchResultsList.swift", "source_location": "L18", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist_searchresultslist", "target": "videodb", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchResultsList.swift", "source_location": "L19", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist_searchresultslist", "target": "string", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchResultsList.swift", "source_location": "L20", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist_searchresultslist", "target": "void", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchResultsList.swift", "source_location": "L20", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist_searchresultslist", "target": "view", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchResultsList.swift", "source_location": "L22", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist_swift", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist_searchresultslist", "relation": "contains", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchResultsList.swift", "source_location": "L31", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist_searchresultslist", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist_searchresultslist_resultcard", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchResultsList.swift", "source_location": "L33", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist_searchresultslist_resultcard", "target": "searchresult", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchResultsList.swift", "source_location": "L33", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist_searchresultslist_resultcard", "target": "view", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchResultsList.swift", "source_location": "L33", "weight": 1.0, "context": "return_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist_swift", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist_searchresultslist", "relation": "contains", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchResultsList.swift", "source_location": "L48", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist_searchresultslist", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist_searchresultslist_newscard", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchResultsList.swift", "source_location": "L50", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist_searchresultslist_newscard", "target": "searchresult", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchResultsList.swift", "source_location": "L50", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist_searchresultslist_newscard", "target": "view", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchResultsList.swift", "source_location": "L50", "weight": 1.0, "context": "return_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist_searchresultslist", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist_searchresultslist_podcastcard", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchResultsList.swift", "source_location": "L70", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist_searchresultslist_podcastcard", "target": "searchresult", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchResultsList.swift", "source_location": "L70", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist_searchresultslist_podcastcard", "target": "view", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchResultsList.swift", "source_location": "L70", "weight": 1.0, "context": "return_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist_searchresultslist", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist_searchresultslist_videocard", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchResultsList.swift", "source_location": "L85", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist_searchresultslist_videocard", "target": "searchresult", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchResultsList.swift", "source_location": "L85", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist_searchresultslist_videocard", "target": "view", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchResultsList.swift", "source_location": "L85", "weight": 1.0, "context": "return_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist_searchresultslist_resultcard", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist_searchresultslist_newscard", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchResultsList.swift", "source_location": "L37", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist_searchresultslist_resultcard", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist_searchresultslist_podcastcard", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchResultsList.swift", "source_location": "L39", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist_searchresultslist_resultcard", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist_searchresultslist_videocard", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchResultsList.swift", "source_location": "L41", "weight": 1.0}], "raw_calls": [{"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist_searchresultslist_newscard", "callee": "toCardContent", "is_member_call": true, "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchResultsList.swift", "source_location": "L53", "receiver": "feedDB"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist_searchresultslist_newscard", "callee": "cardAccessibility", "is_member_call": true, "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchResultsList.swift", "source_location": "L60", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist_searchresultslist_newscard", "callee": "NewsCard", "is_member_call": false, "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchResultsList.swift", "source_location": "L60", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist_searchresultslist_newscard", "callee": "onSelectNews", "is_member_call": false, "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchResultsList.swift", "source_location": "L61", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist_searchresultslist_podcastcard", "callee": "AdaptivePodcastCardView", "is_member_call": false, "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchResultsList.swift", "source_location": "L73", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist_searchresultslist_podcastcard", "callee": "toCardContent", "is_member_call": true, "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchResultsList.swift", "source_location": "L74", "receiver": "podcastDB"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist_searchresultslist_podcastcard", "callee": "onSelectPodcast", "is_member_call": false, "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchResultsList.swift", "source_location": "L80", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist_searchresultslist_videocard", "callee": "AdaptiveVideoCard", "is_member_call": false, "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchResultsList.swift", "source_location": "L88", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist_searchresultslist_videocard", "callee": "cardAccessibility", "is_member_call": true, "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchResultsList.swift", "source_location": "L93", "receiver": null}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist_searchresultslist_videocard", "callee": "VideoItemView", "is_member_call": false, "source_file": "MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchResultsList.swift", "source_location": "L93", "receiver": null}], "swift_extensions": [{"nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist_searchresultslist", "label": "SearchResultsList"}, {"nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_searchlibrary_sources_searchlibrary_views_searchresultslist_searchresultslist", "label": "SearchResultsList"}], "swift_type_table": {"path": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchResultsList.swift", "table": {"analytics": "AnalyticsManager", "results": "SearchResult", "onSelectNews": "FeedDB", "onSelectPodcast": "PodcastDB", "selectedVideo": "VideoDB", "onSelectLink": "String", "body": "View", "result": "SearchResult", "card": "AdaptiveVideoCard"}}} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.9.12/ee0f8be06d07673ceb10eb088087f332b950a1e8b71de59c13cbee117b81ea89.json b/graphify-out/cache/ast/v0.9.12/ee0f8be06d07673ceb10eb088087f332b950a1e8b71de59c13cbee117b81ea89.json new file mode 100644 index 00000000..0a003779 --- /dev/null +++ b/graphify-out/cache/ast/v0.9.12/ee0f8be06d07673ceb10eb088087f332b950a1e8b71de59c13cbee117b81ea89.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_walletpass_walletpassservice_swift", "label": "WalletPassService.swift", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WalletPass/WalletPassService.swift", "source_location": "L1"}, {"id": "foundation", "label": "Foundation", "file_type": "code", "type": "module", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WalletPass/WalletPassService.swift", "source_location": "L1"}, {"id": "networklibrary", "label": "NetworkLibrary", "file_type": "code", "type": "module", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WalletPass/WalletPassService.swift", "source_location": "L2"}, {"id": "passkit", "label": "PassKit", "file_type": "code", "type": "module", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WalletPass/WalletPassService.swift", "source_location": "L3"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_walletpass_walletpassservice_walletpassservice", "label": "WalletPassService", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WalletPass/WalletPassService.swift", "source_location": "L9", "_callable": true}, {"id": "network", "label": "Network", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WalletPass/WalletPassService.swift"}, {"id": "sendable", "label": "Sendable", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WalletPass/WalletPassService.swift"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_walletpass_walletpassservice_walletpassservice_init", "label": ".init()", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WalletPass/WalletPassService.swift", "source_location": "L13", "_callable": true}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_walletpass_walletpassservice_walletpassservice_fetchpass", "label": ".fetchPass()", "file_type": "code", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WalletPass/WalletPassService.swift", "source_location": "L17", "_callable": true}, {"id": "url", "label": "URL", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WalletPass/WalletPassService.swift"}, {"id": "pkpass", "label": "PKPass", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WalletPass/WalletPassService.swift"}], "edges": [{"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_walletpass_walletpassservice_swift", "target": "foundation", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WalletPass/WalletPassService.swift", "source_location": "L1", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_walletpass_walletpassservice_swift", "target": "networklibrary", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WalletPass/WalletPassService.swift", "source_location": "L2", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_walletpass_walletpassservice_swift", "target": "passkit", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WalletPass/WalletPassService.swift", "source_location": "L3", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_walletpass_walletpassservice_swift", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_walletpass_walletpassservice_walletpassservice", "relation": "contains", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WalletPass/WalletPassService.swift", "source_location": "L9", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_walletpass_walletpassservice_walletpassservice", "target": "network", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WalletPass/WalletPassService.swift", "source_location": "L11", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_walletpass_walletpassservice_walletpassservice", "target": "sendable", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WalletPass/WalletPassService.swift", "source_location": "L11", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_walletpass_walletpassservice_walletpassservice", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_walletpass_walletpassservice_walletpassservice_init", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WalletPass/WalletPassService.swift", "source_location": "L13", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_walletpass_walletpassservice_walletpassservice_init", "target": "network", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WalletPass/WalletPassService.swift", "source_location": "L13", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_walletpass_walletpassservice_walletpassservice_init", "target": "sendable", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WalletPass/WalletPassService.swift", "source_location": "L13", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_walletpass_walletpassservice_walletpassservice", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_walletpass_walletpassservice_walletpassservice_fetchpass", "relation": "method", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WalletPass/WalletPassService.swift", "source_location": "L17", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_walletpass_walletpassservice_walletpassservice_fetchpass", "target": "url", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WalletPass/WalletPassService.swift", "source_location": "L17", "weight": 1.0, "context": "parameter_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_walletpass_walletpassservice_walletpassservice_fetchpass", "target": "pkpass", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WalletPass/WalletPassService.swift", "source_location": "L17", "weight": 1.0, "context": "return_type"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_walletpass_walletpassservice_walletpassservice_fetchpass", "target": "pkpass", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WalletPass/WalletPassService.swift", "source_location": "L19", "weight": 1.0}], "raw_calls": [{"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_walletpass_walletpassservice_walletpassservice_init", "callee": "make", "is_member_call": true, "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WalletPass/WalletPassService.swift", "source_location": "L14", "receiver": "NetworkFactory"}, {"caller_nid": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_features_macmagazineuilibrary_sources_macmagazineuilibrary_webview_walletpass_walletpassservice_walletpassservice_fetchpass", "callee": "get", "is_member_call": true, "source_file": "MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WalletPass/WalletPassService.swift", "source_location": "L18", "receiver": "network"}], "swift_type_table": {"path": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WalletPass/WalletPassService.swift", "table": {"network": "Network", "url": "URL"}}} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.9.12/fc90b173bfa992cc19779cffc5500d5f43b0ec65a3d07954c2d104793ba30e19.json b/graphify-out/cache/ast/v0.9.12/fc90b173bfa992cc19779cffc5500d5f43b0ec65a3d07954c2d104793ba30e19.json new file mode 100644 index 00000000..e12bfbee --- /dev/null +++ b/graphify-out/cache/ast/v0.9.12/fc90b173bfa992cc19779cffc5500d5f43b0ec65a3d07954c2d104793ba30e19.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_readme_md", "label": "README.md", "file_type": "document", "source_file": ".claude/skills/README.md", "source_location": "L1"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_readme_skills_quick_reference", "label": "Skills Quick Reference", "file_type": "document", "source_file": ".claude/skills/README.md", "source_location": "L1"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_readme_project_skills_this_folder", "label": "Project Skills (this folder)", "file_type": "document", "source_file": ".claude/skills/README.md", "source_location": "L3"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_readme_workflow", "label": "Workflow", "file_type": "document", "source_file": ".claude/skills/README.md", "source_location": "L5"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_readme_reference", "label": "Reference", "file_type": "document", "source_file": ".claude/skills/README.md", "source_location": "L14"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_readme_built_in_skills_claude_code", "label": "Built-in Skills (Claude Code)", "file_type": "document", "source_file": ".claude/skills/README.md", "source_location": "L21"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_readme_project_agents_claude_agents", "label": "Project Agents (`.claude/agents/`)", "file_type": "document", "source_file": ".claude/skills/README.md", "source_location": "L30"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_readme_decision_tree", "label": "Decision Tree", "file_type": "document", "source_file": ".claude/skills/README.md", "source_location": "L39"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_readme_skill_integration", "label": "Skill Integration", "file_type": "document", "source_file": ".claude/skills/README.md", "source_location": "L53"}], "edges": [{"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_readme_md", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_readme_skills_quick_reference", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/skills/README.md", "source_location": "L1", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_readme_skills_quick_reference", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_readme_project_skills_this_folder", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/skills/README.md", "source_location": "L3", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_readme_project_skills_this_folder", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_readme_workflow", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/skills/README.md", "source_location": "L5", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_readme_project_skills_this_folder", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_readme_reference", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/skills/README.md", "source_location": "L14", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_readme_skills_quick_reference", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_readme_built_in_skills_claude_code", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/skills/README.md", "source_location": "L21", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_readme_skills_quick_reference", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_readme_project_agents_claude_agents", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/skills/README.md", "source_location": "L30", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_readme_skills_quick_reference", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_readme_decision_tree", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/skills/README.md", "source_location": "L39", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_readme_skills_quick_reference", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_claude_skills_readme_skill_integration", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/skills/README.md", "source_location": "L53", "weight": 1.0}], "input_tokens": 0, "output_tokens": 0} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.9.12/fd628e07d5dc5d86d88a707b13a8a3fe2e1a26adf096dda16bfd8d89d7be6b00.json b/graphify-out/cache/ast/v0.9.12/fd628e07d5dc5d86d88a707b13a8a3fe2e1a26adf096dda16bfd8d89d7be6b00.json new file mode 100644 index 00000000..378b402e --- /dev/null +++ b/graphify-out/cache/ast/v0.9.12/fd628e07d5dc5d86d88a707b13a8a3fe2e1a26adf096dda16bfd8d89d7be6b00.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_macmagazine_features_news_deeplinknewsdetailview_swift", "label": "DeepLinkNewsDetailView.swift", "file_type": "code", "source_file": "MacMagazine/MacMagazine/Features/News/DeepLinkNewsDetailView.swift", "source_location": "L1"}, {"id": "analyticslibrary", "label": "AnalyticsLibrary", "file_type": "code", "type": "module", "source_file": "MacMagazine/MacMagazine/Features/News/DeepLinkNewsDetailView.swift", "source_location": "L1"}, {"id": "feedlibrary", "label": "FeedLibrary", "file_type": "code", "type": "module", "source_file": "MacMagazine/MacMagazine/Features/News/DeepLinkNewsDetailView.swift", "source_location": "L2"}, {"id": "macmagazinelibrary", "label": "MacMagazineLibrary", "file_type": "code", "type": "module", "source_file": "MacMagazine/MacMagazine/Features/News/DeepLinkNewsDetailView.swift", "source_location": "L3"}, {"id": "macmagazineuilibrary", "label": "MacMagazineUILibrary", "file_type": "code", "type": "module", "source_file": "MacMagazine/MacMagazine/Features/News/DeepLinkNewsDetailView.swift", "source_location": "L4"}, {"id": "swiftdata", "label": "SwiftData", "file_type": "code", "type": "module", "source_file": "MacMagazine/MacMagazine/Features/News/DeepLinkNewsDetailView.swift", "source_location": "L5"}, {"id": "swiftui", "label": "SwiftUI", "file_type": "code", "type": "module", "source_file": "MacMagazine/MacMagazine/Features/News/DeepLinkNewsDetailView.swift", "source_location": "L6"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_macmagazine_features_news_deeplinknewsdetailview_deeplinknewsdetailview", "label": "DeepLinkNewsDetailView", "file_type": "code", "source_file": "MacMagazine/MacMagazine/Features/News/DeepLinkNewsDetailView.swift", "source_location": "L8", "_callable": true}, {"id": "view", "label": "View", "file_type": "code", "source_file": "", "source_location": ""}, {"id": "analyticsmanager", "label": "AnalyticsManager", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/MacMagazine/Features/News/DeepLinkNewsDetailView.swift"}, {"id": "feeddb", "label": "FeedDB", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/MacMagazine/Features/News/DeepLinkNewsDetailView.swift"}, {"id": "string", "label": "String", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/MacMagazine/Features/News/DeepLinkNewsDetailView.swift"}, {"id": "void", "label": "Void", "file_type": "code", "source_file": "", "source_location": "", "origin_file": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/MacMagazine/Features/News/DeepLinkNewsDetailView.swift"}], "edges": [{"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_macmagazine_features_news_deeplinknewsdetailview_swift", "target": "analyticslibrary", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/MacMagazine/Features/News/DeepLinkNewsDetailView.swift", "source_location": "L1", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_macmagazine_features_news_deeplinknewsdetailview_swift", "target": "feedlibrary", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/MacMagazine/Features/News/DeepLinkNewsDetailView.swift", "source_location": "L2", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_macmagazine_features_news_deeplinknewsdetailview_swift", "target": "macmagazinelibrary", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/MacMagazine/Features/News/DeepLinkNewsDetailView.swift", "source_location": "L3", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_macmagazine_features_news_deeplinknewsdetailview_swift", "target": "macmagazineuilibrary", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/MacMagazine/Features/News/DeepLinkNewsDetailView.swift", "source_location": "L4", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_macmagazine_features_news_deeplinknewsdetailview_swift", "target": "swiftdata", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/MacMagazine/Features/News/DeepLinkNewsDetailView.swift", "source_location": "L5", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_macmagazine_features_news_deeplinknewsdetailview_swift", "target": "swiftui", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "MacMagazine/MacMagazine/Features/News/DeepLinkNewsDetailView.swift", "source_location": "L6", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_macmagazine_features_news_deeplinknewsdetailview_swift", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_macmagazine_features_news_deeplinknewsdetailview_deeplinknewsdetailview", "relation": "contains", "confidence": "EXTRACTED", "source_file": "MacMagazine/MacMagazine/Features/News/DeepLinkNewsDetailView.swift", "source_location": "L8", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_macmagazine_features_news_deeplinknewsdetailview_deeplinknewsdetailview", "target": "view", "relation": "implements", "confidence": "EXTRACTED", "source_file": "MacMagazine/MacMagazine/Features/News/DeepLinkNewsDetailView.swift", "source_location": "L8", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_macmagazine_features_news_deeplinknewsdetailview_deeplinknewsdetailview", "target": "analyticsmanager", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/MacMagazine/Features/News/DeepLinkNewsDetailView.swift", "source_location": "L10", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_macmagazine_features_news_deeplinknewsdetailview_deeplinknewsdetailview", "target": "feeddb", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/MacMagazine/Features/News/DeepLinkNewsDetailView.swift", "source_location": "L12", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_macmagazine_features_news_deeplinknewsdetailview_deeplinknewsdetailview", "target": "string", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/MacMagazine/Features/News/DeepLinkNewsDetailView.swift", "source_location": "L14", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_macmagazine_features_news_deeplinknewsdetailview_deeplinknewsdetailview", "target": "void", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/MacMagazine/Features/News/DeepLinkNewsDetailView.swift", "source_location": "L15", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_macmagazine_features_news_deeplinknewsdetailview_deeplinknewsdetailview", "target": "feeddb", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/MacMagazine/Features/News/DeepLinkNewsDetailView.swift", "source_location": "L17", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_macmagazine_features_news_deeplinknewsdetailview_deeplinknewsdetailview", "target": "view", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/MacMagazine/Features/News/DeepLinkNewsDetailView.swift", "source_location": "L22", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_macmagazine_features_news_deeplinknewsdetailview_deeplinknewsdetailview", "target": "view", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/MacMagazine/Features/News/DeepLinkNewsDetailView.swift", "source_location": "L54", "weight": 1.0, "context": "field"}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_macmagazine_macmagazine_features_news_deeplinknewsdetailview_deeplinknewsdetailview", "target": "view", "relation": "references", "confidence": "EXTRACTED", "source_file": "MacMagazine/MacMagazine/Features/News/DeepLinkNewsDetailView.swift", "source_location": "L74", "weight": 1.0, "context": "field"}], "raw_calls": [], "swift_type_table": {"path": "/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/MacMagazine/Features/News/DeepLinkNewsDetailView.swift", "table": {"analytics": "AnalyticsManager", "allNews": "FeedDB", "url": "String", "onDismiss": "Void", "post": "FeedDB", "body": "View", "favoriteView": "View", "shareView": "View"}}} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.9.12/ff270f8653e3e5a947536fbfb3d0ac7641779e16bc34bc0414f6bca6b1073efc.json b/graphify-out/cache/ast/v0.9.12/ff270f8653e3e5a947536fbfb3d0ac7641779e16bc34bc0414f6bca6b1073efc.json new file mode 100644 index 00000000..88bc2b3a --- /dev/null +++ b/graphify-out/cache/ast/v0.9.12/ff270f8653e3e5a947536fbfb3d0ac7641779e16bc34bc0414f6bca6b1073efc.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_github_pull_request_template_md", "label": "PULL_REQUEST_TEMPLATE.md", "file_type": "document", "source_file": ".github/PULL_REQUEST_TEMPLATE.md", "source_location": "L1"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_github_pull_request_template_description", "label": "Description", "file_type": "document", "source_file": ".github/PULL_REQUEST_TEMPLATE.md", "source_location": "L1"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_github_pull_request_template_type_of_change", "label": "Type of Change", "file_type": "document", "source_file": ".github/PULL_REQUEST_TEMPLATE.md", "source_location": "L6"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_github_pull_request_template_related_issue", "label": "Related Issue", "file_type": "document", "source_file": ".github/PULL_REQUEST_TEMPLATE.md", "source_location": "L20"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_github_pull_request_template_screenshots_videos", "label": "Screenshots/Videos", "file_type": "document", "source_file": ".github/PULL_REQUEST_TEMPLATE.md", "source_location": "L25"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_github_pull_request_template_testing", "label": "Testing", "file_type": "document", "source_file": ".github/PULL_REQUEST_TEMPLATE.md", "source_location": "L32"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_github_pull_request_template_checklist", "label": "Checklist", "file_type": "document", "source_file": ".github/PULL_REQUEST_TEMPLATE.md", "source_location": "L40"}, {"id": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_github_pull_request_template_additional_notes", "label": "Additional Notes", "file_type": "document", "source_file": ".github/PULL_REQUEST_TEMPLATE.md", "source_location": "L52"}], "edges": [{"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_github_pull_request_template_md", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_github_pull_request_template_description", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".github/PULL_REQUEST_TEMPLATE.md", "source_location": "L1", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_github_pull_request_template_md", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_github_pull_request_template_type_of_change", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".github/PULL_REQUEST_TEMPLATE.md", "source_location": "L6", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_github_pull_request_template_md", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_github_pull_request_template_related_issue", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".github/PULL_REQUEST_TEMPLATE.md", "source_location": "L20", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_github_pull_request_template_md", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_github_pull_request_template_screenshots_videos", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".github/PULL_REQUEST_TEMPLATE.md", "source_location": "L25", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_github_pull_request_template_md", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_github_pull_request_template_testing", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".github/PULL_REQUEST_TEMPLATE.md", "source_location": "L32", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_github_pull_request_template_md", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_github_pull_request_template_checklist", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".github/PULL_REQUEST_TEMPLATE.md", "source_location": "L40", "weight": 1.0}, {"source": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_github_pull_request_template_md", "target": "users_cassiorossi_desktop_apps_0_ios_apps_macmagazine_github_pull_request_template_additional_notes", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".github/PULL_REQUEST_TEMPLATE.md", "source_location": "L52", "weight": 1.0}], "input_tokens": 0, "output_tokens": 0} \ No newline at end of file diff --git a/graphify-out/cache/stat-index.json b/graphify-out/cache/stat-index.json index 84400521..dfa931c8 100644 --- a/graphify-out/cache/stat-index.json +++ b/graphify-out/cache/stat-index.json @@ -1 +1 @@ -{"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/.claude/agents/architecture-guardian.md":{"size":2154,"mtime_ns":1781684529394446362,"word_count":266},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/.claude/agents/ios-principal-engineer.md":{"size":11468,"mtime_ns":1781684529394877773,"word_count":1564},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/.claude/agents/swift-code-reviewer.md":{"size":2730,"mtime_ns":1781684529395355432,"word_count":350},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/.claude/agents/test-runner.md":{"size":1799,"mtime_ns":1781684529395707176,"word_count":247},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/.claude/hooks/post-tool-use.sh":{"size":2385,"mtime_ns":1781684529396092962,"word_count":307,"hash":"519f38e4496778bc8afe5109216fe63c2b6f5593841883fc883017071c9c0cf0"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/.claude/hooks/pre-tool-use.sh":{"size":2333,"mtime_ns":1783719971199502329,"word_count":299,"hash":"92ff8762b53b718e0457cdddc932f874cf6b4d33be87af06d6a11002074ff1f1"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/.claude/hooks/stop.sh":{"size":1017,"mtime_ns":1781684529396936783,"word_count":95,"hash":"454af0ee4db26572bdafe34416e69b731250c585012d2825d02020e0a2128ed2"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/.claude/rules/anti-hallucination.md":{"size":2447,"mtime_ns":1781684529397246612,"word_count":394},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/.claude/rules/architecture.md":{"size":5279,"mtime_ns":1781684529397629898,"word_count":628},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/.claude/rules/concurrency.md":{"size":1783,"mtime_ns":1781684529397891644,"word_count":261},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/.claude/rules/data-layer.md":{"size":4714,"mtime_ns":1781684529398464427,"word_count":622},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/.claude/rules/git-workflow.md":{"size":1643,"mtime_ns":1781684529398742214,"word_count":216},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/.claude/rules/swift-style.md":{"size":2304,"mtime_ns":1781684529398998585,"word_count":343},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/.claude/rules/testing.md":{"size":1769,"mtime_ns":1781684529399269831,"word_count":236},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/.claude/rules/ui-systems.md":{"size":4688,"mtime_ns":1781684529399693991,"word_count":635},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/.claude/settings.json":{"size":2398,"mtime_ns":1783794015789434064,"word_count":160,"hash":"e047a334f0aa76e4983e19808842ea40987326a6b75976a77ef0df5645c022fc"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/.claude/skills/README.md":{"size":2571,"mtime_ns":1781684529400127777,"word_count":315},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/.claude/skills/ios-design-guidelines/SKILL.md":{"size":3075,"mtime_ns":1781684529400389898,"word_count":416},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/.claude/skills/ios-dod/SKILL.md":{"size":3104,"mtime_ns":1781684529400661477,"word_count":453},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/.claude/skills/ios-fix/SKILL.md":{"size":3838,"mtime_ns":1781684529400996722,"word_count":579},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/.claude/skills/ios-implement/SKILL.md":{"size":2985,"mtime_ns":1781684529401266343,"word_count":425},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/.claude/skills/ios-sanity-check/SKILL.md":{"size":3063,"mtime_ns":1781684529401542172,"word_count":422},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/.claude/skills/ios-start/SKILL.md":{"size":4933,"mtime_ns":1781684529401811084,"word_count":683},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/.github/ISSUE_TEMPLATE/bug_report.yml":{"size":2724,"mtime_ns":1778008694116636974,"word_count":323},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/.github/ISSUE_TEMPLATE/config.yml":{"size":203,"mtime_ns":1778008694116761598,"word_count":20},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/.github/ISSUE_TEMPLATE/feature_request.yml":{"size":1648,"mtime_ns":1778008694116865264,"word_count":187},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/.github/ISSUE_TEMPLATE/improvement.yml":{"size":1350,"mtime_ns":1778008694116977929,"word_count":153},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/.github/PULL_REQUEST_TEMPLATE.md":{"size":1609,"mtime_ns":1764879432111650411,"word_count":301},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/.github/workflows/issue-validation.yml":{"size":6764,"mtime_ns":1778008694117131677,"word_count":561},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/.github/workflows/pr-validation.yml":{"size":5304,"mtime_ns":1766772439637285639,"word_count":573},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/.swiftlint.yml":{"size":4315,"mtime_ns":1772824345377043222,"word_count":562},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/CLAUDE.md":{"size":8417,"mtime_ns":1783794008672275327,"word_count":1071},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/FeedLibrary/Package.swift":{"size":950,"mtime_ns":1765557225820471676,"word_count":70,"hash":"aafd83c741b9e95ee7d3194b578285a7c9c7b5b1bf225e146e29139d92c80333"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Database/FeedDB.swift":{"size":3591,"mtime_ns":1778008694118153959,"word_count":401,"hash":"c2397faa829005e824f6dfdc2cc892995193fbf8f6de47500c5940f66e3427ba"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Database/PodcastDB.swift":{"size":2479,"mtime_ns":1772834671310940555,"word_count":291,"hash":"39d62c0ff41dda0ad66e2fcbb546826f7cb4de52745ba5cbddf4669799b7fea5"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Extensions/StringExtensions.swift":{"size":676,"mtime_ns":1772824345378082712,"word_count":59,"hash":"209f44c04ea25f127ae94dd3da6906c81d66ccb64e1ffef5a80d599f85a91dd0"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Models/NewsCategoryExtensions.swift":{"size":544,"mtime_ns":1766840448997717852,"word_count":50,"hash":"372c9dd6cb2c78b4808297769a0a83cef5fcf681fbd2be109002fdb78d56e279"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Models/WidgetData.swift":{"size":612,"mtime_ns":1766185900750943100,"word_count":70,"hash":"e58baca31a3f90a2d5213abd631056cf8a023153c36c5af8bd2788474ad924d6"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/FeedEndpoint.swift":{"size":1066,"mtime_ns":1765018927098245882,"word_count":111,"hash":"6fdbb9fede791bb866fa587c2d04025174cdf111f1010181f961ea389716d13d"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/NetworkService.swift":{"size":889,"mtime_ns":1772824345378407375,"word_count":99,"hash":"13391c93d9f2237c49a13feb30d22db89fb26260605aacfa97502efa133af150"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/Parser/APIXMLParser.swift":{"size":3330,"mtime_ns":1766840448999429377,"word_count":347,"hash":"efd42561333bbbab7293e18611681eb7e1df86f8a3c6575ed23cac75688e2734"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/Parser/DateParser.swift":{"size":442,"mtime_ns":1772795253891632282,"word_count":47,"hash":"70c199f0878c94ef345cee39a387597d08bcbd29a9553a5b23b947190c707981"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/Parser/XMLPost.swift":{"size":1896,"mtime_ns":1772824345378611040,"word_count":182,"hash":"7446dc95d03b0872628e25fc5d795e52a331b46bf8a9888f9c52d03f55b973ee"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/StorageService.swift":{"size":2729,"mtime_ns":1773698736918326276,"word_count":245,"hash":"aa94aeb3353ad558cce9551fec38b15a97f2cb69c294cf524db0b11bdaa6a3b2"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift":{"size":5351,"mtime_ns":1773735451938945400,"word_count":513,"hash":"6f61df6dc7491e6771adde08837ef5f834c486578da7130c61d6b3f8cda80911"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/CategoryTests.swift":{"size":4559,"mtime_ns":1766864993023832333,"word_count":415,"hash":"32a85a0f86d71f239b3f33d00ae5216fda8c2b37ff4d6be3814d7d28f774d313"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/DateParserTests.swift":{"size":7878,"mtime_ns":1766864993025024574,"word_count":842,"hash":"a627d7d974484a7436cca86181d703285352429fe14e3b4dbaf499d4de1a12de"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedDBTests.swift":{"size":17306,"mtime_ns":1778008694119013992,"word_count":1433,"hash":"f99a17435182385286b0da97b0ca5b528485f3a4d2eab51e616176c8308a8800"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedEndpointTests.swift":{"size":7562,"mtime_ns":1766840449002973177,"word_count":762,"hash":"d4831e3481de522560ff8b58b09a82aeadb9993cdfb9f5c22e47ddea1a91134c"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedViewModelTests.swift":{"size":13311,"mtime_ns":1772824345379522198,"word_count":1208,"hash":"d2a349cb95b2beac4fb190c6228c22bb97be91ecfcd1d91b571a20ebcff08c72"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/PodcastDBTests.swift":{"size":18624,"mtime_ns":1773260916535446283,"word_count":1483,"hash":"9db466da865f1b94c3aec5b8b1e52e045c3c785db365e0049432c6cf4527cace"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/Resources/feed.json":{"size":221301,"mtime_ns":1765040951980836927,"word_count":12073,"hash":"8235466c6815a07ce40a93a4f72366887773ca4e2c4616913c65bb4588d4985b"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/Resources/podcasts.json":{"size":674835,"mtime_ns":1764786915369912982,"word_count":26525,"hash":"3ff67329cd6577f3820a3939432fc29cd6d027ad3c0213bf5a00e62d02ed3dfa"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift":{"size":13639,"mtime_ns":1773260916535960487,"word_count":1199,"hash":"4a2c258e22c59ec71db58b63297c623f5feaff7c529ab6bf89df22b6f4b72f69"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StringExtensionsTests.swift":{"size":3059,"mtime_ns":1772824345379962194,"word_count":293,"hash":"52cd00a9ba9ea3b6094258afe3eec6f4fe113d161b6488456e6314b393d16da6"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/WidgetDataTests.swift":{"size":8430,"mtime_ns":1766105925420523504,"word_count":733,"hash":"ec91fd20ebf5fe35b71ec727de1fb1b066cd6a11fe579e290a6990b69d735be0"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/XMLParserTests.swift":{"size":8092,"mtime_ns":1764788006406190634,"word_count":709,"hash":"c25583c3744d3561ad3e5f5ca6c6d69b049d59d3c9b91ffa04c747e44ec1b9ba"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/XMLPostTests.swift":{"size":5851,"mtime_ns":1764788212982560277,"word_count":482,"hash":"ce2ca8cbf151946915aa0bcd98724a332399e000d5231e97c9adf8fb00d6a68d"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MMLiveLibrary/Package.swift":{"size":1104,"mtime_ns":1765903841706937684,"word_count":77,"hash":"8069c3be2eb1d6b483de3a096c3741c35307721ed2d5c100ccf80bd398cd3b20"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MMLiveLibrary/Sources/MMLiveLibrary/Models/MMLive.swift":{"size":112,"mtime_ns":1765018927060382459,"word_count":16,"hash":"aba8b519de94e6939e568884357f1401e802451e5131a5f85fbec4763aaf2e87"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MMLiveLibrary/Sources/MMLiveLibrary/Services/MMLiveEndpoint.swift":{"size":337,"mtime_ns":1765020529280492765,"word_count":34,"hash":"8979aa0c12fc0a7a099956099954ff485a020ed1a85d06c1ac5b81dddd80f84f"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MMLiveLibrary/Sources/MMLiveLibrary/Services/NetworkService.swift":{"size":494,"mtime_ns":1765018927085008261,"word_count":57,"hash":"ac977f46c209e59b5ceef202c83e950c19c76e3d0d4ede44d0f420a4bbc34298"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MMLiveLibrary/Sources/MMLiveLibrary/Services/PushNotification.swift":{"size":2352,"mtime_ns":1774436208300682299,"word_count":204,"hash":"7f94a046960c005b979f7b1728d8296c767e5a09ce6dd1e7473b678cad12877a"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MMLiveLibrary/Sources/MMLiveLibrary/Services/StorageService.swift":{"size":483,"mtime_ns":1765020801704856976,"word_count":57,"hash":"9bd5fa0fc6dcf3bb1d1b4a861fc4ca675eb27d52ea0e9d733c8480f51aa65204"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MMLiveLibrary/Sources/MMLiveLibrary/ViewModel/MMLiveViewModel.swift":{"size":1732,"mtime_ns":1776796100000039816,"word_count":175,"hash":"89f6b8c2398439a90d3c50e62ee90aa28ac43506a5046f42329935a27d6e7852"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MMLiveLibrary/Tests/MMLiveLibraryTests/MMLiveViewModelTests.swift":{"size":11628,"mtime_ns":1766171878079136186,"word_count":1135,"hash":"f50ccde903052b96ee024a847e24c7ceb26c866bee2c55db5ad936eaa2c3cb24"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MMLiveLibrary/Tests/MMLiveLibraryTests/Resources/live.json":{"size":52,"mtime_ns":1765040992318965064,"word_count":6,"hash":"dbdceef35a3e17b8553540a525d0ea800580a385eba42c3a7ca2d3918ff83102"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineLibrary/Package.swift":{"size":1331,"mtime_ns":1773484237144747362,"word_count":86,"hash":"b0e847a0f9ff319845a202a0466397897d2fa78194123bd9dc10630cc2d19fe0"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift":{"size":10687,"mtime_ns":1773686857601141885,"word_count":859,"hash":"00670a31572748300f2c7e07cf8537a6b1be3cc9c3efaac255db1fccc8e03bbc"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AppDefinitions.swift":{"size":2423,"mtime_ns":1773255289615695063,"word_count":278,"hash":"42e823188dba53fecdd1da296f75b11c33e23803736e17ba16421b25758c3f45"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/DateExtensions.swift":{"size":584,"mtime_ns":1766840449005139490,"word_count":60,"hash":"0562e6960e57b97ddd938922af2b5500885e696b2303317bfc5633a4f9890455"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/EnvironmentValuesExtensions.swift":{"size":556,"mtime_ns":1778008694119760526,"word_count":60,"hash":"dabc7004539c38a2f2c8f5386079f104bfe1e897aa8475baea06a0e04b42790e"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/ModelProtocols.swift":{"size":412,"mtime_ns":1778008694120197063,"word_count":40,"hash":"1f12e6a9ebbbd6cc99ead6393fd5139a8d5234c8c9b84c5f6dc55480d19e856f"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/NewsCategory.swift":{"size":833,"mtime_ns":1773159239849595906,"word_count":87,"hash":"4596a2e90f8c96a74c7b82749fb664181b506fb93e736d352c1c3e377e6b4125"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/PushNotification/PushNotification.swift":{"size":6749,"mtime_ns":1776153759982987395,"word_count":526,"hash":"7efe51476f20a60ed9e4a7b9d2dcd30bec29667396f3acd80e1a967b503bd1d6"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/PushNotification/UserModel.swift":{"size":586,"mtime_ns":1766840449008860706,"word_count":65,"hash":"1092a5d33f86732f862f47c60db18d96224cede9f25a5e7eacd287ce02a7eb18"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/Resources/Media.xcassets/Colors/Contents.json":{"size":63,"mtime_ns":1763922427680209000,"word_count":12,"hash":"aa7242648912ec9bebfb15effba8136eca531d25c517b308f1d29b1bb0ec3777"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/Resources/Media.xcassets/Colors/MMBlack90.colorset/Contents.json":{"size":329,"mtime_ns":1701451154915753007,"word_count":44,"hash":"11fe1254d0dff3b04b3f6fb4c1516c8dd41629825cc37b0ee80102b6fc3a49a4"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/Resources/Media.xcassets/Colors/MMBlue.colorset/Contents.json":{"size":329,"mtime_ns":1701451146420192003,"word_count":44,"hash":"d219584a7f0fe2abb0988754e28986adfa7084497730908ed820c41dad3c2519"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/Resources/Media.xcassets/Colors/MMBlueWhite.colorset/Contents.json":{"size":695,"mtime_ns":1701451128475857973,"word_count":84,"hash":"a3bc47dae385b53b64695c96f728882f0da1372442c2eba7864dc7aa952e71b8"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/Resources/Media.xcassets/Colors/MMDarkGreyWhite.colorset/Contents.json":{"size":649,"mtime_ns":1701451126025890946,"word_count":78,"hash":"9ca6031f9e3c16892ee3f86f9a5018ea79a224bd6f13c529ca7a86530c12485b"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/Resources/Media.xcassets/Colors/MMGray6Gray3.colorset/Contents.json":{"size":852,"mtime_ns":1765561318241547000,"word_count":100,"hash":"e9b4edb24614f1df6a66f377e20cbe223666ecc8769f09777c6bcf3727cb8b9b"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/Resources/Media.xcassets/Colors/MMGrey6.colorset/Contents.json":{"size":348,"mtime_ns":1765561296523352000,"word_count":46,"hash":"70e65f2de8840bce3c7a35bcf79e4582d6fcc8f7f38e765422bd01ef2d1ce3a9"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/Resources/Media.xcassets/Colors/MMLessDarkGreyWhite.colorset/Contents.json":{"size":649,"mtime_ns":1701451114360242963,"word_count":78,"hash":"1d9bfab27e25bbd66cf18b6b8e9180342b0e04ab71b9738ab70ef0a07a4a31dc"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/Resources/Media.xcassets/Colors/MMWhiteBlack.colorset/Contents.json":{"size":695,"mtime_ns":1704656055051849961,"word_count":84,"hash":"8115d1f3e7edeab3ebe85e0046486b08cb1df8ffb195dc1a104f6a15a598d363"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/Resources/Media.xcassets/Colors/MMWhiteGray3.colorset/Contents.json":{"size":862,"mtime_ns":1765561285819658000,"word_count":100,"hash":"db3c733b5e7b09a2b89102738373cc31f9840354f3711816fddc9266e212df37"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/Resources/Media.xcassets/Colors/MMWhiteGrey6.colorset/Contents.json":{"size":585,"mtime_ns":1701450059336166978,"word_count":71,"hash":"ff92f00c8e1ec98a01e3cf422cf9f0383bca73f18dd71a603c46ff0610d47268"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/Resources/Media.xcassets/Colors/TabascoDracula.colorset/Contents.json":{"size":692,"mtime_ns":1702852492228495002,"word_count":84,"hash":"8dc700de0c2feca30d339adf44c42901777cf805957410b8fc67785ab98b7d4c"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/Resources/Media.xcassets/Contents.json":{"size":63,"mtime_ns":1704574158159963012,"word_count":12,"hash":"5dff35257059dfd569e9587b63366ddb0c77f22784cfe7cc394abc705813a285"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/Resources/Media.xcassets/Images/Contents.json":{"size":63,"mtime_ns":1701450059334352016,"word_count":12,"hash":"bbaa319affedc72e47f62df7a7eef1091c0c50041755db73ff16580308b194ba"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/Resources/Media.xcassets/Images/chrome.imageset/Contents.json":{"size":156,"mtime_ns":1765561994764615113,"word_count":24,"hash":"a07eeb7e1dd6e4154a60acac2ec86c3b82fdeb79e0efcca1593c1ea897eb5399"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/Resources/Media.xcassets/Images/logo.imageset/Contents.json":{"size":154,"mtime_ns":1701450059335533977,"word_count":24,"hash":"e3e0b8c875f4bbb4578bb89ac6a84feb25a215d1bb23803b74b82fe568eb00b5"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/SessionState.swift":{"size":391,"mtime_ns":1773159239850010027,"word_count":48,"hash":"4ebeac5a1c8c6290f84693e2b1f5a68f811c825fbe1d8d5c62a0dbe20f3e5444"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/ThemeColor.swift":{"size":900,"mtime_ns":1763922429371040523,"word_count":89,"hash":"10a8e8b129d763b5ab891c919872f9ab496ad1764f6b8da1d7993dcbb264df8f"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/URLClassifier.swift":{"size":1428,"mtime_ns":1772824345383978029,"word_count":128,"hash":"c59b45066ce768b86e823db58f5caef92fee27ae5e38ad0aabfddc8d97e09b1b"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/Utils.swift":{"size":677,"mtime_ns":1773159239850356774,"word_count":72,"hash":"a73b92c1ca838f92a0a19aa91220714c28ac07cf144269fc28ebb5714870e652"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineLibrary/Tests/MacMagazineLibraryTests/AppDefinitionsTests.swift":{"size":2816,"mtime_ns":1766864993027281058,"word_count":275,"hash":"760f2d6862fab877bdac388eddb6744bc5503c8305581985b9f4e4f1cc7f566c"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineLibrary/Tests/MacMagazineLibraryTests/URLClassifierTests.swift":{"size":2116,"mtime_ns":1772824345384359734,"word_count":168,"hash":"0787ed21c01533f59867fb9e8efbd8a102f618b476bbac6ecd3c0941241bd627"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Package.swift":{"size":865,"mtime_ns":1766602181515119374,"word_count":62,"hash":"0fdaff7fcbc8358f2c47caec884a71a1881bca55a083311ad1078987290c86af"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/ArrayExtensions.swift":{"size":428,"mtime_ns":1772824352298298717,"word_count":50,"hash":"a35a1f5a1aafceb88ba13a365283f8fbfff2a85b68e42b61bb39ab912312f67a"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/ButtonWithGlassEffect.swift":{"size":494,"mtime_ns":1774899429410896323,"word_count":41,"hash":"77d1ac9a5ad34dd886004ae806632dcd5295ba37a491c277d1f752551e8629a3"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardDensity.swift":{"size":1087,"mtime_ns":1773159239850797437,"word_count":123,"hash":"fafa7a41732d7ba59c69dc90132d5cf4f69e7afe82486b6e8d4c65a9cd71a6b1"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/DynamicTypeSize.swift":{"size":190,"mtime_ns":1765321618235858131,"word_count":21,"hash":"1010ce4105cd089481e5e95716d176191e67fa2064875348bef1fc6a47acad5f"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Model/CardContent.swift":{"size":2858,"mtime_ns":1778008694120991263,"word_count":327,"hash":"7483371001b9a9f2249df755554f208c97059ffdd5a7da01d091d27edc9b9250"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Model/CardStyle.swift":{"size":336,"mtime_ns":1783712032843442126,"word_count":38,"hash":"866d4c96416b44319b0d1b58e41d0c646eff27f2857466f4afd5466925886004"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/FavoriteAndShare/FavoriteButton.swift":{"size":956,"mtime_ns":1778008694121780005,"word_count":94,"hash":"eaa81d35b47a0409de6ead77279428d5bf144594bc423d39f6049de7d7efbb28"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/FavoriteAndShare/FavoriteShareGlassContainer.swift":{"size":576,"mtime_ns":1772824345386592254,"word_count":49,"hash":"39090f7cbe993aaf0d1589dec003b5c0fe369965e46c26d25d9b940057081e76"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/FavoriteAndShare/ShareButton.swift":{"size":498,"mtime_ns":1778008694122042294,"word_count":57,"hash":"068e5dc0105d037a76ed2310fa50e63f4e1020330693c57664cc8caef1488b7d"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/Menu/MenuButton.swift":{"size":1452,"mtime_ns":1783713697547860921,"word_count":147,"hash":"ab2aad45deb29d570da7f87bc197ecb9559919a8dfff33c0eb0e9adf68c7b4da"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/Metadata/MetadataContent.swift":{"size":285,"mtime_ns":1773159239852449172,"word_count":37,"hash":"e6357fedfc92b5ae974a8f558d70da4a3826ef94e5c3c2dad9d371e2fd13b09c"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/Metadata/MetadataDuration.swift":{"size":503,"mtime_ns":1778008694122992035,"word_count":41,"hash":"45deb393f717cbeb9e62dada275dace48e35ce3aff433a941e21bc890412b89b"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/GlassCardView.swift":{"size":7076,"mtime_ns":1783712876295420047,"word_count":574,"hash":"69a733b9695ea942fdc46b9409d4e120b05f3e68941aa6f1699202ee3598038e"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/LeadingImageCard.swift":{"size":3058,"mtime_ns":1778008694124346146,"word_count":264,"hash":"7dbc80358e82daea9d503790740c1eb9c2a255e47d981b8e642cdbc974eb3817"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/NewsCard.swift":{"size":1607,"mtime_ns":1783712913466817599,"word_count":141,"hash":"75275376c48040f7a4dfbbaeac57854a128772a0ad3a4688e789f9cbcb5efc40"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/MenuView.swift":{"size":1807,"mtime_ns":1778008694125432260,"word_count":149,"hash":"0e05fb2c38bc1bfc39fe5ac71f5d4d726bf0d667d1a508f8ed5393bf8f41b8b1"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/PaginatedForEach.swift":{"size":1516,"mtime_ns":1778008694125873547,"word_count":152,"hash":"8a2992d8312fd1c3577e25eda686687cf521c868cf1d544f8af60bb80591f9b2"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/PreviewData/ContentPreview.swift":{"size":1272,"mtime_ns":1773159239854127573,"word_count":104,"hash":"8f484508d7719acb2edfe3e700c5e5698a425cf147eae87b7c38c02b33f9e71a"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/Cookies.swift":{"size":5263,"mtime_ns":1778008694126444583,"word_count":460,"hash":"414d37c2d7a315df8dfe21b99740ccd90b1aff96fdfab154f992e132dc8a9a47"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/Disqus/DisqusDataStore.swift":{"size":381,"mtime_ns":1772824345391309708,"word_count":42,"hash":"f4186f5e253ee4042a3847bcab4fc242f14d5268fdc1805e646be773899b37d5"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/Disqus/DisqusHTMLBuilder.swift":{"size":1477,"mtime_ns":1772824345391612621,"word_count":108,"hash":"3547be831d83751466b942afc9d703a322a45a2df1959c88eb9e5b364010595b"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/Disqus/DisqusNewWindowHandler.swift":{"size":517,"mtime_ns":1772824345391950910,"word_count":51,"hash":"fab08e55c76045843baa9ab5b9a8e3982c643d636bbf13737e06a8aad8bc0d46"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/Disqus/DisqusWebView.swift":{"size":5053,"mtime_ns":1778008694126687539,"word_count":376,"hash":"045ea6243b9a3a6561075d66b9fb5a581139ab2f7b2b6a87968ca557b65bc7ce"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/GalleryStateMessageHandler.swift":{"size":555,"mtime_ns":1781684811271751516,"word_count":52,"hash":"606d8f40502bdcd3345d6fc98189df388ee18ad1a64ed0aa2eb587703319ae3f"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/InteractivePopGesture.swift":{"size":2087,"mtime_ns":1781684811271963266,"word_count":202,"hash":"6a13fd619ba9a36a159e303ca5472e40ac311610c3fb35277addf103fe4b72a7"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMNavigationDecider.swift":{"size":1162,"mtime_ns":1774894213830980517,"word_count":97,"hash":"c70468ce72ea26fbe29bcabde0f2c0c96dda1c96e3df79880d68d9b56ae85782"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift":{"size":5946,"mtime_ns":1781684811272333683,"word_count":491,"hash":"0e9ce0964c834b0f1a661127579311cccdf4123e1a65c17ba5335c93afd8ca9f"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebViewUserScripts.swift":{"size":4700,"mtime_ns":1781684811272664892,"word_count":307,"hash":"3c7cab210a10cbf70740c70011fd06f7962cdba6709ae8f76651d0b2275135a9"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/ManagedWebView.swift":{"size":5590,"mtime_ns":1778008694127828986,"word_count":539,"hash":"2770ac9fcfd1bdad90042e6249e37c9c1d6ad46e19816b08bee1515b84a60d16"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WebPageCache.swift":{"size":1410,"mtime_ns":1781684811273124726,"word_count":136,"hash":"d568faa2e4c6212e77184464185ac4d21a30d6c60c0e6de73dcb0f77c2363655"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WebViewStatus.swift":{"size":612,"mtime_ns":1778008694128565686,"word_count":53,"hash":"2ac6ad2eb7f50158ecaddc72ad1534d16041bb52cefa95aefa1f71488739d778"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CardSystemTests.swift":{"size":7256,"mtime_ns":1773260916537277267,"word_count":674,"hash":"f5777b9ccc783c9f80b897ffac7e073059e83c6678acd3833cdfdea1afaf9d57"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CookiesTests.swift":{"size":10862,"mtime_ns":1766185900751824009,"word_count":1137,"hash":"8763156b5abfc447d7797abff3063543d56e95cd01462f402ca808e2adb8edac"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/NewsLibrary/Package.swift":{"size":1226,"mtime_ns":1766840449017107003,"word_count":85,"hash":"11b18b65a9e0421e757ab4ac47c69b962ddc05e206fcd839c0a1cee58916a1bb"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Extensions/ArrayExtensions.swift":{"size":402,"mtime_ns":1772892114936106325,"word_count":46,"hash":"884bb980cb89e9127bf9b4ed2e1247e6bef612a3c2e46bd8c12be208ca9e1a28"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Extensions/FeedDBExtensions.swift":{"size":1535,"mtime_ns":1783713592412809284,"word_count":120,"hash":"fb63f0838d000cdc4b181906406fc13b05d59b47b337f673b493447283307045"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Modifiers/CardAccessibilityModifier.swift":{"size":2172,"mtime_ns":1778008694129805882,"word_count":204,"hash":"c99a594d1dc9d038a3c77ce5cc2ffee6fb52f615859bedec808520068625081e"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/ViewModel/NewsViewModel.swift":{"size":1382,"mtime_ns":1772824345395806372,"word_count":151,"hash":"f3452f74ba8c631d57c1fb882a05d1332b9692f82775d38691ef630475b5a24a"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/CollectionViewWithHeader.swift":{"size":4139,"mtime_ns":1773159239857440377,"word_count":390,"hash":"3906ab925910d1f432e2b628a865cc9e87be54ef6f7d472254e503b96cbf8ed4"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/FeedHighlightCardView.swift":{"size":1395,"mtime_ns":1778008694130507458,"word_count":137,"hash":"7d94080cc0a54ed664d84109d045e661002cadba277d9f471776745d5dc903b9"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/FeedHighlightsCarouselView.swift":{"size":4504,"mtime_ns":1773159239858216411,"word_count":400,"hash":"6c0c4286023592c25ca52979e7829719899374aa1a0863112eeef8a989e5f9e6"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Mock/PreviewData.swift":{"size":1963,"mtime_ns":1772824345398413013,"word_count":187,"hash":"dc215b79e12b6b1ac8f21a1231d3ca82a1a18ff3c522250076781435300c547e"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/NewsView.swift":{"size":9617,"mtime_ns":1778008694130868871,"word_count":734,"hash":"074edaf9faa6b86f6072912f1459b812b159750e5738e9ff2f72b2d4bb1db889"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/NewsLibrary/Tests/NewsLibraryTests/NewsViewModelTests.swift":{"size":8978,"mtime_ns":1772824345399070049,"word_count":895,"hash":"7b09b3519c5ae0011c5c2684927d283bc5924d4398313f1cc3b86cfc68d11c34"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/NewsLibrary/Tests/NewsLibraryTests/Resources/feed.json":{"size":221301,"mtime_ns":1766840449022705159,"word_count":12073,"hash":"b5552cb9deb6b293b2b01d7b608519a42f717f68f110eaea07e000e250658d9d"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/OnboardingLibrary/Package.swift":{"size":1183,"mtime_ns":1766864993028260801,"word_count":79,"hash":"7d3fc19a1862fdab34dfa4addb1891b2f94ca08a52cf561c289a40769932ff90"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Extensions/Array.swift":{"size":287,"mtime_ns":1773159239859024737,"word_count":39,"hash":"538bc8b1a78505c5e403395b3b8ec479a5e8821be0f2500a3817bb55e6192b23"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Extensions/View.swift":{"size":1545,"mtime_ns":1773159239859528274,"word_count":170,"hash":"ea85e85bf8117532a8b550e1ad83249314d23a53fe4a51d57f5108e879adf5c5"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Model/OnBoardingFeature.swift":{"size":1641,"mtime_ns":1772824345399523586,"word_count":148,"hash":"7a724a4d4617a0ee25918da535ebef277d50b21d66b047249dbca3d653f4a88d"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Resources/Assets.xcassets/Contents.json":{"size":63,"mtime_ns":1766834687808660844,"word_count":12,"hash":"a12efc14ff3d5c9d8fc899d142422109e386b5d8d90b2312f7241b8434ec3197"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Resources/Assets.xcassets/icons without background/Contents.json":{"size":63,"mtime_ns":1766834687808862634,"word_count":12,"hash":"d70cbb8c85543225610f499d4adbf46dcc3c715560d36a14d04ff26bd6b15b71"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Resources/Assets.xcassets/icons without background/alternativa_without_background.imageset/Contents.json":{"size":171,"mtime_ns":1766834687809174506,"word_count":24,"hash":"80baf5759a296e8a7905fe8fd62f92c6783f552d532e07a4d6f458f7ee127338"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Resources/Assets.xcassets/icons without background/alternativa_without_background.imageset/alternativa_sem_fundo.png":{"size":52652,"mtime_ns":1766834687810058332,"word_count":1666},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Resources/Assets.xcassets/icons without background/normal_without_background.imageset/Contents.json":{"size":166,"mtime_ns":1766834687810392371,"word_count":24,"hash":"dbddf05d6aef1c148063c6b9ffccb596d6f87aa483b4ff5167fb0ab6ae591000"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Resources/Assets.xcassets/icons without background/normal_without_background.imageset/normal_sem_fundo.png":{"size":606390,"mtime_ns":1766834687812755226,"word_count":21818},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Resources/Assets.xcassets/icons/Contents.json":{"size":63,"mtime_ns":1766834687813277722,"word_count":12,"hash":"ccc7aef5ac0feda926fbef9c6fd6abbcce0f9beede63ac063624fc14a9f54767"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Resources/Assets.xcassets/icons/alternative.imageset/Contents.json":{"size":157,"mtime_ns":1766834687813496012,"word_count":24,"hash":"c0535e36744cd41bfc3c5eedc69dccadb4dfd343c5a3b8a543881eac5452b53b"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Resources/Assets.xcassets/icons/alternative.imageset/phone_2.png":{"size":615424,"mtime_ns":1766834687815145373,"word_count":22805},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Resources/Assets.xcassets/icons/normal.imageset/Contents.json":{"size":157,"mtime_ns":1766834687815418162,"word_count":24,"hash":"8e12a4c08a8783540f42f063e0a694463a1bdd3395a66eb4b723a4b63be731a9"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Resources/Assets.xcassets/icons/normal.imageset/phone_1.png":{"size":418674,"mtime_ns":1766834687816745943,"word_count":15397},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/ViewModels/OnboardingCoordinator.swift":{"size":4033,"mtime_ns":1773509682137097903,"word_count":308,"hash":"accf1e8415f68d1ba30da4101158af421834efbc0afa62092c13d46638f8b9e0"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/ViewModels/PermissionManager.swift":{"size":6440,"mtime_ns":1778008694131776446,"word_count":577,"hash":"66a4caa60c93db0cceabad0a30a949fe911a3f1fb15b6a7e535d72d8fcd7ddb8"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Components/OnboardingCTAButton.swift":{"size":1848,"mtime_ns":1766834687818571303,"word_count":165,"hash":"3b0a19031354e54d9e62e22a275a0e37a7ee7693dc65737d1ab10a53f61d9e70"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Components/OnboardingLogoView.swift":{"size":1344,"mtime_ns":1766834687818935883,"word_count":115,"hash":"52934548890ec3f0294e6871bd76b171dbfff09e4c1340959b3c5c395758c461"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Components/OnboardingSkipButton.swift":{"size":1042,"mtime_ns":1766834687819234756,"word_count":103,"hash":"8b86eb789da1de0a21b333fb012b85e8fa826b85d3f459c841cd048e44cabcab"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Components/OnboardingTitleView.swift":{"size":927,"mtime_ns":1766834687819560878,"word_count":88,"hash":"a93790f55d64e4d046bae14ad33341bd4a11221c9b4a9e47c8a4d8b92afc74d5"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Components/PermissionCard.swift":{"size":5004,"mtime_ns":1766834687819858084,"word_count":341,"hash":"c7464a5673a727766f27819b86f4742c16ba6a44d3c9bc0771ec0337a25eeeaf"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Modifiers/OnboardingFadeModifier.swift":{"size":377,"mtime_ns":1766834687820654035,"word_count":36,"hash":"78f5fab833aaa8b0765444e3fae9846d22f46aef6dc4ce9e06f2efb714882202"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/OnboardingContainerView.swift":{"size":2421,"mtime_ns":1773508198211896537,"word_count":182,"hash":"f8c67807e5c35ecd96d0a61b567313032cb83fc3fe59fd9ea83238b959501543"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Screen1_WelcomeView.swift":{"size":5805,"mtime_ns":1773254395582436393,"word_count":446,"hash":"9722d5368a68bff7605e6058c76a3e7397f2583c9577b93817493b55ebdfd9fc"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Screen2_FeaturesView.swift":{"size":9972,"mtime_ns":1778008694132223649,"word_count":766,"hash":"ef81b2bac3d45bbd1947c97bfaf144a13c30bec6a375e2a047d5ffe4448acc6b"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Screen3_PermissionsView.swift":{"size":8351,"mtime_ns":1773254395586231024,"word_count":614,"hash":"78bc6035d29a6ab5b5bdd4159a3e8c6ac6afa644305e8e8053b299301827b17f"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/OnboardingLibrary/Tests/OnboardingLibraryTests/OnboardingCoordinatorTests.swift":{"size":7707,"mtime_ns":1773254395587030934,"word_count":581,"hash":"89175c7191a0dc39c75ebc0af3ec6fe6ed864691143459e6c7a94b7278b76958"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/PodcastLibrary/Package.swift":{"size":1237,"mtime_ns":1766840449024719932,"word_count":85,"hash":"36031931c81bf046cbecb004f53eb64b10ed8e938e2d37ec01957b2d6409a161"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/PodcastLibrary/Sources/Podcast/Extensions/PodcastDBExtensions.swift":{"size":1295,"mtime_ns":1773159239859737481,"word_count":105,"hash":"cb354c3238475d1e7b56c384afb6b32c906dd4f45d276b76b48852048589e5c5"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/PodcastLibrary/Sources/Podcast/Extensions/UIColorExtensions.swift":{"size":539,"mtime_ns":1766148332292006238,"word_count":62,"hash":"734ca1d5828c3e48b146710cf9f9619ca99fb104e033fd226172d92e8a858820"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/PodcastLibrary/Sources/Podcast/Extensions/UIImageExtensions.swift":{"size":5171,"mtime_ns":1766148332199047086,"word_count":476,"hash":"52d7fe0da32b44c686112f6ea34893924d34813281fc330c5365a6ae7d5f585f"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/PodcastChapter.swift":{"size":1180,"mtime_ns":1765659248648790860,"word_count":122,"hash":"2806f0d31650285f9adec6cd78dc8114d6f21affbb950a04dd4480b3ebd64d7f"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/PodcastPlayerManager.swift":{"size":9664,"mtime_ns":1773595574120819462,"word_count":837,"hash":"167ac831312ba1a06b761168d6f95e030ae85620ca08914cd7d4af0d0227a3c2"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/SystemVolumeView.swift":{"size":1008,"mtime_ns":1765761218919057248,"word_count":85,"hash":"4104dd55d3df7834425525dd577d9189410f904a3f0370610cdd5e15eddfba87"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/PodcastLibrary/Sources/Podcast/Modifiers/CardAccessibilityModifier.swift":{"size":2104,"mtime_ns":1778008694132945559,"word_count":192,"hash":"672395732791e4b0faa78b2dff8b8b983533cdb5fa4f686c1f5d6bf5e4dc38be"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/PodcastLibrary/Sources/Podcast/Modifiers/PodcastMiniPlayerModifier.swift":{"size":2430,"mtime_ns":1772824352300491696,"word_count":159,"hash":"fe5c17e191671062a06c320822072714822b004492571c72e24854a3ded93196"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/PodcastLibrary/Sources/Podcast/ViewModel/PodcastViewModel.swift":{"size":1366,"mtime_ns":1772824345399903624,"word_count":148,"hash":"f0925c5b30b82ed19c63880f318b038dd807127ff1a83665338e9d5045be6045"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Card/AdaptivePodcastCardView.swift":{"size":1047,"mtime_ns":1772824352300702027,"word_count":94,"hash":"aeeb9aaa912a3374d3810507a26794d754e9f8b726a3c9a14bdd7eefc114506f"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Card/GlassPodcastCardView.swift":{"size":1800,"mtime_ns":1772824352300906900,"word_count":151,"hash":"b62f291d91f4a8a81beaafd63783dc95b7c5fa5e2c9e221bfef20dfe73d81661"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Card/PodcastCardView.swift":{"size":3551,"mtime_ns":1772824352301073648,"word_count":253,"hash":"0ae87dab82d5aa26c9ff4f6e9a7d1d0b430e7936cfd84b4fed104ac5c713888a"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/ChaptersView.swift":{"size":6773,"mtime_ns":1766772439639230457,"word_count":478,"hash":"44c693934345a70efd1e81d42823aa9cfdff4a03a64d571007aa612eab2ac127"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/FullPlayerView.swift":{"size":24165,"mtime_ns":1778008694133932132,"word_count":1565,"hash":"2131866fea1782be4ca05f3df9ee67b386f93775a71690b59b265e73d10f6227"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/Background/BackgroundView.swift":{"size":1032,"mtime_ns":1765735819925640495,"word_count":88,"hash":"6e0b62ecd67c67083a7e507586471497d5ba86a0a3e0f5d84d5784c9ccee5ebe"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/Background/BackgroundViewModel.swift":{"size":4878,"mtime_ns":1765734374801019365,"word_count":385,"hash":"4ddd473cf8d198b7b14b6958cdd0984a89cc422a20f9336a7699821cfd40274f"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/PodcastImageView.swift":{"size":1665,"mtime_ns":1765735902047535038,"word_count":136,"hash":"c440c291faccad8ee1279e2b2d638f9ee9578efa121d4ff54ff4a9d6a2d68cf6"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/ScrollStylePicker.swift":{"size":6424,"mtime_ns":1778008694134641375,"word_count":545,"hash":"9500b08b51b680db19455cf7f282f4799182c83d5062cd1cde633472e5eb2267"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/Ticker.swift":{"size":1689,"mtime_ns":1765569507883819433,"word_count":150,"hash":"6d42c923892eef063208bfa77b65d6124a4e29986015ca2069f8363b3e3a741a"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/MiniPlayerView.swift":{"size":5492,"mtime_ns":1778008694135322160,"word_count":318,"hash":"fdd454006cb59f449c6ce90a335ded592619c87ee9bfd6101cc431e9ccafd853"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/PodcastView.swift":{"size":3740,"mtime_ns":1773700012932481483,"word_count":265,"hash":"946c1d31c1e271b1cc5d857fc3569966e537ceaa660ab6eafe0e45302d129e31"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastChapterTests.swift":{"size":11314,"mtime_ns":1766185900752062091,"word_count":1289,"hash":"a7fc4676652797a01f41acc46f1222fb211d9598f3d5b7544622b5338a07a1dc"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastPlayerManagerTests.swift":{"size":10011,"mtime_ns":1766185900752260381,"word_count":1122,"hash":"e57a500238e3ff39aa0f53f578ccdd94b3195a8084062f396935bda6198bd6cf"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastViewModelTests.swift":{"size":12244,"mtime_ns":1772824345400778074,"word_count":1305,"hash":"4d897d3ed1df71fbd25f370040c1bc29d28b9d089a0379496a749e128f6e3c3d"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/Resources/podcasts.json":{"size":667613,"mtime_ns":1766150801880984974,"word_count":26525,"hash":"07cd73b7f39480a5670ea3d98be70e43b5e6b140ff82077b68741f3e52d9808b"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SearchLibrary/Package.swift":{"size":1522,"mtime_ns":1772892114938499026,"word_count":98,"hash":"3d90db817b1622892b6d378b4feea1e5deaf1eb426dddcc02d059fed8cfe10d4"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Models/RecentSearchDB.swift":{"size":288,"mtime_ns":1772824345401349151,"word_count":40,"hash":"2a6501ebecd6052bb2ad94f395c79c2888e0c578abe3e1205f15d13e5bebbd62"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Models/SearchResult.swift":{"size":1669,"mtime_ns":1772892114938805525,"word_count":163,"hash":"45181fcb53abc3089e0f25630552c56a99bd33a3960118802154425af12d9700"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/NLP/PortugueseLexicon.swift":{"size":2778,"mtime_ns":1772824345401680565,"word_count":285,"hash":"fb41b71fce39c476fb82b82fd0d198df1f3ab81b120f8dc05bf1a439d43cceed"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/NLP/QueryIntent.swift":{"size":487,"mtime_ns":1772824345401802647,"word_count":52,"hash":"b6612b95eb1cb88aeec54a38d0a54e60e419499f865ea6bf9982a40e82c0f638"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/NLP/QueryProcessor.swift":{"size":3991,"mtime_ns":1772824345401951187,"word_count":327,"hash":"c2c28101c164146d7e287c990b46d7f609ef721f4f16a05be333452d6b003a5d"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Services/LocalSearchService.swift":{"size":3380,"mtime_ns":1772824352302025598,"word_count":285,"hash":"db34e950c7a733f07cb62c230296815111af08e80d5df32ccaaea006f92cb111"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Services/RelevanceScorer.swift":{"size":1314,"mtime_ns":1772892114939137649,"word_count":143,"hash":"41233d075479ccaab4efd517b84209ab4c94d170416606c4d0a27f7b0b9fd3fb"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Services/RemoteFeedSearchService.swift":{"size":1790,"mtime_ns":1772892114939391190,"word_count":160,"hash":"69fb71db4b94a7c172efff1274b9985cd41c6348334245ed522b867b8fa5f2f0"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Services/SearchResultMerger.swift":{"size":2276,"mtime_ns":1772824352302392844,"word_count":220,"hash":"d6363e25b3fa7a757dc27a71d7fd6c57c083f41ffe4ced1692cc33e194b77f35"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/ViewModel/SearchViewModel.swift":{"size":5200,"mtime_ns":1773159239860160102,"word_count":459,"hash":"17ae55d05281acfa9c436c73b142801a59ca0813df1628f8df42f4e8fa6151a4"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/RecentSearchesView.swift":{"size":1835,"mtime_ns":1778008694135863154,"word_count":103,"hash":"c6c2e76fab483a514dfe1bd83734a081fb77044e73195a75f3aa3ce7572df441"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchResultsList.swift":{"size":2844,"mtime_ns":1783714432910535738,"word_count":230,"hash":"445790be5ef8d9c985403543c928023d17b33012717b54ac17cf9a7239d44f7e"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchView.swift":{"size":9549,"mtime_ns":1783719971199824369,"word_count":686,"hash":"d98a6815766b9df4ac12f736fb28b68e2e719fa30201832d89dd7cb037d7d3f5"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/QueryProcessorTests.swift":{"size":2832,"mtime_ns":1772824345403497881,"word_count":223,"hash":"cb80c32cee5af3701273b6211b7bea362ca3c180758de4e928d529d573d1b64d"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/RelevanceScorerTests.swift":{"size":2197,"mtime_ns":1772892114940363728,"word_count":220,"hash":"3e72a6280bf1814562311f0c43168a087a96d98d30d4f2155e70095beb162264"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/RemoteFeedSearchServiceTests.swift":{"size":5141,"mtime_ns":1773260916537563223,"word_count":485,"hash":"98f0663619eb288dce0b40b94f4dc14f80155684ca5c5a9185cadef465ec14c8"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchResultMergerTests.swift":{"size":3208,"mtime_ns":1772892114940756144,"word_count":313,"hash":"5073477f6c70bf756e6944c30f2b3891fb0c4290fd1541600791148af098c58b"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchViewModelTests.swift":{"size":7391,"mtime_ns":1773305059544444390,"word_count":627,"hash":"8d9c10f190984b56d12a0b57136bd09b39b86821bbcf412e33029739830ad81c"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SettingsLibrary/Package.swift":{"size":1344,"mtime_ns":1772824345404220498,"word_count":87,"hash":"f1c9b1cf36192a7b11001a4ce173aa1d1c6e54b3c9ecab1c41661eb210cac770"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/Cache.swift":{"size":85,"mtime_ns":1773686655527651149,"word_count":11,"hash":"4b8b25175b032b631ff5870033c20ccf096a1f14c68d1612df9749c78b62d0af"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/ColorScheme.swift":{"size":616,"mtime_ns":1762902416461877933,"word_count":95,"hash":"0b234f2f746bee402d36b0f234a5a115cc17d6d40f5b5864cb50173f707d3685"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/Databases/CustomizationDB.swift":{"size":1279,"mtime_ns":1766840449027171826,"word_count":144,"hash":"ae9b8d1ea9e77c6c2833fc56e19528bdb7b11488633196d416e58595e8436bb6"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/Databases/SettingsDB.swift":{"size":1685,"mtime_ns":1778008694137908592,"word_count":185,"hash":"3a9d6d70a639f5bfcff6a4ff2b2f03aa4f0373eafb6de4dd5049e40c147bc3ff"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/IconType.swift":{"size":497,"mtime_ns":1762902416462057139,"word_count":67,"hash":"043d465b79ef2352f4d59be4bad334a34fdd0b9de65489ed4b88e0da280e27be"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/PushPreferences.swift":{"size":388,"mtime_ns":1762902416462810211,"word_count":53,"hash":"f22dbd156b12114ab21591218ca650d0671d65bd3bbf6f6b6a809dc3fa6b3564"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/Subscription.swift":{"size":252,"mtime_ns":1762902416462941126,"word_count":29,"hash":"1a311e85e6d816b83e955ed9e0bfc4fb449ba7e6c9729a6784a39dbe4c23a6f1"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/URLs.swift":{"size":408,"mtime_ns":1762902416463140706,"word_count":41,"hash":"00ecc782723d9a053eb4795c23950241781cd172a69f93b76f559667aa798eff"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Resources/Assets.xcassets/Contents.json":{"size":63,"mtime_ns":1762980717204738000,"word_count":12,"hash":"96100647d106938e551b24a22a9b85800e3ec825e136966854bb858076e3a8c1"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Resources/Assets.xcassets/icons/Contents.json":{"size":63,"mtime_ns":1762902416463314371,"word_count":12,"hash":"5e3bfd29ff90f0bf4e4246f73dbb14fb7ac9e9c8f84524f4f7d42efe34c8469c"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Resources/Assets.xcassets/icons/alternative.imageset/Contents.json":{"size":157,"mtime_ns":1765561852066370000,"word_count":24,"hash":"fcc245d001f30ffbc4a5c3d8554a4f3178d9780935c04a4e5c17bf7339bc3ac2"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Resources/Assets.xcassets/icons/alternative.imageset/phone_2.png":{"size":615424,"mtime_ns":1765561852066475000,"word_count":22805},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Resources/Assets.xcassets/icons/normal.imageset/Contents.json":{"size":157,"mtime_ns":1765561852066437000,"word_count":24,"hash":"7f4a4ff2dc5efc51f063930dd8cbded8fb5283b4a425255d3baeba93f02b524f"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Resources/Assets.xcassets/icons/normal.imageset/phone_1.png":{"size":418674,"mtime_ns":1765561852066508000,"word_count":15397},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/AboutViewModel.swift":{"size":2352,"mtime_ns":1776460570891045439,"word_count":187,"hash":"a523a27f72dffc8ac2307b46b9662df3b1b6129f5817476a08923510b3741f2d"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/AppearanceViewModel.swift":{"size":378,"mtime_ns":1765117042843435682,"word_count":42,"hash":"9a8513083198e815391e3e7b150b6b4e4bd36660e25232a9e45306c5ed8975fa"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/CustomizationViewModel.swift":{"size":813,"mtime_ns":1772824345405103490,"word_count":81,"hash":"bbe07ae701d3b928ce7617d54d6d8158a077cb38acb0f5c4b0a53782ae2e3924"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/Extensions/Database.swift":{"size":3683,"mtime_ns":1778008694138227880,"word_count":347,"hash":"1118d3b399b5fc67896dee702e6c0c991707b7eb8e96156c728a01c10a45135e"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/IconsViewModel.swift":{"size":685,"mtime_ns":1765124023831773734,"word_count":70,"hash":"51838b31131d2ab2e6869632189016ec1aab41f5bee13632ca1ea017839a014d"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/PostsVisibilityViewModel.swift":{"size":1119,"mtime_ns":1776878759458723581,"word_count":100,"hash":"abd88b596b21491dbff8055dd1ee2531c1f8a154c56d9d43148f2b671881a515"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/PushOptionsViewModel.swift":{"size":516,"mtime_ns":1766772439641785228,"word_count":49,"hash":"fe2264c719c61c817212d6870ed878642041dc4f343e1c027226ae3c9ffdc4a7"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/ReadingPreferencesViewModel.swift":{"size":893,"mtime_ns":1778008694138343129,"word_count":84,"hash":"446ebdac23aee50bd925de323e71dda5f875fc2098881d021778e3c20385af03"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/SettingsViewModel.swift":{"size":2829,"mtime_ns":1778008694138520544,"word_count":263,"hash":"e5a4b66833719286f71704f6e2909a134bc9537dabaa604a05007903593c74f3"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/SubscriptionViewModel.swift":{"size":4871,"mtime_ns":1778008694139205662,"word_count":375,"hash":"41ffa6be72bbf712d9ee230906be7caf0f4303b97b8fe29402d2375981332652"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Extensions/CustomProductViewStyle.swift":{"size":2010,"mtime_ns":1772824345406023106,"word_count":154,"hash":"39f41c5f0e881d9832577e412066e118bed9264677191421ca62b8b61ff4bdc3"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Extensions/PlainButtonTextStyle.swift":{"size":415,"mtime_ns":1762902416468538421,"word_count":48,"hash":"6308bb237cd94ed7ab0c6138a0990b82d47760bf9370c77b31cb3d57d3cbafe2"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/SettingsView.swift":{"size":7333,"mtime_ns":1783714094225660389,"word_count":542,"hash":"b92b00b222736eff1a1afa3fdfaf6f86a222c5f1b8103ce6377505b8f65d18db"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/AboutView.swift":{"size":2868,"mtime_ns":1773688583027252030,"word_count":191,"hash":"44a826c2a07fa3673311539ec9c0c2075047c7946dae3f12261a27b7a06840db"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/AppearanceView.swift":{"size":2280,"mtime_ns":1766101710500413320,"word_count":158,"hash":"ca7416fffa55e714112629a2e61bf5bd2a7d1ca95b7b5f5adf2e8aba9a8d9796"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/CustomSocialView.swift":{"size":1711,"mtime_ns":1766101897069702076,"word_count":134,"hash":"c3ce947f91d76c9fff37d924e524a5b1d6b819e9ef4124e9792ddbb1b8859d55"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/CustomTabView.swift":{"size":1947,"mtime_ns":1773589049679822730,"word_count":164,"hash":"4b194132150a3be1db3eca9868037a81415bdd67bf7ad669434c29fe3d9f27d2"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/IconsView.swift":{"size":3945,"mtime_ns":1766101747488365642,"word_count":279,"hash":"2ab147536013bc8908c5536f602dcd94c6f7fef1405206d2ee769a0ffa3a05e2"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/PostsVisibilityView.swift":{"size":2459,"mtime_ns":1773870995261651121,"word_count":164,"hash":"230bfedbf27f00749948d62a8a94cbb4010e6e82c9d945834bf016e3a2c5ea41"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/PushOptionsView.swift":{"size":2095,"mtime_ns":1766101860121251072,"word_count":142,"hash":"5b3d0fbe9f9c8d733b85e877cbd54689c2e2a7f202ec625617db6639f5dfccf2"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/ReadingPreferencesView.swift":{"size":2220,"mtime_ns":1778008694140173819,"word_count":151,"hash":"3b874471991c0a156f3a3e499dd0c5431a6e90c3a8864718baa4f3e8dbf3370e"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/SubscriptionView.swift":{"size":5922,"mtime_ns":1778008694141027060,"word_count":428,"hash":"6e6f26a2ce85cb7b48edec02853684e14cda5f5c067c5066e8c45e8393c15feb"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/DatabaseExtensionsTests.swift":{"size":13062,"mtime_ns":1773686957647193415,"word_count":1197,"hash":"dfca0f5378df7d38e8ac7a1b44df5d1b60837adf22e3a8bf757762783b56bd53"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SettingsViewModelTests.swift":{"size":8746,"mtime_ns":1766864993029758540,"word_count":736,"hash":"ce9e90d2a3e269116822d36dfc78f5188da70a81cfd4b2dd4c51f5abba97197a"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SubscriptionTests.swift":{"size":8439,"mtime_ns":1766185900753144333,"word_count":836,"hash":"dc989c9ce34da7a1b4722850b47d32c993814b3bf119c12bbff0edebf8eed4e9"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/VideosLibrary/Package.swift":{"size":1169,"mtime_ns":1766864993030254744,"word_count":82,"hash":"7faee1d8e3d370c41652d78d2f481847e85cdeda77a5adb01bb0d2bcb62ff106"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/VideosLibrary/Sources/Videos/Card/AdaptiveVideoCard.swift":{"size":2073,"mtime_ns":1772892114941931932,"word_count":163,"hash":"4c9564237d2cf1c934e40e9b8c17a762891522d276e7f90ce608612a7673af6f"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/VideosLibrary/Sources/Videos/Model/VideoDBExtensions.swift":{"size":2261,"mtime_ns":1773159239865653594,"word_count":188,"hash":"7f0c0ca816c18d1ba601ff20102a4bb037f8677184b74a4161e3ec5d277b0b61"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/VideosLibrary/Sources/Videos/VideosView.swift":{"size":2783,"mtime_ns":1773700013900047986,"word_count":207,"hash":"784db010515f7f11acfdbcb163107aed1dcf5531c1adef318cf833ca77f79257"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/VideosLibrary/Sources/Videos/VideosViewModel.swift":{"size":1751,"mtime_ns":1773489754981348378,"word_count":190,"hash":"13a95517276df75ea3d7a5acec31dd3e512022de77ad1def69b2edff84abaabd"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/VideosLibrary/Tests/VideosLibraryTests/VideosViewModelTests.swift":{"size":4994,"mtime_ns":1772824345407287677,"word_count":500,"hash":"3512992857b96adfcc2fa2d3f7cc65960ffa2b72da5f63310fcd375c84b32499"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/MacMagazine/Features/News/DeepLinkNewsDetailView.swift":{"size":2375,"mtime_ns":1778008694142264589,"word_count":166,"hash":"7f6b2998c9c53968167d32afe3b00efe1a0a4c18c21388bfc43a70a5a052a8f9"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/MacMagazine/Features/News/NewsView.swift":{"size":3170,"mtime_ns":1773255289620069814,"word_count":249,"hash":"c1367e024bff4225f911675e28f867370f89a65cac8622c8d8beedebf4dbf448"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/MacMagazine/Features/News/ToolbarModifier.swift":{"size":1315,"mtime_ns":1773159239867557369,"word_count":101,"hash":"94a24b5b1366dd0204a3b478bd431d35c7e63d9d71476a9b6d802e88f34995e1"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/MacMagazine/Features/Shortcuts/ShortcutActions.swift":{"size":149,"mtime_ns":1773409970383189488,"word_count":17,"hash":"08e338e955214b6f16ffed2563516cc0c1940b64c40bb4472a9e6b956df0657b"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/MacMagazine/Features/Shortcuts/ShortcutManager.swift":{"size":1113,"mtime_ns":1773411133093537136,"word_count":101,"hash":"4f5eba6ad251d52ffc26ab212baccd1dd48ba6277c7b3efa69fbb3ddeb7302e2"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/MacMagazine/Features/Social/SocialView.swift":{"size":3901,"mtime_ns":1778008694142855959,"word_count":256,"hash":"5b0b0313de19e25d4761b4e5eeeb32cc60d740b98dfb250369afa30f7a123d43"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/MacMagazine/MainApp/AppDelegate.swift":{"size":3023,"mtime_ns":1778437790473981359,"word_count":213,"hash":"223ced0c848798dc9d00e0565e44249d3b570286c329b34383fe57370b86558f"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/MacMagazine/MainApp/MacMagazineApp.swift":{"size":5672,"mtime_ns":1778008694143803449,"word_count":312,"hash":"dc71aa029e89c10c87b26ae7bf79c20a14ea614821a530e50a36a103c89f004b"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/MacMagazine/MainApp/MainView.swift":{"size":2412,"mtime_ns":1773871757025503382,"word_count":182,"hash":"63c3447d90c85201d83bd5afb4a53fe1ae3321b85f999b5eab1abc40840d2ef6"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/MacMagazine/MainApp/MainViewModel.swift":{"size":4084,"mtime_ns":1783711691774620750,"word_count":348,"hash":"78886590cb08d8ebafa0f83a90b9bbd7cc6f767e5aeae9c49d1a0bd1d90c9bce"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/MacMagazine/MainApp/NavigationState.swift":{"size":1316,"mtime_ns":1772892114945713920,"word_count":126,"hash":"baaf574fef17e52a51f1a10ff4ff1eab68450b8b5231e6c5ff528178b4cc0fb6"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/MacMagazine/MainApp/SceneDelegate.swift":{"size":1421,"mtime_ns":1778354414155131589,"word_count":100,"hash":"db0abf07f695f4adb0810d82bee0b4837cf6d3d1e876b13b02877a7637f667ba"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/MacMagazine/MainApp/Sizecalss/MainView+sidebar.swift":{"size":7613,"mtime_ns":1776799765863793244,"word_count":567,"hash":"3cb606f6a0642dbe797d9414f50ea73389979fea3c898e7a21a9707a02606d5c"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/MacMagazine/MainApp/Sizecalss/MainView+tabbar.swift":{"size":1905,"mtime_ns":1783715703858385761,"word_count":134,"hash":"425c2ea6a2f7ae70892cc14aabf35c7f9926ea22c5ad013e0d9ce359f36aece0"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/MacMagazine/Modifiers/NavigationModifier.swift":{"size":895,"mtime_ns":1774892959844410855,"word_count":78,"hash":"ade1c5c06b77756a392f79a04ca39878a3badb1fcd974e0e0e49a6ecb7a8e8c5"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/MacMagazine/Resources/Assets.xcassets/AccentColor.colorset/Contents.json":{"size":123,"mtime_ns":1701436743071102738,"word_count":21,"hash":"92cb10f381ff867280aeeaeaf1ea10dede0a043cb6054b63c97b5a303247d649"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/MacMagazine/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json":{"size":177,"mtime_ns":1757431097208888054,"word_count":27,"hash":"ae736ced8e8174db1a40ced9b2a06474f3a97ca4db873e289bb95e97d2a058ba"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/MacMagazine/Resources/Assets.xcassets/Contents.json":{"size":63,"mtime_ns":1766839589152297000,"word_count":12,"hash":"7839e0a32dd622e9b310301f8e38a2deb0355d97a1c350c276982bd7b624cd5d"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/MacMagazine/Resources/Assets.xcassets/MMGrey6White.colorset/Contents.json":{"size":582,"mtime_ns":1766840449038974132,"word_count":71,"hash":"44e7ab113ef7c3668a0566ec0ff16869c209d724cf55320709b2697afb820974"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/MacMagazine/Resources/Assets.xcassets/MMWhiteGrey6.colorset/Contents.json":{"size":585,"mtime_ns":1766840449039254546,"word_count":71,"hash":"f2b58f714df3a84daaeb7fe17aa1d22baab4dfcc10b7ab111ce4b3cfe41f2a23"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/MacMagazine/Resources/Assets.xcassets/logo.imageset/Contents.json":{"size":373,"mtime_ns":1766840449039635668,"word_count":49,"hash":"1198cd7a734862b4d49d8f54936173b12d4a9b4af779e1967cc701b683c45389"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/MacMagazine/Resources/Assets.xcassets/logo.imageset/logo@1x.png":{"size":35445,"mtime_ns":1766840449041025321,"word_count":1304},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/MacMagazine/Resources/Assets.xcassets/logo.imageset/logo@2x.png":{"size":119499,"mtime_ns":1766840449042464224,"word_count":4163},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/MacMagazine/Resources/Assets.xcassets/logo.imageset/logo@3x.png":{"size":238559,"mtime_ns":1766840449044530622,"word_count":7945},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/MacMagazine/Resources/Icon/mm_icon.icon/Assets/layer_1.png":{"size":287856,"mtime_ns":1757887716625751019,"word_count":9964},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/MacMagazine/Resources/Icon/mm_icon.icon/Assets/layer_1.svg":{"size":3626,"mtime_ns":1757887716625983238,"word_count":184},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/MacMagazine/Resources/Icon/mm_icon.icon/Assets/layer_2.svg":{"size":3796,"mtime_ns":1757887716626172066,"word_count":190},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/MacMagazine/Resources/Icon/mm_icon.icon/Assets/layer_3.svg":{"size":4211,"mtime_ns":1757887716626378059,"word_count":226},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/MacMagazine/Resources/Icon/mm_icon.icon/icon.json":{"size":2113,"mtime_ns":1757887716626650572,"word_count":215,"hash":"31ec100ed83bb35e87676949d097498323a1dd82fb3403713230092cbad3c614"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/MacMagazine/Resources/Icon/mm_icon_inverted.icon/Assets/layer_0.svg":{"size":873,"mtime_ns":1757887716627001524,"word_count":57},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/MacMagazine/Resources/Icon/mm_icon_inverted.icon/Assets/layer_1.svg":{"size":3678,"mtime_ns":1757887716627190948,"word_count":183},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/MacMagazine/Resources/Icon/mm_icon_inverted.icon/Assets/layer_2.svg":{"size":3615,"mtime_ns":1757887716627478600,"word_count":184},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/MacMagazine/Resources/Icon/mm_icon_inverted.icon/Assets/layer_3 2.png":{"size":127779,"mtime_ns":1757887716627980471,"word_count":4399},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/MacMagazine/Resources/Icon/mm_icon_inverted.icon/icon.json":{"size":2248,"mtime_ns":1757887716628196597,"word_count":234,"hash":"3c9716b75584e1316a41505385239b8133bed1cb17ff8c427a767412af620e5a"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/MacMagazine/Resources/Icon/mm_icon_normal.icon/Assets/layer_1.png":{"size":287856,"mtime_ns":1757887716628839970,"word_count":9964},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/MacMagazine/Resources/Icon/mm_icon_normal.icon/Assets/layer_1.svg":{"size":3626,"mtime_ns":1757887716628956556,"word_count":184},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/MacMagazine/Resources/Icon/mm_icon_normal.icon/Assets/layer_2.svg":{"size":3796,"mtime_ns":1757887716629057646,"word_count":190},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/MacMagazine/Resources/Icon/mm_icon_normal.icon/Assets/layer_3.svg":{"size":4211,"mtime_ns":1757887716629141092,"word_count":226},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/MacMagazine/Resources/Icon/mm_icon_normal.icon/icon.json":{"size":2113,"mtime_ns":1757887716629220009,"word_count":215,"hash":"a145950001a0a8810ab0eea28b6d39395c3038cb84963530836593ea987520f7"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/MacMagazineNotificationServiceExtension/NotificationService.swift":{"size":1545,"mtime_ns":1773485080434127836,"word_count":121,"hash":"7750a0407c20d1b29564a8e17706853299622c2ab9103f9931c91e2b0b32ef37"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/WatchApp/Extension/FeedDB.swift":{"size":2198,"mtime_ns":1766840449045443322,"word_count":198,"hash":"7e6f82a0140591777a5d2ba877edd866da616a5a7d0560bd211f2609fa50641e"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/WatchApp/Helper/FeedDotsIndicatorView.swift":{"size":1082,"mtime_ns":1766091468190395532,"word_count":117,"hash":"9286b7ffdf0a608dd0d05968f34b4b8a38f03d3b8aa61a249ebcd904f9d576f6"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/WatchApp/MainApp/WatchApp.swift":{"size":889,"mtime_ns":1773260916540085660,"word_count":72,"hash":"e2296af74a587e90d0a4ce9b65d4a6f2cbeb5106e16f3562e196d0ff4eb425b1"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/WatchApp/MainApp/WatchNotificationsDelegate.swift":{"size":2154,"mtime_ns":1773508921753621971,"word_count":185,"hash":"13e3655225051813934120c9428c4fe6ba22466c85158cefd92fabba069c9514"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/WatchApp/Resources/Assets.xcassets/AccentColor.colorset/Contents.json":{"size":123,"mtime_ns":1766241767195743496,"word_count":21,"hash":"0cc8d7ab7e71a6f75759b99b338323337c5362505f6a5aa5a66602fb8b896798"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/WatchApp/Resources/Assets.xcassets/Contents.json":{"size":63,"mtime_ns":1766092976285906000,"word_count":12,"hash":"45fee4b76cca6ba5e5720e2ddb7f0c40dbfc82c37491c6fd7c16274c2f0bf729"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/WatchApp/Resources/Assets.xcassets/logo_color.imageset/Contents.json":{"size":370,"mtime_ns":1766092973153633000,"word_count":49,"hash":"4b97121c75ff32bdda8c97b0a0424a817d40a81b975d79ed679420f51e96a755"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/WatchApp/Resources/Assets.xcassets/logo_color.imageset/logo.png":{"size":58657,"mtime_ns":1766092973153867000,"word_count":2149},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/WatchApp/Resources/Assets.xcassets/logo_color.imageset/logo@2x.png":{"size":200176,"mtime_ns":1766092973153921000,"word_count":7083},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/WatchApp/Resources/Assets.xcassets/logo_color.imageset/logo@3x.png":{"size":431211,"mtime_ns":1766092973153975000,"word_count":15011},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/WatchApp/ViewModel/FeedMainViewModel.swift":{"size":3280,"mtime_ns":1773254395590038364,"word_count":345,"hash":"d0a4f1865926892e71c09c53767f09b47990edbd3790b5703789f890a192311d"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/WatchApp/ViewModel/FeedScrollPositionKey.swift":{"size":1016,"mtime_ns":1766009723566167344,"word_count":93,"hash":"7ea61d70ef39d196f17f268205ffd4f93f737d8d3c89231fd8bf34130de1eb02"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/WatchApp/Views/FeedDetailView.swift":{"size":1698,"mtime_ns":1774892959831017935,"word_count":145,"hash":"7ad27ad6dfd2c892e90fef80986ae8922fa33fe160be361ffaefffd0a74ee80f"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/WatchApp/Views/FeedMainView.swift":{"size":10173,"mtime_ns":1773260916540916861,"word_count":778,"hash":"c0dcd8ed5f4e1ceb0b1363631646545390ccf0162ee113f76f428702972788c2"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/WatchApp/Views/Row/FeedRowView.swift":{"size":2479,"mtime_ns":1766419440296189708,"word_count":171,"hash":"7b6dc8e45db70df98a5d7c0e13c46add9b5199698da2f8f69141464b12e256e2"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/WatchWidget/Extensions/WidgetAccessibility+View.swift":{"size":1797,"mtime_ns":1766244067357389068,"word_count":123,"hash":"5bc78221357d7d9258fc1188981a31b2433bdef296a13cfe143adf55c398a498"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/WatchWidget/Model/WidgetEntry.swift":{"size":641,"mtime_ns":1766840449047903132,"word_count":74,"hash":"d054c2c5f3cd2dbb5d3736fd61063d9eee80bea3fdbe1f4801c05a14de26d540"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/WatchWidget/Resources/Assets.xcassets/AccentColor.colorset/Contents.json":{"size":123,"mtime_ns":1766241767198916798,"word_count":21,"hash":"b098dbf9f8add05963463662f5d67f2644b001dfc4f62d54e91ede1fac7e4e4c"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/WatchWidget/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json":{"size":181,"mtime_ns":1766241767199254087,"word_count":27,"hash":"73436e3a37e6af5027ba88e0a3897dc8ec405ad1f10dba15f1f841ebec73d4b2"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/WatchWidget/Resources/Assets.xcassets/Contents.json":{"size":63,"mtime_ns":1766241767199368377,"word_count":12,"hash":"6b9adfb93ac7b7f9ed0b43d355c393c655cd2f34686fb8b7e26c26f08a0de11d"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/WatchWidget/Resources/Assets.xcassets/WidgetBackground.colorset/Contents.json":{"size":123,"mtime_ns":1766241767199574667,"word_count":21,"hash":"a3f05f04b79f9a76a3ba9fa3e8cbf2b5c54dde5ea75db1f4c3d979092066d489"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/WatchWidget/Resources/Assets.xcassets/logo_color.imageset/Contents.json":{"size":159,"mtime_ns":1766241767199955122,"word_count":25,"hash":"1bfd779febd51c86b9814d006742f6a29a27877fb0fd7192b223ae7bc68a7884"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/WatchWidget/Resources/Assets.xcassets/logo_color.imageset/logo@3x 3.png":{"size":10892,"mtime_ns":1766241767200326993,"word_count":381},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/WatchWidget/Resources/Assets.xcassets/logo_white.imageset/Contents.json":{"size":154,"mtime_ns":1766241767200663865,"word_count":24,"hash":"77a2079bc89d45abb3b62426c6e41d4edf636352c69db89e9bcbdac9e95ce187"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/WatchWidget/Resources/Assets.xcassets/logo_white.imageset/logo.png":{"size":2151,"mtime_ns":1766241767200818405,"word_count":83},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/WatchWidget/Views/WatchWidgetEntryView.swift":{"size":3611,"mtime_ns":1774467066632067330,"word_count":259,"hash":"8e0d034c1142d51e46d1ddaef7958211fc8a041741066b985925afb2e55c896f"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/WatchWidget/Widget/WatchWidget.swift":{"size":1903,"mtime_ns":1766840449048679583,"word_count":162,"hash":"308b6972463c2dad9a52c83d2146c5ffcb80cbf99c21b013a9cd6f8b39ccdba0"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/WatchWidget/Widget/WatchWidgetBundle.swift":{"size":138,"mtime_ns":1766405170569793343,"word_count":17,"hash":"f78fe73137d343bcaa64c0ff8162b4a9a5a0fdefa91102a70450be06143f40cc"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/WatchWidget/Widget/WatchWidgetProvider.swift":{"size":1505,"mtime_ns":1766840449049227161,"word_count":147,"hash":"e8f0e521a29fc06685da93c7e39fe4b9b609643c4bded5dcb5909ba215686ce9"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Widget/Extensions/WidgetAccessibility+View.swift":{"size":1451,"mtime_ns":1778008694144631149,"word_count":100,"hash":"34ad0f26e5fa888f1651d2e38a63c8c6dc7594087310fceda2cb03ba0bce53ad"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Widget/MacMagazineWidget.swift":{"size":1841,"mtime_ns":1774467098036158305,"word_count":137,"hash":"73b6525ac7cd0f41dbce0fc0cb7bec7ae1261fb606d0696814a1ad7d1c6c0eb6"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Widget/MacMagazineWidgetBundle.swift":{"size":190,"mtime_ns":1765393002591727153,"word_count":18,"hash":"74a99d026119306693f5ddf426feadcb4c4a4393dc92da56ed71c82899b338ce"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Widget/MacMagazineWidgetLiveActivity.swift":{"size":2332,"mtime_ns":1765389010107379042,"word_count":175,"hash":"dd4babbd63d52e54390e83d67f20ed81d353ef5be01ed9e1bfb60a736b1e5e18"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Widget/Models/WidgetData.swift":{"size":741,"mtime_ns":1766185900754244158,"word_count":65,"hash":"e726b46467c0a0606df06bf055e7ea98a833302a10896f5d41714c43fc08d5e9"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Widget/Resources/Assets.xcassets/AccentColor.colorset/Contents.json":{"size":123,"mtime_ns":1766828949184685943,"word_count":21,"hash":"1d39b39a293d5a9af15af9f6c8fd14fa594544cf43f7b98e1e83c93b431ac312"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Widget/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json":{"size":706,"mtime_ns":1766828949184846525,"word_count":84,"hash":"11430704bd46f3db70e4a9f72a526937ca2027ba78b74031708c5db98ff9273c"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Widget/Resources/Assets.xcassets/Contents.json":{"size":63,"mtime_ns":1766828949184932524,"word_count":12,"hash":"b25b93e2d03293537b45cd50965420b1e66d81dd6d89ca18a6522fa9945a3b46"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Widget/Resources/Assets.xcassets/WidgetBackground.colorset/Contents.json":{"size":123,"mtime_ns":1766828949185081688,"word_count":21,"hash":"0ff3780b12663aed54136b241a6c236579020a7bd3473eb1c9d211c07551ee38"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Widget/Resources/Assets.xcassets/logo_color.imageset/Contents.json":{"size":370,"mtime_ns":1766828949185248270,"word_count":49,"hash":"6aa354f4221bd8676a0cc8b47fe7c8bbb046e5598d59f79fbca3c890be9f8573"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Widget/Resources/Assets.xcassets/logo_color.imageset/logo.png":{"size":58657,"mtime_ns":1766828949185442934,"word_count":2149},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Widget/Resources/Assets.xcassets/logo_color.imageset/logo@2x.png":{"size":200176,"mtime_ns":1766828949185824721,"word_count":7083},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Widget/Resources/Assets.xcassets/logo_color.imageset/logo@3x.png":{"size":431211,"mtime_ns":1766828949186498921,"word_count":15011},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Widget/Resources/Assets.xcassets/logo_white.imageset/Contents.json":{"size":370,"mtime_ns":1766828949186684794,"word_count":49,"hash":"cb8ef210a33de6f058d7780d29e45202c2410cbf4e48d45a7ccc943836f836db"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Widget/Resources/Assets.xcassets/logo_white.imageset/logo.png":{"size":2151,"mtime_ns":1766828949186775917,"word_count":83},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Widget/Resources/Assets.xcassets/logo_white.imageset/logo@2x.png":{"size":4228,"mtime_ns":1766828949186893041,"word_count":158},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Widget/Resources/Assets.xcassets/logo_white.imageset/logo@3x.png":{"size":6644,"mtime_ns":1766828949187020748,"word_count":294},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Widget/Resources/Assets.xcassets/macmagazine.imageset/Contents.json":{"size":1096,"mtime_ns":1766828949188403147,"word_count":118,"hash":"5514046814569824a8634e2d8ef29a842213e15c986d83cbb460f5550cabf0dd"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Widget/Resources/Assets.xcassets/macmagazine.imageset/logo-widget_dark@1x.png":{"size":16285,"mtime_ns":1766828949189843296,"word_count":576},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Widget/Resources/Assets.xcassets/macmagazine.imageset/logo-widget_dark@2x.png":{"size":39028,"mtime_ns":1766828949190022544,"word_count":1370},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Widget/Resources/Assets.xcassets/macmagazine.imageset/logo-widget_dark@3x.png":{"size":61890,"mtime_ns":1766828949190328957,"word_count":2190},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Widget/Resources/Assets.xcassets/macmagazine.imageset/logo-widget_light@1x.png":{"size":15331,"mtime_ns":1766828949190513163,"word_count":563},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Widget/Resources/Assets.xcassets/macmagazine.imageset/logo-widget_light@2x.png":{"size":38343,"mtime_ns":1766828949190749577,"word_count":1333},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Widget/Resources/Assets.xcassets/macmagazine.imageset/logo-widget_light@3x.png":{"size":60132,"mtime_ns":1766828949191032281,"word_count":2264},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Widget/Resources/Assets.xcassets/macmagazine_clear.imageset/Contents.json":{"size":412,"mtime_ns":1766828949191266612,"word_count":49,"hash":"730257fd08152a9425f2d9ee6903dde5c9dfdf30ae8c3a1cf73561397e09229e"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Widget/Resources/Assets.xcassets/macmagazine_clear.imageset/logo-widget_clear@1x.png":{"size":12844,"mtime_ns":1766828949191437526,"word_count":481},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Widget/Resources/Assets.xcassets/macmagazine_clear.imageset/logo-widget_clear@2x.png":{"size":31120,"mtime_ns":1766828949191594524,"word_count":1084},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Widget/Resources/Assets.xcassets/macmagazine_clear.imageset/logo-widget_clear@3x.png":{"size":46137,"mtime_ns":1766828949191936645,"word_count":1652},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Widget/Timeline/MacMagazineTimelineProvider.swift":{"size":1979,"mtime_ns":1766185900754485656,"word_count":175,"hash":"995861f60d90d3accc815315f5f707042d92964382852e6464cc7777e3c5bd3e"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Widget/Timeline/WidgetEntry.swift":{"size":140,"mtime_ns":1765544727498445005,"word_count":17,"hash":"0664e6e66a5f00e304c5201f2707a472145969579bac4a1bf7e8bb242af4f15f"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Widget/Views/Modifiers/HeaderWidgetModifier.swift":{"size":1848,"mtime_ns":1766834687825878075,"word_count":141,"hash":"bbc082d680d9dfa33063bf26aa25f1c890a36789b8749f318dfbc8d982fbfce6"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Widget/Views/Modifiers/SmallWidgetStyleModifier.swift":{"size":1201,"mtime_ns":1766351349586637913,"word_count":86,"hash":"4eef599f71580990694f18d9633e7fbd70de8239a48cb91a7e3baca7c464a6d6"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Widget/Views/WidgetElementView.swift":{"size":4497,"mtime_ns":1778008694145298642,"word_count":320,"hash":"8e93825cc12ba55bd5c1130a3f1158e7990d5e59a05a55d12913acf5a5cc5a4d"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Widget/Views/WidgetView.swift":{"size":1948,"mtime_ns":1778008694145571806,"word_count":139,"hash":"a1dbc308a717358d194617ea63c3175587f22932e045674c8050e73b59f302a9"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/ci_scripts/ci_post_clone.sh":{"size":486,"mtime_ns":1766864993033123973,"word_count":51,"hash":"00feb03396ddea328c5c5d87b48d449f2288a63de09f38a38ad6dad857090934"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/README.md":{"size":5505,"mtime_ns":1781684529403387519,"word_count":672},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/Support/CONTRIBUTING.md":{"size":8197,"mtime_ns":1766864993034010425,"word_count":1166},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/Support/FIREBASE.md":{"size":4014,"mtime_ns":1766864993034318965,"word_count":461},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/Support/Scripts/clean-build-folders.sh":{"size":1178,"mtime_ns":1766240075443418511,"word_count":179,"hash":"11a35a8e0d8be4584bc33b0d24ff30baa5096f5a7e41c31647ca4e325e73e83c"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/Support/Scripts/generate-firebase-config.sh":{"size":2476,"mtime_ns":1765836662834057528,"word_count":239,"hash":"e495ee725d25e87824b4dd84c83343ecbb8d7d8a389f3a3d7bfe5fbda3a9d6a6"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/Support/Scripts/setup-firebase.sh":{"size":1365,"mtime_ns":1765834184563774079,"word_count":179,"hash":"f33ad34bd850c759e9b8732b5b2756136765cb991ddbbed2fa239edef72b924c"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/Support/Scripts/updateBuildVersion.sh":{"size":2336,"mtime_ns":1719679834586351156,"word_count":258,"hash":"3129c733c32c76f2012c538e2414196e836930d06f9349c8bf70a89ad29c274a"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/Support/firebase_queries.txt":{"size":4798,"mtime_ns":1773255289622216086,"word_count":457}} \ No newline at end of file +{"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/.claude/agents/architecture-guardian.md":{"size":2154,"mtime_ns":1781684529394446362,"word_count":266,"hash":"2e629640dbb83325ec2902358b892a765a65bc8fa710b9f3c68e1adc51abd04d"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/.claude/agents/ios-principal-engineer.md":{"size":11468,"mtime_ns":1781684529394877773,"word_count":1564,"hash":"8dab1400d5ab71df9372e3bec2301f8b968a4d4e5a0fb2c2af90f969fea725b9"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/.claude/agents/swift-code-reviewer.md":{"size":2730,"mtime_ns":1781684529395355432,"word_count":350,"hash":"3c3ef0cdcf4604ff14640863feca4c86221797acfb27638864a6d01570edec9d"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/.claude/agents/test-runner.md":{"size":1799,"mtime_ns":1781684529395707176,"word_count":247,"hash":"4e19627e0f36f18d33fd77c8221bcdbf4680b8570630e59b18f795f6423716ea"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/.claude/hooks/post-tool-use.sh":{"size":2385,"mtime_ns":1781684529396092962,"word_count":307,"hash":"519f38e4496778bc8afe5109216fe63c2b6f5593841883fc883017071c9c0cf0"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/.claude/hooks/pre-tool-use.sh":{"size":2333,"mtime_ns":1783719971199502329,"word_count":299,"hash":"92ff8762b53b718e0457cdddc932f874cf6b4d33be87af06d6a11002074ff1f1"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/.claude/hooks/stop.sh":{"size":1017,"mtime_ns":1781684529396936783,"word_count":95,"hash":"454af0ee4db26572bdafe34416e69b731250c585012d2825d02020e0a2128ed2"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/.claude/rules/anti-hallucination.md":{"size":2447,"mtime_ns":1781684529397246612,"word_count":394,"hash":"cfba4faddc37f0e92c4bb08c8ec3f33deb8139805b2763eb83cded3c76ec956c"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/.claude/rules/architecture.md":{"size":5279,"mtime_ns":1781684529397629898,"word_count":628,"hash":"dee1f07771b6e50fec89b74a1beb949c4a7edad8a19db771f4c6a6eb115134d5"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/.claude/rules/concurrency.md":{"size":1783,"mtime_ns":1781684529397891644,"word_count":261,"hash":"9a486b91a30afceae312a7c5de3316a6def3702027d227c07c4788ca13917c53"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/.claude/rules/data-layer.md":{"size":4714,"mtime_ns":1781684529398464427,"word_count":622,"hash":"328f25b7484af3fceb0ecd589bca93ba213a79d104e6427ea6eec280cea83e71"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/.claude/rules/git-workflow.md":{"size":1643,"mtime_ns":1781684529398742214,"word_count":216,"hash":"0652b4e55a11f96b218e74cf01199c5ad5f286494772297cb28142bab59e9425"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/.claude/rules/swift-style.md":{"size":2304,"mtime_ns":1781684529398998585,"word_count":343,"hash":"5eb0c3efcd28cc376b67c83e8d36da5fea193cba905727bb9fc01aa63fe174b7"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/.claude/rules/testing.md":{"size":1769,"mtime_ns":1781684529399269831,"word_count":236,"hash":"bd26f9177a55663a42084fe38ee6498842d4d28dcefb287aa9650236d6931fc8"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/.claude/rules/ui-systems.md":{"size":4688,"mtime_ns":1781684529399693991,"word_count":635,"hash":"9a926a384fac80310935687b003c5615d090b1c859deac5ccfee61f85bf4fe82"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/.claude/settings.json":{"size":2362,"mtime_ns":1784380127980365377,"word_count":159,"hash":"e1a9239afe73bdef3d80ca80c50dd303fec5621e2b8229539475226d0a282d16"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/.claude/skills/README.md":{"size":2571,"mtime_ns":1781684529400127777,"word_count":315,"hash":"fc90b173bfa992cc19779cffc5500d5f43b0ec65a3d07954c2d104793ba30e19"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/.claude/skills/ios-design-guidelines/SKILL.md":{"size":3075,"mtime_ns":1781684529400389898,"word_count":416,"hash":"0f6581f1f2bd538fefcf97e35ab2a6b60308b1a13cdb3b7f630658561d06a767"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/.claude/skills/ios-dod/SKILL.md":{"size":3104,"mtime_ns":1781684529400661477,"word_count":453,"hash":"0d014b28b1d86f377d9014c4faf92de069ff2df69bf3b5e741a2d45361abaaeb"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/.claude/skills/ios-fix/SKILL.md":{"size":3838,"mtime_ns":1781684529400996722,"word_count":579,"hash":"91eb3fe17f91eb0626aa56c88fd71825fef74678c8965cbd0517d006d7f3b58a"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/.claude/skills/ios-implement/SKILL.md":{"size":2985,"mtime_ns":1781684529401266343,"word_count":425,"hash":"31cd0cce3f4ed8beb65871806da0b91f70e984919f5849d47ac008f76587515f"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/.claude/skills/ios-sanity-check/SKILL.md":{"size":3063,"mtime_ns":1781684529401542172,"word_count":422,"hash":"1baea275c3617b16eaf7a69d1fddb0229a80eb4ec70c2627abf939e18147e45f"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/.claude/skills/ios-start/SKILL.md":{"size":4933,"mtime_ns":1781684529401811084,"word_count":683,"hash":"e14f3e12fe67ab05b814a0ad704bc62f4c406c37c230d550be27b3784901fcf3"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/.github/ISSUE_TEMPLATE/bug_report.yml":{"size":2724,"mtime_ns":1778008694116636974,"word_count":323},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/.github/ISSUE_TEMPLATE/config.yml":{"size":203,"mtime_ns":1778008694116761598,"word_count":20},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/.github/ISSUE_TEMPLATE/feature_request.yml":{"size":1648,"mtime_ns":1778008694116865264,"word_count":187},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/.github/ISSUE_TEMPLATE/improvement.yml":{"size":1350,"mtime_ns":1778008694116977929,"word_count":153},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/.github/PULL_REQUEST_TEMPLATE.md":{"size":1609,"mtime_ns":1764879432111650411,"word_count":301,"hash":"ff270f8653e3e5a947536fbfb3d0ac7641779e16bc34bc0414f6bca6b1073efc"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/.github/workflows/issue-validation.yml":{"size":6764,"mtime_ns":1778008694117131677,"word_count":561},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/.github/workflows/pr-validation.yml":{"size":5304,"mtime_ns":1766772439637285639,"word_count":573},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/.swiftlint.yml":{"size":4315,"mtime_ns":1772824345377043222,"word_count":562},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/CLAUDE.md":{"size":8417,"mtime_ns":1783794008672275327,"word_count":1071,"hash":"552d55a3cba4bb648d2a9b8b299a88375a807f979c757c6206a2899622a4d2c0"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/FeedLibrary/Package.swift":{"size":950,"mtime_ns":1765557225820471676,"word_count":70,"hash":"aafd83c741b9e95ee7d3194b578285a7c9c7b5b1bf225e146e29139d92c80333"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Database/FeedDB.swift":{"size":3591,"mtime_ns":1778008694118153959,"word_count":401,"hash":"c2397faa829005e824f6dfdc2cc892995193fbf8f6de47500c5940f66e3427ba"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Database/PodcastDB.swift":{"size":2479,"mtime_ns":1772834671310940555,"word_count":291,"hash":"39d62c0ff41dda0ad66e2fcbb546826f7cb4de52745ba5cbddf4669799b7fea5"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Extensions/StringExtensions.swift":{"size":676,"mtime_ns":1772824345378082712,"word_count":59,"hash":"209f44c04ea25f127ae94dd3da6906c81d66ccb64e1ffef5a80d599f85a91dd0"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Models/NewsCategoryExtensions.swift":{"size":544,"mtime_ns":1784306526937677627,"word_count":50,"hash":"372c9dd6cb2c78b4808297769a0a83cef5fcf681fbd2be109002fdb78d56e279"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Models/WidgetData.swift":{"size":612,"mtime_ns":1766185900750943100,"word_count":70,"hash":"e58baca31a3f90a2d5213abd631056cf8a023153c36c5af8bd2788474ad924d6"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/FeedEndpoint.swift":{"size":1066,"mtime_ns":1784306522581055623,"word_count":111,"hash":"6fdbb9fede791bb866fa587c2d04025174cdf111f1010181f961ea389716d13d"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/NetworkService.swift":{"size":889,"mtime_ns":1784306516139821569,"word_count":99,"hash":"13391c93d9f2237c49a13feb30d22db89fb26260605aacfa97502efa133af150"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/Parser/APIXMLParser.swift":{"size":3330,"mtime_ns":1766840448999429377,"word_count":347,"hash":"efd42561333bbbab7293e18611681eb7e1df86f8a3c6575ed23cac75688e2734"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/Parser/DateParser.swift":{"size":442,"mtime_ns":1772795253891632282,"word_count":47,"hash":"70c199f0878c94ef345cee39a387597d08bcbd29a9553a5b23b947190c707981"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/Parser/XMLPost.swift":{"size":1896,"mtime_ns":1772824345378611040,"word_count":182,"hash":"7446dc95d03b0872628e25fc5d795e52a331b46bf8a9888f9c52d03f55b973ee"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/Services/StorageService.swift":{"size":4942,"mtime_ns":1784308913869759545,"word_count":496,"hash":"7a945d509ef6d45416fdacd4b1d40666f94759ba02c12b3f27400eb91368944c"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/FeedLibrary/Sources/FeedLibrary/ViewModel/FeedViewModel.swift":{"size":5636,"mtime_ns":1784308913870051295,"word_count":533,"hash":"519013a79a7c328c0bf88d7ff6c3359fdd5b46894d903d34fdeff3c52baaac68"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/CategoryTests.swift":{"size":4559,"mtime_ns":1766864993023832333,"word_count":415,"hash":"32a85a0f86d71f239b3f33d00ae5216fda8c2b37ff4d6be3814d7d28f774d313"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/DateParserTests.swift":{"size":7878,"mtime_ns":1766864993025024574,"word_count":842,"hash":"a627d7d974484a7436cca86181d703285352429fe14e3b4dbaf499d4de1a12de"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedDBTests.swift":{"size":17306,"mtime_ns":1778008694119013992,"word_count":1433,"hash":"f99a17435182385286b0da97b0ca5b528485f3a4d2eab51e616176c8308a8800"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedEndpointTests.swift":{"size":7562,"mtime_ns":1766840449002973177,"word_count":762,"hash":"d4831e3481de522560ff8b58b09a82aeadb9993cdfb9f5c22e47ddea1a91134c"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/FeedViewModelTests.swift":{"size":13311,"mtime_ns":1772824345379522198,"word_count":1208,"hash":"d2a349cb95b2beac4fb190c6228c22bb97be91ecfcd1d91b571a20ebcff08c72"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/PodcastDBTests.swift":{"size":18624,"mtime_ns":1773260916535446283,"word_count":1483,"hash":"9db466da865f1b94c3aec5b8b1e52e045c3c785db365e0049432c6cf4527cace"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/Resources/feed.json":{"size":221301,"mtime_ns":1765040951980836927,"word_count":12073,"hash":"8235466c6815a07ce40a93a4f72366887773ca4e2c4616913c65bb4588d4985b"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/Resources/podcasts.json":{"size":674835,"mtime_ns":1764786915369912982,"word_count":26525,"hash":"3ff67329cd6577f3820a3939432fc29cd6d027ad3c0213bf5a00e62d02ed3dfa"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StorageServiceTests.swift":{"size":19192,"mtime_ns":1784308913870435171,"word_count":1652,"hash":"d8a7f233cb2cd57d16ae155b21a367b4f80a4055a942851258eea730d0fed325"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/StringExtensionsTests.swift":{"size":3059,"mtime_ns":1772824345379962194,"word_count":293,"hash":"52cd00a9ba9ea3b6094258afe3eec6f4fe113d161b6488456e6314b393d16da6"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/WidgetDataTests.swift":{"size":8430,"mtime_ns":1766105925420523504,"word_count":733,"hash":"ec91fd20ebf5fe35b71ec727de1fb1b066cd6a11fe579e290a6990b69d735be0"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/XMLParserTests.swift":{"size":8092,"mtime_ns":1764788006406190634,"word_count":709,"hash":"c25583c3744d3561ad3e5f5ca6c6d69b049d59d3c9b91ffa04c747e44ec1b9ba"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/FeedLibrary/Tests/FeedLibraryTests/XMLPostTests.swift":{"size":5851,"mtime_ns":1764788212982560277,"word_count":482,"hash":"ce2ca8cbf151946915aa0bcd98724a332399e000d5231e97c9adf8fb00d6a68d"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MMLiveLibrary/Package.swift":{"size":1104,"mtime_ns":1765903841706937684,"word_count":77,"hash":"8069c3be2eb1d6b483de3a096c3741c35307721ed2d5c100ccf80bd398cd3b20"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MMLiveLibrary/Sources/MMLiveLibrary/Models/MMLive.swift":{"size":112,"mtime_ns":1765018927060382459,"word_count":16,"hash":"aba8b519de94e6939e568884357f1401e802451e5131a5f85fbec4763aaf2e87"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MMLiveLibrary/Sources/MMLiveLibrary/Services/MMLiveEndpoint.swift":{"size":337,"mtime_ns":1765020529280492765,"word_count":34,"hash":"8979aa0c12fc0a7a099956099954ff485a020ed1a85d06c1ac5b81dddd80f84f"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MMLiveLibrary/Sources/MMLiveLibrary/Services/NetworkService.swift":{"size":494,"mtime_ns":1765018927085008261,"word_count":57,"hash":"ac977f46c209e59b5ceef202c83e950c19c76e3d0d4ede44d0f420a4bbc34298"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MMLiveLibrary/Sources/MMLiveLibrary/Services/PushNotification.swift":{"size":2352,"mtime_ns":1774436208300682299,"word_count":204,"hash":"7f94a046960c005b979f7b1728d8296c767e5a09ce6dd1e7473b678cad12877a"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MMLiveLibrary/Sources/MMLiveLibrary/Services/StorageService.swift":{"size":483,"mtime_ns":1765020801704856976,"word_count":57,"hash":"9bd5fa0fc6dcf3bb1d1b4a861fc4ca675eb27d52ea0e9d733c8480f51aa65204"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MMLiveLibrary/Sources/MMLiveLibrary/ViewModel/MMLiveViewModel.swift":{"size":1732,"mtime_ns":1776796100000039816,"word_count":175,"hash":"89f6b8c2398439a90d3c50e62ee90aa28ac43506a5046f42329935a27d6e7852"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MMLiveLibrary/Tests/MMLiveLibraryTests/MMLiveViewModelTests.swift":{"size":11628,"mtime_ns":1766171878079136186,"word_count":1135,"hash":"f50ccde903052b96ee024a847e24c7ceb26c866bee2c55db5ad936eaa2c3cb24"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MMLiveLibrary/Tests/MMLiveLibraryTests/Resources/live.json":{"size":52,"mtime_ns":1765040992318965064,"word_count":6,"hash":"dbdceef35a3e17b8553540a525d0ea800580a385eba42c3a7ca2d3918ff83102"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineLibrary/Package.swift":{"size":1331,"mtime_ns":1773484237144747362,"word_count":86,"hash":"b0e847a0f9ff319845a202a0466397897d2fa78194123bd9dc10630cc2d19fe0"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AnalyticsConstants.swift":{"size":10687,"mtime_ns":1773686857601141885,"word_count":859,"hash":"00670a31572748300f2c7e07cf8537a6b1be3cc9c3efaac255db1fccc8e03bbc"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/AppDefinitions.swift":{"size":2423,"mtime_ns":1773255289615695063,"word_count":278,"hash":"42e823188dba53fecdd1da296f75b11c33e23803736e17ba16421b25758c3f45"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/DateExtensions.swift":{"size":584,"mtime_ns":1766840449005139490,"word_count":60,"hash":"0562e6960e57b97ddd938922af2b5500885e696b2303317bfc5633a4f9890455"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/EnvironmentValuesExtensions.swift":{"size":556,"mtime_ns":1778008694119760526,"word_count":60,"hash":"dabc7004539c38a2f2c8f5386079f104bfe1e897aa8475baea06a0e04b42790e"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/ModelProtocols.swift":{"size":412,"mtime_ns":1778008694120197063,"word_count":40,"hash":"1f12e6a9ebbbd6cc99ead6393fd5139a8d5234c8c9b84c5f6dc55480d19e856f"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/NewsCategory.swift":{"size":833,"mtime_ns":1773159239849595906,"word_count":87,"hash":"4596a2e90f8c96a74c7b82749fb664181b506fb93e736d352c1c3e377e6b4125"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/PushNotification/PushNotification.swift":{"size":6749,"mtime_ns":1776153759982987395,"word_count":526,"hash":"7efe51476f20a60ed9e4a7b9d2dcd30bec29667396f3acd80e1a967b503bd1d6"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/PushNotification/UserModel.swift":{"size":586,"mtime_ns":1766840449008860706,"word_count":65,"hash":"1092a5d33f86732f862f47c60db18d96224cede9f25a5e7eacd287ce02a7eb18"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/Resources/Media.xcassets/Colors/Contents.json":{"size":63,"mtime_ns":1763922427680209000,"word_count":12,"hash":"aa7242648912ec9bebfb15effba8136eca531d25c517b308f1d29b1bb0ec3777"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/Resources/Media.xcassets/Colors/MMBlack90.colorset/Contents.json":{"size":329,"mtime_ns":1701451154915753007,"word_count":44,"hash":"11fe1254d0dff3b04b3f6fb4c1516c8dd41629825cc37b0ee80102b6fc3a49a4"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/Resources/Media.xcassets/Colors/MMBlue.colorset/Contents.json":{"size":329,"mtime_ns":1701451146420192003,"word_count":44,"hash":"d219584a7f0fe2abb0988754e28986adfa7084497730908ed820c41dad3c2519"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/Resources/Media.xcassets/Colors/MMBlueWhite.colorset/Contents.json":{"size":695,"mtime_ns":1701451128475857973,"word_count":84,"hash":"a3bc47dae385b53b64695c96f728882f0da1372442c2eba7864dc7aa952e71b8"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/Resources/Media.xcassets/Colors/MMDarkGreyWhite.colorset/Contents.json":{"size":649,"mtime_ns":1701451126025890946,"word_count":78,"hash":"9ca6031f9e3c16892ee3f86f9a5018ea79a224bd6f13c529ca7a86530c12485b"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/Resources/Media.xcassets/Colors/MMGray6Gray3.colorset/Contents.json":{"size":852,"mtime_ns":1765561318241547000,"word_count":100,"hash":"e9b4edb24614f1df6a66f377e20cbe223666ecc8769f09777c6bcf3727cb8b9b"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/Resources/Media.xcassets/Colors/MMGrey6.colorset/Contents.json":{"size":348,"mtime_ns":1765561296523352000,"word_count":46,"hash":"70e65f2de8840bce3c7a35bcf79e4582d6fcc8f7f38e765422bd01ef2d1ce3a9"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/Resources/Media.xcassets/Colors/MMLessDarkGreyWhite.colorset/Contents.json":{"size":649,"mtime_ns":1701451114360242963,"word_count":78,"hash":"1d9bfab27e25bbd66cf18b6b8e9180342b0e04ab71b9738ab70ef0a07a4a31dc"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/Resources/Media.xcassets/Colors/MMWhiteBlack.colorset/Contents.json":{"size":695,"mtime_ns":1704656055051849961,"word_count":84,"hash":"8115d1f3e7edeab3ebe85e0046486b08cb1df8ffb195dc1a104f6a15a598d363"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/Resources/Media.xcassets/Colors/MMWhiteGray3.colorset/Contents.json":{"size":862,"mtime_ns":1765561285819658000,"word_count":100,"hash":"db3c733b5e7b09a2b89102738373cc31f9840354f3711816fddc9266e212df37"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/Resources/Media.xcassets/Colors/MMWhiteGrey6.colorset/Contents.json":{"size":585,"mtime_ns":1701450059336166978,"word_count":71,"hash":"ff92f00c8e1ec98a01e3cf422cf9f0383bca73f18dd71a603c46ff0610d47268"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/Resources/Media.xcassets/Colors/TabascoDracula.colorset/Contents.json":{"size":692,"mtime_ns":1702852492228495002,"word_count":84,"hash":"8dc700de0c2feca30d339adf44c42901777cf805957410b8fc67785ab98b7d4c"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/Resources/Media.xcassets/Contents.json":{"size":63,"mtime_ns":1704574158159963012,"word_count":12,"hash":"5dff35257059dfd569e9587b63366ddb0c77f22784cfe7cc394abc705813a285"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/Resources/Media.xcassets/Images/Contents.json":{"size":63,"mtime_ns":1701450059334352016,"word_count":12,"hash":"bbaa319affedc72e47f62df7a7eef1091c0c50041755db73ff16580308b194ba"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/Resources/Media.xcassets/Images/chrome.imageset/Contents.json":{"size":156,"mtime_ns":1765561994764615113,"word_count":24,"hash":"a07eeb7e1dd6e4154a60acac2ec86c3b82fdeb79e0efcca1593c1ea897eb5399"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/Resources/Media.xcassets/Images/logo.imageset/Contents.json":{"size":154,"mtime_ns":1701450059335533977,"word_count":24,"hash":"e3e0b8c875f4bbb4578bb89ac6a84feb25a215d1bb23803b74b82fe568eb00b5"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/SessionState.swift":{"size":391,"mtime_ns":1773159239850010027,"word_count":48,"hash":"4ebeac5a1c8c6290f84693e2b1f5a68f811c825fbe1d8d5c62a0dbe20f3e5444"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/ThemeColor.swift":{"size":900,"mtime_ns":1763922429371040523,"word_count":89,"hash":"10a8e8b129d763b5ab891c919872f9ab496ad1764f6b8da1d7993dcbb264df8f"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/URLClassifier.swift":{"size":1616,"mtime_ns":1784312408435017223,"word_count":148,"hash":"92c6a89080c320d2316580a5758781935cac49ca8ec7ac6d9e66f0f1fee8fcca"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineLibrary/Sources/MacMagazineLibrary/Utils.swift":{"size":677,"mtime_ns":1773159239850356774,"word_count":72,"hash":"a73b92c1ca838f92a0a19aa91220714c28ac07cf144269fc28ebb5714870e652"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineLibrary/Tests/MacMagazineLibraryTests/AppDefinitionsTests.swift":{"size":2816,"mtime_ns":1766864993027281058,"word_count":275,"hash":"760f2d6862fab877bdac388eddb6744bc5503c8305581985b9f4e4f1cc7f566c"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineLibrary/Tests/MacMagazineLibraryTests/URLClassifierTests.swift":{"size":2547,"mtime_ns":1784312408435554842,"word_count":199,"hash":"187cacd3b716ad6ceb9d347847144efcd2bb2dd22faa6125a23cb19bc8c00998"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Package.swift":{"size":934,"mtime_ns":1784312408436009004,"word_count":66,"hash":"625bec010ca509a9d6a2e8f50f483ce1b881febd47f525b08aa83b7cf160599d"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/ArrayExtensions.swift":{"size":428,"mtime_ns":1772824352298298717,"word_count":50,"hash":"a35a1f5a1aafceb88ba13a365283f8fbfff2a85b68e42b61bb39ab912312f67a"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/ButtonWithGlassEffect.swift":{"size":494,"mtime_ns":1784219891290348903,"word_count":41,"hash":"77d1ac9a5ad34dd886004ae806632dcd5295ba37a491c277d1f752551e8629a3"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardDensity.swift":{"size":1155,"mtime_ns":1784216362932050393,"word_count":135,"hash":"3f2d820dbd39715b61987cc56c235332bac8d071dabc4f636280c451cfbc7e4a"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/DynamicTypeSize.swift":{"size":190,"mtime_ns":1765321618235858131,"word_count":21,"hash":"1010ce4105cd089481e5e95716d176191e67fa2064875348bef1fc6a47acad5f"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Model/CardContent.swift":{"size":2858,"mtime_ns":1778008694120991263,"word_count":327,"hash":"7483371001b9a9f2249df755554f208c97059ffdd5a7da01d091d27edc9b9250"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Model/CardStyle.swift":{"size":352,"mtime_ns":1784215715949815251,"word_count":40,"hash":"cc3cfe9a9f911565282ec33b687a349915d9013bee9315f9a79f0e876c89daac"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/FavoriteAndShare/FavoriteButton.swift":{"size":887,"mtime_ns":1784217431748536346,"word_count":92,"hash":"5bcc97b2689ba56fae4df00aab5112c083071ec176e623862441261764b87a4d"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/FavoriteAndShare/FavoriteShareGlassContainer.swift":{"size":576,"mtime_ns":1772824345386592254,"word_count":49,"hash":"39090f7cbe993aaf0d1589dec003b5c0fe369965e46c26d25d9b940057081e76"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/FavoriteAndShare/ShareButton.swift":{"size":437,"mtime_ns":1784217454047958818,"word_count":55,"hash":"e0bf41cb7801a5e65704991fd45c9b4eef34bb0f61df86d557c0fe189992aeeb"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/Menu/MenuButton.swift":{"size":1452,"mtime_ns":1784236846658909554,"word_count":147,"hash":"ab2aad45deb29d570da7f87bc197ecb9559919a8dfff33c0eb0e9adf68c7b4da"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/Metadata/MetadataContent.swift":{"size":285,"mtime_ns":1773159239852449172,"word_count":37,"hash":"e6357fedfc92b5ae974a8f558d70da4a3826ef94e5c3c2dad9d371e2fd13b09c"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/Metadata/MetadataDuration.swift":{"size":503,"mtime_ns":1778008694122992035,"word_count":41,"hash":"45deb393f717cbeb9e62dada275dace48e35ce3aff433a941e21bc890412b89b"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/GlassCardView.swift":{"size":6541,"mtime_ns":1784237059869030991,"word_count":534,"hash":"0f9aeb4e9127f2af4cfd5484e267c0823c2cf8da15cef3f7cf210f0a5167f00c"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/LeadingImageCard.swift":{"size":3058,"mtime_ns":1778008694124346146,"word_count":264,"hash":"7dbc80358e82daea9d503790740c1eb9c2a255e47d981b8e642cdbc974eb3817"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/NewsCard.swift":{"size":1625,"mtime_ns":1784215716011585641,"word_count":143,"hash":"53c614e3b2800f6cacfcfd1732546565614da16d57fb0880befdb98b146378be"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/MenuView.swift":{"size":1807,"mtime_ns":1778008694125432260,"word_count":149,"hash":"0e05fb2c38bc1bfc39fe5ac71f5d4d726bf0d667d1a508f8ed5393bf8f41b8b1"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/PaginatedForEach.swift":{"size":1516,"mtime_ns":1778008694125873547,"word_count":152,"hash":"8a2992d8312fd1c3577e25eda686687cf521c868cf1d544f8af60bb80591f9b2"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/PreviewData/ContentPreview.swift":{"size":1272,"mtime_ns":1773159239854127573,"word_count":104,"hash":"8f484508d7719acb2edfe3e700c5e5698a425cf147eae87b7c38c02b33f9e71a"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/Cookies.swift":{"size":5263,"mtime_ns":1778008694126444583,"word_count":460,"hash":"414d37c2d7a315df8dfe21b99740ccd90b1aff96fdfab154f992e132dc8a9a47"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/Disqus/DisqusDataStore.swift":{"size":381,"mtime_ns":1772824345391309708,"word_count":42,"hash":"f4186f5e253ee4042a3847bcab4fc242f14d5268fdc1805e646be773899b37d5"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/Disqus/DisqusHTMLBuilder.swift":{"size":1477,"mtime_ns":1772824345391612621,"word_count":108,"hash":"3547be831d83751466b942afc9d703a322a45a2df1959c88eb9e5b364010595b"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/Disqus/DisqusNewWindowHandler.swift":{"size":517,"mtime_ns":1772824345391950910,"word_count":51,"hash":"fab08e55c76045843baa9ab5b9a8e3982c643d636bbf13737e06a8aad8bc0d46"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/Disqus/DisqusWebView.swift":{"size":5053,"mtime_ns":1778008694126687539,"word_count":376,"hash":"045ea6243b9a3a6561075d66b9fb5a581139ab2f7b2b6a87968ca557b65bc7ce"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/GalleryStateMessageHandler.swift":{"size":555,"mtime_ns":1781684811271751516,"word_count":52,"hash":"606d8f40502bdcd3345d6fc98189df388ee18ad1a64ed0aa2eb587703319ae3f"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/InteractivePopGesture.swift":{"size":2087,"mtime_ns":1781684811271963266,"word_count":202,"hash":"6a13fd619ba9a36a159e303ca5472e40ac311610c3fb35277addf103fe4b72a7"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMNavigationDecider.swift":{"size":1274,"mtime_ns":1784312408436429167,"word_count":105,"hash":"3bac2fe7adfa5d523a075ab137a6cbcc4505e6d003c83505b35dcac5375bcbde"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebView.swift":{"size":7126,"mtime_ns":1784381011166865556,"word_count":585,"hash":"d4d80245bb06086ae5c8478adf2de4b13c52becf1ad3fa080083660b6540c596"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/MMWebViewUserScripts.swift":{"size":4700,"mtime_ns":1781684811272664892,"word_count":307,"hash":"3c7cab210a10cbf70740c70011fd06f7962cdba6709ae8f76651d0b2275135a9"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/ManagedWebView.swift":{"size":6655,"mtime_ns":1784380992290355640,"word_count":603,"hash":"dc40a93e0c773949ae7f73de1d434bd679f06edb2a0cfa4995be6c0dcbdbde72"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WebPageCache.swift":{"size":1410,"mtime_ns":1781684811273124726,"word_count":136,"hash":"d568faa2e4c6212e77184464185ac4d21a30d6c60c0e6de73dcb0f77c2363655"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WebViewStatus.swift":{"size":612,"mtime_ns":1778008694128565686,"word_count":53,"hash":"2ac6ad2eb7f50158ecaddc72ad1534d16041bb52cefa95aefa1f71488739d778"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CardSystemTests.swift":{"size":7256,"mtime_ns":1773260916537277267,"word_count":674,"hash":"f5777b9ccc783c9f80b897ffac7e073059e83c6678acd3833cdfdea1afaf9d57"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/CookiesTests.swift":{"size":10862,"mtime_ns":1766185900751824009,"word_count":1137,"hash":"8763156b5abfc447d7797abff3063543d56e95cd01462f402ca808e2adb8edac"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/NewsLibrary/Package.swift":{"size":1226,"mtime_ns":1766840449017107003,"word_count":85,"hash":"11b18b65a9e0421e757ab4ac47c69b962ddc05e206fcd839c0a1cee58916a1bb"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Extensions/ArrayExtensions.swift":{"size":402,"mtime_ns":1772892114936106325,"word_count":46,"hash":"884bb980cb89e9127bf9b4ed2e1247e6bef612a3c2e46bd8c12be208ca9e1a28"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Extensions/FeedDBExtensions.swift":{"size":1535,"mtime_ns":1783713592412809284,"word_count":120,"hash":"fb63f0838d000cdc4b181906406fc13b05d59b47b337f673b493447283307045"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Modifiers/CardAccessibilityModifier.swift":{"size":2172,"mtime_ns":1778008694129805882,"word_count":204,"hash":"c99a594d1dc9d038a3c77ce5cc2ffee6fb52f615859bedec808520068625081e"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/ViewModel/NewsViewModel.swift":{"size":1382,"mtime_ns":1772824345395806372,"word_count":151,"hash":"f3452f74ba8c631d57c1fb882a05d1332b9692f82775d38691ef630475b5a24a"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/CollectionViewWithHeader.swift":{"size":4103,"mtime_ns":1784240065841306434,"word_count":387,"hash":"96273c79ce8781532d85e81587bc09b687446d7f4e8ce119bcea9a410041df3e"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/FeedHighlightCardView.swift":{"size":1608,"mtime_ns":1784241568580597804,"word_count":157,"hash":"96c095f5f4ac8ed8102d2c7d18de6d112c73c533ced60b3647376401f8245ff4"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Components/FeedHighlightsCarouselView.swift":{"size":4504,"mtime_ns":1773159239858216411,"word_count":400,"hash":"6c0c4286023592c25ca52979e7829719899374aa1a0863112eeef8a989e5f9e6"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/Mock/PreviewData.swift":{"size":1963,"mtime_ns":1772824345398413013,"word_count":187,"hash":"dc215b79e12b6b1ac8f21a1231d3ca82a1a18ff3c522250076781435300c547e"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/NewsLibrary/Sources/NewsLibrary/Views/NewsView.swift":{"size":9393,"mtime_ns":1784240182525630586,"word_count":732,"hash":"4c4dbfc5ddd710b954cc66e8f874bbbbbbb80887a156667106d52e7267fe380f"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/NewsLibrary/Tests/NewsLibraryTests/NewsViewModelTests.swift":{"size":8978,"mtime_ns":1772824345399070049,"word_count":895,"hash":"7b09b3519c5ae0011c5c2684927d283bc5924d4398313f1cc3b86cfc68d11c34"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/NewsLibrary/Tests/NewsLibraryTests/Resources/feed.json":{"size":221301,"mtime_ns":1766840449022705159,"word_count":12073,"hash":"b5552cb9deb6b293b2b01d7b608519a42f717f68f110eaea07e000e250658d9d"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/OnboardingLibrary/Package.swift":{"size":1183,"mtime_ns":1766864993028260801,"word_count":79,"hash":"7d3fc19a1862fdab34dfa4addb1891b2f94ca08a52cf561c289a40769932ff90"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Extensions/Array.swift":{"size":287,"mtime_ns":1773159239859024737,"word_count":39,"hash":"538bc8b1a78505c5e403395b3b8ec479a5e8821be0f2500a3817bb55e6192b23"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Extensions/View.swift":{"size":1545,"mtime_ns":1773159239859528274,"word_count":170,"hash":"ea85e85bf8117532a8b550e1ad83249314d23a53fe4a51d57f5108e879adf5c5"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Model/OnBoardingFeature.swift":{"size":1641,"mtime_ns":1772824345399523586,"word_count":148,"hash":"7a724a4d4617a0ee25918da535ebef277d50b21d66b047249dbca3d653f4a88d"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Resources/Assets.xcassets/Contents.json":{"size":63,"mtime_ns":1766834687808660844,"word_count":12,"hash":"a12efc14ff3d5c9d8fc899d142422109e386b5d8d90b2312f7241b8434ec3197"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Resources/Assets.xcassets/icons without background/Contents.json":{"size":63,"mtime_ns":1766834687808862634,"word_count":12,"hash":"d70cbb8c85543225610f499d4adbf46dcc3c715560d36a14d04ff26bd6b15b71"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Resources/Assets.xcassets/icons without background/alternativa_without_background.imageset/Contents.json":{"size":171,"mtime_ns":1766834687809174506,"word_count":24,"hash":"80baf5759a296e8a7905fe8fd62f92c6783f552d532e07a4d6f458f7ee127338"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Resources/Assets.xcassets/icons without background/alternativa_without_background.imageset/alternativa_sem_fundo.png":{"size":52652,"mtime_ns":1766834687810058332,"word_count":1666},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Resources/Assets.xcassets/icons without background/normal_without_background.imageset/Contents.json":{"size":166,"mtime_ns":1766834687810392371,"word_count":24,"hash":"dbddf05d6aef1c148063c6b9ffccb596d6f87aa483b4ff5167fb0ab6ae591000"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Resources/Assets.xcassets/icons without background/normal_without_background.imageset/normal_sem_fundo.png":{"size":606390,"mtime_ns":1766834687812755226,"word_count":21818},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Resources/Assets.xcassets/icons/Contents.json":{"size":63,"mtime_ns":1766834687813277722,"word_count":12,"hash":"ccc7aef5ac0feda926fbef9c6fd6abbcce0f9beede63ac063624fc14a9f54767"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Resources/Assets.xcassets/icons/alternative.imageset/Contents.json":{"size":157,"mtime_ns":1766834687813496012,"word_count":24,"hash":"c0535e36744cd41bfc3c5eedc69dccadb4dfd343c5a3b8a543881eac5452b53b"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Resources/Assets.xcassets/icons/alternative.imageset/phone_2.png":{"size":615424,"mtime_ns":1766834687815145373,"word_count":22805},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Resources/Assets.xcassets/icons/normal.imageset/Contents.json":{"size":157,"mtime_ns":1766834687815418162,"word_count":24,"hash":"8e12a4c08a8783540f42f063e0a694463a1bdd3395a66eb4b723a4b63be731a9"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Resources/Assets.xcassets/icons/normal.imageset/phone_1.png":{"size":418674,"mtime_ns":1766834687816745943,"word_count":15397},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/ViewModels/OnboardingCoordinator.swift":{"size":4033,"mtime_ns":1773509682137097903,"word_count":308,"hash":"accf1e8415f68d1ba30da4101158af421834efbc0afa62092c13d46638f8b9e0"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/ViewModels/PermissionManager.swift":{"size":6440,"mtime_ns":1778008694131776446,"word_count":577,"hash":"66a4caa60c93db0cceabad0a30a949fe911a3f1fb15b6a7e535d72d8fcd7ddb8"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Components/OnboardingCTAButton.swift":{"size":1848,"mtime_ns":1766834687818571303,"word_count":165,"hash":"3b0a19031354e54d9e62e22a275a0e37a7ee7693dc65737d1ab10a53f61d9e70"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Components/OnboardingLogoView.swift":{"size":1344,"mtime_ns":1766834687818935883,"word_count":115,"hash":"52934548890ec3f0294e6871bd76b171dbfff09e4c1340959b3c5c395758c461"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Components/OnboardingSkipButton.swift":{"size":1042,"mtime_ns":1766834687819234756,"word_count":103,"hash":"8b86eb789da1de0a21b333fb012b85e8fa826b85d3f459c841cd048e44cabcab"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Components/OnboardingTitleView.swift":{"size":927,"mtime_ns":1766834687819560878,"word_count":88,"hash":"a93790f55d64e4d046bae14ad33341bd4a11221c9b4a9e47c8a4d8b92afc74d5"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Components/PermissionCard.swift":{"size":5004,"mtime_ns":1766834687819858084,"word_count":341,"hash":"c7464a5673a727766f27819b86f4742c16ba6a44d3c9bc0771ec0337a25eeeaf"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Modifiers/OnboardingFadeModifier.swift":{"size":377,"mtime_ns":1766834687820654035,"word_count":36,"hash":"78f5fab833aaa8b0765444e3fae9846d22f46aef6dc4ce9e06f2efb714882202"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/OnboardingContainerView.swift":{"size":2421,"mtime_ns":1773508198211896537,"word_count":182,"hash":"f8c67807e5c35ecd96d0a61b567313032cb83fc3fe59fd9ea83238b959501543"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Screen1_WelcomeView.swift":{"size":5805,"mtime_ns":1773254395582436393,"word_count":446,"hash":"9722d5368a68bff7605e6058c76a3e7397f2583c9577b93817493b55ebdfd9fc"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Screen2_FeaturesView.swift":{"size":9972,"mtime_ns":1778008694132223649,"word_count":766,"hash":"ef81b2bac3d45bbd1947c97bfaf144a13c30bec6a375e2a047d5ffe4448acc6b"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/OnboardingLibrary/Sources/OnboardingLibrary/Views/Screen3_PermissionsView.swift":{"size":8351,"mtime_ns":1773254395586231024,"word_count":614,"hash":"78bc6035d29a6ab5b5bdd4159a3e8c6ac6afa644305e8e8053b299301827b17f"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/OnboardingLibrary/Tests/OnboardingLibraryTests/OnboardingCoordinatorTests.swift":{"size":7707,"mtime_ns":1773254395587030934,"word_count":581,"hash":"89175c7191a0dc39c75ebc0af3ec6fe6ed864691143459e6c7a94b7278b76958"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/PodcastLibrary/Package.swift":{"size":1237,"mtime_ns":1766840449024719932,"word_count":85,"hash":"36031931c81bf046cbecb004f53eb64b10ed8e938e2d37ec01957b2d6409a161"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/PodcastLibrary/Sources/Podcast/Extensions/PodcastDBExtensions.swift":{"size":1295,"mtime_ns":1773159239859737481,"word_count":105,"hash":"cb354c3238475d1e7b56c384afb6b32c906dd4f45d276b76b48852048589e5c5"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/PodcastLibrary/Sources/Podcast/Extensions/UIColorExtensions.swift":{"size":539,"mtime_ns":1766148332292006238,"word_count":62,"hash":"734ca1d5828c3e48b146710cf9f9619ca99fb104e033fd226172d92e8a858820"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/PodcastLibrary/Sources/Podcast/Extensions/UIImageExtensions.swift":{"size":5171,"mtime_ns":1766148332199047086,"word_count":476,"hash":"52d7fe0da32b44c686112f6ea34893924d34813281fc330c5365a6ae7d5f585f"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/PodcastChapter.swift":{"size":1180,"mtime_ns":1765659248648790860,"word_count":122,"hash":"2806f0d31650285f9adec6cd78dc8114d6f21affbb950a04dd4480b3ebd64d7f"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/PodcastPlayerManager.swift":{"size":9664,"mtime_ns":1773595574120819462,"word_count":837,"hash":"167ac831312ba1a06b761168d6f95e030ae85620ca08914cd7d4af0d0227a3c2"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/PodcastLibrary/Sources/Podcast/Manager/SystemVolumeView.swift":{"size":1008,"mtime_ns":1765761218919057248,"word_count":85,"hash":"4104dd55d3df7834425525dd577d9189410f904a3f0370610cdd5e15eddfba87"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/PodcastLibrary/Sources/Podcast/Modifiers/CardAccessibilityModifier.swift":{"size":2104,"mtime_ns":1778008694132945559,"word_count":192,"hash":"672395732791e4b0faa78b2dff8b8b983533cdb5fa4f686c1f5d6bf5e4dc38be"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/PodcastLibrary/Sources/Podcast/Modifiers/PodcastMiniPlayerModifier.swift":{"size":2430,"mtime_ns":1772824352300491696,"word_count":159,"hash":"fe5c17e191671062a06c320822072714822b004492571c72e24854a3ded93196"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/PodcastLibrary/Sources/Podcast/ViewModel/PodcastViewModel.swift":{"size":1366,"mtime_ns":1772824345399903624,"word_count":148,"hash":"f0925c5b30b82ed19c63880f318b038dd807127ff1a83665338e9d5045be6045"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Card/AdaptivePodcastCardView.swift":{"size":1111,"mtime_ns":1784238208814278858,"word_count":101,"hash":"c9b28f960610c81dcd57578426c0e320cbf199c48acc5b2b7bd33eadb17031a8"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Card/GlassPodcastCardView.swift":{"size":1800,"mtime_ns":1772824352300906900,"word_count":151,"hash":"b62f291d91f4a8a81beaafd63783dc95b7c5fa5e2c9e221bfef20dfe73d81661"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Card/PodcastCardView.swift":{"size":3551,"mtime_ns":1772824352301073648,"word_count":253,"hash":"0ae87dab82d5aa26c9ff4f6e9a7d1d0b430e7936cfd84b4fed104ac5c713888a"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/ChaptersView.swift":{"size":6773,"mtime_ns":1766772439639230457,"word_count":478,"hash":"44c693934345a70efd1e81d42823aa9cfdff4a03a64d571007aa612eab2ac127"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/FullPlayerView.swift":{"size":24165,"mtime_ns":1778008694133932132,"word_count":1565,"hash":"2131866fea1782be4ca05f3df9ee67b386f93775a71690b59b265e73d10f6227"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/Background/BackgroundView.swift":{"size":1032,"mtime_ns":1765735819925640495,"word_count":88,"hash":"6e0b62ecd67c67083a7e507586471497d5ba86a0a3e0f5d84d5784c9ccee5ebe"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/Background/BackgroundViewModel.swift":{"size":4878,"mtime_ns":1765734374801019365,"word_count":385,"hash":"4ddd473cf8d198b7b14b6958cdd0984a89cc422a20f9336a7699821cfd40274f"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/PodcastImageView.swift":{"size":1665,"mtime_ns":1765735902047535038,"word_count":136,"hash":"c440c291faccad8ee1279e2b2d638f9ee9578efa121d4ff54ff4a9d6a2d68cf6"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/ScrollStylePicker.swift":{"size":6424,"mtime_ns":1778008694134641375,"word_count":545,"hash":"9500b08b51b680db19455cf7f282f4799182c83d5062cd1cde633472e5eb2267"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/Helpers/Ticker.swift":{"size":1689,"mtime_ns":1765569507883819433,"word_count":150,"hash":"6d42c923892eef063208bfa77b65d6124a4e29986015ca2069f8363b3e3a741a"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/Player/MiniPlayerView.swift":{"size":5492,"mtime_ns":1778008694135322160,"word_count":318,"hash":"fdd454006cb59f449c6ce90a335ded592619c87ee9bfd6101cc431e9ccafd853"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/PodcastLibrary/Sources/Podcast/Views/PodcastView.swift":{"size":3740,"mtime_ns":1773700012932481483,"word_count":265,"hash":"946c1d31c1e271b1cc5d857fc3569966e537ceaa660ab6eafe0e45302d129e31"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastChapterTests.swift":{"size":11314,"mtime_ns":1766185900752062091,"word_count":1289,"hash":"a7fc4676652797a01f41acc46f1222fb211d9598f3d5b7544622b5338a07a1dc"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastPlayerManagerTests.swift":{"size":10011,"mtime_ns":1766185900752260381,"word_count":1122,"hash":"e57a500238e3ff39aa0f53f578ccdd94b3195a8084062f396935bda6198bd6cf"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/PodcastViewModelTests.swift":{"size":12244,"mtime_ns":1772824345400778074,"word_count":1305,"hash":"4d897d3ed1df71fbd25f370040c1bc29d28b9d089a0379496a749e128f6e3c3d"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/PodcastLibrary/Tests/PodcastTests/Resources/podcasts.json":{"size":667613,"mtime_ns":1766150801880984974,"word_count":26525,"hash":"07cd73b7f39480a5670ea3d98be70e43b5e6b140ff82077b68741f3e52d9808b"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SearchLibrary/Package.swift":{"size":1522,"mtime_ns":1772892114938499026,"word_count":98,"hash":"3d90db817b1622892b6d378b4feea1e5deaf1eb426dddcc02d059fed8cfe10d4"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Models/RecentSearchDB.swift":{"size":288,"mtime_ns":1772824345401349151,"word_count":40,"hash":"2a6501ebecd6052bb2ad94f395c79c2888e0c578abe3e1205f15d13e5bebbd62"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Models/SearchResult.swift":{"size":1669,"mtime_ns":1772892114938805525,"word_count":163,"hash":"45181fcb53abc3089e0f25630552c56a99bd33a3960118802154425af12d9700"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/NLP/PortugueseLexicon.swift":{"size":2778,"mtime_ns":1772824345401680565,"word_count":285,"hash":"fb41b71fce39c476fb82b82fd0d198df1f3ab81b120f8dc05bf1a439d43cceed"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/NLP/QueryIntent.swift":{"size":487,"mtime_ns":1772824345401802647,"word_count":52,"hash":"b6612b95eb1cb88aeec54a38d0a54e60e419499f865ea6bf9982a40e82c0f638"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/NLP/QueryProcessor.swift":{"size":3991,"mtime_ns":1772824345401951187,"word_count":327,"hash":"c2c28101c164146d7e287c990b46d7f609ef721f4f16a05be333452d6b003a5d"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Services/LocalSearchService.swift":{"size":3380,"mtime_ns":1772824352302025598,"word_count":285,"hash":"db34e950c7a733f07cb62c230296815111af08e80d5df32ccaaea006f92cb111"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Services/RelevanceScorer.swift":{"size":1314,"mtime_ns":1772892114939137649,"word_count":143,"hash":"41233d075479ccaab4efd517b84209ab4c94d170416606c4d0a27f7b0b9fd3fb"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Services/RemoteFeedSearchService.swift":{"size":1790,"mtime_ns":1772892114939391190,"word_count":160,"hash":"69fb71db4b94a7c172efff1274b9985cd41c6348334245ed522b867b8fa5f2f0"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Services/SearchResultMerger.swift":{"size":2276,"mtime_ns":1772824352302392844,"word_count":220,"hash":"d6363e25b3fa7a757dc27a71d7fd6c57c083f41ffe4ced1692cc33e194b77f35"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/ViewModel/SearchViewModel.swift":{"size":5200,"mtime_ns":1773159239860160102,"word_count":459,"hash":"17ae55d05281acfa9c436c73b142801a59ca0813df1628f8df42f4e8fa6151a4"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/RecentSearchesView.swift":{"size":1835,"mtime_ns":1778008694135863154,"word_count":103,"hash":"c6c2e76fab483a514dfe1bd83734a081fb77044e73195a75f3aa3ce7572df441"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchResultsList.swift":{"size":2731,"mtime_ns":1784241985333559901,"word_count":231,"hash":"ecf475f41a672b3a1bf27fe3dece5ba4249a7c80df1bbc96f42e26c1a6b8efd2"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SearchLibrary/Sources/SearchLibrary/Views/SearchView.swift":{"size":9549,"mtime_ns":1783719971199824369,"word_count":686,"hash":"d98a6815766b9df4ac12f736fb28b68e2e719fa30201832d89dd7cb037d7d3f5"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/QueryProcessorTests.swift":{"size":2832,"mtime_ns":1772824345403497881,"word_count":223,"hash":"cb80c32cee5af3701273b6211b7bea362ca3c180758de4e928d529d573d1b64d"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/RelevanceScorerTests.swift":{"size":2197,"mtime_ns":1772892114940363728,"word_count":220,"hash":"3e72a6280bf1814562311f0c43168a087a96d98d30d4f2155e70095beb162264"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/RemoteFeedSearchServiceTests.swift":{"size":5141,"mtime_ns":1773260916537563223,"word_count":485,"hash":"98f0663619eb288dce0b40b94f4dc14f80155684ca5c5a9185cadef465ec14c8"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchResultMergerTests.swift":{"size":3208,"mtime_ns":1772892114940756144,"word_count":313,"hash":"5073477f6c70bf756e6944c30f2b3891fb0c4290fd1541600791148af098c58b"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SearchLibrary/Tests/SearchLibraryTests/SearchViewModelTests.swift":{"size":7391,"mtime_ns":1773305059544444390,"word_count":627,"hash":"8d9c10f190984b56d12a0b57136bd09b39b86821bbcf412e33029739830ad81c"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SettingsLibrary/Package.swift":{"size":1344,"mtime_ns":1772824345404220498,"word_count":87,"hash":"f1c9b1cf36192a7b11001a4ce173aa1d1c6e54b3c9ecab1c41661eb210cac770"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/Cache.swift":{"size":85,"mtime_ns":1773686655527651149,"word_count":11,"hash":"4b8b25175b032b631ff5870033c20ccf096a1f14c68d1612df9749c78b62d0af"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/ColorScheme.swift":{"size":616,"mtime_ns":1762902416461877933,"word_count":95,"hash":"0b234f2f746bee402d36b0f234a5a115cc17d6d40f5b5864cb50173f707d3685"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/Databases/CustomizationDB.swift":{"size":1279,"mtime_ns":1766840449027171826,"word_count":144,"hash":"ae9b8d1ea9e77c6c2833fc56e19528bdb7b11488633196d416e58595e8436bb6"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/Databases/SettingsDB.swift":{"size":1685,"mtime_ns":1778008694137908592,"word_count":185,"hash":"3a9d6d70a639f5bfcff6a4ff2b2f03aa4f0373eafb6de4dd5049e40c147bc3ff"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/IconType.swift":{"size":497,"mtime_ns":1762902416462057139,"word_count":67,"hash":"043d465b79ef2352f4d59be4bad334a34fdd0b9de65489ed4b88e0da280e27be"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/PushPreferences.swift":{"size":388,"mtime_ns":1762902416462810211,"word_count":53,"hash":"f22dbd156b12114ab21591218ca650d0671d65bd3bbf6f6b6a809dc3fa6b3564"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/Subscription.swift":{"size":252,"mtime_ns":1762902416462941126,"word_count":29,"hash":"1a311e85e6d816b83e955ed9e0bfc4fb449ba7e6c9729a6784a39dbe4c23a6f1"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Definitions/URLs.swift":{"size":408,"mtime_ns":1762902416463140706,"word_count":41,"hash":"00ecc782723d9a053eb4795c23950241781cd172a69f93b76f559667aa798eff"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Resources/Assets.xcassets/Contents.json":{"size":63,"mtime_ns":1762980717204738000,"word_count":12,"hash":"96100647d106938e551b24a22a9b85800e3ec825e136966854bb858076e3a8c1"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Resources/Assets.xcassets/icons/Contents.json":{"size":63,"mtime_ns":1762902416463314371,"word_count":12,"hash":"5e3bfd29ff90f0bf4e4246f73dbb14fb7ac9e9c8f84524f4f7d42efe34c8469c"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Resources/Assets.xcassets/icons/alternative.imageset/Contents.json":{"size":157,"mtime_ns":1765561852066370000,"word_count":24,"hash":"fcc245d001f30ffbc4a5c3d8554a4f3178d9780935c04a4e5c17bf7339bc3ac2"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Resources/Assets.xcassets/icons/alternative.imageset/phone_2.png":{"size":615424,"mtime_ns":1765561852066475000,"word_count":22805},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Resources/Assets.xcassets/icons/normal.imageset/Contents.json":{"size":157,"mtime_ns":1765561852066437000,"word_count":24,"hash":"7f4a4ff2dc5efc51f063930dd8cbded8fb5283b4a425255d3baeba93f02b524f"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Resources/Assets.xcassets/icons/normal.imageset/phone_1.png":{"size":418674,"mtime_ns":1765561852066508000,"word_count":15397},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/AboutViewModel.swift":{"size":2352,"mtime_ns":1776460570891045439,"word_count":187,"hash":"a523a27f72dffc8ac2307b46b9662df3b1b6129f5817476a08923510b3741f2d"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/AppearanceViewModel.swift":{"size":378,"mtime_ns":1765117042843435682,"word_count":42,"hash":"9a8513083198e815391e3e7b150b6b4e4bd36660e25232a9e45306c5ed8975fa"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/CustomizationViewModel.swift":{"size":813,"mtime_ns":1772824345405103490,"word_count":81,"hash":"bbe07ae701d3b928ce7617d54d6d8158a077cb38acb0f5c4b0a53782ae2e3924"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/Extensions/Database.swift":{"size":3683,"mtime_ns":1778008694138227880,"word_count":347,"hash":"1118d3b399b5fc67896dee702e6c0c991707b7eb8e96156c728a01c10a45135e"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/IconsViewModel.swift":{"size":685,"mtime_ns":1765124023831773734,"word_count":70,"hash":"51838b31131d2ab2e6869632189016ec1aab41f5bee13632ca1ea017839a014d"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/PostsVisibilityViewModel.swift":{"size":1200,"mtime_ns":1784214196822558288,"word_count":107,"hash":"89544c9550b473435097c522fd5dfe2c8758a84b24a0c2e572dfe98df26f6f19"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/PushOptionsViewModel.swift":{"size":516,"mtime_ns":1766772439641785228,"word_count":49,"hash":"fe2264c719c61c817212d6870ed878642041dc4f343e1c027226ae3c9ffdc4a7"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/ReadingPreferencesViewModel.swift":{"size":893,"mtime_ns":1778008694138343129,"word_count":84,"hash":"446ebdac23aee50bd925de323e71dda5f875fc2098881d021778e3c20385af03"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/SettingsViewModel.swift":{"size":2829,"mtime_ns":1778008694138520544,"word_count":263,"hash":"e5a4b66833719286f71704f6e2909a134bc9537dabaa604a05007903593c74f3"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/ViewModels/SubscriptionViewModel.swift":{"size":4871,"mtime_ns":1778008694139205662,"word_count":375,"hash":"41ffa6be72bbf712d9ee230906be7caf0f4303b97b8fe29402d2375981332652"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Extensions/CustomProductViewStyle.swift":{"size":2010,"mtime_ns":1772824345406023106,"word_count":154,"hash":"39f41c5f0e881d9832577e412066e118bed9264677191421ca62b8b61ff4bdc3"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Extensions/PlainButtonTextStyle.swift":{"size":415,"mtime_ns":1762902416468538421,"word_count":48,"hash":"6308bb237cd94ed7ab0c6138a0990b82d47760bf9370c77b31cb3d57d3cbafe2"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/SettingsView.swift":{"size":7371,"mtime_ns":1784213366354649977,"word_count":543,"hash":"d5b4d494dca744bc51b040a4f1145b3eba509ab606d2be931473fd5854a646cb"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/AboutView.swift":{"size":2837,"mtime_ns":1784213366329535060,"word_count":190,"hash":"9fa39a3cc821ec1b3263f454050173890126021f2743c40ab2fe6b04e9cd72d4"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/AppearanceView.swift":{"size":2280,"mtime_ns":1766101710500413320,"word_count":158,"hash":"ca7416fffa55e714112629a2e61bf5bd2a7d1ca95b7b5f5adf2e8aba9a8d9796"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/CustomSocialView.swift":{"size":1711,"mtime_ns":1766101897069702076,"word_count":134,"hash":"c3ce947f91d76c9fff37d924e524a5b1d6b819e9ef4124e9792ddbb1b8859d55"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/CustomTabView.swift":{"size":1947,"mtime_ns":1773589049679822730,"word_count":164,"hash":"4b194132150a3be1db3eca9868037a81415bdd67bf7ad669434c29fe3d9f27d2"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/IconsView.swift":{"size":3945,"mtime_ns":1766101747488365642,"word_count":279,"hash":"2ab147536013bc8908c5536f602dcd94c6f7fef1405206d2ee769a0ffa3a05e2"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/PostsVisibilityView.swift":{"size":2459,"mtime_ns":1773870995261651121,"word_count":164,"hash":"230bfedbf27f00749948d62a8a94cbb4010e6e82c9d945834bf016e3a2c5ea41"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/PushOptionsView.swift":{"size":2095,"mtime_ns":1766101860121251072,"word_count":142,"hash":"5b3d0fbe9f9c8d733b85e877cbd54689c2e2a7f202ec625617db6639f5dfccf2"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/ReadingPreferencesView.swift":{"size":2220,"mtime_ns":1778008694140173819,"word_count":151,"hash":"3b874471991c0a156f3a3e499dd0c5431a6e90c3a8864718baa4f3e8dbf3370e"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SettingsLibrary/Sources/SettingsLibrary/Views/Supplementals/SubscriptionView.swift":{"size":5922,"mtime_ns":1778008694141027060,"word_count":428,"hash":"6e6f26a2ce85cb7b48edec02853684e14cda5f5c067c5066e8c45e8393c15feb"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/DatabaseExtensionsTests.swift":{"size":13062,"mtime_ns":1773686957647193415,"word_count":1197,"hash":"dfca0f5378df7d38e8ac7a1b44df5d1b60837adf22e3a8bf757762783b56bd53"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SettingsViewModelTests.swift":{"size":8746,"mtime_ns":1766864993029758540,"word_count":736,"hash":"ce9e90d2a3e269116822d36dfc78f5188da70a81cfd4b2dd4c51f5abba97197a"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/SettingsLibrary/Tests/SettingsLibraryTests/SubscriptionTests.swift":{"size":8439,"mtime_ns":1766185900753144333,"word_count":836,"hash":"dc989c9ce34da7a1b4722850b47d32c993814b3bf119c12bbff0edebf8eed4e9"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/VideosLibrary/Package.swift":{"size":1169,"mtime_ns":1766864993030254744,"word_count":82,"hash":"7faee1d8e3d370c41652d78d2f481847e85cdeda77a5adb01bb0d2bcb62ff106"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/VideosLibrary/Sources/Videos/Card/AdaptiveVideoCard.swift":{"size":2103,"mtime_ns":1784241800447209082,"word_count":163,"hash":"4f7a5c66eda0b7dab4e4ccb0a294fb138b1375f72403081ef49d09b00f6ebf14"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/VideosLibrary/Sources/Videos/Model/VideoDBExtensions.swift":{"size":2261,"mtime_ns":1773159239865653594,"word_count":188,"hash":"7f0c0ca816c18d1ba601ff20102a4bb037f8677184b74a4161e3ec5d277b0b61"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/VideosLibrary/Sources/Videos/VideosView.swift":{"size":2783,"mtime_ns":1773700013900047986,"word_count":207,"hash":"784db010515f7f11acfdbcb163107aed1dcf5531c1adef318cf833ca77f79257"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/VideosLibrary/Sources/Videos/VideosViewModel.swift":{"size":1751,"mtime_ns":1773489754981348378,"word_count":190,"hash":"13a95517276df75ea3d7a5acec31dd3e512022de77ad1def69b2edff84abaabd"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/VideosLibrary/Tests/VideosLibraryTests/VideosViewModelTests.swift":{"size":4994,"mtime_ns":1772824345407287677,"word_count":500,"hash":"3512992857b96adfcc2fa2d3f7cc65960ffa2b72da5f63310fcd375c84b32499"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/MacMagazine/Features/News/DeepLinkNewsDetailView.swift":{"size":2553,"mtime_ns":1784221275328088366,"word_count":170,"hash":"fd628e07d5dc5d86d88a707b13a8a3fe2e1a26adf096dda16bfd8d89d7be6b00"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/MacMagazine/Features/News/NewsView.swift":{"size":3230,"mtime_ns":1784219921864059048,"word_count":251,"hash":"713e783a442ca9284873b0ebabaa791acdd2fb390e7d46ef1d681660832703b6"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/MacMagazine/Features/News/ToolbarModifier.swift":{"size":1486,"mtime_ns":1784221283478402666,"word_count":104,"hash":"0ed131bfc307df761907f1c59c967e301627333f0d083c0d8a28941c1bd40299"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/MacMagazine/Features/Shortcuts/ShortcutActions.swift":{"size":149,"mtime_ns":1773409970383189488,"word_count":17,"hash":"08e338e955214b6f16ffed2563516cc0c1940b64c40bb4472a9e6b956df0657b"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/MacMagazine/Features/Shortcuts/ShortcutManager.swift":{"size":1113,"mtime_ns":1773411133093537136,"word_count":101,"hash":"4f5eba6ad251d52ffc26ab212baccd1dd48ba6277c7b3efa69fbb3ddeb7302e2"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/MacMagazine/Features/Social/SocialView.swift":{"size":3901,"mtime_ns":1778008694142855959,"word_count":256,"hash":"5b0b0313de19e25d4761b4e5eeeb32cc60d740b98dfb250369afa30f7a123d43"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/MacMagazine/MainApp/AppDelegate.swift":{"size":3023,"mtime_ns":1778437790473981359,"word_count":213,"hash":"223ced0c848798dc9d00e0565e44249d3b570286c329b34383fe57370b86558f"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/MacMagazine/MainApp/MacMagazineApp.swift":{"size":5672,"mtime_ns":1784239604538577210,"word_count":312,"hash":"dc71aa029e89c10c87b26ae7bf79c20a14ea614821a530e50a36a103c89f004b"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/MacMagazine/MainApp/MainView.swift":{"size":2412,"mtime_ns":1773871757025503382,"word_count":182,"hash":"63c3447d90c85201d83bd5afb4a53fe1ae3321b85f999b5eab1abc40840d2ef6"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/MacMagazine/MainApp/MainViewModel.swift":{"size":4084,"mtime_ns":1783711691774620750,"word_count":348,"hash":"78886590cb08d8ebafa0f83a90b9bbd7cc6f767e5aeae9c49d1a0bd1d90c9bce"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/MacMagazine/MainApp/NavigationState.swift":{"size":1316,"mtime_ns":1772892114945713920,"word_count":126,"hash":"baaf574fef17e52a51f1a10ff4ff1eab68450b8b5231e6c5ff528178b4cc0fb6"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/MacMagazine/MainApp/SceneDelegate.swift":{"size":1421,"mtime_ns":1778354414155131589,"word_count":100,"hash":"db0abf07f695f4adb0810d82bee0b4837cf6d3d1e876b13b02877a7637f667ba"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/MacMagazine/MainApp/Sizecalss/MainView+sidebar.swift":{"size":7613,"mtime_ns":1776799765863793244,"word_count":567,"hash":"3cb606f6a0642dbe797d9414f50ea73389979fea3c898e7a21a9707a02606d5c"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/MacMagazine/MainApp/Sizecalss/MainView+tabbar.swift":{"size":1905,"mtime_ns":1783715703858385761,"word_count":134,"hash":"425c2ea6a2f7ae70892cc14aabf35c7f9926ea22c5ad013e0d9ce359f36aece0"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/MacMagazine/Modifiers/NavigationModifier.swift":{"size":895,"mtime_ns":1774892959844410855,"word_count":78,"hash":"ade1c5c06b77756a392f79a04ca39878a3badb1fcd974e0e0e49a6ecb7a8e8c5"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/MacMagazine/Resources/Assets.xcassets/AccentColor.colorset/Contents.json":{"size":123,"mtime_ns":1701436743071102738,"word_count":21,"hash":"92cb10f381ff867280aeeaeaf1ea10dede0a043cb6054b63c97b5a303247d649"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/MacMagazine/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json":{"size":177,"mtime_ns":1757431097208888054,"word_count":27,"hash":"ae736ced8e8174db1a40ced9b2a06474f3a97ca4db873e289bb95e97d2a058ba"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/MacMagazine/Resources/Assets.xcassets/Contents.json":{"size":63,"mtime_ns":1766839589152297000,"word_count":12,"hash":"7839e0a32dd622e9b310301f8e38a2deb0355d97a1c350c276982bd7b624cd5d"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/MacMagazine/Resources/Assets.xcassets/MMGrey6White.colorset/Contents.json":{"size":582,"mtime_ns":1766840449038974132,"word_count":71,"hash":"44e7ab113ef7c3668a0566ec0ff16869c209d724cf55320709b2697afb820974"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/MacMagazine/Resources/Assets.xcassets/MMWhiteGrey6.colorset/Contents.json":{"size":585,"mtime_ns":1766840449039254546,"word_count":71,"hash":"f2b58f714df3a84daaeb7fe17aa1d22baab4dfcc10b7ab111ce4b3cfe41f2a23"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/MacMagazine/Resources/Assets.xcassets/logo.imageset/Contents.json":{"size":373,"mtime_ns":1766840449039635668,"word_count":49,"hash":"1198cd7a734862b4d49d8f54936173b12d4a9b4af779e1967cc701b683c45389"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/MacMagazine/Resources/Assets.xcassets/logo.imageset/logo@1x.png":{"size":35445,"mtime_ns":1766840449041025321,"word_count":1304},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/MacMagazine/Resources/Assets.xcassets/logo.imageset/logo@2x.png":{"size":119499,"mtime_ns":1766840449042464224,"word_count":4163},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/MacMagazine/Resources/Assets.xcassets/logo.imageset/logo@3x.png":{"size":238559,"mtime_ns":1766840449044530622,"word_count":7945},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/MacMagazine/Resources/Icon/mm_icon.icon/Assets/layer_1.png":{"size":287856,"mtime_ns":1757887716625751019,"word_count":9964},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/MacMagazine/Resources/Icon/mm_icon.icon/Assets/layer_1.svg":{"size":3626,"mtime_ns":1757887716625983238,"word_count":184},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/MacMagazine/Resources/Icon/mm_icon.icon/Assets/layer_2.svg":{"size":3796,"mtime_ns":1757887716626172066,"word_count":190},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/MacMagazine/Resources/Icon/mm_icon.icon/Assets/layer_3.svg":{"size":4211,"mtime_ns":1757887716626378059,"word_count":226},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/MacMagazine/Resources/Icon/mm_icon.icon/icon.json":{"size":2113,"mtime_ns":1757887716626650572,"word_count":215,"hash":"31ec100ed83bb35e87676949d097498323a1dd82fb3403713230092cbad3c614"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/MacMagazine/Resources/Icon/mm_icon_inverted.icon/Assets/layer_0.svg":{"size":873,"mtime_ns":1757887716627001524,"word_count":57},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/MacMagazine/Resources/Icon/mm_icon_inverted.icon/Assets/layer_1.svg":{"size":3678,"mtime_ns":1757887716627190948,"word_count":183},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/MacMagazine/Resources/Icon/mm_icon_inverted.icon/Assets/layer_2.svg":{"size":3615,"mtime_ns":1757887716627478600,"word_count":184},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/MacMagazine/Resources/Icon/mm_icon_inverted.icon/Assets/layer_3 2.png":{"size":127779,"mtime_ns":1757887716627980471,"word_count":4399},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/MacMagazine/Resources/Icon/mm_icon_inverted.icon/icon.json":{"size":2248,"mtime_ns":1757887716628196597,"word_count":234,"hash":"3c9716b75584e1316a41505385239b8133bed1cb17ff8c427a767412af620e5a"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/MacMagazine/Resources/Icon/mm_icon_normal.icon/Assets/layer_1.png":{"size":287856,"mtime_ns":1757887716628839970,"word_count":9964},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/MacMagazine/Resources/Icon/mm_icon_normal.icon/Assets/layer_1.svg":{"size":3626,"mtime_ns":1757887716628956556,"word_count":184},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/MacMagazine/Resources/Icon/mm_icon_normal.icon/Assets/layer_2.svg":{"size":3796,"mtime_ns":1757887716629057646,"word_count":190},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/MacMagazine/Resources/Icon/mm_icon_normal.icon/Assets/layer_3.svg":{"size":4211,"mtime_ns":1757887716629141092,"word_count":226},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/MacMagazine/Resources/Icon/mm_icon_normal.icon/icon.json":{"size":2113,"mtime_ns":1757887716629220009,"word_count":215,"hash":"a145950001a0a8810ab0eea28b6d39395c3038cb84963530836593ea987520f7"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/MacMagazineNotificationServiceExtension/NotificationService.swift":{"size":1545,"mtime_ns":1773485080434127836,"word_count":121,"hash":"7750a0407c20d1b29564a8e17706853299622c2ab9103f9931c91e2b0b32ef37"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/WatchApp/Extension/FeedDB.swift":{"size":2198,"mtime_ns":1766840449045443322,"word_count":198,"hash":"7e6f82a0140591777a5d2ba877edd866da616a5a7d0560bd211f2609fa50641e"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/WatchApp/Helper/FeedDotsIndicatorView.swift":{"size":1082,"mtime_ns":1766091468190395532,"word_count":117,"hash":"9286b7ffdf0a608dd0d05968f34b4b8a38f03d3b8aa61a249ebcd904f9d576f6"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/WatchApp/MainApp/WatchApp.swift":{"size":889,"mtime_ns":1773260916540085660,"word_count":72,"hash":"e2296af74a587e90d0a4ce9b65d4a6f2cbeb5106e16f3562e196d0ff4eb425b1"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/WatchApp/MainApp/WatchNotificationsDelegate.swift":{"size":2154,"mtime_ns":1773508921753621971,"word_count":185,"hash":"13e3655225051813934120c9428c4fe6ba22466c85158cefd92fabba069c9514"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/WatchApp/Resources/Assets.xcassets/AccentColor.colorset/Contents.json":{"size":123,"mtime_ns":1766241767195743496,"word_count":21,"hash":"0cc8d7ab7e71a6f75759b99b338323337c5362505f6a5aa5a66602fb8b896798"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/WatchApp/Resources/Assets.xcassets/Contents.json":{"size":63,"mtime_ns":1766092976285906000,"word_count":12,"hash":"45fee4b76cca6ba5e5720e2ddb7f0c40dbfc82c37491c6fd7c16274c2f0bf729"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/WatchApp/Resources/Assets.xcassets/logo_color.imageset/Contents.json":{"size":370,"mtime_ns":1766092973153633000,"word_count":49,"hash":"4b97121c75ff32bdda8c97b0a0424a817d40a81b975d79ed679420f51e96a755"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/WatchApp/Resources/Assets.xcassets/logo_color.imageset/logo.png":{"size":58657,"mtime_ns":1766092973153867000,"word_count":2149},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/WatchApp/Resources/Assets.xcassets/logo_color.imageset/logo@2x.png":{"size":200176,"mtime_ns":1766092973153921000,"word_count":7083},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/WatchApp/Resources/Assets.xcassets/logo_color.imageset/logo@3x.png":{"size":431211,"mtime_ns":1766092973153975000,"word_count":15011},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/WatchApp/ViewModel/FeedMainViewModel.swift":{"size":3280,"mtime_ns":1773254395590038364,"word_count":345,"hash":"d0a4f1865926892e71c09c53767f09b47990edbd3790b5703789f890a192311d"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/WatchApp/ViewModel/FeedScrollPositionKey.swift":{"size":1016,"mtime_ns":1766009723566167344,"word_count":93,"hash":"7ea61d70ef39d196f17f268205ffd4f93f737d8d3c89231fd8bf34130de1eb02"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/WatchApp/Views/FeedDetailView.swift":{"size":1698,"mtime_ns":1774892959831017935,"word_count":145,"hash":"7ad27ad6dfd2c892e90fef80986ae8922fa33fe160be361ffaefffd0a74ee80f"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/WatchApp/Views/FeedMainView.swift":{"size":10173,"mtime_ns":1773260916540916861,"word_count":778,"hash":"c0dcd8ed5f4e1ceb0b1363631646545390ccf0162ee113f76f428702972788c2"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/WatchApp/Views/Row/FeedRowView.swift":{"size":2479,"mtime_ns":1766419440296189708,"word_count":171,"hash":"7b6dc8e45db70df98a5d7c0e13c46add9b5199698da2f8f69141464b12e256e2"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/WatchWidget/Extensions/WidgetAccessibility+View.swift":{"size":1797,"mtime_ns":1766244067357389068,"word_count":123,"hash":"5bc78221357d7d9258fc1188981a31b2433bdef296a13cfe143adf55c398a498"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/WatchWidget/Model/WidgetEntry.swift":{"size":641,"mtime_ns":1766840449047903132,"word_count":74,"hash":"d054c2c5f3cd2dbb5d3736fd61063d9eee80bea3fdbe1f4801c05a14de26d540"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/WatchWidget/Resources/Assets.xcassets/AccentColor.colorset/Contents.json":{"size":123,"mtime_ns":1766241767198916798,"word_count":21,"hash":"b098dbf9f8add05963463662f5d67f2644b001dfc4f62d54e91ede1fac7e4e4c"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/WatchWidget/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json":{"size":181,"mtime_ns":1766241767199254087,"word_count":27,"hash":"73436e3a37e6af5027ba88e0a3897dc8ec405ad1f10dba15f1f841ebec73d4b2"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/WatchWidget/Resources/Assets.xcassets/Contents.json":{"size":63,"mtime_ns":1766241767199368377,"word_count":12,"hash":"6b9adfb93ac7b7f9ed0b43d355c393c655cd2f34686fb8b7e26c26f08a0de11d"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/WatchWidget/Resources/Assets.xcassets/WidgetBackground.colorset/Contents.json":{"size":123,"mtime_ns":1766241767199574667,"word_count":21,"hash":"a3f05f04b79f9a76a3ba9fa3e8cbf2b5c54dde5ea75db1f4c3d979092066d489"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/WatchWidget/Resources/Assets.xcassets/logo_color.imageset/Contents.json":{"size":159,"mtime_ns":1766241767199955122,"word_count":25,"hash":"1bfd779febd51c86b9814d006742f6a29a27877fb0fd7192b223ae7bc68a7884"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/WatchWidget/Resources/Assets.xcassets/logo_color.imageset/logo@3x 3.png":{"size":10892,"mtime_ns":1766241767200326993,"word_count":381},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/WatchWidget/Resources/Assets.xcassets/logo_white.imageset/Contents.json":{"size":154,"mtime_ns":1766241767200663865,"word_count":24,"hash":"77a2079bc89d45abb3b62426c6e41d4edf636352c69db89e9bcbdac9e95ce187"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/WatchWidget/Resources/Assets.xcassets/logo_white.imageset/logo.png":{"size":2151,"mtime_ns":1766241767200818405,"word_count":83},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/WatchWidget/Views/WatchWidgetEntryView.swift":{"size":3611,"mtime_ns":1774467066632067330,"word_count":259,"hash":"8e0d034c1142d51e46d1ddaef7958211fc8a041741066b985925afb2e55c896f"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/WatchWidget/Widget/WatchWidget.swift":{"size":1903,"mtime_ns":1766840449048679583,"word_count":162,"hash":"308b6972463c2dad9a52c83d2146c5ffcb80cbf99c21b013a9cd6f8b39ccdba0"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/WatchWidget/Widget/WatchWidgetBundle.swift":{"size":138,"mtime_ns":1766405170569793343,"word_count":17,"hash":"f78fe73137d343bcaa64c0ff8162b4a9a5a0fdefa91102a70450be06143f40cc"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/WatchWidget/Widget/WatchWidgetProvider.swift":{"size":1505,"mtime_ns":1766840449049227161,"word_count":147,"hash":"e8f0e521a29fc06685da93c7e39fe4b9b609643c4bded5dcb5909ba215686ce9"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Widget/Extensions/WidgetAccessibility+View.swift":{"size":1451,"mtime_ns":1778008694144631149,"word_count":100,"hash":"34ad0f26e5fa888f1651d2e38a63c8c6dc7594087310fceda2cb03ba0bce53ad"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Widget/MacMagazineWidget.swift":{"size":1841,"mtime_ns":1774467098036158305,"word_count":137,"hash":"73b6525ac7cd0f41dbce0fc0cb7bec7ae1261fb606d0696814a1ad7d1c6c0eb6"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Widget/MacMagazineWidgetBundle.swift":{"size":190,"mtime_ns":1765393002591727153,"word_count":18,"hash":"74a99d026119306693f5ddf426feadcb4c4a4393dc92da56ed71c82899b338ce"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Widget/MacMagazineWidgetLiveActivity.swift":{"size":2332,"mtime_ns":1765389010107379042,"word_count":175,"hash":"dd4babbd63d52e54390e83d67f20ed81d353ef5be01ed9e1bfb60a736b1e5e18"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Widget/Models/WidgetData.swift":{"size":741,"mtime_ns":1766185900754244158,"word_count":65,"hash":"e726b46467c0a0606df06bf055e7ea98a833302a10896f5d41714c43fc08d5e9"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Widget/Resources/Assets.xcassets/AccentColor.colorset/Contents.json":{"size":123,"mtime_ns":1766828949184685943,"word_count":21,"hash":"1d39b39a293d5a9af15af9f6c8fd14fa594544cf43f7b98e1e83c93b431ac312"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Widget/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json":{"size":706,"mtime_ns":1766828949184846525,"word_count":84,"hash":"11430704bd46f3db70e4a9f72a526937ca2027ba78b74031708c5db98ff9273c"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Widget/Resources/Assets.xcassets/Contents.json":{"size":63,"mtime_ns":1766828949184932524,"word_count":12,"hash":"b25b93e2d03293537b45cd50965420b1e66d81dd6d89ca18a6522fa9945a3b46"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Widget/Resources/Assets.xcassets/WidgetBackground.colorset/Contents.json":{"size":123,"mtime_ns":1766828949185081688,"word_count":21,"hash":"0ff3780b12663aed54136b241a6c236579020a7bd3473eb1c9d211c07551ee38"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Widget/Resources/Assets.xcassets/logo_color.imageset/Contents.json":{"size":370,"mtime_ns":1766828949185248270,"word_count":49,"hash":"6aa354f4221bd8676a0cc8b47fe7c8bbb046e5598d59f79fbca3c890be9f8573"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Widget/Resources/Assets.xcassets/logo_color.imageset/logo.png":{"size":58657,"mtime_ns":1766828949185442934,"word_count":2149},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Widget/Resources/Assets.xcassets/logo_color.imageset/logo@2x.png":{"size":200176,"mtime_ns":1766828949185824721,"word_count":7083},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Widget/Resources/Assets.xcassets/logo_color.imageset/logo@3x.png":{"size":431211,"mtime_ns":1766828949186498921,"word_count":15011},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Widget/Resources/Assets.xcassets/logo_white.imageset/Contents.json":{"size":370,"mtime_ns":1766828949186684794,"word_count":49,"hash":"cb8ef210a33de6f058d7780d29e45202c2410cbf4e48d45a7ccc943836f836db"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Widget/Resources/Assets.xcassets/logo_white.imageset/logo.png":{"size":2151,"mtime_ns":1766828949186775917,"word_count":83},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Widget/Resources/Assets.xcassets/logo_white.imageset/logo@2x.png":{"size":4228,"mtime_ns":1766828949186893041,"word_count":158},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Widget/Resources/Assets.xcassets/logo_white.imageset/logo@3x.png":{"size":6644,"mtime_ns":1766828949187020748,"word_count":294},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Widget/Resources/Assets.xcassets/macmagazine.imageset/Contents.json":{"size":1096,"mtime_ns":1766828949188403147,"word_count":118,"hash":"5514046814569824a8634e2d8ef29a842213e15c986d83cbb460f5550cabf0dd"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Widget/Resources/Assets.xcassets/macmagazine.imageset/logo-widget_dark@1x.png":{"size":16285,"mtime_ns":1766828949189843296,"word_count":576},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Widget/Resources/Assets.xcassets/macmagazine.imageset/logo-widget_dark@2x.png":{"size":39028,"mtime_ns":1766828949190022544,"word_count":1370},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Widget/Resources/Assets.xcassets/macmagazine.imageset/logo-widget_dark@3x.png":{"size":61890,"mtime_ns":1766828949190328957,"word_count":2190},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Widget/Resources/Assets.xcassets/macmagazine.imageset/logo-widget_light@1x.png":{"size":15331,"mtime_ns":1766828949190513163,"word_count":563},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Widget/Resources/Assets.xcassets/macmagazine.imageset/logo-widget_light@2x.png":{"size":38343,"mtime_ns":1766828949190749577,"word_count":1333},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Widget/Resources/Assets.xcassets/macmagazine.imageset/logo-widget_light@3x.png":{"size":60132,"mtime_ns":1766828949191032281,"word_count":2264},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Widget/Resources/Assets.xcassets/macmagazine_clear.imageset/Contents.json":{"size":412,"mtime_ns":1766828949191266612,"word_count":49,"hash":"730257fd08152a9425f2d9ee6903dde5c9dfdf30ae8c3a1cf73561397e09229e"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Widget/Resources/Assets.xcassets/macmagazine_clear.imageset/logo-widget_clear@1x.png":{"size":12844,"mtime_ns":1766828949191437526,"word_count":481},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Widget/Resources/Assets.xcassets/macmagazine_clear.imageset/logo-widget_clear@2x.png":{"size":31120,"mtime_ns":1766828949191594524,"word_count":1084},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Widget/Resources/Assets.xcassets/macmagazine_clear.imageset/logo-widget_clear@3x.png":{"size":46137,"mtime_ns":1766828949191936645,"word_count":1652},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Widget/Timeline/MacMagazineTimelineProvider.swift":{"size":1979,"mtime_ns":1766185900754485656,"word_count":175,"hash":"995861f60d90d3accc815315f5f707042d92964382852e6464cc7777e3c5bd3e"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Widget/Timeline/WidgetEntry.swift":{"size":140,"mtime_ns":1765544727498445005,"word_count":17,"hash":"0664e6e66a5f00e304c5201f2707a472145969579bac4a1bf7e8bb242af4f15f"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Widget/Views/Modifiers/HeaderWidgetModifier.swift":{"size":1848,"mtime_ns":1766834687825878075,"word_count":141,"hash":"bbc082d680d9dfa33063bf26aa25f1c890a36789b8749f318dfbc8d982fbfce6"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Widget/Views/Modifiers/SmallWidgetStyleModifier.swift":{"size":1201,"mtime_ns":1766351349586637913,"word_count":86,"hash":"4eef599f71580990694f18d9633e7fbd70de8239a48cb91a7e3baca7c464a6d6"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Widget/Views/WidgetElementView.swift":{"size":4497,"mtime_ns":1778008694145298642,"word_count":320,"hash":"8e93825cc12ba55bd5c1130a3f1158e7990d5e59a05a55d12913acf5a5cc5a4d"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Widget/Views/WidgetView.swift":{"size":1948,"mtime_ns":1778008694145571806,"word_count":139,"hash":"a1dbc308a717358d194617ea63c3175587f22932e045674c8050e73b59f302a9"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/ci_scripts/ci_post_clone.sh":{"size":486,"mtime_ns":1766864993033123973,"word_count":51,"hash":"00feb03396ddea328c5c5d87b48d449f2288a63de09f38a38ad6dad857090934"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/README.md":{"size":5505,"mtime_ns":1781684529403387519,"word_count":672,"hash":"b106487be73dc5a3a6e53e0399926b8652b45937167fe5840dd3ef74cdc816ac"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/Support/CONTRIBUTING.md":{"size":8197,"mtime_ns":1766864993034010425,"word_count":1166,"hash":"20ec1b4809659b810e9c64fd77c5642753307a5a60241975db912e365df94248"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/Support/FIREBASE.md":{"size":4014,"mtime_ns":1766864993034318965,"word_count":461,"hash":"324cfb0da0d8ed3ea848f24d8add0852dc9d4ea6b9151e800104dac88ba924ae"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/Support/Scripts/clean-build-folders.sh":{"size":1178,"mtime_ns":1766240075443418511,"word_count":179,"hash":"11a35a8e0d8be4584bc33b0d24ff30baa5096f5a7e41c31647ca4e325e73e83c"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/Support/Scripts/generate-firebase-config.sh":{"size":2476,"mtime_ns":1765836662834057528,"word_count":239,"hash":"e495ee725d25e87824b4dd84c83343ecbb8d7d8a389f3a3d7bfe5fbda3a9d6a6"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/Support/Scripts/setup-firebase.sh":{"size":1365,"mtime_ns":1765834184563774079,"word_count":179,"hash":"f33ad34bd850c759e9b8732b5b2756136765cb991ddbbed2fa239edef72b924c"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/Support/Scripts/updateBuildVersion.sh":{"size":2336,"mtime_ns":1719679834586351156,"word_count":258,"hash":"3129c733c32c76f2012c538e2414196e836930d06f9349c8bf70a89ad29c274a"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/Support/firebase_queries.txt":{"size":4798,"mtime_ns":1773255289622216086,"word_count":457},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/CardAccessibilityModifier.swift":{"size":2536,"mtime_ns":1784241482375446060,"word_count":227,"hash":"c32a80557719d0b4c1a84f01a5b5491e40b36c0fef0ae6d87f0bfc9d0bb42561"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Extensions/MinimumTouchTarget.swift":{"size":817,"mtime_ns":1784221233954711487,"word_count":91,"hash":"067d8ff0b8f12edda2817eedb3b601b87ec7f0335b627798b181bbea8dfd1667"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Cards/Views/Components/FavoriteAndShare/ReadButton.swift":{"size":857,"mtime_ns":1784241510842423419,"word_count":96,"hash":"61c046f4a1b8c006bd6526be8a255f291d5e2ce26e0beb74a9d76476525a95ba"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WalletPass/WalletPassService.swift":{"size":677,"mtime_ns":1784312408437723571,"word_count":92,"hash":"ee0f8be06d07673ceb10eb088087f332b950a1e8b71de59c13cbee117b81ea89"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WalletPass/WalletPassSheet.swift":{"size":2095,"mtime_ns":1784312408437941277,"word_count":209,"hash":"92eb2b3acdef7fe43ba047984d9339690dfa5e6fcbd8ec6cd2674ee8656045e6"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Sources/MacMagazineUILibrary/Webview/WebViewLoadPolicy.swift":{"size":1170,"mtime_ns":1784381036801646729,"word_count":160,"hash":"4ab7a8d21ced571faac705faffc8fc7873d1a3fc524a847badee89b2378ee2a5"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/WalletPassServiceTests.swift":{"size":1627,"mtime_ns":1784312408438233399,"word_count":185,"hash":"705b998f83f00e8e1216a55a742f5ba90bf2887d522735c26c0a420f6a414246"},"/Users/cassiorossi/Desktop/Apps/0. iOS_Apps/MacMagazine/MacMagazine/Features/MacMagazineUILibrary/Tests/MacMagazineUILibraryTests/WebViewLoadPolicyTests.swift":{"size":2033,"mtime_ns":1784381038668018893,"word_count":174,"hash":"01eb8390a1ce5b9e66f7ace5f561738c26daed44fabd3ef3d937e872a66f801e"}} \ No newline at end of file diff --git a/graphify-out/graph.html b/graphify-out/graph.html index cbbcd398..4ccab2bf 100644 --- a/graphify-out/graph.html +++ b/graphify-out/graph.html @@ -63,12 +63,12 @@

Communities

-
2457 nodes · 4835 edges · 160 communities
+
2808 nodes · 5245 edges · 192 communities