You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
E.g. using #[wasm_bindgen] #[dtypei_attr] results in the dtypei macro being called two times for the same function. First time with the actual function code, the second time with the post-wasm_bindgen processing.
If order is reversed, then the dtypei macro is called with the processed code, once. We do not want this.
Further digging into the problem is needed & testing with multiple macros & various ordering.
The text was updated successfully, but these errors were encountered:
E.g. using
#[wasm_bindgen] #[dtypei_attr]
results in thedtypei
macro being called two times for the same function. First time with the actual function code, the second time with the post-wasm_bindgen processing.If order is reversed, then the
dtypei
macro is called with the processed code, once. We do not want this.Further digging into the problem is needed & testing with multiple macros & various ordering.
The text was updated successfully, but these errors were encountered: