1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
//// [tests/cases/compiler/tryStatementInternalComments.ts] ////
//// [tryStatementInternalComments.ts]
/*1*/ try /*2*/ { /*3*/
/*4*/ throw /*5*/ "no" /*6*/;
/*7*/} /*8*/ catch /*9*/ ( /*10*/ e /*11*/ ) /*12*/ { /*13*/
/*14*/} /*15*/ finally /*16*/ { /*17*/
/*18*/} /*19*/
//// [tryStatementInternalComments.js]
/*1*/ try /*2*/ { /*3*/
/*4*/ throw /*5*/ "no" /*6*/;
/*7*/ } /*8*/
catch /*9*/ ( /*10*/e /*11*/) /*12*/ { /*13*/
/*14*/ } /*15*/
finally /*16*/ { /*17*/
/*18*/ } /*19*/
|