Package | Description |
---|---|
org.openjdk.asmtools.jasm |
Modifier and Type | Method and Description |
---|---|
private java.util.HashSet<java.lang.String> |
Parser.scanList(Parser.Method scanMethod,
Parser.NameSupplier target,
java.lang.String err,
boolean onlyOneElement)
Scans the "to" or "with" part of ModuleStatement: exports PackageName [to ModuleName {, ModuleName}] ;,
opens packageName [to ModuleName {, ModuleName}] ;
provides TypeName with TypeName [,typeName] ;
uses TypeName;
: [ModuleName {, ModuleName}]; , [TypeName [,typeName]]; or TypeName;
|
private void |
Parser.scanStatement(java.util.function.BiConsumer<java.lang.String,java.util.Set<java.lang.String>> action,
Parser.NameSupplier source,
Parser.NameSupplier target,
JasmTokens.Token startList,
boolean emptyListAllowed,
java.lang.String err)
Scans Module Statement(s):
exports packageName [to ModuleName {, ModuleName}] ;
opens packageName [to ModuleName {, ModuleName}] ;
provides TypeName with TypeName [,typeName] ;
|