(types: Array<ExceptType>)
| 19 | } |
| 20 | |
| 21 | function exceptKey(types: Array<ExceptType>): string { |
| 22 | return types |
| 23 | .map((t) => (typeof t === 'string' ? t : '<<expr>>')) |
| 24 | .sort() |
| 25 | .join(','); |
| 26 | } |
| 27 | |
| 28 | export class TryPyDsl extends Mixed { |
| 29 | readonly '~dsl' = 'TryPyDsl'; |