mirror of
https://github.com/github/codeql.git
synced 2026-02-23 18:33:42 +01:00
JS: convert tabs to spaces
This commit is contained in:
@@ -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.
|
||||
* <p>
|
||||
* 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.
|
||||
* <p>
|
||||
* 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() {
|
||||
|
||||
Reference in New Issue
Block a user