VisitStart visits a parse tree produced by MangleParser#start.
(ctx *gen.StartContext)
| 221 | |
| 222 | // VisitStart visits a parse tree produced by MangleParser#start. |
| 223 | func (p Parser) VisitStart(ctx *gen.StartContext) any { |
| 224 | return p.Visit(ctx.Program()) |
| 225 | } |
| 226 | |
| 227 | // VisitProgram visits a parse tree produced by MangleParser#program. |
| 228 | func (p Parser) VisitProgram(ctx *gen.ProgramContext) any { |