(e ast.Expr)
| 580 | } |
| 581 | |
| 582 | func isOptionalNone(e ast.Expr) bool { |
| 583 | return e.Kind() == ast.CallKind && |
| 584 | e.AsCall().FunctionName() == "optional.none" && |
| 585 | len(e.AsCall().Args()) == 0 |
| 586 | } |
| 587 | |
| 588 | func removeIneligibleSubExprs(e ast.NavigableExpr, unnestMap map[int64]bool) { |
| 589 | for _, id := range comprehensionSubExprIDs(e) { |
no test coverage detected