@@ -228,7 +228,8 @@ export function foo(sn: string | number) {}
228
228
` ,
229
229
errors : [
230
230
{
231
- message : "All 'foo' signatures should be adjacent." ,
231
+ messageId : "adjacentSignature" ,
232
+ data : { name : "foo" } ,
232
233
line : 6 ,
233
234
column : 1 ,
234
235
} ,
@@ -244,7 +245,8 @@ export function foo(sn: string | number) {}
244
245
` ,
245
246
errors : [
246
247
{
247
- message : "All 'foo' signatures should be adjacent." ,
248
+ messageId : "adjacentSignature" ,
249
+ data : { name : "foo" } ,
248
250
line : 6 ,
249
251
column : 1 ,
250
252
} ,
@@ -260,7 +262,8 @@ function foo(sn: string | number) {}
260
262
` ,
261
263
errors : [
262
264
{
263
- message : "All 'foo' signatures should be adjacent." ,
265
+ messageId : "adjacentSignature" ,
266
+ data : { name : "foo" } ,
264
267
line : 6 ,
265
268
column : 1 ,
266
269
} ,
@@ -276,7 +279,8 @@ function foo(sn: string | number) {}
276
279
` ,
277
280
errors : [
278
281
{
279
- message : "All 'foo' signatures should be adjacent." ,
282
+ messageId : "adjacentSignature" ,
283
+ data : { name : "foo" } ,
280
284
line : 6 ,
281
285
column : 1 ,
282
286
} ,
@@ -292,7 +296,8 @@ function foo(sn: string | number) {}
292
296
` ,
293
297
errors : [
294
298
{
295
- message : "All 'foo' signatures should be adjacent." ,
299
+ messageId : "adjacentSignature" ,
300
+ data : { name : "foo" } ,
296
301
line : 6 ,
297
302
column : 1 ,
298
303
} ,
@@ -307,7 +312,8 @@ function foo(sn: string | number) {}
307
312
` ,
308
313
errors : [
309
314
{
310
- message : "All 'foo' signatures should be adjacent." ,
315
+ messageId : "adjacentSignature" ,
316
+ data : { name : "foo" } ,
311
317
line : 5 ,
312
318
column : 1 ,
313
319
} ,
@@ -327,7 +333,8 @@ class Bar {
327
333
` ,
328
334
errors : [
329
335
{
330
- message : "All 'foo' signatures should be adjacent." ,
336
+ messageId : "adjacentSignature" ,
337
+ data : { name : "foo" } ,
331
338
line : 9 ,
332
339
column : 5 ,
333
340
} ,
@@ -343,7 +350,8 @@ declare function foo(sn: string | number);
343
350
` ,
344
351
errors : [
345
352
{
346
- message : "All 'foo' signatures should be adjacent." ,
353
+ messageId : "adjacentSignature" ,
354
+ data : { name : "foo" } ,
347
355
line : 6 ,
348
356
column : 1 ,
349
357
} ,
@@ -359,7 +367,8 @@ declare function foo(sn: string | number);
359
367
` ,
360
368
errors : [
361
369
{
362
- message : "All 'foo' signatures should be adjacent." ,
370
+ messageId : "adjacentSignature" ,
371
+ data : { name : "foo" } ,
363
372
line : 6 ,
364
373
column : 1 ,
365
374
} ,
@@ -377,7 +386,8 @@ declare module "Foo" {
377
386
` ,
378
387
errors : [
379
388
{
380
- message : "All 'foo' signatures should be adjacent." ,
389
+ messageId : "adjacentSignature" ,
390
+ data : { name : "foo" } ,
381
391
line : 7 ,
382
392
column : 5 ,
383
393
} ,
@@ -397,7 +407,8 @@ declare module "Foo" {
397
407
` ,
398
408
errors : [
399
409
{
400
- message : "All 'baz' signatures should be adjacent." ,
410
+ messageId : "adjacentSignature" ,
411
+ data : { name : "baz" } ,
401
412
line : 8 ,
402
413
column : 5 ,
403
414
} ,
@@ -415,7 +426,8 @@ declare namespace Foo {
415
426
` ,
416
427
errors : [
417
428
{
418
- message : "All 'foo' signatures should be adjacent." ,
429
+ messageId : "adjacentSignature" ,
430
+ data : { name : "foo" } ,
419
431
line : 7 ,
420
432
column : 5 ,
421
433
} ,
@@ -435,7 +447,8 @@ declare namespace Foo {
435
447
` ,
436
448
errors : [
437
449
{
438
- message : "All 'baz' signatures should be adjacent." ,
450
+ messageId : "adjacentSignature" ,
451
+ data : { name : "baz" } ,
439
452
line : 8 ,
440
453
column : 5 ,
441
454
} ,
@@ -453,7 +466,8 @@ type Foo = {
453
466
` ,
454
467
errors : [
455
468
{
456
- message : "All 'foo' signatures should be adjacent." ,
469
+ messageId : "adjacentSignature" ,
470
+ data : { name : "foo" } ,
457
471
line : 7 ,
458
472
column : 5 ,
459
473
} ,
@@ -471,7 +485,8 @@ type Foo = {
471
485
` ,
472
486
errors : [
473
487
{
474
- message : "All 'foo' signatures should be adjacent." ,
488
+ messageId : "adjacentSignature" ,
489
+ data : { name : "foo" } ,
475
490
line : 7 ,
476
491
column : 5 ,
477
492
} ,
@@ -490,7 +505,8 @@ type Foo = {
490
505
` ,
491
506
errors : [
492
507
{
493
- message : "All 'foo' signatures should be adjacent." ,
508
+ messageId : "adjacentSignature" ,
509
+ data : { name : "foo" } ,
494
510
line : 5 ,
495
511
column : 5 ,
496
512
} ,
@@ -509,7 +525,8 @@ interface Foo {
509
525
` ,
510
526
errors : [
511
527
{
512
- message : "All 'call' signatures should be adjacent." ,
528
+ messageId : "adjacentSignature" ,
529
+ data : { name : "call" } ,
513
530
line : 5 ,
514
531
column : 5 ,
515
532
} ,
@@ -527,7 +544,8 @@ interface Foo {
527
544
` ,
528
545
errors : [
529
546
{
530
- message : "All 'foo' signatures should be adjacent." ,
547
+ messageId : "adjacentSignature" ,
548
+ data : { name : "foo" } ,
531
549
line : 7 ,
532
550
column : 5 ,
533
551
} ,
@@ -545,7 +563,8 @@ interface Foo {
545
563
` ,
546
564
errors : [
547
565
{
548
- message : "All 'foo' signatures should be adjacent." ,
566
+ messageId : "adjacentSignature" ,
567
+ data : { name : "foo" } ,
549
568
line : 7 ,
550
569
column : 5 ,
551
570
} ,
@@ -563,7 +582,8 @@ interface Foo {
563
582
` ,
564
583
errors : [
565
584
{
566
- message : "All 'foo' signatures should be adjacent." ,
585
+ messageId : "adjacentSignature" ,
586
+ data : { name : "foo" } ,
567
587
line : 7 ,
568
588
column : 5 ,
569
589
} ,
@@ -582,7 +602,8 @@ interface Foo {
582
602
` ,
583
603
errors : [
584
604
{
585
- message : "All 'foo' signatures should be adjacent." ,
605
+ messageId : "adjacentSignature" ,
606
+ data : { name : "foo" } ,
586
607
line : 5 ,
587
608
column : 5 ,
588
609
} ,
@@ -602,7 +623,8 @@ interface Foo {
602
623
` ,
603
624
errors : [
604
625
{
605
- message : "All 'baz' signatures should be adjacent." ,
626
+ messageId : "adjacentSignature" ,
627
+ data : { name : "baz" } ,
606
628
line : 8 ,
607
629
column : 9 ,
608
630
} ,
@@ -620,7 +642,8 @@ interface Foo {
620
642
` ,
621
643
errors : [
622
644
{
623
- message : "All 'new' signatures should be adjacent." ,
645
+ messageId : "adjacentSignature" ,
646
+ data : { name : "new" } ,
624
647
line : 7 ,
625
648
column : 5 ,
626
649
} ,
@@ -638,12 +661,14 @@ interface Foo {
638
661
` ,
639
662
errors : [
640
663
{
641
- message : "All 'new' signatures should be adjacent." ,
664
+ messageId : "adjacentSignature" ,
665
+ data : { name : "new" } ,
642
666
line : 5 ,
643
667
column : 5 ,
644
668
} ,
645
669
{
646
- message : "All 'new' signatures should be adjacent." ,
670
+ messageId : "adjacentSignature" ,
671
+ data : { name : "new" } ,
647
672
line : 7 ,
648
673
column : 5 ,
649
674
} ,
@@ -661,7 +686,8 @@ class Foo {
661
686
` ,
662
687
errors : [
663
688
{
664
- message : "All 'constructor' signatures should be adjacent." ,
689
+ messageId : "adjacentSignature" ,
690
+ data : { name : "constructor" } ,
665
691
line : 7 ,
666
692
column : 5 ,
667
693
} ,
@@ -679,7 +705,8 @@ class Foo {
679
705
` ,
680
706
errors : [
681
707
{
682
- message : "All 'foo' signatures should be adjacent." ,
708
+ messageId : "adjacentSignature" ,
709
+ data : { name : "foo" } ,
683
710
line : 7 ,
684
711
column : 5 ,
685
712
} ,
@@ -697,7 +724,8 @@ class Foo {
697
724
` ,
698
725
errors : [
699
726
{
700
- message : "All 'foo' signatures should be adjacent." ,
727
+ messageId : "adjacentSignature" ,
728
+ data : { name : "foo" } ,
701
729
line : 7 ,
702
730
column : 5 ,
703
731
} ,
@@ -715,7 +743,8 @@ class Foo {
715
743
` ,
716
744
errors : [
717
745
{
718
- message : "All 'foo' signatures should be adjacent." ,
746
+ messageId : "adjacentSignature" ,
747
+ data : { name : "foo" } ,
719
748
line : 7 ,
720
749
column : 5 ,
721
750
} ,
@@ -734,7 +763,8 @@ class Foo {
734
763
` ,
735
764
errors : [
736
765
{
737
- message : "All 'constructor' signatures should be adjacent." ,
766
+ messageId : "adjacentSignature" ,
767
+ data : { name : "constructor" } ,
738
768
line : 5 ,
739
769
column : 5 ,
740
770
} ,
@@ -753,7 +783,8 @@ class Foo {
753
783
` ,
754
784
errors : [
755
785
{
756
- message : "All 'foo' signatures should be adjacent." ,
786
+ messageId : "adjacentSignature" ,
787
+ data : { name : "foo" } ,
757
788
line : 5 ,
758
789
column : 5 ,
759
790
} ,
0 commit comments