Uses of Interface
org.openjdk.nashorn.api.tree.ExportEntryTree
-
Packages that use ExportEntryTree Package Description org.openjdk.nashorn.api.tree Nashorn parser API provides interfaces to represent ECMAScript source code as abstract syntax trees (AST) and Parser to parse ECMAScript source scripts. -
-
Uses of ExportEntryTree in org.openjdk.nashorn.api.tree
Methods in org.openjdk.nashorn.api.tree that return types with arguments of type ExportEntryTree Modifier and Type Method Description java.util.List<? extends ExportEntryTree>
ModuleTree. getIndirectExportEntries()
Returns the list of indirect export entries.java.util.List<? extends ExportEntryTree>
ModuleTree. getLocalExportEntries()
Returns the list of local export entries.java.util.List<? extends ExportEntryTree>
ModuleTree. getStarExportEntries()
Returns the list of star export entries.Methods in org.openjdk.nashorn.api.tree with parameters of type ExportEntryTree Modifier and Type Method Description R
SimpleTreeVisitorES5_1. visitExportEntry(ExportEntryTree node, P p)
Visits anExportEntryTree
tree by callingvisitUnknown
.R
SimpleTreeVisitorES6. visitExportEntry(ExportEntryTree node, P p)
Visit Module ExportEntry tree.R
TreeVisitor. visitExportEntry(ExportEntryTree node, P p)
Visit Module ExportEntry tree.
-