Uses of Interface
org.openjdk.asmtools.jasm.Parser.NameSupplier
Packages that use Parser.NameSupplier
-
Uses of Parser.NameSupplier in org.openjdk.asmtools.jasm
Methods in org.openjdk.asmtools.jasm with parameters of type Parser.NameSupplierModifier and TypeMethodDescriptionParser.scanList
(Parser.Method scanMethod, Parser.NameSupplier target, String err, boolean onlyOneElement) Scans the "to" or "with" part of the following ModuleStatement: exports PackageName [to ModuleName {, ModuleName}] ;, opens PackageName [to ModuleName {, ModuleName}] ; provides TypeName with TypeName [,typeName] ; uses TypeName;private <T extends ModuleContent.TargetType>
voidParser.scanStatement
(BiConsumer<T, Set<ModuleContent.TargetType>> action, Parser.NameSupplier source, Parser.NameSupplier target, JasmTokens.Token startList, boolean emptyListAllowed, String err) Scans Module Statement(s): exports [mandated|synthetic] packageName [to ModuleName {, ModuleName}*] ; opens [mandated|synthetic] packageName [to ModuleName {, ModuleName}*] ; provides TypeName with TypeName {,typeName} ;