Parser represents an object that can be used for parsing.
| 57 | |
| 58 | // Parser represents an object that can be used for parsing. |
| 59 | type Parser struct { |
| 60 | gen.BaseMangleVisitor |
| 61 | input string |
| 62 | lexer *gen.MangleLexer |
| 63 | parser *gen.MangleParser |
| 64 | errors *errorsList |
| 65 | } |
| 66 | |
| 67 | // Holds errors. |
| 68 | type errorsList struct { |
nothing calls this directly
no outgoing calls
no test coverage detected