add derive(Debug) to all types that are interned

This commit is contained in:
Jacob Lifshay 2025-04-09 19:19:25 -07:00
parent 9a1b047d2f
commit 36f1b9bbb6
Signed by: programmerjake
SSH key fingerprint: SHA256:HnFTLGpSm4Q4Fj502oCFisjZSoakwEuTsJJMSke63RQ
3 changed files with 3 additions and 3 deletions

View file

@ -12,7 +12,7 @@ use std::{
ops::Deref, ops::Deref,
}; };
#[derive(Clone)] #[derive(Clone, Debug)]
struct CustomFirrtlAnnotationFieldsImpl { struct CustomFirrtlAnnotationFieldsImpl {
value: serde_json::Map<String, serde_json::Value>, value: serde_json::Map<String, serde_json::Value>,
serialized: Interned<str>, serialized: Interned<str>,

View file

@ -470,7 +470,7 @@ pub enum ReadUnderWrite {
Undefined, Undefined,
} }
#[derive(Copy, Clone, PartialEq, Eq, Hash)] #[derive(Copy, Clone, PartialEq, Eq, Hash, Debug)]
struct MemImpl<Element: Type, Len: Size, P> { struct MemImpl<Element: Type, Len: Size, P> {
scoped_name: ScopedNameId, scoped_name: ScopedNameId,
source_location: SourceLocation, source_location: SourceLocation,

View file

@ -5783,7 +5783,7 @@ where
} }
} }
#[derive(Clone, PartialEq, Eq, Hash)] #[derive(Clone, PartialEq, Eq, Hash, Debug)]
struct SimTrace<K, S> { struct SimTrace<K, S> {
kind: K, kind: K,
state: S, state: S,