We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a4788fd commit df99e06Copy full SHA for df99e06
rust/extractor/src/translate/base.rs
@@ -709,6 +709,10 @@ impl<'a> Translator<'a> {
709
}
710
711
pub(crate) fn emit_item_expansion(&mut self, node: &ast::Item, label: Label<generated::Item>) {
712
+ // TODO: remove this after fixing exponential expansion on libraries like funty-2.0.0
713
+ if self.source_kind == SourceKind::Library {
714
+ return;
715
+ }
716
(|| {
717
let semantics = self.semantics?;
718
let ExpandResult {
0 commit comments