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 57 58 59 60 61 62 63 64 65 66 67
|
error TS2318: Cannot find global type 'IterableIterator'.
tests/cases/conformance/classes/classStaticBlock/classStaticBlock7.ts(3,9): error TS18037: Await expression cannot be used inside a class static block.
tests/cases/conformance/classes/classStaticBlock/classStaticBlock7.ts(4,9): error TS1163: A 'yield' expression is only allowed in a generator body.
tests/cases/conformance/classes/classStaticBlock/classStaticBlock7.ts(5,9): error TS18041: A 'return' statement cannot be used inside a class static block.
tests/cases/conformance/classes/classStaticBlock/classStaticBlock7.ts(12,13): error TS18037: Await expression cannot be used inside a class static block.
tests/cases/conformance/classes/classStaticBlock/classStaticBlock7.ts(24,13): error TS1163: A 'yield' expression is only allowed in a generator body.
tests/cases/conformance/classes/classStaticBlock/classStaticBlock7.ts(36,13): error TS18041: A 'return' statement cannot be used inside a class static block.
!!! error TS2318: Cannot find global type 'IterableIterator'.
==== tests/cases/conformance/classes/classStaticBlock/classStaticBlock7.ts (6 errors) ====
class C {
static {
await 1;
~~~~~~~
!!! error TS18037: Await expression cannot be used inside a class static block.
yield 1;
~~~~~
!!! error TS1163: A 'yield' expression is only allowed in a generator body.
return 1;
~~~~~~
!!! error TS18041: A 'return' statement cannot be used inside a class static block.
}
}
async function f1 () {
class C {
static {
await 1;
~~~~~~~
!!! error TS18037: Await expression cannot be used inside a class static block.
async function ff () {
await 1;
}
}
}
}
function * f2 () {
class C {
static {
yield 1;
~~~~~
!!! error TS1163: A 'yield' expression is only allowed in a generator body.
function * ff () {
yield 1;
}
}
}
}
function f3 () {
class C {
static {
return 1;
~~~~~~
!!! error TS18041: A 'return' statement cannot be used inside a class static block.
function ff () {
return 1
}
}
}
}
|