mirror of
https://github.com/swc-project/swc.git
synced 2024-11-28 02:29:04 +03:00
48 lines
558 B
TypeScript
48 lines
558 B
TypeScript
// @allowUnreachableCode: true
|
|
|
|
function fn(x) {
|
|
throw x;
|
|
}
|
|
|
|
<T>(x: T) => { throw x; }
|
|
|
|
var y: string;
|
|
switch (y) {
|
|
case 'a':
|
|
throw y;
|
|
default:
|
|
throw y;
|
|
}
|
|
|
|
var z = 0;
|
|
while (z < 10) {
|
|
throw z;
|
|
}
|
|
|
|
for (var i = 0; ;) { throw i; }
|
|
|
|
for (var idx in {}) { throw idx; }
|
|
|
|
do { throw null; }while(true)
|
|
|
|
var j = 0;
|
|
while (j < 0) { throw j; }
|
|
|
|
class C<T> {
|
|
private value: T;
|
|
biz() {
|
|
throw this.value;
|
|
}
|
|
|
|
constructor() {
|
|
throw this;
|
|
}
|
|
}
|
|
|
|
var aa = {
|
|
id:12,
|
|
biz() {
|
|
throw this;
|
|
}
|
|
}
|