Nicolò Ribaudo 2691868904 Remove unused variables with the Babel plugin
- functions were already removed
- variables can be removed when their initializer does not have side effects
- classes can be removed when they have no static blocks

Fixes #21337
2026-05-26 16:35:57 +02:00

19 lines
293 B
JavaScript

var a = true;
var b = false;
var c = '1';
var d = false;
var e = true;
var f = '0';
var g = '1';
var h = '0';
var i = true;
var j = false;
var k = false;
var l = true;
var m = false;
var n = false;
var o = true;
var p = null;
var q = 1;
use(a, b, c, d, e, f, g, h, i, j, k, l, m, n, o, p, q);