Package com.google.javascript.jscomp
Class Es6RelativizeImportPaths
- java.lang.Object
-
- com.google.javascript.jscomp.Es6RelativizeImportPaths
-
- All Implemented Interfaces:
CompilerPass
@GwtIncompatible("java.net.URI") public class Es6RelativizeImportPaths extends java.lang.Object implements CompilerPassRewrites ES6 import paths to be relative after resolving according to the compiler's module resolver.Useful for servers that wish to preserve ES6 modules, meaning their paths need to be valid in the browser.
-
-
Constructor Summary
Constructors Constructor Description Es6RelativizeImportPaths(AbstractCompiler compiler)
-
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.
-
-
-
Constructor Detail
-
Es6RelativizeImportPaths
public Es6RelativizeImportPaths(AbstractCompiler compiler)
-
-
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
-
-