usestd::collections::HashSet;usegenotype_parser::*;/// Definition resolve data in the context of the current module. It contains lists all the module
/// definition references and the definition dependencies.
#[derive(Default, Debug, PartialEq, Clone)]pubstructGtProjectModuleDefinitionResolve{/// All definition references in the module.
pubreferences:HashSet<GTReferenceId>,
/// Identfiers the definition depends on.
pubdeps:HashSet<GTIdentifier>,
}