Class CodingConventions

java.lang.Object
com.google.javascript.jscomp.CodingConventions

public final class CodingConventions extends Object
Helper classes for dealing with coding conventions.
  • Method Details

    • getDefault

      public static CodingConvention getDefault()
      Gets the default coding convention.
    • defaultIsFunctionCallThatAlwaysThrows

      public static boolean defaultIsFunctionCallThatAlwaysThrows(Node n, String alwaysThrowsFunctionName)
      Parameters:
      n - The last statement of a block to check for an always throws function call. Used by CheckMissingReturn.
      alwaysThrowsFunctionName - The name of a function that always throws.
      Returns:
      true if n is call to alwaysThrowsFunctionName, otherwise false.