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.
--input_delimiter
1 parent 72cf1e2 commit f2110cdCopy full SHA for f2110cd
src/com/google/javascript/jscomp/Compiler.java
@@ -116,7 +116,6 @@
116
import java.util.function.Supplier;
117
import java.util.logging.Level;
118
import java.util.logging.Logger;
119
-import java.util.regex.Matcher;
120
import java.util.stream.Collectors;
121
import java.util.stream.Stream;
122
import org.jspecify.nullness.Nullable;
@@ -2452,7 +2451,7 @@ public void toSource(
2452
2451
2453
delimiter =
2454
delimiter
2455
- .replace("%name%", Matcher.quoteReplacement(inputName))
+ .replace("%name%", inputName)
2456
.replace("%num%", String.valueOf(inputSeqNum))
2457
.replace("%n%", "\n");
2458
0 commit comments