From 097a7874d3fc249d73249aa5c1413d978b727b7f Mon Sep 17 00:00:00 2001
From: Rich Trott <rtrott@gmail.com>
Date: Sat, 19 Jun 2021 09:25:40 -0700
Subject: [PATCH] lib: remove semicolon in preparation for babel/eslint-parser
 update
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

eslint-babel-plugin will complain about this semicolon when we update
to 7.14.15.

PR-URL: https://github.com/nodejs/node/pull/39094
Reviewed-By: Michaƫl Zasso <targos@protonmail.com>
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
---
 lib/internal/source_map/source_map.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/internal/source_map/source_map.js b/lib/internal/source_map/source_map.js
index f49de5d8c4deda..99091a48465d50 100644
--- a/lib/internal/source_map/source_map.js
+++ b/lib/internal/source_map/source_map.js
@@ -275,7 +275,7 @@ class SourceMap {
          sourceColumnNumber, name]
       );
     }
-  };
+  }
 }
 
 /**