From d8c553f51fb007af8bfa246dccfe76031a0eb481 Mon Sep 17 00:00:00 2001 From: Milan Hauth Date: Mon, 30 Nov 2020 20:32:41 +0100 Subject: [PATCH] fix: snake case fns --- src/compiler/preprocess/index.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/compiler/preprocess/index.ts b/src/compiler/preprocess/index.ts index ed2066c141..39ba353e94 100644 --- a/src/compiler/preprocess/index.ts +++ b/src/compiler/preprocess/index.ts @@ -92,7 +92,7 @@ async function replace_async( * we cannot use source-map.d.ts types, cos we access hidden properties */ function decoded_sourcemap_from_generator(generator: any) { - function areEqualMappings(a, b) { + function are_equal_mappings(a, b) { return ( // sorted by selectivity a.generatedColumn == b.generatedColumn && @@ -103,7 +103,7 @@ function decoded_sourcemap_from_generator(generator: any) { a.source == b.source ); } - function convertMappings() { + function convert_mappings() { // use global variable: generator let previousGeneratedLine = 1; const result = [[]]; @@ -130,7 +130,7 @@ function decoded_sourcemap_from_generator(generator: any) { } resultLine = result[mapping.generatedLine - 1]; // line is one-based } else if (i > 0) { - if (areEqualMappings(mapping, mappings[i - 1])) { + if (are_equal_mappings(mapping, mappings[i - 1])) { continue; } } @@ -154,7 +154,7 @@ function decoded_sourcemap_from_generator(generator: any) { version: generator._version, sources: generator._sources.toArray(), names: generator._names.toArray(), - mappings: convertMappings() + mappings: convert_mappings() }; if (generator._file != null) { (map as any).file = generator._file;