(ctx gen.IExprListContext)
| 844 | } |
| 845 | |
| 846 | func (p *parser) visitExprList(ctx gen.IExprListContext) []ast.Expr { |
| 847 | if ctx == nil { |
| 848 | return []ast.Expr{} |
| 849 | } |
| 850 | return p.visitSlice(ctx.GetE()) |
| 851 | } |
| 852 | |
| 853 | func (p *parser) visitListInit(ctx gen.IListInitContext) ([]ast.Expr, []int32) { |
| 854 | if ctx == nil { |
no test coverage detected