Skip to content

Commit

Permalink
Merge pull request #61 from metaborg/dwf-output-wrapper/associated-type
Browse files Browse the repository at this point in the history
Binding
  • Loading branch information
AZWN authored Oct 23, 2024
2 parents f62226c + 658736a commit 6790225
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions scopegraphs/src/resolve/lookup.rs
Original file line number Diff line number Diff line change
Expand Up @@ -473,13 +473,12 @@ mod tests {
let_lex.close();
let_def.close();

let env = scope_graph
let query = scope_graph
.query()
.with_path_wellformedness(query_regex!(Lbl: Lex* Imp? Def))
.with_data_wellformedness(TData::matcher_fut("x"))
.with_label_order(label_order!(Lbl: Def < Imp < Lex))
.resolve(s_let)
.await;
.with_label_order(label_order!(Lbl: Def < Imp < Lex));
let env = query.resolve(s_let).await;

let env_vec = env.into_iter().collect::<Vec<_>>();
assert_eq!(1, env_vec.len());
Expand Down

0 comments on commit 6790225

Please sign in to comment.