func checkRefs()

in Sources/SwiftCodeSanKit/FileParsers/DeclParser.swift [112:119]


    func checkRefs(fileToModuleMap: [String: String],
                   declMap: DeclMap,
                   completion: @escaping (String, Set<String>, [String]) -> ()) {

        scan(fileToModuleMap) { (path: String, module: String, lock: NSLock?) in
            self.referenceSrc(path: path, module: module, declMap: declMap, lock: lock, completion: completion)
        }
    }