Compare commits

..

1 commit

Author SHA1 Message Date
Jacob Lifshay 43c29bf221
add support for #[hdl(sim)] enum_ty.Variant(value) and #[hdl(sim)] EnumTy::Variant(value) and non-sim variants too
Some checks failed
/ deps (pull_request) Successful in 17s
/ test (pull_request) Failing after 13s
2025-04-01 22:05:42 -07:00

View file

@ -1,6 +1,7 @@
use std::mem;
// SPDX-License-Identifier: LGPL-3.0-or-later
// See Notices.txt for copyright information
use crate::{
kw,
module::transform_body::{
@ -10,7 +11,6 @@ use crate::{
HdlAttr,
};
use quote::{format_ident, quote_spanned};
use std::mem;
use syn::{
parse_quote_spanned, punctuated::Punctuated, spanned::Spanned, token::Paren, Expr, ExprArray,
ExprCall, ExprGroup, ExprMethodCall, ExprParen, ExprPath, ExprRepeat, ExprStruct, ExprTuple,