// SPDX-License-Identifier: Apache-2.0
//! The [`Resolver`] trait — the tier seam every resolver implements.
usecrate::graph::{CodeGraph, FileFacts};/// Links references to definitions. Pure: no I/O, deterministic.
pubtraitResolver{/// Resolve `files` into a graph of symbols and confidence-tagged edges.
fnresolve(&self, files:&[FileFacts])-> CodeGraph;}