(ctx gen.IExprListContext)
| 836 | } |
| 837 | |
| 838 | func (p *parser) visitExprList(ctx gen.IExprListContext) []ast.Expr { |
| 839 | if ctx == nil { |
| 840 | return []ast.Expr{} |
| 841 | } |
| 842 | return p.visitSlice(ctx.GetE()) |
| 843 | } |
| 844 | |
| 845 | func (p *parser) visitListInit(ctx gen.IListInitContext) ([]ast.Expr, []int32) { |
| 846 | if ctx == nil { |
no test coverage detected