Class ModuleMapCreator
- java.lang.Object
-
- com.google.javascript.jscomp.modules.ModuleMapCreator
-
- All Implemented Interfaces:
CompilerPass
public class ModuleMapCreator extends java.lang.Object implements CompilerPass
Creates aModuleMap.
-
-
Field Summary
Fields Modifier and Type Field Description static DiagnosticTypeDOES_NOT_HAVE_EXPORTstatic DiagnosticTypeDOES_NOT_HAVE_EXPORT_WITH_DETAILSstatic DiagnosticTypeMISSING_NAMESPACE_IMPORT
-
Constructor Summary
Constructors Constructor Description ModuleMapCreator(AbstractCompiler compiler, ModuleMetadataMap moduleMetadataMap)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidprocess(Node externs, Node root)Process the JS with root node root.
-
-
-
Field Detail
-
MISSING_NAMESPACE_IMPORT
public static final DiagnosticType MISSING_NAMESPACE_IMPORT
-
DOES_NOT_HAVE_EXPORT
public static final DiagnosticType DOES_NOT_HAVE_EXPORT
-
DOES_NOT_HAVE_EXPORT_WITH_DETAILS
public static final DiagnosticType DOES_NOT_HAVE_EXPORT_WITH_DETAILS
-
-
Constructor Detail
-
ModuleMapCreator
public ModuleMapCreator(AbstractCompiler compiler, ModuleMetadataMap moduleMetadataMap)
-
-
Method Detail
-
process
public void process(Node externs, Node root)
Description copied from interface:CompilerPassProcess the JS with root node root. Can modify the contents of each Node tree- Specified by:
processin interfaceCompilerPass- Parameters:
externs- Top of external JS treeroot- Top of JS tree
-
-