1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
|
//// [constDeclarations-invalidContexts.ts]
// Errors, const must be defined inside a block
if (true)
const c1 = 0;
else
const c2 = 0;
while (true)
const c3 = 0;
do
const c4 = 0;
while (true);
var obj;
with (obj)
const c5 = 0; // No Error will be reported here since we turn off all type checking
for (var i = 0; i < 10; i++)
const c6 = 0;
for (var i2 in {})
const c7 = 0;
if (true)
label: const c8 = 0;
while (false)
label2: label3: label4: const c9 = 0;
//// [constDeclarations-invalidContexts.js]
// Errors, const must be defined inside a block
if (true)
const c1 = 0;
else
const c2 = 0;
while (true)
const c3 = 0;
do
const c4 = 0;
while (true);
var obj;
with (obj)
const c5 = 0; // No Error will be reported here since we turn off all type checking
for (var i = 0; i < 10; i++)
const c6 = 0;
for (var i2 in {})
const c7 = 0;
if (true)
label: const c8 = 0;
while (false)
label2: label3: label4: const c9 = 0;
|