Class Parsers
java.lang.Object
proguard.classfile.attribute.signature.parsing.Parsers
Utility class for common helpful parsers.
-
Method Summary
-
Method Details
-
fixedString
Construct a parser which looks for a fixed string in the input.- Parameters:
terminal- The string to look for.- Returns:
- A parser which returns the string that it matched.
-
fixedChar
Construct a parser which looks for a fixed char in the input.- Parameters:
terminal- The char to look for.- Returns:
- A parser which returns the char that it matched.
-