Update LSP

This commit is contained in:
Ayaz Hafiz 2022-11-20 10:55:16 -06:00
parent 0db1cd9c28
commit b706a57e16
No known key found for this signature in database
GPG key ID: 0E2A37416A25EF58
6 changed files with 23 additions and 5 deletions

View file

@ -56,6 +56,10 @@ impl TypeError {
TypeError::IngestedFileUnsupportedType(..) => Fatal,
}
}
pub fn region(&self) -> Option<Region> {
Some(Region::zero())
}
}
#[derive(PartialEq, Eq, Debug, Clone)]