Merge branch 'main' into clippy

This commit is contained in:
Shunsuke Shibayama 2022-08-17 01:26:00 +09:00 committed by GitHub
commit 4e91cb81cb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
57 changed files with 1541 additions and 715 deletions

View file

@ -126,9 +126,15 @@ impl HasType for CodeObj {
fn ref_t(&self) -> &Type {
&Type::Code
}
fn ref_mut_t(&mut self) -> &mut Type {
todo!()
}
fn signature_t(&self) -> Option<&Type> {
None
}
fn signature_mut_t(&mut self) -> Option<&mut Type> {
None
}
}
impl fmt::Debug for CodeObj {