forked from libre-chip/fayalite
add derive(Debug) to all types that are interned
This commit is contained in:
parent
9a1b047d2f
commit
36f1b9bbb6
3 changed files with 3 additions and 3 deletions
|
@ -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>,
|
||||||
|
|
|
@ -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,
|
||||||
|
|
|
@ -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,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue