diff options
| author | Lukas Wirth <lukastw97@gmail.com> | 2023-12-14 10:24:41 +0100 |
|---|---|---|
| committer | Lukas Wirth <lukastw97@gmail.com> | 2023-12-14 10:24:41 +0100 |
| commit | 070cd4e8b0c22444aea71f9a8b6fe7ae9847ebeb (patch) | |
| tree | b47ce6b1688e2bc2691bd313d11977ae602821bd | |
| parent | 7cc6b0f2e98ee5045e9ecc6c7cb9c2183fbc9b50 (diff) | |
| download | rust-070cd4e8b0c22444aea71f9a8b6fe7ae9847ebeb.tar.gz rust-070cd4e8b0c22444aea71f9a8b6fe7ae9847ebeb.zip | |
minor: Add messages to some asserts for better debugging
| -rw-r--r-- | crates/base-db/src/span.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crates/base-db/src/span.rs b/crates/base-db/src/span.rs index 3464f4cb6d1..6f027ce9394 100644 --- a/crates/base-db/src/span.rs +++ b/crates/base-db/src/span.rs @@ -151,7 +151,7 @@ impl fmt::Debug for HirFileIdRepr { impl From<FileId> for HirFileId { fn from(id: FileId) -> Self { - assert!(id.index() < Self::MAX_FILE_ID); + assert!(id.index() < Self::MAX_FILE_ID, "FileId index {} is too large", id.index()); HirFileId(id.index()) } } @@ -159,7 +159,7 @@ impl From<FileId> for HirFileId { impl From<MacroFileId> for HirFileId { fn from(MacroFileId { macro_call_id: MacroCallId(id) }: MacroFileId) -> Self { let id = id.as_u32(); - assert!(id < Self::MAX_FILE_ID); + assert!(id < Self::MAX_FILE_ID, "MacroCallId index {} is too large", id); HirFileId(id | Self::MACRO_FILE_TAG_MASK) } } |
