-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathclass.spec.ts
1329 lines (1264 loc) · 83.1 KB
/
class.spec.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import { Run } from '../src/compiler';
import { expect } from 'chai';
import { describe, it } from 'mocha';
describe('Classes', () => {
it('Class static member', () => expect('Hello\r\n').to.equals(new Run().test([
'class Class1 { \
public static show() { \
console.log("Hello"); \
} \
} \
\
Class1.show(); \
'])));
it('Class static member with parameter', () => expect('Hello\r\n').to.equals(new Run().test([
'class Class1 { \
public static show(s:string) { \
console.log(s); \
} \
} \
\
Class1.show("Hello"); \
'])));
it('new instance of Class with parametered member', () => expect('Hello\r\n').to.equals(new Run().test([
'class Class1 { \
public show(s:string) { \
console.log(s); \
} \
} \
\
new Class1().show("Hello"); \
'])));
it('new instance of Class with parametered member into local', () => expect('Hello\r\n').to.equals(new Run().test([
'class Class1 { \
public show(s:string) { \
console.log(s); \
} \
} \
\
let c = new Class1(); \
c.show("Hello"); \
'])));
it('new instance of Class with setting class field', () => expect('Hello\r\n').to.equals(new Run().test([
'class Class1 { \
private val: string; \
\
public set(s: string): Class1 { \
this.val = s; \
return this; \
} \
\
public show() { \
console.log(this.val); \
} \
} \
\
new Class1().set("Hello").show(); \
'])));
it('new instance of Class with setting class field via local', () => expect('Hello\r\n').to.equals(new Run().test([
'class Class1 { \
private val: string; \
\
public set(s: string): Class1 { \
this.val = s; \
return this; \
} \
\
public show() { \
console.log(this.val); \
} \
} \
\
let c = new Class1(); \
c.set("Hello").show(); \
'])));
it('new instance of Class with setting class field via global', () => expect('Hello\r\n').to.equals(new Run().test([
'class Class1 { \
private val: string; \
\
public set(s: string): Class1 { \
this.val = s; \
return this; \
} \
\
public show() { \
console.log(this.val); \
} \
} \
\
var c = new Class1(); \
c.set("Hello").show(); \
'])));
it('new instance of Class with setting class default fields', () => expect('0\r\n0\r\n0\r\n').to.equals(new Run().test([
'class Vector3 { \
constructor( \
public x: number = 0, \
public y: number = 0, \
public z: number = 0 \
) {} \
} \
var v = new Vector3(); \
console.log(v.x); \
console.log(v.y); \
console.log(v.z); \
'])));
it('Class private member in constructor', () => expect('1\r\n').to.equals(new Run().test([
'class Class1 { \
constructor(private i: number) { \
} \
\
public show() { \
console.log(this.i); \
} \
} \
\
let c = new Class1(1); \
c.show(); \
\
'])));
it('Class inheritance', () => expect('false\r\nfalse\r\ntrue\r\n').to.equals(new Run().test([
'class Class1 { \
public method1(): boolean { \
return false; \
} \
} \
class Class2 extends Class1 { \
public method2(): boolean { \
return true; \
} \
} \
const c1 = new Class1(); \
console.log(c1.method1()); \
const c2 = new Class2(); \
console.log(c2.method1()); \
console.log(c2.method2()); \
'])));
it('Class inheritance - with static get accessor', () => expect('false\r\nfalse\r\ntrue\r\n').to.equals(new Run().test([
'class Class1 { \
public method1(): boolean { \
return false; \
} \
} \
class Class2 extends Class1 { \
\
public static get Name() { \
return "test"; \
} \
\
public method2(): boolean { \
return true; \
} \
} \
const c1 = new Class1(); \
console.log(c1.method1()); \
const c2 = new Class2(); \
console.log(c2.method1()); \
console.log(c2.method2()); \
'])));
it('Class inheritance - call super class', () => expect('false\r\nfalse\r\n').to.equals(new Run().test([
'class Class1 { \
public method1(): boolean { \
return false; \
} \
} \
class Class2 extends Class1 { \
public method1(): boolean { \
return super.method1(); \
} \
} \
const c1 = new Class1(); \
console.log(c1.method1()); \
const c2 = new Class2(); \
console.log(c2.method1()); \
'])));
it('Class inheritance - call super class with this', () => expect(new Run().test([
'class Class1 { \
public class0 = false; \
public method1(): boolean { \
this.class1 = false; \
return false; \
} \
} \
class Class2 extends Class1 { \
public method1(): boolean { \
this.class1 = true; \
this.class2 = false; \
return super.method1(); \
} \
} \
const c1 = new Class1(); \
c1.method1(); \
console.log(c1.class0); \
console.log(c1.class1); \
const c2 = new Class2(); \
c2.method1(); \
console.log(c2.class0); \
console.log(c2.class1); \
console.log(c2.class2); \
'])).to.equals('false\r\nfalse\r\nfalse\r\nfalse\r\nfalse\r\n'));
it('Class inheritance - instance', () => expect('true\r\ntrue\r\nfalse\r\n').to.equals(new Run().test([
'class Class1 { \
} \
\
class Class2 extends Class1 { \
} \
\
class Class3 { \
} \
\
let c2 = new Class2(); \
console.log(c2 instanceof Class2); \
console.log(c2 instanceof Class1); \
console.log(c2 instanceof Class3); \
'])));
it('Class inheritance - complete example', () => expect('Hello, my name is Howard and I work in Sales.\r\n').to.equals(new Run().test([
'class Person { \
protected name: string; \
constructor(name: string) { this.name = name; } \
} \
\
class Employee extends Person { \
private department: string; \
\
constructor(name: string, department: string) { \
super(name); \
this.department = department; \
} \
\
public getElevatorPitch() { \
return `Hello, my name is ${this.name} and I work in ${this.department}.`; \
} \
} \
\
let howard = new Employee("Howard", "Sales"); \
console.log(howard.getElevatorPitch()); \
'])));
it('Class inheritance - complete example with property',
() => expect('Hello, my name is Howard and I work in Sales.\r\n').to.equals(new Run().test([
'class Person { \
protected name: string; \
constructor(name: string) { this.name = name; } \
} \
\
class Employee extends Person { \
private department: string; \
\
constructor(name: string, department: string) { \
super(name); \
this.department = department; \
} \
\
public get ElevatorPitch() { \
return `Hello, my name is ${this.name} and I work in ${this.department}.`; \
} \
} \
\
let howard = new Employee("Howard", "Sales"); \
console.log(howard.ElevatorPitch); \
'])));
it('Class inheritance - complete example with property on base class',
() => expect(new Run().test([
'class Person { \
protected name: string; \
constructor(name: string) { this.name = name; } \
public get ElevatorPitch() { \
return `Hello, my name is ${this.name} and I work in ${this.department}.`; \
} \
} \
\
class Employee extends Person { \
private department: string; \
\
constructor(name: string, department: string) { \
super(name); \
this.department = department; \
} \
\
} \
\
let howard = new Employee("Howard", "Sales"); \
console.log(howard.ElevatorPitch); \
'])).to.equals('Hello, my name is Howard and I work in Sales.\r\n'));
it('Class inheritance - complete example with property on base class 2',
() => expect(new Run().test([
'class Person { \
protected name: string; \
constructor(name: string) { this.Name = name; } \
public get ElevatorPitch() { \
return `Hello, my name is ${this.Name} and I work in ${this.department}.`; \
} \
\
public get Name() { \
return this.name; \
} \
\
public set Name(val: string) { \
this.name = val; \
} \
} \
\
class Employee extends Person { \
private department: string; \
\
constructor(name: string, department: string) { \
super(name); \
this.department = department; \
} \
\
} \
\
let howard = new Employee("Howard", "Sales"); \
console.log(howard.ElevatorPitch); \
'])).to.equals('Hello, my name is Howard and I work in Sales.\r\n'));
it('Class inheritance - complete example with property on base class 3',
() => expect(new Run().test([
'class Person { \
protected name: string; \
constructor(name: string) { this.Name = name; } \
public get ElevatorPitch() { \
return `Hello, my name is ${this.Name} and I work in ${this.department}.`; \
} \
\
public get Name() { \
return this.name; \
} \
\
public set Name(val: string) { \
this.name = val; \
} \
} \
\
class Employee extends Person { \
private department: string; \
\
constructor(name: string, department: string) { \
super(name); \
this.Department = department; \
} \
\
public get Department() { \
return this.department; \
} \
\
public set Department(val: string) { \
this.department = val; \
} \
} \
\
let howard = new Employee("Howard", "Sales"); \
console.log(howard.ElevatorPitch); \
'])).to.equals('Hello, my name is Howard and I work in Sales.\r\n'));
it('Class - default ctor - readonly', () => expect('8\r\n').to.equals(new Run().test([
'class Octopus { \
readonly numberOfLegs: number = 8; \
} \
\
let dad = new Octopus(); \
console.log(dad.numberOfLegs); \
'])));
it('Class - readonly', () => expect('8\r\n').to.equals(new Run().test([
'class Octopus { \
readonly name: string; \
readonly numberOfLegs: number = 8; \
constructor (theName: string) { \
this.name = theName; \
console.log(this.numberOfLegs); \
} \
} \
\
let dad = new Octopus("Man with the 8 strong legs"); \
'])));
it('Class - call base class constructor', () => expect(new Run().test([
'class Test { \
public constructor(private name: string) { \
console.log(this.name); \
} \
} \
\
class Test2 extends Test { \
} \
\
const c = new Test2("asd"); \
console.log(c.name); \
'])).to.equals('asd\r\nasd\r\n'));
it('Class - call base class constructor with abstract method and default constructor', () => expect(new Run().test([
'class Test { \
public constructor(private name: string) { \
console.log(this.name); \
} \
} \
\
class Test2 extends Test { \
private _t: boolean = true; \
protected abstract _abstr(): void; \
} \
\
class Test3 extends Test2 { \
} \
\
const c = new Test3("asd"); \
console.log(c.name); \
'])).to.equals('asd\r\nasd\r\n'));
// function is not using 'this' and thus making issue with parameters
it('Class - generic', () => expect(new Run().test([
'class GenericNumber<T> { \
zeroValue: T; \
add: (x: T, y: T) => T; \
} \
\
let stringNumeric = new GenericNumber<string>(); \
stringNumeric.zeroValue = ""; \
stringNumeric.add = function(x: string, y: string) { return x + y; }; \
\
console.log(stringNumeric.add(stringNumeric.zeroValue, "test")); \
'])).to.equals('test\r\n'));
it('Class - generic 2', () => expect('2\r\n1\r\n').to.equals(new Run().test([
'class Animal { \
protected constructor(public numLegs: number) { \
} \
} \
\
class Bee extends Animal { \
public constructor() { \
super(1); \
} \
} \
\
class Lion extends Animal { \
public constructor() { \
super(2); \
} \
} \
\
function createInstance<A extends Animal>(c: new () => A): A { \
return new c(); \
} \
\
console.log(createInstance(Lion).numLegs); \
console.log(createInstance(Bee).numLegs); \
'])));
it('Class - Accessors', () => expect('Bob Smith\r\nBob Smith\r\n').to.equals(new Run().test([
'class Employee { \
_fullName: string; \
\
get fullName(): string { \
return this._fullName; \
} \
\
set fullName(newName: string) { \
this._fullName = newName; \
} \
} \
\
let employee = new Employee(); \
employee.fullName = "Bob Smith"; \
console.log(employee.fullName); \
console.log(employee._fullName); \
'])));
it('Class - Accessors 2', () => expect('Hello, my name is Howard and I work in Sales.\r\n').to.equals(new Run().test([
'class Person { \
protected name: string; \
constructor(name: string) { this.name = name; } \
} \
\
class Employee extends Person { \
private department: string; \
\
constructor(name: string, department: string) { \
super(name); \
this.department = department; \
} \
\
public get ElevatorPitch() { \
return `Hello, my name is ${this.name} and I work in ${this.department}.`; \
} \
} \
\
let howard = new Employee("Howard", "Sales"); \
console.log(howard.ElevatorPitch); \
'])));
it('Class - Static Get Accessors', () => expect('1\r\n').to.equals(new Run().test([
'class Engine { \
public static get Last(): number { \
return 1; \
} \
} \
\
console.log(Engine.Last); \
'])));
it('Class - Static Get/Set Accessors', () => expect('1\r\n').to.equals(new Run().test([
'class Engine { \
private _last: number; \
\
public static get Last(): number { \
return this._last; \
} \
\
public static set Last(v: number) { \
this._last = v; \
} \
} \
\
Engine.Last = 1; \
console.log(Engine.Last); \
'])));
it('Class - Get/Set Accessors on base class', () => expect('1\r\n').to.equals(new Run().test([
'class Base { \
private _last: number; \
\
public get Last(): number { \
return this._last; \
} \
\
public set Last(v: number) { \
this._last = v; \
} \
} \
\
class Engine extends Base { \
} \
\
let e = new Engine(); \
e.Last = 1; \
console.log(e.Last); \
'])));
it('Class - Static Properties', () => expect('200.0\r\n40.0\r\n').to.equals(new Run().test([
'class Grid { \
static origin = {x: 0, y: 0}; \
calculateDistanceFromOrigin(point: {x: number; y: number;}) { \
let xDist = (point.x - Grid.origin.x); \
let yDist = (point.y - Grid.origin.y); \
return (xDist * xDist + yDist * yDist) / this.scale;\
} \
constructor (public scale: number) { } \
} \
\
let grid1 = new Grid(1.0); \
let grid2 = new Grid(5.0); \
\
console.log(grid1.calculateDistanceFromOrigin({x: 10, y: 10})); \
console.log(grid2.calculateDistanceFromOrigin({x: 10, y: 10})); \
'])));
it('Class - Properties - Arrow Function', () => expect('test\r\n').to.equals(new Run().test([
'class Event1 { \
public message: string; \
} \
\
class Handler { \
info: string; \
onClickGood = (e: Event1) => { this.info = e.message; }; \
} \
\
let h = new Handler(); \
let m = new Event1(); \
m.message = "test"; \
h.onClickGood(m); \
console.log(h.info); \
'])));
it('Class - static - method call', () => expect('1\r\n').to.equals(new Run().test([
'export class Matrix { \
public static _identityReadOnly = Matrix.Identity(); \
\
public static Identity(): number { \
return 1.0; \
} \
} \
\
console.log(Matrix._identityReadOnly); \
'])));
it('Class - initializing property without constructor', () => expect('10\r\n').to.equals(new Run().test([
'class Matrix { \
public m = []; \
} \
\
var result = new Matrix(); \
result.m[0] = 10; \
console.log(result.m[0]); \
'])));
it('Class - this in property initialization', () => expect('1\r\n').to.equals(new Run().test([
'export class Matrix { \
public _identityReadOnly = this._value; \
\
public _value = 1; \
} \
\
console.log(new Matrix()._identityReadOnly); \
'])));
it('Class - constructor with Parameters', () => expect('1\r\n2\r\n3\r\n').to.equals(new Run().test([
'export class Test { \
constructor(t1: number, t2: number, t3: number) { \
console.log(t1); \
console.log(t2); \
console.log(t3); \
} \
} \
new Test(1, 2, 3); \
'])));
it('Class - constructor with Optional Parameters - 1', () => expect('1\r\n2\r\n3\r\n').to.equals(new Run().test([
'export class Test { \
constructor(t1?: number, t2?: number, t3?: number) { \
console.log(t1); \
console.log(t2); \
console.log(t3); \
} \
} \
new Test(1, 2, 3); \
'])));
it('Class - constructor with Optional Parameters - 2', () => expect('1\r\nnil\r\nnil\r\n').to.equals(new Run().test([
'export class Test { \
constructor(t1?: number, t2?: number, t3?: number) { \
console.log(t1); \
console.log(t2); \
console.log(t3); \
} \
} \
new Test(1); \
'])));
it('Class - constructor with Optional Parameters - 2(2)', () => expect('1\r\nnil\r\nnil\r\n').to.equals(new Run().test([
'export class Test { \
constructor(t1: number, t2?: number, t3?: number) { \
console.log(t1); \
console.log(t2); \
console.log(t3); \
} \
} \
new Test(1); \
'])));
it('Class - constructor with Optional Parameters - 2(3)', () => expect('11\r\nnil\r\nnil\r\n').to.equals(new Run().test([
'export class Test { \
constructor(t1: any, t2?: any, t3?: any) { \
console.log(t1); \
console.log(t2); \
console.log(t3); \
} \
} \
function getValue(val) { \
return val + 1; \
} \
function run(val) { \
new Test(getValue(val)); \
} \
run(10); \
'])));
it('Class - constructor with Optional Parameters - 3', () => expect('nil\r\nnil\r\nnil\r\n').to.equals(new Run().test([
'export class Test { \
constructor(t1?: any, t2?: any, t3?: any) { \
console.log(t1); \
console.log(t2); \
console.log(t3); \
} \
} \
new Test(); \
'])));
it('Class - constructor with Optional Parameters - 4', () => expect('Run\r\n').to.equals(new Run().test([
'export class Observable<T> { \
constructor(onObserverAdded?: (observer: any) => void) { \
console.log("Run"); \
if (onObserverAdded) { \
console.log("Error"); \
} \
} \
} \
new Observable(); \
'])));
it('Class - constructor with Default Parameter', () => expect('Hello\r\n10\r\n').to.equals(new Run().test([
'class Class1 { \
private val: string; \
private val2: number; \
\
constructor(s: string, def: number = 10) { \
this.val = s; \
this.val2 = def; \
} \
\
public show() { \
console.log(this.val); \
console.log(this.val2); \
} \
} \
\
var c = new Class1("Hello"); \
c.show(); \
'])));
it('Class - constructor with Default Parameter - 2', () => expect('Hello\r\n11\r\n').to.equals(new Run().test([
'class Class1 { \
private val: string; \
private val2: number; \
\
constructor(s: string, def: number = 10) { \
this.val = s; \
this.val2 = def; \
} \
\
public show() { \
console.log(this.val); \
console.log(this.val2); \
} \
} \
\
var c = new Class1("Hello", 11); \
c.show(); \
'])));
it('Class - constructor with Default Parameter - 3', () => expect('Hello\r\n11\r\n').to.equals(new Run().test([
'class Matrix { \
} \
\
class Class1 { \
public _matrix1 = new Matrix(); \
private _name: string; \
constructor(name: string, scene: any, setActiveOnSceneIfNoneActive = true) { \
this._name = name; \
} \
} \
\
class Class2 extends Class1 { \
public _matrix2 = new Matrix(); \
private val: string; \
private val2: number; \
\
constructor(name: string, alpha: number, beta: number, radius: number, setActiveOnSceneIfNoneActive = true) { \
super(name, scene); \
this.val = name; \
this.val2 = alpha; \
} \
\
public show() { \
console.log(this.val); \
console.log(this.val2); \
} \
} \
\
var c = new Class2("Hello", 11, 12, 13); \
c.show(); \
'])));
it('Class - constructor with Default Parameter - 5', () => expect('1\r\nclass1\r\n3\r\n10\r\n').to.equals(new Run().test([
'class Class1 { \
constructor(v1: number, v2:string, v3: number, d: number = 10) { \
console.log(v1); \
console.log(v2); \
console.log(v3); \
console.log(d); \
} \
\
public static Identity(): number { \
return "class1"; \
} \
} \
\
var c = new Class1(1, Class1.Identity(), 3); \
c.show(); \
'])));
it('Class - constructor with Default Parameter - 6', () => expect('1\r\nclass0\r\n3\r\n10\r\n').to.equals(new Run().test([
'class Class0 { \
public Identity(): number { \
return "class0"; \
} \
} \
class Class1 { \
constructor(v1: number, v2:string, v3: number, d: number = 10) { \
console.log(v1); \
console.log(v2); \
console.log(v3); \
console.log(d); \
} \
} \
\
var c = new Class1(1, new Class0().Identity(), 3); \
c.show(); \
'])));
it('Class - base fields are isolated', () => expect('1\r\n2\r\n').to.equals(new Run().test([
'export class Base { \
constructor(public number: number) { \
} \
} \
\
export class Derived extends Base { \
constructor(number: number) { \
super(number); \
} \
} \
\
const d1 = new Derived(1); \
const d2 = new Derived(2); \
\
console.log(d1.number); \
console.log(d2.number); \
'])));
it('Class - deep inheritance', () => expect(new Run().test([
'export interface IBehaviorAware<T> { \
init(): void; \
} \
\
class Node implements IBehaviorAware<Node> { \
public metadata: any = null; \
\
public animations = []; \
\
constructor(scene: any = null) { \
this.init(); \
} \
\
public init() { \
} \
\
public set x(v) { \
} \
\
public get x() { \
return 0; \
} \
} \
\
class TargetCamera extends Node { \
constructor() { \
super(); \
} \
\
public set x1(v) { \
} \
\
public get x1() { \
return 1; \
} \
} \
\
class ArcCamera extends TargetCamera { \
constructor() { \
super(); \
} \
\
public set x2(v) { \
} \
\
public get x2() { \
return 2; \
} \
} \
\
new ArcCamera(); \
console.log("Run"); \
'])).to.equals('Run\r\n'));
it('Class - deep inheritance 2', () => expect(new Run().test([
'export interface IBehaviorAware { \
init2(): void; \
} \
export interface IBehaviorAware2 { \
init2(): void; \
} \
export interface IBehaviorAware3 { \
init2(): void; \
} \
\
class Node { \
public metadata: any = null; \
\
public animations = []; \
\
constructor(scene: any = null) { \
this.init(); \
} \
\
public init() { \
console.log("Run1"); \
} \
\
public set x(v) { \
} \
\
public get x() { \
return 0; \
} \
} \
\
class TargetCamera extends Node implements IBehaviorAware, IBehaviorAware2, IBehaviorAware3 { \
constructor() { \
super(); \
} \
\
public init2() { \
} \
\
public set x1(v) { \
} \
\
public get x1() { \
return 1; \
} \
} \
\
class ArcCamera extends TargetCamera { \
constructor() { \
super(); \
} \
\
public set x2(v) { \
} \
\
public get x2() { \
return 2; \
} \
} \
\
new ArcCamera(); \
console.log("Run"); \
'])).to.equals('Run1\r\nRun\r\n'));
it('Class - this in static', () => expect('Run\r\n').to.equals(new Run().test([
'export class Node1 { \
private static _NodeConstructors: {[key: string]: any} = {}; \
\
public static AddNodeConstructor(type: string, constructorFunc: any) { \
this._NodeConstructors[type] = constructorFunc; \
} \
} \
\
Node1.AddNodeConstructor("asd", () => {}); \
\
console.log("Run"); \
'])));
it('Class - BUG (count of method return vars)', () => expect('Run\r\n').to.equals(new Run().test([
'class Node1 { \
public _scene: Scene; \
\
constructor(scene: Scene) { \
this._scene = scene; \
} \
\
public getScene(): Scene { \
return this._scene; \
} \
\
public get parent(): any { \
return 1; \
} \
\
public set parent(v) { \
} \
} \
\
abstract class AbstractScene { \
} \
\
class Scene extends AbstractScene { \
private cameras =[]; \
\
public addCamera(newCamera: Camera): void { \
this.cameras[1] = newCamera; \
} \