Remove unused variables in REPL

This commit is contained in:
Saúl Ibarra Corretgé 2024-03-19 12:02:12 +01:00
parent dd2427785f
commit 72cebeaf2a
2 changed files with 8390 additions and 8432 deletions

16816
gen/repl.c

File diff suppressed because it is too large Load diff

View file

@ -39,7 +39,6 @@ import * as os from "os";
var Math = g.Math; var Math = g.Math;
var JSON = g.JSON; var JSON = g.JSON;
var isFinite = g.isFinite; var isFinite = g.isFinite;
var parseFloat = g.parseFloat;
var colors = { var colors = {
none: "\x1b[0m", none: "\x1b[0m",
@ -79,9 +78,6 @@ import * as os from "os";
var history = []; var history = [];
var clip_board = ""; var clip_board = "";
var prec;
var expBits;
var log2_10;
var pstate = ""; var pstate = "";
var prompt = ""; var prompt = "";
@ -1011,8 +1007,6 @@ import * as os from "os";
/* return true if the string after cmd can be evaluted as JS */ /* return true if the string after cmd can be evaluted as JS */
function handle_directive(cmd, expr) { function handle_directive(cmd, expr) {
var param, prec1, expBits1;
if (cmd === "h" || cmd === "?" || cmd == "help") { if (cmd === "h" || cmd === "?" || cmd == "help") {
help(); help();
} else if (cmd === "load") { } else if (cmd === "load") {