Skip to content

Commit

Permalink
remove lifetimes from json trace
Browse files Browse the repository at this point in the history
  • Loading branch information
ranjitjhala committed Dec 6, 2024
1 parent c908b24 commit 52aba72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/flux-refineck/src/type_env.rs
Original file line number Diff line number Diff line change
Expand Up @@ -899,7 +899,7 @@ fn loc_string(local_names: &UnordMap<Local, Symbol>, loc: &Loc) -> Option<String
impl TypeEnvTrace {
pub fn new(genv: GlobalEnv, local_names: &UnordMap<Local, Symbol>, env: &TypeEnv) -> Self {
let mut bindings = vec![];
let cx = PrettyCx::default_with_genv(genv);
let cx = PrettyCx::default_with_genv(genv).hide_regions(true);
env.bindings
.iter()
.filter(|(_, binding)| !binding.ty.is_uninit())
Expand Down

0 comments on commit 52aba72

Please sign in to comment.