mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-27 05:49:08 +00:00
Rename env to scope
This commit is contained in:
parent
683b586f60
commit
d1dad56331
4 changed files with 72 additions and 65 deletions
|
@ -5154,7 +5154,7 @@ fn run_solve_solve(
|
|||
// Expose anything that is explicitly exposed by the header, or is a specialization of an
|
||||
// ability.
|
||||
let exposed_vars_by_symbol: Vec<_> = solve_output
|
||||
.env
|
||||
.scope
|
||||
.vars_by_symbol()
|
||||
.filter(|(k, _)| {
|
||||
exposed_symbols.contains(k)
|
||||
|
@ -5168,7 +5168,7 @@ fn run_solve_solve(
|
|||
|
||||
let roc_solve::module::SolveOutput {
|
||||
subs,
|
||||
env: _,
|
||||
scope: _,
|
||||
errors,
|
||||
resolved_abilities_store,
|
||||
} = solve_output;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue