Skip to content

Commit 6a4b3a1

Browse files
committed
JS: Bump extractor version
1 parent ed4c39b commit 6a4b3a1

File tree

1 file changed

+3
-3
lines changed
  • javascript/extractor/src/com/semmle/js/extractor

1 file changed

+3
-3
lines changed

javascript/extractor/src/com/semmle/js/extractor/Main.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ public class Main {
4343
* A version identifier that should be updated every time the extractor changes in such a way that
4444
* it may produce different tuples for the same file under the same {@link ExtractorConfig}.
4545
*/
46-
public static final String EXTRACTOR_VERSION = "2022-05-24";
46+
public static final String EXTRACTOR_VERSION = "2022-06-08";
4747

4848
public static final Pattern NEWLINE = Pattern.compile("\n");
4949

@@ -153,7 +153,7 @@ public void run(String[] args) {
153153
ensureFileIsExtracted(file, ap);
154154
}
155155
}
156-
156+
157157
TypeScriptParser tsParser = extractorState.getTypeScriptParser();
158158
tsParser.setTypescriptRam(extractorConfig.getTypeScriptRam());
159159
if (containsTypeScriptFiles()) {
@@ -460,7 +460,7 @@ private static TypeScriptMode getTypeScriptMode(ArgsParser ap) {
460460
if (ap.has(P_TYPESCRIPT)) return TypeScriptMode.BASIC;
461461
return TypeScriptMode.NONE;
462462
}
463-
463+
464464
private Path inferSourceRoot(ArgsParser ap) {
465465
List<File> files = getFilesArg(ap);
466466
Path sourceRoot = files.iterator().next().toPath().toAbsolutePath().getParent();

0 commit comments

Comments
 (0)