()
| 341 | } |
| 342 | |
| 343 | func (e *expr) AsComprehension() ComprehensionExpr { |
| 344 | if e.Kind() != ComprehensionKind { |
| 345 | return nilCompre |
| 346 | } |
| 347 | return e.exprKindCase.(ComprehensionExpr) |
| 348 | } |
| 349 | |
| 350 | func (e *expr) AsIdent() string { |
| 351 | if e.Kind() != IdentKind { |