Skip to content

Commit

Permalink
fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
OmarTawfik committed Dec 27, 2024
1 parent 834bba6 commit 1bef68e
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ pub enum BindingGraphInitializationError {
pub fn create_with_resolver(
version: Version,
resolver: Rc<dyn PathResolver<KindTypes>>,
) -> Result<BindingGraphBuilder, ParserInitializationError> {
) -> Result<BindingGraphBuilder, BindingGraphInitializationError> {
let mut binding_graph = BindingGraphBuilder::create(
version.clone(),
binding_rules::BINDING_RULES_SOURCE,
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ impl ParsedPart<'_> {

fn check_bindings_coverage<'a>(
part: &'a ParsedPart<'a>,
binding_graph: &'a BindingGraph,
binding_graph: &Rc<BindingGraph>,
) -> (Report<'a, ReportSpan<'a>>, bool) {
let mut all_identifiers_bound = true;
let mut builder: ReportBuilder<'_, ReportSpan<'_>> = Report::build(
Expand Down Expand Up @@ -219,7 +219,7 @@ fn build_report_for_part<'a>(

fn build_definiens_report<'a>(
part: &'a ParsedPart<'a>,
all_definitions: &'a [Definition<'a>],
all_definitions: &'a [Definition],
) -> Report<'a, ReportSpan<'a>> {
let mut builder: ReportBuilder<'_, ReportSpan<'_>> =
Report::build(ReportKind::Custom("Definiens", Color::Unset), part.path, 0)
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 1bef68e

Please sign in to comment.