Class ExportDeclarationTree

java.lang.Object
com.google.javascript.jscomp.parsing.parser.trees.ParseTree
com.google.javascript.jscomp.parsing.parser.trees.ExportDeclarationTree

public class ExportDeclarationTree extends ParseTree
  • Field Details

    • isDefault

      public final boolean isDefault
    • isExportAll

      public final boolean isExportAll
    • declaration

      public final ParseTree declaration
    • exportSpecifierList

      public final com.google.common.collect.ImmutableList<ParseTree> exportSpecifierList
    • from

      public final LiteralToken from
  • Constructor Details

    • ExportDeclarationTree

      public ExportDeclarationTree(SourceRange location, boolean isDefault, boolean isExportAll, ParseTree declaration, com.google.common.collect.ImmutableList<ParseTree> exportSpecifierList, LiteralToken from)