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
@@ -12,10 +12,10 @@ fn do_runtime(lock: &mut dyn Write) -> Result<()> {
let runtime = codegen_luau::RUNTIME;
let numeric = codegen_luau::NUMERIC;
writeln!(lock, "local rt = (function()")?;
writeln!(lock, "local I64 = (function()")?;
writeln!(lock, "local Integer = (function()")?;
writeln!(lock, "{numeric}")?;
writeln!(lock, "end)()")?;
writeln!(lock, "local rt = (function()")?;
writeln!(lock, "{runtime}")?;
writeln!(lock, "end)()")
}