- Notifications
You must be signed in to change notification settings - Fork 670
/
Copy pathclass.ts
43 lines (35 loc) · 1.29 KB
/
class.ts
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
exportclassValid<T>{
constructor(){}
instanceFunction(): void{}
staticstaticFunction(): void{}
getinstanceGetter(): i32{}
staticsetstaticSetter(v: i32){}
instanceField: i32;
staticstaticField: i32;
staticvoid: i32;
void: i32=Valid.void;
}
exportclassInvalid<T>{
// 1092: Type parameters cannot appear on a constructor declaration
constructor<T>(){}
// 1110: Type expected.
instanceFunction(){}
// 1094: An accessor cannot have type parameters.
// 1054: A 'get' accessor cannot have parameters.
// 1110: Type expected.
getinstanceGetter<T>(a: i32){}
// 1094: An accessor cannot have type parameters.
// 1049: A 'set' accessor must have exactly one parameter.
// 1095: A 'set' accessor cannot have a return type annotation.
setinstanceSetter<T>(): i32{}
// 100: Not implemented: Ambient fields
declaredeclareField: i32;
// 100: Not implemented: Ambient fields
// 1039: Initializers are not allowed in ambient contexts.
declaredeclareInitializer: i32=0;
// 1031: 'declare' modifier cannot appear on class elements of this kind.
// 1183: An implementation cannot be declared in ambient contexts.
declaredeclareMethod(): i32{}
// ERROR 1042: "'override' modifier cannot be used here."
overrideoverrideMethod(): void{}
}