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