Rename Numeric export to Integer

This commit is contained in:
Rerumu
2022-07-01 15:07:11 -04:00
parent 627927d366
commit bdb4420292
4 changed files with 30 additions and 39 deletions
+2 -2
View File
@@ -153,10 +153,10 @@ impl Target for Luau {
let runtime = codegen_luau::RUNTIME;
let numeric = codegen_luau::NUMERIC;
writeln!(w, "local rt = (function()")?;
writeln!(w, "local I64 = (function()")?;
writeln!(w, "local Integer = (function()")?;
writeln!(w, "{numeric}")?;
writeln!(w, "end)()")?;
writeln!(w, "local rt = (function()")?;
writeln!(w, "{runtime}")?;
writeln!(w, "end)()")?;