Use BindingId copies in lieu of &BindingId in semantic model methods (#4633)

This commit is contained in:
Charlie Marsh 2023-05-24 11:55:45 -04:00 committed by GitHub
parent f4f1b1d0ee
commit f0e173d9fd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
11 changed files with 45 additions and 51 deletions

View file

@ -24,8 +24,8 @@ impl Reference {
self.range
}
pub const fn context(&self) -> &ExecutionContext {
&self.context
pub const fn context(&self) -> ExecutionContext {
self.context
}
}