Class MethodSignatureGrammar
- java.lang.Object
-
- proguard.classfile.attribute.signature.MethodSignatureGrammar
-
public final class MethodSignatureGrammar extends java.lang.Object
Parser for method signature grammar, defined to be closely matching the grammar definition for ease of maintenance.- See Also:
- signature grammar
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static @Nullable MethodSignatureNode
parse(@NotNull java.lang.String input)
Parse the given method signature and return its parse tree.
-
-
-
Method Detail
-
parse
@Nullable public static @Nullable MethodSignatureNode parse(@NotNull @NotNull java.lang.String input)
Parse the given method signature and return its parse tree.- Parameters:
input
- The string to parse.- Returns:
- A parsed out result, or null if not valid method signature.
-
-