From 21b3c890a1dab21156f358bf388a2f9f507d1711 Mon Sep 17 00:00:00 2001 From: Jacob Kristhammar Date: Tue, 9 Sep 2014 13:02:50 +0200 Subject: [PATCH] Use uglify source map token names if missing --- lib/sourcemap.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/sourcemap.js b/lib/sourcemap.js index 663ef12e..948e3b39 100644 --- a/lib/sourcemap.js +++ b/lib/sourcemap.js @@ -70,7 +70,7 @@ function SourceMap(options) { source = info.source; orig_line = info.line; orig_col = info.column; - name = info.name; + name = info.name || name; } generator.addMapping({ generated : { line: gen_line + options.dest_line_diff, column: gen_col }, -- 2.34.1