We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4edba9b commit 7851c5aCopy full SHA for 7851c5a
src/com/google/javascript/jscomp/serialization/TypedAstDeserializer.java
@@ -352,9 +352,8 @@ private static void addInputSourceMap(
352
String sourceMappingURL = deserializer.getSourceMappingURL();
353
354
if (sourceMappingURL != null && sourceMappingURL.length() > 0 && resolveSourceMapAnnotations) {
355
- boolean parseInline = parseInlineSourceMaps;
356
SourceFile sourceMapSourceFile =
357
- SourceMapResolver.extractSourceMap(sourceFile, sourceMappingURL, parseInline);
+ SourceMapResolver.extractSourceMap(sourceFile, sourceMappingURL, parseInlineSourceMaps);
358
if (sourceMapSourceFile != null) {
359
compiler.addInputSourceMap(sourceFile.getName(), new SourceMapInput(sourceMapSourceFile));
360
}
0 commit comments