forked from microsoft/TypeScript
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathincrementalParser.ts
840 lines (611 loc) · 37 KB
/
incrementalParser.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
/// <reference path="..\harness.ts" />
/// <reference path="..\..\compiler\parser.ts" />
namespace ts {
ts.disableIncrementalParsing = false; // tslint:disable-line no-unnecessary-qualifier (make clear this is a global mutation!)
function withChange(text: IScriptSnapshot, start: number, length: number, newText: string): { text: IScriptSnapshot; textChangeRange: TextChangeRange; } {
const contents = getSnapshotText(text);
const newContents = contents.substr(0, start) + newText + contents.substring(start + length);
return { text: ScriptSnapshot.fromString(newContents), textChangeRange: createTextChangeRange(createTextSpan(start, length), newText.length) };
}
function withInsert(text: IScriptSnapshot, start: number, newText: string): { text: IScriptSnapshot; textChangeRange: TextChangeRange; } {
return withChange(text, start, 0, newText);
}
function withDelete(text: IScriptSnapshot, start: number, length: number): { text: IScriptSnapshot; textChangeRange: TextChangeRange; } {
return withChange(text, start, length, "");
}
function createTree(text: IScriptSnapshot, version: string) {
return createLanguageServiceSourceFile(/*fileName:*/ "", text, ScriptTarget.Latest, version, /*setNodeParents:*/ true);
}
function assertSameDiagnostics(file1: SourceFile, file2: SourceFile) {
const diagnostics1 = file1.parseDiagnostics;
const diagnostics2 = file2.parseDiagnostics;
assert.equal(diagnostics1.length, diagnostics2.length, "diagnostics1.length !== diagnostics2.length");
for (let i = 0; i < diagnostics1.length; i++) {
const d1 = diagnostics1[i];
const d2 = diagnostics2[i];
assert.equal(d1.file, file1, "d1.file !== file1");
assert.equal(d2.file, file2, "d2.file !== file2");
assert.equal(d1.start, d2.start, "d1.start !== d2.start");
assert.equal(d1.length, d2.length, "d1.length !== d2.length");
assert.equal(d1.messageText, d2.messageText, "d1.messageText !== d2.messageText");
assert.equal(d1.category, d2.category, "d1.category !== d2.category");
assert.equal(d1.code, d2.code, "d1.code !== d2.code");
}
}
// NOTE: 'reusedElements' is the expected count of elements reused from the old tree to the new
// tree. It may change as we tweak the parser. If the count increases then that should always
// be a good thing. If it decreases, that's not great (less reusability), but that may be
// unavoidable. If it does decrease an investigation should be done to make sure that things
// are still ok and we're still appropriately reusing most of the tree.
function compareTrees(oldText: IScriptSnapshot, newText: IScriptSnapshot, textChangeRange: TextChangeRange, expectedReusedElements: number, oldTree?: SourceFile) {
oldTree = oldTree || createTree(oldText, /*version:*/ ".");
Utils.assertInvariants(oldTree, /*parent:*/ undefined);
// Create a tree for the new text, in a non-incremental fashion.
const newTree = createTree(newText, oldTree.version + ".");
Utils.assertInvariants(newTree, /*parent:*/ undefined);
// Create a tree for the new text, in an incremental fashion.
const incrementalNewTree = updateLanguageServiceSourceFile(oldTree, newText, oldTree.version + ".", textChangeRange);
Utils.assertInvariants(incrementalNewTree, /*parent:*/ undefined);
// We should get the same tree when doign a full or incremental parse.
Utils.assertStructuralEquals(newTree, incrementalNewTree);
// We should also get the exact same set of diagnostics.
assertSameDiagnostics(newTree, incrementalNewTree);
// There should be no reused nodes between two trees that are fully parsed.
assert.isTrue(reusedElements(oldTree, newTree) === 0);
assert.equal(newTree.fileName, incrementalNewTree.fileName, "newTree.fileName !== incrementalNewTree.fileName");
assert.equal(newTree.text, incrementalNewTree.text, "newTree.text !== incrementalNewTree.text");
if (expectedReusedElements !== -1) {
const actualReusedCount = reusedElements(oldTree, incrementalNewTree);
assert.equal(actualReusedCount, expectedReusedElements, actualReusedCount + " !== " + expectedReusedElements);
}
return { oldTree, newTree, incrementalNewTree };
}
function reusedElements(oldNode: SourceFile, newNode: SourceFile): number {
const allOldElements = collectElements(oldNode);
const allNewElements = collectElements(newNode);
return filter(allOldElements, v => contains(allNewElements, v)).length;
}
function collectElements(node: Node) {
const result: Node[] = [];
visit(node);
return result;
function visit(node: Node) {
result.push(node);
forEachChild(node, visit);
}
}
function deleteCode(source: string, index: number, toDelete: string) {
const repeat = toDelete.length;
let oldTree = createTree(ScriptSnapshot.fromString(source), /*version:*/ ".");
for (let i = 0; i < repeat; i++) {
const oldText = ScriptSnapshot.fromString(source);
const newTextAndChange = withDelete(oldText, index, 1);
const newTree = compareTrees(oldText, newTextAndChange.text, newTextAndChange.textChangeRange, -1, oldTree).incrementalNewTree;
source = getSnapshotText(newTextAndChange.text);
oldTree = newTree;
}
}
function insertCode(source: string, index: number, toInsert: string) {
const repeat = toInsert.length;
let oldTree = createTree(ScriptSnapshot.fromString(source), /*version:*/ ".");
for (let i = 0; i < repeat; i++) {
const oldText = ScriptSnapshot.fromString(source);
const newTextAndChange = withInsert(oldText, index + i, toInsert.charAt(i));
const newTree = compareTrees(oldText, newTextAndChange.text, newTextAndChange.textChangeRange, -1, oldTree).incrementalNewTree;
source = getSnapshotText(newTextAndChange.text);
oldTree = newTree;
}
}
describe("Incremental", () => {
it("Inserting into method", () => {
const source = "class C {\r\n" +
" public foo1() { }\r\n" +
" public foo2() {\r\n" +
" return 1;\r\n" +
" }\r\n" +
" public foo3() { }\r\n" +
"}";
const oldText = ScriptSnapshot.fromString(source);
const semicolonIndex = source.indexOf(";");
const newTextAndChange = withInsert(oldText, semicolonIndex, " + 1");
compareTrees(oldText, newTextAndChange.text, newTextAndChange.textChangeRange, 8);
});
it("Deleting from method", () => {
const source = "class C {\r\n" +
" public foo1() { }\r\n" +
" public foo2() {\r\n" +
" return 1 + 1;\r\n" +
" }\r\n" +
" public foo3() { }\r\n" +
"}";
const index = source.indexOf("+ 1");
const oldText = ScriptSnapshot.fromString(source);
const newTextAndChange = withDelete(oldText, index, "+ 1".length);
compareTrees(oldText, newTextAndChange.text, newTextAndChange.textChangeRange, 8);
});
it("Regular expression 1", () => {
const source = "class C { public foo1() { /; } public foo2() { return 1;} public foo3() { } }";
const semicolonIndex = source.indexOf(";}");
const oldText = ScriptSnapshot.fromString(source);
const newTextAndChange = withInsert(oldText, semicolonIndex, "/");
compareTrees(oldText, newTextAndChange.text, newTextAndChange.textChangeRange, 0);
});
it("Regular expression 2", () => {
const source = "class C { public foo1() { ; } public foo2() { return 1/;} public foo3() { } }";
const semicolonIndex = source.indexOf(";");
const oldText = ScriptSnapshot.fromString(source);
const newTextAndChange = withInsert(oldText, semicolonIndex, "/");
compareTrees(oldText, newTextAndChange.text, newTextAndChange.textChangeRange, 4);
});
it("Comment 1", () => {
const source = "class C { public foo1() { /; } public foo2() { return 1; } public foo3() { } }";
const semicolonIndex = source.indexOf(";");
const oldText = ScriptSnapshot.fromString(source);
const newTextAndChange = withInsert(oldText, semicolonIndex, "/");
compareTrees(oldText, newTextAndChange.text, newTextAndChange.textChangeRange, 0);
});
it("Comment 2", () => {
const source = "class C { public foo1() { /; } public foo2() { return 1; } public foo3() { } }";
const oldText = ScriptSnapshot.fromString(source);
const newTextAndChange = withInsert(oldText, 0, "//");
compareTrees(oldText, newTextAndChange.text, newTextAndChange.textChangeRange, 0);
});
it("Comment 3", () => {
const source = "//class C { public foo1() { /; } public foo2() { return 1; } public foo3() { } }";
const oldText = ScriptSnapshot.fromString(source);
const newTextAndChange = withDelete(oldText, 0, 2);
compareTrees(oldText, newTextAndChange.text, newTextAndChange.textChangeRange, 0);
});
it("Comment 4", () => {
const source = "class C { public foo1() { /; } public foo2() { */ return 1; } public foo3() { } }";
const index = source.indexOf(";");
const oldText = ScriptSnapshot.fromString(source);
const newTextAndChange = withInsert(oldText, index, "*");
compareTrees(oldText, newTextAndChange.text, newTextAndChange.textChangeRange, 4);
});
it("Parameter 1", () => {
// Should be able to reuse all the parameters.
const source = "class C {\r\n" +
" public foo2(a, b, c, d) {\r\n" +
" return 1;\r\n" +
" }\r\n" +
"}";
const semicolonIndex = source.indexOf(";");
const oldText = ScriptSnapshot.fromString(source);
const newTextAndChange = withInsert(oldText, semicolonIndex, " + 1");
compareTrees(oldText, newTextAndChange.text, newTextAndChange.textChangeRange, 8);
});
it("Type member 1", () => {
// Should be able to reuse most of the type members.
const source = "interface I { a: number; b: string; (c): d; new (e): f; g(): h }";
const index = source.indexOf(": string");
const oldText = ScriptSnapshot.fromString(source);
const newTextAndChange = withInsert(oldText, index, "?");
compareTrees(oldText, newTextAndChange.text, newTextAndChange.textChangeRange, 14);
});
it("Enum element 1", () => {
// Should be able to reuse most of the enum elements.
const source = "enum E { a = 1, b = 1 << 1, c = 3, e = 4, f = 5, g = 7, h = 8, i = 9, j = 10 }";
const index = source.indexOf("<<");
const oldText = ScriptSnapshot.fromString(source);
const newTextAndChange = withChange(oldText, index, 2, "+");
compareTrees(oldText, newTextAndChange.text, newTextAndChange.textChangeRange, 24);
});
it("Strict mode 1", () => {
const source = "foo1();\r\nfoo1();\r\nfoo1();\r\package();";
const oldText = ScriptSnapshot.fromString(source);
const newTextAndChange = withInsert(oldText, 0, "'strict';\r\n");
compareTrees(oldText, newTextAndChange.text, newTextAndChange.textChangeRange, 9);
});
it("Strict mode 2", () => {
const source = "foo1();\r\nfoo1();\r\nfoo1();\r\package();";
const oldText = ScriptSnapshot.fromString(source);
const newTextAndChange = withInsert(oldText, 0, "'use strict';\r\n");
compareTrees(oldText, newTextAndChange.text, newTextAndChange.textChangeRange, 9);
});
it("Strict mode 3", () => {
const source = "'strict';\r\nfoo1();\r\nfoo1();\r\nfoo1();\r\npackage();";
const index = source.indexOf("f");
const oldText = ScriptSnapshot.fromString(source);
const newTextAndChange = withDelete(oldText, 0, index);
compareTrees(oldText, newTextAndChange.text, newTextAndChange.textChangeRange, 9);
});
it("Strict mode 4", () => {
const source = "'use strict';\r\nfoo1();\r\nfoo1();\r\nfoo1();\r\npackage();";
const index = source.indexOf("f");
const oldText = ScriptSnapshot.fromString(source);
const newTextAndChange = withDelete(oldText, 0, index);
compareTrees(oldText, newTextAndChange.text, newTextAndChange.textChangeRange, 9);
});
it("Strict mode 5", () => {
const source = "'use blahhh';\r\nfoo1();\r\nfoo2();\r\nfoo3();\r\nfoo4();\r\nfoo4();\r\nfoo6();\r\nfoo7();\r\nfoo8();\r\nfoo9();\r\n";
const index = source.indexOf("b");
const oldText = ScriptSnapshot.fromString(source);
const newTextAndChange = withChange(oldText, index, 6, "strict");
compareTrees(oldText, newTextAndChange.text, newTextAndChange.textChangeRange, 27);
});
it("Strict mode 6", () => {
const source = "'use strict';\r\nfoo1();\r\nfoo2();\r\nfoo3();\r\nfoo4();\r\nfoo4();\r\nfoo6();\r\nfoo7();\r\nfoo8();\r\nfoo9();\r\n";
const index = source.indexOf("s");
const oldText = ScriptSnapshot.fromString(source);
const newTextAndChange = withChange(oldText, index, 6, "blahhh");
compareTrees(oldText, newTextAndChange.text, newTextAndChange.textChangeRange, 27);
});
it("Strict mode 7", () => {
const source = "'use blahhh';\r\nfoo1();\r\nfoo2();\r\nfoo3();\r\nfoo4();\r\nfoo4();\r\nfoo6();\r\nfoo7();\r\nfoo8();\r\nfoo9();\r\n";
const index = source.indexOf("f");
const oldText = ScriptSnapshot.fromString(source);
const newTextAndChange = withDelete(oldText, 0, index);
compareTrees(oldText, newTextAndChange.text, newTextAndChange.textChangeRange, 24);
});
it("Parenthesized expression to arrow function 1", () => {
const source = "var v = (a, b, c, d, e)";
const index = source.indexOf("a");
const oldText = ScriptSnapshot.fromString(source);
const newTextAndChange = withInsert(oldText, index + 1, ":");
compareTrees(oldText, newTextAndChange.text, newTextAndChange.textChangeRange, 0);
});
it("Parenthesized expression to arrow function 2", () => {
const source = "var v = (a, b) = c";
const index = source.indexOf("= c") + 1;
const oldText = ScriptSnapshot.fromString(source);
const newTextAndChange = withInsert(oldText, index, ">");
compareTrees(oldText, newTextAndChange.text, newTextAndChange.textChangeRange, 0);
});
it("Arrow function to parenthesized expression 1", () => {
const source = "var v = (a:, b, c, d, e)";
const index = source.indexOf(":");
const oldText = ScriptSnapshot.fromString(source);
const newTextAndChange = withDelete(oldText, index, 1);
compareTrees(oldText, newTextAndChange.text, newTextAndChange.textChangeRange, 0);
});
it("Arrow function to parenthesized expression 2", () => {
const source = "var v = (a, b) => c";
const index = source.indexOf(">");
const oldText = ScriptSnapshot.fromString(source);
const newTextAndChange = withDelete(oldText, index, 1);
compareTrees(oldText, newTextAndChange.text, newTextAndChange.textChangeRange, 0);
});
it("Speculative generic lookahead 1", () => {
const source = "var v = F<b>e";
const index = source.indexOf("b");
const oldText = ScriptSnapshot.fromString(source);
const newTextAndChange = withInsert(oldText, index + 1, ",x");
compareTrees(oldText, newTextAndChange.text, newTextAndChange.textChangeRange, -1);
});
it("Speculative generic lookahead 2", () => {
const source = "var v = F<a,b>e";
const index = source.indexOf("b");
const oldText = ScriptSnapshot.fromString(source);
const newTextAndChange = withInsert(oldText, index + 1, ",x");
compareTrees(oldText, newTextAndChange.text, newTextAndChange.textChangeRange, -1);
});
it("Speculative generic lookahead 3", () => {
const source = "var v = F<a,b,c>e";
const index = source.indexOf("b");
const oldText = ScriptSnapshot.fromString(source);
const newTextAndChange = withInsert(oldText, index + 1, ",x");
compareTrees(oldText, newTextAndChange.text, newTextAndChange.textChangeRange, -1);
});
it("Speculative generic lookahead 4", () => {
const source = "var v = F<a,b,c,d>e";
const index = source.indexOf("b");
const oldText = ScriptSnapshot.fromString(source);
const newTextAndChange = withInsert(oldText, index + 1, ",x");
compareTrees(oldText, newTextAndChange.text, newTextAndChange.textChangeRange, -1);
});
it("Assertion to arrow function", () => {
const source = "var v = <T>(a);";
const index = source.indexOf(";");
const oldText = ScriptSnapshot.fromString(source);
const newTextAndChange = withInsert(oldText, index, " => 1");
compareTrees(oldText, newTextAndChange.text, newTextAndChange.textChangeRange, 0);
});
it("Arrow function to assertion", () => {
const source = "var v = <T>(a) => 1;";
const index = source.indexOf(" =>");
const oldText = ScriptSnapshot.fromString(source);
const newTextAndChange = withDelete(oldText, index, " => 1".length);
compareTrees(oldText, newTextAndChange.text, newTextAndChange.textChangeRange, 0);
});
it("Contextual shift to shift-equals", () => {
const source = "var v = 1 >> = 2";
const index = source.indexOf(">> =");
const oldText = ScriptSnapshot.fromString(source);
const newTextAndChange = withDelete(oldText, index + 2, 1);
compareTrees(oldText, newTextAndChange.text, newTextAndChange.textChangeRange, 0);
});
it("Contextual shift-equals to shift", () => {
const source = "var v = 1 >>= 2";
const index = source.indexOf(">>=");
const oldText = ScriptSnapshot.fromString(source);
const newTextAndChange = withInsert(oldText, index + 2, " ");
compareTrees(oldText, newTextAndChange.text, newTextAndChange.textChangeRange, 0);
});
it("Contextual shift to generic invocation", () => {
const source = "var v = T>>(2)";
const index = source.indexOf("T");
const oldText = ScriptSnapshot.fromString(source);
const newTextAndChange = withInsert(oldText, index, "Foo<Bar<");
compareTrees(oldText, newTextAndChange.text, newTextAndChange.textChangeRange, 0);
});
it("Test generic invocation to contextual shift", () => {
const source = "var v = Foo<Bar<T>>(2)";
const index = source.indexOf("Foo<Bar<");
const oldText = ScriptSnapshot.fromString(source);
const newTextAndChange = withDelete(oldText, index, "Foo<Bar<".length);
compareTrees(oldText, newTextAndChange.text, newTextAndChange.textChangeRange, 0);
});
it("Contextual shift to generic type and initializer", () => {
const source = "var v = T>>=2;";
const index = source.indexOf("=");
const oldText = ScriptSnapshot.fromString(source);
const newTextAndChange = withChange(oldText, index, "= ".length, ": Foo<Bar<");
compareTrees(oldText, newTextAndChange.text, newTextAndChange.textChangeRange, 0);
});
it("Generic type and initializer to contextual shift", () => {
const source = "var v : Foo<Bar<T>>=2;";
const index = source.indexOf(":");
const oldText = ScriptSnapshot.fromString(source);
const newTextAndChange = withChange(oldText, index, ": Foo<Bar<".length, "= ");
compareTrees(oldText, newTextAndChange.text, newTextAndChange.textChangeRange, 0);
});
it("Arithmetic operator to type argument list", () => {
const source = "var v = new Dictionary<A, B>0";
const index = source.indexOf("0");
const oldText = ScriptSnapshot.fromString(source);
const newTextAndChange = withChange(oldText, index, 1, "()");
compareTrees(oldText, newTextAndChange.text, newTextAndChange.textChangeRange, 0);
});
it("Type argument list to arithmetic operator", () => {
const source = "var v = new Dictionary<A, B>()";
const index = source.indexOf("()");
const oldText = ScriptSnapshot.fromString(source);
const newTextAndChange = withDelete(oldText, index, 2);
compareTrees(oldText, newTextAndChange.text, newTextAndChange.textChangeRange, 0);
});
it("Yield context 1", () => {
// We're changing from a non-generator to a genarator. We can't reuse statement nodes.
const source = "function foo() {\r\nyield(foo1);\r\n}";
const oldText = ScriptSnapshot.fromString(source);
const index = source.indexOf("foo");
const newTextAndChange = withInsert(oldText, index, "*");
compareTrees(oldText, newTextAndChange.text, newTextAndChange.textChangeRange, 0);
});
it("Yield context 2", () => {
// We're changing from a generator to a non-genarator. We can't reuse statement nodes.
const source = "function *foo() {\r\nyield(foo1);\r\n}";
const oldText = ScriptSnapshot.fromString(source);
const index = source.indexOf("*");
const newTextAndChange = withDelete(oldText, index, "*".length);
compareTrees(oldText, newTextAndChange.text, newTextAndChange.textChangeRange, 0);
});
it("Delete semicolon", () => {
const source = "export class Foo {\r\n}\r\n\r\nexport var foo = new Foo();\r\n\r\n export function test(foo: Foo) {\r\n return true;\r\n }\r\n";
const oldText = ScriptSnapshot.fromString(source);
const index = source.lastIndexOf(";");
const newTextAndChange = withDelete(oldText, index, 1);
compareTrees(oldText, newTextAndChange.text, newTextAndChange.textChangeRange, 14);
});
it("Edit after empty type parameter list", () => {
const source = "class Dictionary<> { }\r\nvar y;\r\n";
const oldText = ScriptSnapshot.fromString(source);
const index = source.length;
const newTextAndChange = withInsert(oldText, index, "var x;");
compareTrees(oldText, newTextAndChange.text, newTextAndChange.textChangeRange, 2);
});
it("Delete parameter after comment", () => {
const source = "function fn(/* comment! */ a: number, c) { }";
const oldText = ScriptSnapshot.fromString(source);
const index = source.indexOf("a:");
const newTextAndChange = withDelete(oldText, index, "a: number,".length);
compareTrees(oldText, newTextAndChange.text, newTextAndChange.textChangeRange, 0);
});
it("Modifier added to accessor", () => {
const source =
"class C {\
set Bar(bar:string) {}\
}\
var o2 = { set Foo(val:number) { } };";
const oldText = ScriptSnapshot.fromString(source);
const index = source.indexOf("set");
const newTextAndChange = withInsert(oldText, index, "public ");
compareTrees(oldText, newTextAndChange.text, newTextAndChange.textChangeRange, 14);
});
it("Insert parameter ahead of parameter", () => {
const source =
"alert(100);\
\
class OverloadedMonster {\
constructor();\
constructor(name) { }\
}";
const oldText = ScriptSnapshot.fromString(source);
const index = source.indexOf("100");
const newTextAndChange = withInsert(oldText, index, "'1', ");
compareTrees(oldText, newTextAndChange.text, newTextAndChange.textChangeRange, 7);
});
it("Insert declare modifier before module", () => {
const source =
"module mAmbient {\
module m3 { }\
}";
const oldText = ScriptSnapshot.fromString(source);
const index = 0;
const newTextAndChange = withInsert(oldText, index, "declare ");
compareTrees(oldText, newTextAndChange.text, newTextAndChange.textChangeRange, 0);
});
it("Insert function above arrow function with comment", () => {
const source =
"\
() =>\
// do something\
0;";
const oldText = ScriptSnapshot.fromString(source);
const index = 0;
const newTextAndChange = withInsert(oldText, index, "function Foo() { }");
compareTrees(oldText, newTextAndChange.text, newTextAndChange.textChangeRange, 0);
});
it("Finish incomplete regular expression", () => {
const source = "while (true) /3; return;";
const oldText = ScriptSnapshot.fromString(source);
const index = source.length - 1;
const newTextAndChange = withInsert(oldText, index, "/");
compareTrees(oldText, newTextAndChange.text, newTextAndChange.textChangeRange, 0);
});
it("Regular expression to divide operation", () => {
const source = "return;\r\nwhile (true) /3/g;";
const oldText = ScriptSnapshot.fromString(source);
const index = source.indexOf("while");
const newTextAndChange = withDelete(oldText, index, "while ".length);
compareTrees(oldText, newTextAndChange.text, newTextAndChange.textChangeRange, 0);
});
it("Divide operation to regular expression", () => {
const source = "return;\r\n(true) /3/g;";
const oldText = ScriptSnapshot.fromString(source);
const index = source.indexOf("(");
const newTextAndChange = withInsert(oldText, index, "while ");
compareTrees(oldText, newTextAndChange.text, newTextAndChange.textChangeRange, 0);
});
it("Unterminated comment after keyword converted to identifier", () => {
// 'public' as a keyword should be incrementally unusable (because it has an
// unterminated comment). When we convert it to an identifier, that shouldn't
// change anything, and we should still get the same errors.
const source = "return; a.public /*";
const oldText = ScriptSnapshot.fromString(source);
const newTextAndChange = withInsert(oldText, 0, "");
compareTrees(oldText, newTextAndChange.text, newTextAndChange.textChangeRange, 7);
});
it("Class to interface", () => {
const source = "class A { public M1() { } public M2() { } public M3() { } p1 = 0; p2 = 0; p3 = 0 }";
const oldText = ScriptSnapshot.fromString(source);
const newTextAndChange = withChange(oldText, 0, "class".length, "interface");
compareTrees(oldText, newTextAndChange.text, newTextAndChange.textChangeRange, 0);
});
it("Interface to class", () => {
const source = "interface A { M1?(); M2?(); M3?(); p1?; p2?; p3? }";
const oldText = ScriptSnapshot.fromString(source);
const newTextAndChange = withChange(oldText, 0, "interface".length, "class");
compareTrees(oldText, newTextAndChange.text, newTextAndChange.textChangeRange, 0);
});
it("Surrounding function declarations with block", () => {
const source = "declare function F1() { } export function F2() { } declare export function F3() { }";
const oldText = ScriptSnapshot.fromString(source);
const newTextAndChange = withInsert(oldText, 0, "{");
compareTrees(oldText, newTextAndChange.text, newTextAndChange.textChangeRange, 4);
});
it("Removing block around function declarations", () => {
const source = "{ declare function F1() { } export function F2() { } declare export function F3() { }";
const oldText = ScriptSnapshot.fromString(source);
const newTextAndChange = withDelete(oldText, 0, "{".length);
compareTrees(oldText, newTextAndChange.text, newTextAndChange.textChangeRange, 4);
});
it("Moving methods from class to object literal", () => {
const source = "class C { public A() { } public B() { } public C() { } }";
const oldText = ScriptSnapshot.fromString(source);
const newTextAndChange = withChange(oldText, 0, "class C".length, "var v =");
compareTrees(oldText, newTextAndChange.text, newTextAndChange.textChangeRange, 0);
});
it("Moving methods from object literal to class", () => {
const source = "var v = { public A() { } public B() { } public C() { } }";
const oldText = ScriptSnapshot.fromString(source);
const newTextAndChange = withChange(oldText, 0, "var v =".length, "class C");
compareTrees(oldText, newTextAndChange.text, newTextAndChange.textChangeRange, 4);
});
it("Moving methods from object literal to class in strict mode", () => {
const source = "\"use strict\"; var v = { public A() { } public B() { } public C() { } }";
const oldText = ScriptSnapshot.fromString(source);
const newTextAndChange = withChange(oldText, 14, "var v =".length, "class C");
compareTrees(oldText, newTextAndChange.text, newTextAndChange.textChangeRange, 4);
});
it("Do not move constructors from class to object-literal.", () => {
const source = "class C { public constructor() { } public constructor() { } public constructor() { } }";
const oldText = ScriptSnapshot.fromString(source);
const newTextAndChange = withChange(oldText, 0, "class C".length, "var v =");
compareTrees(oldText, newTextAndChange.text, newTextAndChange.textChangeRange, 0);
});
it("Do not move methods called \"constructor\" from object literal to class", () => {
const source = "var v = { public constructor() { } public constructor() { } public constructor() { } }";
const oldText = ScriptSnapshot.fromString(source);
const newTextAndChange = withChange(oldText, 0, "var v =".length, "class C");
compareTrees(oldText, newTextAndChange.text, newTextAndChange.textChangeRange, 0);
});
it("Moving index signatures from class to interface", () => {
const source = "class C { public [a: number]: string; public [a: number]: string; public [a: number]: string }";
const oldText = ScriptSnapshot.fromString(source);
const newTextAndChange = withChange(oldText, 0, "class".length, "interface");
compareTrees(oldText, newTextAndChange.text, newTextAndChange.textChangeRange, 18);
});
it("Moving index signatures from class to interface in strict mode", () => {
const source = "\"use strict\"; class C { public [a: number]: string; public [a: number]: string; public [a: number]: string }";
const oldText = ScriptSnapshot.fromString(source);
const newTextAndChange = withChange(oldText, 14, "class".length, "interface");
compareTrees(oldText, newTextAndChange.text, newTextAndChange.textChangeRange, 18);
});
it("Moving index signatures from interface to class", () => {
const source = "interface C { public [a: number]: string; public [a: number]: string; public [a: number]: string }";
const oldText = ScriptSnapshot.fromString(source);
const newTextAndChange = withChange(oldText, 0, "interface".length, "class");
compareTrees(oldText, newTextAndChange.text, newTextAndChange.textChangeRange, 18);
});
it("Moving index signatures from interface to class in strict mode", () => {
const source = "\"use strict\"; interface C { public [a: number]: string; public [a: number]: string; public [a: number]: string }";
const oldText = ScriptSnapshot.fromString(source);
const newTextAndChange = withChange(oldText, 14, "interface".length, "class");
compareTrees(oldText, newTextAndChange.text, newTextAndChange.textChangeRange, 18);
});
it("Moving accessors from class to object literal", () => {
const source = "class C { public get A() { } public get B() { } public get C() { } }";
const oldText = ScriptSnapshot.fromString(source);
const newTextAndChange = withChange(oldText, 0, "class C".length, "var v =");
compareTrees(oldText, newTextAndChange.text, newTextAndChange.textChangeRange, 0);
});
it("Moving accessors from object literal to class", () => {
const source = "var v = { public get A() { } public get B() { } public get C() { } }";
const oldText = ScriptSnapshot.fromString(source);
const newTextAndChange = withChange(oldText, 0, "var v =".length, "class C");
compareTrees(oldText, newTextAndChange.text, newTextAndChange.textChangeRange, 4);
});
it("Moving accessors from object literal to class in strict mode", () => {
const source = "\"use strict\"; var v = { public get A() { } public get B() { } public get C() { } }";
const oldText = ScriptSnapshot.fromString(source);
const newTextAndChange = withChange(oldText, 14, "var v =".length, "class C");
compareTrees(oldText, newTextAndChange.text, newTextAndChange.textChangeRange, 4);
});
it("Reuse transformFlags of subtree during bind", () => {
const source = `class Greeter { constructor(element: HTMLElement) { } }`;
const oldText = ScriptSnapshot.fromString(source);
const newTextAndChange = withChange(oldText, 15, 0, "\n");
const { oldTree, incrementalNewTree } = compareTrees(oldText, newTextAndChange.text, newTextAndChange.textChangeRange, -1);
bindSourceFile(oldTree, {});
bindSourceFile(incrementalNewTree, {});
assert.equal(oldTree.transformFlags, incrementalNewTree.transformFlags);
});
// Simulated typing tests.
it("Type extends clause 1", () => {
const source = "interface IFoo<T> { }\r\ninterface Array<T> extends IFoo<T> { }";
const index = source.indexOf("extends");
deleteCode(source, index, "extends IFoo<T>");
});
it("Type after incomplete enum 1", () => {
const source = "function foo() {\r\n" +
" function getOccurrencesAtPosition() {\r\n" +
" switch (node) {\r\n" +
" enum \r\n" +
" }\r\n" +
" \r\n" +
" return undefined;\r\n" +
" \r\n" +
" function keywordToReferenceEntry() {\r\n" +
" }\r\n" +
" }\r\n" +
" \r\n" +
" return {\r\n" +
" getEmitOutput: (fileName): Bar => null,\r\n" +
" };\r\n" +
" }";
const index = source.indexOf("enum ") + "enum ".length;
insertCode(source, index, "Fo");
});
});
}