From b512040335ca918e27d611092a79dfaab428fc07 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nacho=20Codo=C3=B1er?= Date: Tue, 1 Apr 2025 19:52:35 +0200 Subject: [PATCH] remove unrequired self --- packages/babel-compiler/babel-compiler.js | 1 - 1 file changed, 1 deletion(-) diff --git a/packages/babel-compiler/babel-compiler.js b/packages/babel-compiler/babel-compiler.js index 54727ee938..35e3588df7 100644 --- a/packages/babel-compiler/babel-compiler.js +++ b/packages/babel-compiler/babel-compiler.js @@ -115,7 +115,6 @@ BCp.processFilesForTarget = function (inputFiles) { // Returns an object suitable for passing to inputFile.addJavaScript, or // null to indicate there was an error, and nothing should be added. BCp.processOneFileForTarget = function (inputFile, source) { - var self = this; // capture context this._babelrcCache = this._babelrcCache || Object.create(null); this._swcCache = this._swcCache || Object.create(null); this._swcIncompatible = this._swcIncompatible || Object.create(null);