diff --git a/javascript/extractor/src/com/semmle/js/extractor/ExtractorConfig.java b/javascript/extractor/src/com/semmle/js/extractor/ExtractorConfig.java index b12b479720c..a6f5240fd79 100644 --- a/javascript/extractor/src/com/semmle/js/extractor/ExtractorConfig.java +++ b/javascript/extractor/src/com/semmle/js/extractor/ExtractorConfig.java @@ -52,25 +52,25 @@ public class ExtractorConfig { }; /** - * The type of a source file, which together with the {@link Platform} - * determines how the top-level scope of the file behaves, and whether ES2015 - * module syntax should be allowed. - *
- * Note that the names of these enum members are depended on by {@link Main}, - * {@link AutoBuild}, and {@link JcornWrapper}. - */ + * The type of a source file, which together with the {@link Platform} + * determines how the top-level scope of the file behaves, and whether ES2015 + * module syntax should be allowed. + *
+ * Note that the names of these enum members are depended on by {@link Main}, + * {@link AutoBuild}, and {@link JcornWrapper}. + */ public static enum SourceType { - /** A script executed in the global scope. */ - SCRIPT, + /** A script executed in the global scope. */ + SCRIPT, - /** An ES2015 module. */ - MODULE, + /** An ES2015 module. */ + MODULE, - /** A Closure-Library module, defined using `goog.module()`. */ - CLOSURE_MODULE, + /** A Closure-Library module, defined using `goog.module()`. */ + CLOSURE_MODULE, - /** Automatically determined source type. */ - AUTO; + /** Automatically determined source type. */ + AUTO; @Override public String toString() {