summaryrefslogtreecommitdiff
path: root/src/dump_as_rust.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/dump_as_rust.cpp')
-rw-r--r--src/dump_as_rust.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/dump_as_rust.cpp b/src/dump_as_rust.cpp
index db44ccbc..b8443845 100644
--- a/src/dump_as_rust.cpp
+++ b/src/dump_as_rust.cpp
@@ -712,6 +712,9 @@ void RustPrinter::handle_module(const AST::Module& mod)
(None,
// Ignore, it's been deleted by #[cfg]
),
+ (MacroInv,
+ // TODO: Dump macro invocations
+ ),
(Type,
m_os << indent() << "type " << it.name << " = " << e.type() << ";\n";
),