(ctx any)
| 142 | } |
| 143 | |
| 144 | func (p *parserHelper) newID(ctx any) int64 { |
| 145 | if id, isID := ctx.(int64); isID { |
| 146 | return id |
| 147 | } |
| 148 | return p.id(ctx) |
| 149 | } |
| 150 | |
| 151 | func (p *parserHelper) newExpr(ctx any) ast.Expr { |
| 152 | return p.exprFactory.NewUnspecifiedExpr(p.newID(ctx)) |
no test coverage detected