Export runtime for luau. (#33)

This commit is contained in:
Rob Blanckaert
2024-01-09 20:10:18 -05:00
committed by GitHub
parent 0af8f0ba27
commit d6b7a232ac
+1
View File
@@ -97,6 +97,7 @@ fn write_import_list(list: &[Import], w: &mut dyn Write) -> Result<()> {
}
fn write_export_list(list: &[Export], w: &mut dyn Write) -> Result<()> {
writeln!(w, "\t\trt = rt,")?;
write_export_of(list, External::Func, w)?;
write_export_of(list, External::Table, w)?;
write_export_of(list, External::Memory, w)?;