Enum Class CompilerOptions.LanguageMode

java.lang.Object
java.lang.Enum<CompilerOptions.LanguageMode>
com.google.javascript.jscomp.CompilerOptions.LanguageMode
All Implemented Interfaces:
Serializable, Comparable<CompilerOptions.LanguageMode>, Constable
Enclosing class:
CompilerOptions

public static enum CompilerOptions.LanguageMode extends Enum<CompilerOptions.LanguageMode>
A language mode applies to the whole compilation job. As a result, the compiler does not support mixed strict and non-strict in the same compilation job. Therefore, the 'use strict' directive is ignored when the language mode is not strict.
  • Enum Constant Details

  • Field Details

  • Method Details

    • values

      public static CompilerOptions.LanguageMode[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static CompilerOptions.LanguageMode valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null
    • validCommandLineNames

      public static List<String> validCommandLineNames()
      Returns a list of valid names used to select a `LanguageMode` on the command line.
    • fromString

      public static @Nullable CompilerOptions.LanguageMode fromString(String value)
    • toFeatureSet

      public FeatureSet toFeatureSet()