Uses of Class
org.openjdk.asmtools.jasm.JasmTokens.Token
-
Packages that use JasmTokens.Token Package Description org.openjdk.asmtools.jasm -
-
Uses of JasmTokens.Token in org.openjdk.asmtools.jasm
Fields in org.openjdk.asmtools.jasm declared as JasmTokens.Token Modifier and Type Field Description protected JasmTokens.Token
Scanner. token
Current tokenFields in org.openjdk.asmtools.jasm with type parameters of type JasmTokens.Token Modifier and Type Field Description (package private) static java.util.EnumSet<JasmTokens.Token>
JasmTokens.Token. ALL_TOKENS
Methods in org.openjdk.asmtools.jasm that return JasmTokens.Token Modifier and Type Method Description static JasmTokens.Token
JasmTokens. keyword_token_ident(java.lang.String idValue)
static JasmTokens.Token
JasmTokens.Token. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static JasmTokens.Token[]
JasmTokens.Token. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.openjdk.asmtools.jasm that return types with arguments of type JasmTokens.Token Modifier and Type Method Description static java.util.Optional<JasmTokens.Token>
JasmTokens.Token. get(java.lang.String parsekey, JasmTokens.KeywordType ktype)
Methods in org.openjdk.asmtools.jasm with parameters of type JasmTokens.Token Modifier and Type Method Description protected void
Scanner. check(JasmTokens.Token t)
Checks a token, throws an exception if not the sameprotected void
Scanner. expect(JasmTokens.Token t)
Expects a token, scans the next token or throws an exception.private void
Parser. match(JasmTokens.Token open, JasmTokens.Token close)
The match() method is used to quickly match opening brackets (ie: '(', '{', or '[') with their closing counter part.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] ;
-