-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathfiles.txt
3752 lines (3752 loc) · 384 KB
/
files.txt
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
examples/FSharp.Data/src/AssemblyInfo.Http.fs
examples/FSharp.Data/src/AssemblyInfo.WorldBank.Core.fs
examples/FSharp.Data/src/SetupTesting.fsx
examples/FSharp.Data/src/FSharp.Data.Json.Core/JsonConversions.fs
examples/FSharp.Data/docs/tutorials/JsonAnonymizer.fsx
examples/Giraffe/src/Giraffe/HttpStatusCodeHandlers.fs
examples/FSharp.Data/src/FSharp.Data/Runtime.fs
examples/FSharp.Data/src/FSharp.Data.Runtime.Utilities/StructuralTypes.fs
examples/FSharp.Data/src/FSharp.Data.Json.Core/JsonDocument.fs
examples/playground/test.fsx
examples/FSharp.Data/src/FSharp.Data.WorldBank.Core/InternalsVisibleTo.fs
examples/FSharp.Compiler/src/fsi/console.fs
examples/Giraffe/src/Giraffe/EndpointRouting.fs
examples/FSharp.Data/src/FSharp.Data.Json.Core/InternalsVisibleTo.fs
examples/Giraffe/src/Giraffe/Xml.fs
examples/FSharp.Data/docs/tutorials/JsonToXml.fsx
examples/Giraffe/samples/EndpointRoutingApp/Program.fs
examples/FSharp.Data/docs/_template.fsx
examples/FSharp.Data/src/FSharp.Data.Json.Core/JsonInference.fs
examples/Giraffe/src/Giraffe/Auth.fs
examples/FSharp.Data/src/FSharp.Data.Runtime.Utilities/StructuralInference.fs
examples/Giraffe/src/Giraffe/Routing.fs
examples/Giraffe/src/Giraffe/DateTimeExtensions.fs
examples/FSharp.Data/src/FSharp.Data.Runtime.Utilities/PublicApi.fs
examples/Giraffe/samples/ResponseCachingApp/test-run.fsx
examples/FSharp.Data/src/AssemblyInfo.fs
examples/Giraffe/src/Giraffe/ComputationExpressions.fs
examples/FSharp.Data/src/FSharp.Data.Runtime.Utilities/IO.fs
examples/FSharp.Data/docs/library/JsonValue.fsx
examples/Giraffe/src/Giraffe/Negotiation.fs
examples/Giraffe/samples/ResponseCachingApp/Program.fs
examples/Giraffe/src/Giraffe/ResponseCaching.fs
examples/FSharp.Data/src/AssemblyInfo.DesignTime.fs
examples/FSharp.Data/src/FSharp.Data.Runtime.Utilities/InternalsVisibleTo.fs
examples/FSharp.Data/docs/library/HtmlCssSelectors.fsx
examples/FSharp.Data/docs/library/WorldBank.fsx
examples/FSharp.Data/src/AssemblyInfo.Runtime.Utilities.fs
examples/FSharp.Data/src/FSharp.Data.Xml.Core/XmlExtensions.fs
examples/Giraffe/src/Giraffe/ShortGuid.fs
examples/Giraffe/src/Giraffe/Json.fs
examples/FSharp.Data/src/Test.fsx
examples/FSharp.Data/src/FSharp.Data.Runtime.Utilities/TextConversions.fs
examples/FSharp.Compiler/src/Compiler/Facilities/SimulatedMSBuildReferenceResolver.fs
examples/FSharp.Data/src/AssemblyInfo.Xml.Core.fs
examples/FSharp.Data/docs/library/HtmlProvider.fsx
examples/FSharp.Data/src/FSharp.Data.Xml.Core/XmlInference.fs
examples/Giraffe/src/Giraffe/Preconditional.fs
examples/FSharp.Data/src/FSharp.Data.Json.Core/JsonValue.fs
examples/FSharp.Data/src/FSharp.Data.Runtime.Utilities/Caching.fs
examples/Giraffe/src/Giraffe/Helpers.fs
examples/FSharp.Data/docs/library/CsvProvider.fsx
examples/Giraffe/tests/Giraffe.Tests/ModelBindingTests.fs
examples/FSharp.Compiler/src/Compiler/Facilities/DiagnosticOptions.fs
examples/FSharp.Data/src/FSharp.Data.Html.Core/HtmlActivePatterns.fs
examples/FSharp.Data/docs/library/CsvFile.fsx
examples/FSharp.Data/tests/FSharp.Data.Core.Tests/HtmlOperations.fs
examples/FSharp.Data/docs/library/HtmlParser.fsx
examples/FSharp.Data/tests/FSharp.Data.Core.Tests/NameUtils.fs
examples/FSharp.Data/src/FSharp.Data.Runtime.Utilities/NameUtils.fs
examples/FSharp.Data/src/FSharp.Data.Xml.Core/XmlRuntime.fs
examples/FSharp.Compiler/src/Compiler/Facilities/TextLayoutRender.fs
examples/FSharp.Data/src/FSharp.Data.Xml.Core/InternalsVisibleTo.fs
examples/FSharp.Data/tests/FSharp.Data.DesignTime.Tests/InferenceTests.fs
examples/FSharp.Data/src/AssemblyInfo.Html.Core.fs
examples/FSharp.Data/src/FSharp.Data.Html.Core/HtmlOperations.fs
examples/FSharp.Data/src/FSharp.Data.Json.Core/JsonExtensions.fs
examples/Giraffe/tests/Giraffe.Tests/RoutingTests.fs
examples/FSharp.Data/src/AssemblyInfo.Csv.Core.fs
examples/FSharp.Data/tests/FSharp.Data.DesignTime.Tests/Program.fs
examples/FSharp.Data/tests/FSharp.Data.Core.Tests/HtmlParser.fs
examples/FSharp.Data/src/FSharp.Data.Xml.Core/XsdInference.fs
examples/FSharp.Data/src/FSharp.Data.Html.Core/HtmlCssSelectorExtensions.fs
examples/FSharp.Data/src/FSharp.Data.Runtime.Utilities/Pluralizer.fs
examples/FSharp.Data/src/FSharp.Data.Html.Core/HtmlCssSelectors.fs
examples/FSharp.Data/tests/FSharp.Data.Core.Tests/CsvReader.fs
examples/FSharp.Data/src/FSharp.Data.Html.Core/HtmlInference.fs
examples/FSharp.Data/src/FSharp.Data.Html.Core/HtmlParser.fs
examples/FSharp.Data/src/FSharp.Data.Html.Core/InternalsVisibleTo.fs
examples/FSharp.Data/tests/FSharp.Data.Core.Tests/JsonConversions.fs
examples/FSharp.Data/src/FSharp.Data.Html.Core/HtmlCharRefs.fs
examples/FSharp.Data/tests/FSharp.Data.Core.Tests/HtmlCssSelectors.fs
examples/FSharp.Data/src/FSharp.Data.Html.Core/HtmlNode.fs
examples/FSharp.Compiler/src/Compiler/Facilities/prim-lexing.fs
examples/FSharp.Data/src/AssemblyInfo.Json.Core.fs
examples/FSharp.Data/tests/FSharp.Data.DesignTime.Tests/SignatureTests.fs
examples/Giraffe/tests/Giraffe.Tests/AuthTests.fs
examples/FSharp.Data/tests/FSharp.Data.Core.Tests/JsonParserProperties.fs
examples/FSharp.Data/src/FSharp.Data.Html.Core/HtmlRuntime.fs
examples/FSharp.Data/src/FSharp.Data.DesignTime/CommonProviderImplementation/QuotationBuilder.fs
examples/FSharp.Compiler/src/Compiler/Facilities/ReferenceResolver.fs
examples/FSharp.Compiler/src/Compiler/Interactive/ControlledExecution.fs
examples/FSharp.Data/tests/FSharp.Data.Core.Tests/Program.fs
examples/FSharp.Data/src/FSharp.Data.Csv.Core/CsvInference.fs
examples/FSharp.Data/tests/FSharp.Data.Core.Tests/TextConversions.fs
examples/FSharp.Data/tests/FSharp.Data.DesignTime.Tests/TypeProviderInstantiation.fs
examples/Giraffe/tests/Giraffe.Tests/HttpContextExtensionsTests.fs
examples/FSharp.Compiler/src/Compiler/Facilities/BuildGraph.fs
examples/FSharp.Data/src/FSharp.Data.DesignTime/CommonProviderImplementation/ConversionsGenerator.fs
examples/FSharp.Data/src/FSharp.Data.Csv.Core/CsvRuntime.fs
examples/FSharp.Compiler/src/Compiler/AbstractIL/ilsupp.fs
examples/FSharp.Data/tests/FSharp.Data.Core.Tests/HtmlCharRefs.fs
examples/FSharp.Data/src/FSharp.Data.DesignTime/Xml/XmlGenerator.fs
examples/FSharp.Compiler/src/Compiler/Facilities/Hashing.fs
examples/FSharp.Data/src/FSharp.Data.Csv.Core/CsvFile.fs
examples/FSharp.Data/src/FSharp.Data.DesignTime/WorldBank/WorldBankProvider.fs
examples/FSharp.Data/src/FSharp.Data.Csv.Core/InternalsVisibleTo.fs
examples/FSharp.Compiler/src/Compiler/Service/ServiceParseTreeWalk.fs
examples/FSharp.Data/src/FSharp.Data.DesignTime/CommonProviderImplementation/AssemblyResolver.fs
examples/FSharp.Compiler/src/FSharp.DependencyManager.Nuget/FSharp.DependencyManager.ProjectFile.fs
examples/FSharp.Data/src/FSharp.Data.DesignTime/Xml/XmlProvider.fs
examples/FSharp.Data/src/FSharp.Data.Csv.Core/CsvExtensions.fs
examples/FSharp.Data/src/FSharp.Data.DesignTime/Csv/CsvProvider.fs
examples/Giraffe/tests/Giraffe.Tests/HttpHandlerTests.fs
examples/FSharp.Data/src/FSharp.Data.Http/InternalsVisibleTo.fs
examples/FSharp.Data/src/FSharp.Data.DesignTime/Html/HtmlProvider.fs
examples/Giraffe/tests/Giraffe.Tests/Helpers.fs
examples/FSharp.Data/src/FSharp.Data.DesignTime/Csv/CsvGenerator.fs
examples/Giraffe/tests/Giraffe.Tests/DateTimeTests.fs
examples/FSharp.Compiler/src/Compiler/Interactive/fsihelp.fs
examples/FSharp.Data/src/FSharp.Data.DesignTime/Html/HtmlGenerator.fs
examples/FSharp.Compiler/vsintegration/src/FSharp.VS.FSI/fsiPackageHooks.fs
examples/FSharp.Compiler/src/FSharp.Core/option.fs
examples/FSharp.Compiler/src/Compiler/Interactive/FSharpInteractiveServer.fs
examples/Giraffe/tests/Giraffe.Tests/FormatExpressionTests.fs
examples/FSharp.Data/src/FSharp.Data.DesignTime/Json/JsonConversionsGenerator.fs
examples/FSharp.Data/tests/FSharp.Data.Tests/Program.fs
examples/Giraffe/tests/Giraffe.Tests/GuidAndIdTests.fs
examples/FSharp.Compiler/vsintegration/src/FSharp.VS.FSI/FSharp.VS.FSI.Attributes.fs
examples/FSharp.Data/src/FSharp.Data.DesignTime/Json/JsonProvider.fs
examples/Giraffe/tests/Giraffe.Tests/EndpointRoutingTests.fs
examples/FSharp.Data/tests/FSharp.Data.Tests/HtmlProviderList.fs
examples/FSharp.Compiler/src/Compiler/Service/ServiceXmlDocParser.fs
examples/FSharp.Data/src/FSharp.Data.DesignTime/Json/JsonGenerator.fs
examples/FSharp.Compiler/vsintegration/src/FSharp.VS.FSI/fsiTextBufferStream.fs
examples/FSharp.Compiler/src/Compiler/AbstractIL/ilx.fs
examples/FSharp.Data/tests/FSharp.Data.Tests/HtmlProvider.fs
examples/FSharp.Data/tests/FSharp.Data.Reference.Tests/Program.fs
examples/FSharp.Compiler/vsintegration/src/FSharp.VS.FSI/sessions.fs
examples/FSharp.Compiler/vsintegration/tests/FSharp.Editor.Tests/Hints/OverallHintExperienceTests.fs
examples/FSharp.Compiler/src/FSharp.Core/Nullable.fs
examples/FSharp.Compiler/vsintegration/tests/FSharp.Editor.Tests/Hints/InlineParameterNameHintTests.fs
examples/FSharp.Compiler/src/Compiler/TypedTree/CompilerGlobalState.fs
examples/FSharp.Compiler/vsintegration/src/FSharp.VS.FSI/fsiLanguageService.fs
examples/FSharp.Compiler/vsintegration/tests/FSharp.Editor.Tests/Hints/OptionParserTests.fs
examples/FSharp.Compiler/vsintegration/tests/FSharp.Editor.Tests/Hints/HintTestFramework.fs
examples/FSharp.Data/tests/FSharp.Data.Reference.Tests/JsonProvider.fs
examples/FSharp.Compiler/vsintegration/src/FSharp.VS.FSI/AssemblyInfo.fs
examples/FSharp.Compiler/vsintegration/tests/FSharp.Editor.Tests/Hints/InlineReturnTypeHintTests.fs
examples/FSharp.Compiler/docs/fcs-samples/UntypedTree/Program.fs
examples/FSharp.Compiler/vsintegration/tests/FSharp.Editor.Tests/Hints/InlineTypeHintTests.fs
examples/FSharp.Compiler/src/FSharp.Core/eventmodule.fs
examples/FSharp.Compiler/src/Compiler/Service/SemanticClassificationKey.fs
examples/FSharp.Compiler/vsintegration/src/FSharp.LanguageService/XmlDocumentation.fs
examples/FSharp.Compiler/docs/fcs/react.fsx
examples/FSharp.Compiler/vsintegration/tests/FSharp.Editor.Tests/BraceMatchingServiceTests.fs
examples/FSharp.Compiler/vsintegration/tests/FSharp.Editor.Tests/Helpers/ProjectOptionsBuilder.fs
examples/FSharp.Compiler/vsintegration/tests/FSharp.Editor.Tests/Helpers/RoslynHelpers.fs
examples/FSharp.Compiler/docs/fcs/tokenizer.fsx
examples/FSharp.Compiler/vsintegration/tests/FSharp.Editor.Tests/Helpers/AssemblyResolver.fs
examples/FSharp.Compiler/vsintegration/src/FSharp.VS.FSI/fsiBasis.fs
examples/FSharp.Compiler/src/FSharp.Core/seqcore.fs
examples/FSharp.Compiler/vsintegration/src/FSharp.LanguageService/ProjectSitesAndFiles.fs
examples/FSharp.Compiler/docs/fcs-samples/FsiExe/console.fs
examples/FSharp.Compiler/src/Compiler/AbstractIL/ilmorph.fs
examples/FSharp.Compiler/src/Compiler/TypedTree/TypedTreeBasics.fs
examples/FSharp.Compiler/vsintegration/src/FSharp.LanguageService/LanguageServiceConstants.fs
examples/FSharp.Compiler/src/Compiler/AbstractIL/ilascii.fs
examples/FSharp.Compiler/docs/fcs/caches.fsx
examples/FSharp.Compiler/buildtools/fslex/fslexdriver.fs
examples/FSharp.Compiler/docs/fcs-samples/FsiExe/fsiserver.fs
examples/FSharp.Compiler/vsintegration/tests/FSharp.Editor.Tests/BreakpointResolutionServiceTests.fs
examples/FSharp.Compiler/vsintegration/tests/FSharp.Editor.Tests/CodeFixes/ChangeToUpcastTests.fs
examples/FSharp.Compiler/src/Compiler/TypedTree/QuotationPickler.fs
examples/FSharp.Compiler/src/FSharp.Core/nativeptr.fs
examples/FSharp.Compiler/vsintegration/tests/FSharp.Editor.Tests/CodeFixes/AddMissingFunKeywordTests.fs
examples/FSharp.Compiler/src/FSharp.Core/list.fs
examples/FSharp.Compiler/vsintegration/tests/FSharp.Editor.Tests/CodeFixes/ConvertToSingleEqualsEqualityExpressionTests.fs
examples/FSharp.Compiler/src/Compiler/Service/ItemKey.fs
examples/FSharp.Compiler/vsintegration/tests/FSharp.Editor.Tests/CodeFixes/RemoveSuperfluousCaptureForUnionCaseWithNoDataTests.fs
examples/FSharp.Compiler/vsintegration/src/FSharp.LanguageService/Intellisense.fs
examples/FSharp.Compiler/vsintegration/tests/FSharp.Editor.Tests/CodeFixes/WrapExpressionInParenthesesTests.fs
examples/FSharp.Compiler/docs/fcs-samples/Tokenizer/Program.fs
examples/FSharp.Compiler/src/Compiler/Service/ServiceErrorResolutionHints.fs
examples/FSharp.Compiler/docs/fcs/corelib.fsx
examples/FSharp.Compiler/vsintegration/tests/FSharp.Editor.Tests/CodeFixes/AddNewKeywordToDisposableConstructorInvocationTests.fs
examples/FSharp.Compiler/src/FSharp.Core/tasks.fs
examples/FSharp.Compiler/vsintegration/tests/FSharp.Editor.Tests/CodeFixes/RenameParamToMatchSignatureTests.fs
examples/FSharp.Compiler/vsintegration/tests/FSharp.Editor.Tests/CodeFixes/ChangeRefCellDerefToNotExpressionTests.fs
examples/FSharp.Compiler/buildtools/fsyacc/Lexing.fs
examples/FSharp.Compiler/vsintegration/tests/FSharp.Editor.Tests/CodeFixes/ChangeEqualsInFieldTypeToColonTests.fs
examples/FSharp.Compiler/docs/fcs-samples/InteractiveService/Program.fs
examples/FSharp.Compiler/vsintegration/src/FSharp.LanguageService/FSharpSource.fs
examples/FSharp.Compiler/vsintegration/tests/FSharp.Editor.Tests/CodeFixes/RemoveReturnOrYieldTests.fs
examples/FSharp.Compiler/src/FSharp.Core/event.fs
examples/FSharp.Compiler/src/Compiler/AbstractIL/ilsign.fs
examples/FSharp.Compiler/vsintegration/tests/FSharp.Editor.Tests/CodeFixes/ImplementInterfaceTests.fs
examples/FSharp.Compiler/src/Compiler/Service/SynExpr.fs
examples/FSharp.Compiler/vsintegration/tests/FSharp.Editor.Tests/CodeFixes/UseMutationWhenValueIsMutableTests.fs
examples/FSharp.Compiler/vsintegration/tests/FSharp.Editor.Tests/CodeFixes/ConvertToAnonymousRecordTests.fs
examples/FSharp.Compiler/vsintegration/tests/FSharp.Editor.Tests/CodeFixes/ConvertCSharpLambdaToFSharpLambdaTests.fs
examples/FSharp.Compiler/vsintegration/tests/FSharp.Editor.Tests/CodeFixes/ConvertToNotEqualsEqualityExpressionTests.fs
examples/FSharp.Compiler/vsintegration/tests/FSharp.Editor.Tests/CodeFixes/AddOpenOnTopOffTests.fs
examples/FSharp.Compiler/vsintegration/src/FSharp.LanguageService/Vs.fs
examples/FSharp.Compiler/vsintegration/tests/FSharp.Editor.Tests/CodeFixes/FixIndexerAccessLegacyTests.fs
examples/FSharp.Compiler/src/FSharp.Core/seq.fs
examples/FSharp.Compiler/vsintegration/tests/FSharp.Editor.Tests/CodeFixes/FixIndexerAccessTests.fs
examples/FSharp.Compiler/docs/release-notes/FSharp.Compiler.Service.fsx
examples/FSharp.Compiler/vsintegration/tests/FSharp.Editor.Tests/CodeFixes/AddTypeAnnotationToObjectOfIndeterminateTypeTests.fs
examples/FSharp.Compiler/buildtools/fslex/Lexing.fs
examples/FSharp.Compiler/vsintegration/tests/FSharp.Editor.Tests/CodeFixes/PrefixUnusedValueTests.fs
examples/FSharp.Compiler/src/FSharp.Core/quotations.fs
examples/FSharp.Compiler/vsintegration/tests/FSharp.Editor.Tests/CodeFixes/AddMissingRecToMutuallyRecFunctionsTests.fs
examples/FSharp.Compiler/vsintegration/src/FSharp.LanguageService/GotoDefinition.fs
examples/FSharp.Compiler/vsintegration/tests/FSharp.Editor.Tests/CodeFixes/RemoveUnusedBindingTests.fs
examples/FSharp.Compiler/vsintegration/tests/FSharp.Editor.Tests/CodeFixes/SimplifyNameTests.fs
examples/FSharp.Compiler/docs/release-notes/Language.fsx
examples/FSharp.Compiler/vsintegration/tests/FSharp.Editor.Tests/CodeFixes/AddInstanceMemberParameterTests.fs
examples/FSharp.Compiler/src/FSharp.Core/QueryExtensions.fs
examples/FSharp.Compiler/vsintegration/tests/FSharp.Editor.Tests/CodeFixes/AddMissingEqualsToTypeDefinitionTests.fs
examples/FSharp.Compiler/src/Compiler/Service/ServiceConstants.fs
examples/FSharp.Compiler/vsintegration/tests/FSharp.Editor.Tests/CodeFixes/DiscardUnusedValueTests.fs
examples/FSharp.Compiler/vsintegration/src/FSharp.LanguageService/SourceFile.fs
examples/FSharp.Compiler/vsintegration/tests/FSharp.Editor.Tests/CodeFixes/RemoveUnusedOpensTests.fs
examples/FSharp.Compiler/src/Compiler/Service/ServiceCompilerDiagnostics.fs
examples/FSharp.Compiler/docs/release-notes/.aux/Common.fsx
examples/FSharp.Compiler/vsintegration/tests/FSharp.Editor.Tests/CodeFixes/CodeFixTestFramework.fs
examples/FSharp.Compiler/buildtools/fslex/fslexast.fs
examples/FSharp.Compiler/vsintegration/tests/FSharp.Editor.Tests/CodeFixes/MakeDeclarationMutableTests.fs
examples/FSharp.Compiler/src/FSharp.Core/array3.fs
examples/FSharp.Compiler/vsintegration/tests/FSharp.Editor.Tests/CodeFixes/ChangePrefixNegationToInfixSubtractionTests.fs
examples/FSharp.Compiler/src/Compiler/AbstractIL/ilprint.fs
examples/FSharp.Compiler/docs/release-notes/FSharp.Core.fsx
examples/FSharp.Compiler/buildtools/fsyacc/fsyacclex.fs
examples/FSharp.Compiler/vsintegration/tests/FSharp.Editor.Tests/CodeFixes/AddOpenOnTopOnTests.fs
examples/FSharp.Compiler/vsintegration/tests/FSharp.Editor.Tests/DocumentHighlightsServiceTests.fs
examples/FSharp.Compiler/vsintegration/tests/FSharp.Editor.Tests/CodeFixes/ReplaceWithSuggestionTests.fs
examples/FSharp.Compiler/buildtools/fslex/Arg.fs
examples/FSharp.Compiler/vsintegration/src/FSharp.LanguageService/Colorize.fs
examples/FSharp.Compiler/vsintegration/tests/FSharp.Editor.Tests/SignatureHelpProviderTests.fs
examples/FSharp.Compiler/src/FSharp.Core/Linq.fs
examples/FSharp.Compiler/vsintegration/tests/FSharp.Editor.Tests/CodeFixes/UseTripleQuotedInterpolationTests.fs
examples/FSharp.Compiler/vsintegration/tests/FSharp.Editor.Tests/SyntacticColorizationServiceTests.fs
examples/FSharp.Compiler/src/Compiler/Service/ServiceNavigation.fs
examples/FSharp.Compiler/src/Compiler/TypedTree/TcGlobals.fs
examples/FSharp.Compiler/vsintegration/tests/FSharp.Editor.Tests/FsxCompletionProviderTests.fs
examples/FSharp.Compiler/vsintegration/tests/FSharp.Editor.Tests/CodeFixes/MakeOuterBindingRecursiveTests.fs
examples/FSharp.Compiler/src/FSharp.Core/resumable.fs
examples/FSharp.Compiler/buildtools/fsyacc/Arg.fs
examples/FSharp.Compiler/vsintegration/tests/FSharp.Editor.Tests/NavigateToSearchServiceTests.fs
examples/FSharp.Compiler/tests/walkthroughs/DebugStepping/TheBigFileOfDebugStepping.fsx
examples/FSharp.Compiler/tests/benchmarks/CompiledCodeBenchmarks/MicroPerf/Equality/Tuples.fs
examples/FSharp.Compiler/vsintegration/tests/FSharp.Editor.Tests/QuickInfoTests.fs
examples/FSharp.Compiler/vsintegration/tests/FSharp.Editor.Tests/CodeFixes/ProposeUppercaseLabelTests.fs
examples/FSharp.Compiler/vsintegration/tests/FSharp.Editor.Tests/RoslynSourceTextTests.fs
examples/FSharp.Compiler/src/Compiler/AbstractIL/ilnativeres.fs
examples/FSharp.Compiler/vsintegration/tests/FSharp.Editor.Tests/GoToDefinitionServiceTests.fs
examples/FSharp.Compiler/tests/benchmarks/CompiledCodeBenchmarks/MicroPerf/Equality/OptionsAndCo.fs
examples/FSharp.Compiler/src/Compiler/Service/QuickParse.fs
examples/FSharp.Compiler/vsintegration/tests/FSharp.Editor.Tests/HelpContextServiceTests.fs
examples/FSharp.Compiler/tests/FSharp.Compiler.Private.Scripting.UnitTests/CompletionTests.fs
examples/FSharp.Compiler/vsintegration/tests/FSharp.Editor.Tests/CodeFixes/RemoveUnnecessaryParenthesesTests.fs
examples/FSharp.Compiler/buildtools/AssemblyCheck/AssemblyCheck.fs
examples/FSharp.Compiler/vsintegration/tests/FSharp.Editor.Tests/CodeFixes/ConvertCSharpUsingToFSharpOpenTests.fs
examples/FSharp.Compiler/tests/benchmarks/CompiledCodeBenchmarks/MicroPerf/Equality/Floats.fs
examples/FSharp.Compiler/src/Compiler/TypedTree/UpdatePrettyTyparNames.fs
examples/FSharp.Compiler/tests/benchmarks/CompiledCodeBenchmarks/MicroPerf/Equality/BasicTypes.fs
examples/FSharp.Compiler/src/FSharp.Core/printf.fs
examples/FSharp.Compiler/vsintegration/tests/FSharp.Editor.Tests/FindReferencesTests.fs
examples/FSharp.Compiler/vsintegration/tests/FSharp.Editor.Tests/LanguageDebugInfoServiceTests.fs
examples/FSharp.Compiler/tests/benchmarks/CompiledCodeBenchmarks/MicroPerf/Equality/Misc.fs
examples/FSharp.Compiler/vsintegration/src/FSharp.ProjectSystem.FSharp/ProjectPrelude.fs
examples/FSharp.Compiler/src/FSharp.Core/SI.fs
examples/FSharp.Compiler/src/Compiler/AbstractIL/ilbinary.fs
examples/FSharp.Compiler/src/FSharp.Core/array.fs
examples/FSharp.Compiler/src/Compiler/Service/FSharpSource.fs
examples/FSharp.Compiler/vsintegration/tests/FSharp.Editor.Tests/TaskListServiceTests.fs
examples/FSharp.Compiler/tests/benchmarks/CompiledCodeBenchmarks/MicroPerf/Equality/Arrays.fs
examples/FSharp.Compiler/src/FSharp.Core/array2.fs
examples/FSharp.Compiler/vsintegration/tests/Salsa/FSharpLanguageServiceTestable.fs
examples/FSharp.Compiler/vsintegration/tests/FSharp.Editor.Tests/Refactors/AddReturnTypeTests.fs
examples/FSharp.Compiler/src/Compiler/Utilities/lib.fs
examples/FSharp.Compiler/vsintegration/tests/Salsa/VsMocks.fs
examples/FSharp.Compiler/vsintegration/tests/FSharp.Editor.Tests/Refactors/RefactorTestFramework.fs
examples/FSharp.Compiler/tests/benchmarks/CompiledCodeBenchmarks/MicroPerf/Equality/ValueTypes.fs
examples/FSharp.Compiler/src/Compiler/Utilities/ResizeArray.fs
examples/FSharp.Compiler/vsintegration/tests/FSharp.Editor.Tests/CompletionProviderTests.fs
examples/FSharp.Compiler/tests/FSharp.Compiler.Private.Scripting.UnitTests/DependencyManagerLineParserTests.fs
examples/FSharp.Compiler/vsintegration/src/FSharp.ProjectSystem.FSharp/AppConfigHelper.fs
examples/FSharp.Compiler/vsintegration/tests/FSharp.Editor.Tests/SemanticClassificationServiceTests.fs
examples/FSharp.Compiler/src/Compiler/Utilities/zmap.fs
examples/FSharp.Compiler/src/Compiler/Service/ServiceStructure.fs
examples/FSharp.Compiler/vsintegration/tests/FSharp.Editor.Tests/EditorFormattingServiceTests.fs
examples/FSharp.Compiler/src/Compiler/Utilities/ildiag.fs
examples/FSharp.Compiler/tests/benchmarks/CompiledCodeBenchmarks/MicroPerf/Equality/Structs.fs
examples/FSharp.Compiler/src/Compiler/Utilities/QueueList.fs
examples/FSharp.Compiler/src/Compiler/Service/SynPat.fs
examples/FSharp.Compiler/tests/AheadOfTime/Equality/Program.fs
examples/FSharp.Compiler/tests/benchmarks/CompiledCodeBenchmarks/MicroPerf/Equality/ExactEquals.fs
examples/FSharp.Compiler/src/FSharp.Core/local.fs
examples/FSharp.Compiler/src/FSharp.Core/async.fs
examples/FSharp.Compiler/vsintegration/src/FSharp.ProjectSystem.FSharp/WaitDialog.fs
examples/FSharp.Compiler/tests/benchmarks/CompiledCodeBenchmarks/MicroPerf/Equality/FSharpCoreFunctions.fs
examples/FSharp.Compiler/src/FSharp.Core/prim-types-prelude.fs
examples/FSharp.Compiler/src/FSharp.Core/string.fs
examples/FSharp.Compiler/src/Compiler/Utilities/XmlAdapters.fs
examples/FSharp.Compiler/src/Compiler/Utilities/rational.fs
examples/FSharp.Compiler/src/Compiler/Symbols/SymbolHelpers.fs
examples/FSharp.Compiler/vsintegration/tests/UnitTests/Tests.Watson.fs
examples/FSharp.Compiler/tests/benchmarks/CompiledCodeBenchmarks/MicroPerf/Program.fs
examples/FSharp.Compiler/src/FSharp.Core/MutableTuple.fs
examples/FSharp.Compiler/vsintegration/tests/UnitTests/Tests.RoslynHelpers.fs
examples/FSharp.Compiler/src/FSharp.Core/math/z.fs
examples/FSharp.Compiler/src/Compiler/Utilities/ImmutableArray.fs
examples/FSharp.Compiler/src/Compiler/Symbols/SymbolPatterns.fs
examples/FSharp.Compiler/vsintegration/src/FSharp.Editor/Refactor/AddExplicitTypeToParameter.fs
examples/FSharp.Compiler/src/Microsoft.FSharp.Compiler/Program.fs
examples/FSharp.Compiler/tests/benchmarks/CompiledCodeBenchmarks/MicroPerf/ComputedCollections/Arrays/IntegralRanges.fs
examples/FSharp.Compiler/src/Compiler/Service/ServiceAnalysis.fs
examples/FSharp.Compiler/src/Compiler/Utilities/HashMultiMap.fs
examples/FSharp.Compiler/vsintegration/src/FSharp.Editor/Refactor/AddReturnType.fs
examples/FSharp.Compiler/src/FSharp.Build/WriteCodeFragment.fs
examples/FSharp.Compiler/src/Compiler/Utilities/zset.fs
examples/FSharp.Compiler/tests/benchmarks/CompiledCodeBenchmarks/MicroPerf/Collections.fs
examples/FSharp.Compiler/src/Compiler/Utilities/PathMap.fs
examples/FSharp.Compiler/src/Compiler/Utilities/Activity.fs
examples/FSharp.Compiler/vsintegration/src/FSharp.Editor/Refactor/ChangeTypeofWithNameToNameofExpression.fs
examples/FSharp.Compiler/vsintegration/tests/UnitTests/UnusedOpensTests.fs
examples/FSharp.Compiler/tests/benchmarks/CompiledCodeBenchmarks/MicroPerf/Conditions.fs
examples/FSharp.Compiler/vsintegration/tests/UnitTests/LegacyProjectSystem/Tests.ProjectSystem.UpToDate.fs
examples/FSharp.Compiler/vsintegration/tests/UnitTests/LegacyProjectSystem/Tests.ProjectSystem.Configs.fs
examples/FSharp.Compiler/vsintegration/src/FSharp.ProjectSystem.FSharp/MSBuildUtilities.fs
examples/FSharp.Compiler/tests/AheadOfTime/Trimming/Program.fs
examples/FSharp.Compiler/vsintegration/src/FSharp.Editor/Refactor/ChangeDerefToValueRefactoring.fs
examples/FSharp.Compiler/src/FSharp.Build/FSharpCommandLineBuilder.fs
examples/FSharp.Compiler/tests/benchmarks/CompiledCodeBenchmarks/MicroPerf/Async.fs
examples/FSharp.Compiler/src/Compiler/Utilities/FileSystem.fs
examples/FSharp.Compiler/tests/FSharp.Core.UnitTests/StructTuples.fs
examples/FSharp.Compiler/vsintegration/src/FSharp.Editor/Hints/InlineParameterNameHints.fs
examples/FSharp.Compiler/src/FSharp.Build/FSharpEmbedResXSource.fs
examples/FSharp.Compiler/src/FSharp.Compiler.Interactive.Settings/fsiattrs.fs
examples/FSharp.Compiler/vsintegration/tests/UnitTests/LegacyProjectSystem/Tests.ProjectSystem.ProjectItems.fs
examples/FSharp.Compiler/src/FSharp.Build/MapSourceRoots.fs
examples/FSharp.Compiler/tests/FSharp.Core.UnitTests/LibraryTestFx.fs
examples/FSharp.Compiler/vsintegration/tests/UnitTests/LegacyProjectSystem/Tests.ProjectSystem.MultiTargeting.fs
examples/FSharp.Compiler/src/FSharp.Build/InternalsVisibleTo.fs
examples/FSharp.Compiler/vsintegration/src/FSharp.Editor/Hints/HintService.fs
examples/FSharp.Compiler/vsintegration/tests/UnitTests/LegacyProjectSystem/Tests.ProjectSystem.RoundTrip.fs
examples/FSharp.Compiler/src/FSharp.Compiler.Interactive.Settings/fsiaux.fs
examples/FSharp.Compiler/vsintegration/tests/UnitTests/LegacyProjectSystem/Tests.ProjectSystem.References.fs
examples/FSharp.Compiler/src/Compiler/Utilities/EditDistance.fs
examples/FSharp.Compiler/tests/FSharp.Core.UnitTests/SurfaceArea.fs
examples/FSharp.Compiler/tests/benchmarks/FCSBenchmarks/BenchmarkComparison/SingleFileCompiler.fs
examples/FSharp.Compiler/vsintegration/src/FSharp.Editor/Hints/NativeToRoslynHintConverter.fs
examples/FSharp.Compiler/src/FSharp.Core/collections.fs
examples/FSharp.Compiler/src/FSharp.Build/SubstituteText.fs
examples/FSharp.Compiler/src/Compiler/Utilities/Cancellable.fs
examples/FSharp.Compiler/tests/benchmarks/FCSBenchmarks/BenchmarkComparison/Program.fs
examples/FSharp.Compiler/vsintegration/src/FSharp.Editor/Hints/InlineReturnTypeHints.fs
examples/FSharp.Compiler/vsintegration/tests/UnitTests/Tests.XmlDocComments.fs
examples/FSharp.Compiler/src/FSharp.Build/CreateFSharpManifestResourceName.fs
examples/FSharp.Compiler/src/Compiler/Service/FSharpProjectSnapshot.fs
examples/FSharp.Compiler/vsintegration/tests/UnitTests/Tests.InternalCollections.fs
examples/FSharp.Compiler/src/FSharp.Core/fslib-extra-pervasives.fs
examples/FSharp.Compiler/src/LegacyMSBuildResolver/LegacyMSBuildReferenceResolver.fs
examples/FSharp.Compiler/vsintegration/src/FSharp.Editor/Hints/FSharpInlineHintsService.fs
examples/FSharp.Compiler/src/Compiler/CodeGen/IlxGenSupport.fs
examples/FSharp.Compiler/src/Compiler/Utilities/sformat.fs
examples/FSharp.Compiler/vsintegration/src/FSharp.Editor/Hints/OptionParser.fs
examples/FSharp.Compiler/src/Compiler/Utilities/LruCache.fs
examples/FSharp.Compiler/scripts/VerifyAllTranslations.fsx
examples/FSharp.Compiler/src/Compiler/SyntaxTree/SyntaxTree.fs
examples/FSharp.Compiler/vsintegration/src/FSharp.Editor/Hints/Hints.fs
examples/FSharp.Compiler/vsintegration/tests/UnitTests/DocCommentIdParserTests.fs
examples/FSharp.Compiler/artifacts/obj/fsi/Debug/net8.0/buildproperties.fs
examples/FSharp.Compiler/src/Compiler/SyntaxTree/UnicodeLexing.fs
examples/FSharp.Compiler/src/Compiler/SyntaxTree/XmlDoc.fs
examples/FSharp.Compiler/src/Compiler/Service/ServiceAssemblyContent.fs
examples/FSharp.Compiler/vsintegration/src/FSharp.Editor/Hints/InlineTypeHints.fs
examples/FSharp.Compiler/artifacts/obj/fsi/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.fs
examples/FSharp.Compiler/src/Compiler/SyntaxTree/LexHelpers.fs
examples/FSharp.Compiler/src/Compiler/SyntaxTree/PrettyNaming.fs
examples/FSharp.Compiler/artifacts/obj/HistoricalBenchmark/Debug/net8.0/buildproperties.fs
examples/FSharp.Compiler/artifacts/obj/fsi/Debug/net8.0/fsi.AssemblyInfo.fs
examples/FSharp.Compiler/vsintegration/src/FSharp.Editor/Structure/BlockStructureService.fs
examples/FSharp.Compiler/artifacts/obj/HistoricalBenchmark/Debug/net8.0/HistoricalBenchmark.AssemblyInfo.fs
examples/FSharp.Compiler/tests/benchmarks/FCSBenchmarks/CompilerServiceBenchmarks/SomethingToCompileSmaller.fs
examples/FSharp.Compiler/src/Compiler/Utilities/InternalCollections.fs
examples/FSharp.Compiler/artifacts/obj/HistoricalBenchmark/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.fs
examples/FSharp.Compiler/vsintegration/tests/UnitTests/Resources/TestTypeProvider.Positive1.fsx
examples/FSharp.Compiler/src/Compiler/Utilities/ReadOnlySpan.fs
examples/FSharp.Compiler/vsintegration/tests/UnitTests/Resources/TestTypeProvider.Negative1.fsx
examples/FSharp.Compiler/vsintegration/tests/UnitTests/TestLib.Salsa.fs
examples/FSharp.Compiler/tests/benchmarks/FCSBenchmarks/CompilerServiceBenchmarks/ce/CE1xnest15.fs
examples/FSharp.Compiler/vsintegration/src/FSharp.Editor/DocComments/XMLDocumentation.fs
examples/FSharp.Compiler/artifacts/obj/FSharp.LanguageService/Debug/net472/buildproperties.fs
examples/FSharp.Compiler/src/Compiler/Utilities/RidHelpers.fs
examples/FSharp.Compiler/artifacts/obj/fscArm64/Debug/net472/buildproperties.fs
examples/FSharp.Compiler/artifacts/obj/FSharp.LanguageService/Debug/net472/FSharp.LanguageService.AssemblyInfo.fs
examples/FSharp.Compiler/artifacts/obj/fscArm64/Debug/net472/.NETFramework,Version=v4.7.2.AssemblyAttributes.fs
examples/FSharp.Compiler/vsintegration/src/FSharp.Editor/CodeFixes/MakeOuterBindingRecursive.fs
examples/FSharp.Compiler/vsintegration/tests/UnitTests/Tests.Powerpack.fs
examples/FSharp.Compiler/artifacts/obj/FSharp.LanguageService/Debug/net472/.NETFramework,Version=v4.7.2.AssemblyAttributes.fs
examples/FSharp.Compiler/artifacts/obj/fscArm64/Debug/net472/fscArm64.AssemblyInfo.fs
examples/FSharp.Compiler/vsintegration/tests/UnitTests/AssemblyResolver.fs
examples/FSharp.Compiler/tests/benchmarks/FCSBenchmarks/CompilerServiceBenchmarks/ce/CEwCO100xnest5.fs
examples/FSharp.Compiler/src/Compiler/Driver/GraphChecking/TrieMapping.fs
examples/FSharp.Compiler/src/Compiler/SyntaxTree/SyntaxTrivia.fs
examples/FSharp.Compiler/artifacts/obj/FSharp.LanguageService/Debug/net472/FSLangSvcStrings.fs
examples/FSharp.Compiler/src/Compiler/CodeGen/EraseUnions.fs
examples/FSharp.Compiler/vsintegration/src/FSharp.Editor/CodeFixes/ChangeToUpcast.fs
examples/FSharp.Compiler/src/Compiler/Driver/GraphChecking/Continuation.fs
examples/FSharp.Compiler/artifacts/obj/FSharp.Compiler.Private.Scripting.UnitTests/Debug/net8.0/FSharp.Compiler.Private.Scripting.UnitTests.AssemblyInfo.fs
examples/FSharp.Compiler/src/Compiler/Checking/FindUnsolved.fs
examples/FSharp.Compiler/tests/FSharp.Core.UnitTests/FSharp.Core/ComparersRegression.fs
examples/FSharp.Compiler/artifacts/obj/fsc/Debug/net8.0/buildproperties.fs
examples/FSharp.Compiler/artifacts/obj/FSharp.Compiler.Private.Scripting.UnitTests/Debug/net8.0/buildproperties.fs
examples/FSharp.Compiler/vsintegration/src/FSharp.Editor/CodeFixes/AddMissingRecToMutuallyRecFunctions.fs
examples/FSharp.Compiler/tests/benchmarks/FCSBenchmarks/CompilerServiceBenchmarks/ce/CE100xnest10.fs
examples/FSharp.Compiler/artifacts/obj/fsc/Debug/net8.0/fsc.AssemblyInfo.fs
examples/FSharp.Compiler/tests/FSharp.Core.UnitTests/FSharp.Core/Microsoft.FSharp.Linq/NullableOperators.fs
examples/FSharp.Compiler/artifacts/obj/FSharp.Compiler.Private.Scripting.UnitTests/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.fs
examples/FSharp.Compiler/src/Compiler/Checking/CheckBasics.fs
examples/FSharp.Compiler/src/Compiler/Driver/GraphChecking/Types.fs
examples/FSharp.Compiler/vsintegration/src/FSharp.Editor/CodeFixes/RenameParamToMatchSignature.fs
examples/FSharp.Compiler/tests/FSharp.Core.UnitTests/FSharp.Core/CreateComparersRegression.fsx
examples/FSharp.Compiler/artifacts/obj/fsc/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.fs
examples/FSharp.Compiler/tests/benchmarks/FCSBenchmarks/CompilerServiceBenchmarks/ce/CE200xnest5.fs
examples/FSharp.Compiler/vsintegration/src/FSharp.Editor/CodeFixes/DiscardUnusedValue.fs
examples/FSharp.Compiler/tests/FSharp.Core.UnitTests/FSharp.Core/DiscriminatedUnionType.fs
examples/FSharp.Compiler/artifacts/obj/FSharp.Compiler.Benchmarks/Debug/net8.0/buildproperties.fs
examples/FSharp.Compiler/vsintegration/src/FSharp.Editor/CodeFixes/IFSharpCodeFix.fs
examples/FSharp.Compiler/tests/FSharp.Core.UnitTests/FSharp.Core/Microsoft.FSharp.Quotations/FSharpQuotations.fs
examples/FSharp.Compiler/src/Compiler/Driver/GraphChecking/Graph.fs
examples/FSharp.Compiler/artifacts/obj/DummyProviderForLanguageServiceTesting/Debug/net472/buildproperties.fs
examples/FSharp.Compiler/tests/benchmarks/FCSBenchmarks/CompilerServiceBenchmarks/ce/CE100xnest5.fs
examples/FSharp.Compiler/artifacts/obj/DummyProviderForLanguageServiceTesting/Debug/net472/.NETFramework,Version=v4.7.2.AssemblyAttributes.fs
examples/FSharp.Compiler/vsintegration/src/FSharp.Editor/CodeFixes/AddInstanceMemberParameter.fs
examples/FSharp.Compiler/tests/FSharp.Core.UnitTests/FSharp.Core/NativeInterop.fs
examples/FSharp.Compiler/src/Compiler/Checking/TailCallChecks.fs
examples/FSharp.Compiler/artifacts/obj/FSharp.Compiler.Benchmarks/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.fs
examples/FSharp.Compiler/artifacts/obj/DummyProviderForLanguageServiceTesting/Debug/net472/DummyProviderForLanguageServiceTesting.AssemblyInfo.fs
examples/FSharp.Compiler/src/Compiler/Checking/CheckRecordSyntaxHelpers.fs
examples/FSharp.Compiler/src/Compiler/Driver/GraphChecking/DependencyResolution.fs
examples/FSharp.Compiler/tests/benchmarks/FCSBenchmarks/CompilerServiceBenchmarks/ce/CE100xnest1.fs
examples/FSharp.Compiler/artifacts/obj/FSharp.Compiler.Benchmarks/Debug/net8.0/FSharp.Compiler.Benchmarks.AssemblyInfo.fs
examples/FSharp.Compiler/vsintegration/src/FSharp.Editor/CodeFixes/RemoveUnusedBinding.fs
examples/FSharp.Compiler/vsintegration/src/FSharp.Editor/CodeFixes/AddTypeAnnotationToObjectOfIndeterminateType.fs
examples/FSharp.Compiler/tests/benchmarks/FCSBenchmarks/CompilerServiceBenchmarks/ce/CEwCO500xnest1.fs
examples/FSharp.Compiler/src/Compiler/Checking/SignatureHash.fs
examples/FSharp.Compiler/artifacts/obj/FSharp.DependencyManager.Nuget/Debug/netstandard2.0/FSharp.DependencyManager.Nuget.AssemblyInfo.fs
examples/FSharp.Compiler/vsintegration/src/FSharp.Editor/CodeFixes/RemoveUnnecessaryParentheses.fs
examples/FSharp.Compiler/tests/FSharp.Core.UnitTests/FSharp.Core/Microsoft.FSharp.Reflection/FSharpReflection.fs
examples/FSharp.Compiler/artifacts/obj/FSharp.DependencyManager.Nuget/Debug/netstandard2.0/buildproperties.fs
examples/FSharp.Compiler/vsintegration/src/FSharp.Editor/CodeFixes/RemoveUnusedOpens.fs
examples/FSharp.Compiler/tests/benchmarks/FCSBenchmarks/CompilerServiceBenchmarks/BackgroundCompilerBenchmarks.fs
examples/FSharp.Compiler/artifacts/obj/FSharp.Core.UnitTests/Debug/net8.0/buildproperties.fs
examples/FSharp.Compiler/tests/benchmarks/FCSBenchmarks/CompilerServiceBenchmarks/ComputationExpressionBenchmarks.fs
examples/FSharp.Compiler/tests/FSharp.Core.UnitTests/FSharp.Core/Microsoft.FSharp.Control/EventModule.fs
examples/FSharp.Compiler/artifacts/obj/FSharp.DependencyManager.Nuget/Debug/netstandard2.0/.NETStandard,Version=v2.0.AssemblyAttributes.fs
examples/FSharp.Compiler/artifacts/obj/FSharp.Core.UnitTests/Debug/net8.0/FSharp.Core.UnitTests.AssemblyInfo.fs
examples/FSharp.Compiler/tests/benchmarks/FCSBenchmarks/CompilerServiceBenchmarks/SourceText.fs
examples/FSharp.Compiler/vsintegration/src/FSharp.Editor/CodeFixes/MakeDeclarationMutable.fs
examples/FSharp.Compiler/artifacts/obj/FSharp.Core.UnitTests/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.fs
examples/FSharp.Compiler/tests/benchmarks/FCSBenchmarks/CompilerServiceBenchmarks/Program.fs
examples/FSharp.Compiler/artifacts/obj/FSharp.Benchmarks.Common/Debug/net8.0/buildproperties.fs
examples/FSharp.Compiler/tests/benchmarks/FCSBenchmarks/CompilerServiceBenchmarks/GraphTypeCheckingBenchmarks.fs
examples/FSharp.Compiler/artifacts/obj/FSharp.Benchmarks.Common/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.fs
examples/FSharp.Compiler/artifacts/obj/FSharp.Test.Utilities/Debug/net8.0/FSharp.Test.Utilities.AssemblyInfo.fs
examples/FSharp.Compiler/vsintegration/src/FSharp.Editor/CodeFixes/WrapExpressionInParentheses.fs
examples/FSharp.Compiler/artifacts/obj/fsiAnyCpu/Debug/net472/buildproperties.fs
examples/FSharp.Compiler/tests/FSharp.Core.UnitTests/FSharp.Core/Microsoft.FSharp.Control/Tasks.fs
examples/FSharp.Compiler/artifacts/obj/FSharp.Benchmarks.Common/Debug/net8.0/FSharp.Benchmarks.Common.AssemblyInfo.fs
examples/FSharp.Compiler/artifacts/obj/FSharp.Compiler.Service.Tests/Debug/net8.0/FSharp.Compiler.Service.Tests.AssemblyInfo.fs
examples/FSharp.Compiler/artifacts/obj/FSharp.Test.Utilities/Debug/net8.0/buildproperties.fs
examples/FSharp.Compiler/artifacts/obj/fsiAnyCpu/Debug/net472/.NETFramework,Version=v4.7.2.AssemblyAttributes.fs
examples/FSharp.Compiler/src/Compiler/Driver/OptimizeInputs.fs
examples/FSharp.Compiler/vsintegration/src/FSharp.Editor/CodeFixes/ChangePrefixNegationToInfixSubtraction.fs
examples/FSharp.Compiler/artifacts/obj/FSharp.Compiler.Service.Tests/Debug/net8.0/buildproperties.fs
examples/FSharp.Compiler/artifacts/obj/FSharp.Test.Utilities/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.fs
examples/FSharp.Compiler/artifacts/obj/FSharp.Compiler.Service.Tests/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.fs
examples/FSharp.Compiler/artifacts/obj/FSharp.Core/Debug/netstandard2.0/buildproperties.fs
examples/FSharp.Compiler/artifacts/obj/FSharp.Editor/Debug/net472/buildproperties.fs
examples/FSharp.Compiler/artifacts/obj/FSharp.Core/Debug/netstandard2.0/FSharp.Core.AssemblyInfo.fs
examples/FSharp.Compiler/artifacts/obj/FSharp.Compiler.Interactive.Settings/Debug/netstandard2.0/buildproperties.fs
examples/FSharp.Compiler/artifacts/obj/fsiAnyCpu/Debug/net472/fsiAnyCpu.AssemblyInfo.fs
examples/FSharp.Compiler/tests/FSharp.Core.UnitTests/FSharp.Core/Microsoft.FSharp.Control/ObservableModule.fs
examples/FSharp.Compiler/artifacts/obj/VisualFSharp.Salsa/Debug/net472/buildproperties.fs
examples/FSharp.Compiler/artifacts/obj/FSharp.Compiler.Interactive.Settings/Debug/netstandard2.0/FSharp.Compiler.Interactive.Settings.AssemblyInfo.fs
examples/FSharp.Compiler/artifacts/obj/FSharp.Editor/Debug/net472/FSharp.Editor.fs
examples/FSharp.Compiler/vsintegration/tests/UnitTests/LegacyLanguageService/Tests.LanguageService.QuickParse.fs
examples/FSharp.Compiler/artifacts/obj/FSharp.Compiler.Interactive.Settings/Debug/netstandard2.0/.NETStandard,Version=v2.0.AssemblyAttributes.fs
examples/FSharp.Compiler/artifacts/obj/TestTP/Debug/netstandard2.0/buildproperties.fs
examples/FSharp.Compiler/vsintegration/tests/UnitTests/LegacyLanguageService/Tests.LanguageService.NavigationBar.fs
examples/FSharp.Compiler/tests/benchmarks/FCSBenchmarks/CompilerServiceBenchmarks/FileCascadeBenchmarks.fs
examples/FSharp.Compiler/vsintegration/src/FSharp.Editor/CodeFixes/PrefixUnusedValue.fs
examples/FSharp.Compiler/artifacts/obj/VisualFSharp.Salsa/Debug/net472/VisualFSharp.Salsa.AssemblyInfo.fs
examples/FSharp.Compiler/artifacts/obj/FSharp.Editor/Debug/net472/.NETFramework,Version=v4.7.2.AssemblyAttributes.fs
examples/FSharp.Compiler/artifacts/obj/TestTP/Debug/netstandard2.0/TestTP.AssemblyInfo.fs
examples/FSharp.Compiler/artifacts/obj/FSharp.Build/Debug/netstandard2.0/buildproperties.fs
examples/FSharp.Compiler/artifacts/obj/FSharp.Core/Debug/netstandard2.0/.NETStandard,Version=v2.0.AssemblyAttributes.fs
examples/FSharp.Compiler/vsintegration/src/FSharp.Editor/CodeFixes/ConvertToSingleEqualsEqualityExpression.fs
examples/FSharp.Compiler/tests/benchmarks/FSharp.Benchmarks.Common/Categories.fs
examples/FSharp.Compiler/artifacts/obj/VisualFSharp.Salsa/Debug/net472/.NETFramework,Version=v4.7.2.AssemblyAttributes.fs
examples/FSharp.Compiler/artifacts/obj/FSharp.Editor/Debug/net472/FSharp.Editor.AssemblyInfo.fs
examples/FSharp.Compiler/artifacts/obj/FSharp.Build/Debug/netstandard2.0/FSharp.Build.AssemblyInfo.fs
examples/FSharp.Compiler/artifacts/obj/TestTP/Debug/netstandard2.0/.NETStandard,Version=v2.0.AssemblyAttributes.fs
examples/FSharp.Compiler/tests/FSharp.Core.UnitTests/FSharp.Core/Microsoft.FSharp.Control/TasksDynamic.fs
examples/FSharp.Compiler/artifacts/obj/FSharp.ProjectSystem.FSharp/Debug/net472/VSPackage.fs
examples/FSharp.Compiler/vsintegration/src/FSharp.Editor/CodeFixes/ImplementInterface.fs
examples/FSharp.Compiler/artifacts/obj/MicroPerf/Debug/net8.0/buildproperties.fs
examples/FSharp.Compiler/artifacts/obj/FSharp.ProjectSystem.FSharp/Debug/net472/buildproperties.fs
examples/FSharp.Compiler/tests/FSharp.Core.UnitTests/FSharp.Core/Microsoft.FSharp.Control/LazyType.fs
examples/FSharp.Compiler/artifacts/obj/MicroPerf/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.fs
examples/FSharp.Compiler/artifacts/obj/HostedCompilerServer/Debug/buildproperties.fs
examples/FSharp.Compiler/artifacts/obj/FSharp.ProjectSystem.FSharp/Debug/net472/FSharp.ProjectSystem.FSharp.AssemblyInfo.fs
examples/FSharp.Compiler/artifacts/obj/HostedCompilerServer/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.fs
examples/FSharp.Compiler/artifacts/obj/MicroPerf/Debug/net8.0/MicroPerf.AssemblyInfo.fs
examples/FSharp.Compiler/tests/FSharp.Core.UnitTests/FSharp.Core/Microsoft.FSharp.Control/EventTypes.fs
examples/FSharp.Compiler/artifacts/obj/FSharp.ProjectSystem.FSharp/Debug/net472/.NETFramework,Version=v4.7.2.AssemblyAttributes.fs
examples/FSharp.Compiler/vsintegration/src/FSharp.Editor/CodeFixes/CodeFixHelpers.fs
examples/FSharp.Compiler/artifacts/obj/fscAnyCpu/Debug/net472/buildproperties.fs
examples/FSharp.Compiler/artifacts/obj/HostedCompilerServer/Debug/HostedCompilerServer.AssemblyInfo.fs
examples/FSharp.Compiler/artifacts/obj/FSharp.Build/Debug/netstandard2.0/.NETStandard,Version=v2.0.AssemblyAttributes.fs
examples/FSharp.Compiler/tests/FSharp.Build.UnitTests/WriteCodeFragmentTests.fs
examples/FSharp.Compiler/artifacts/obj/FSharp.Compiler.Service/Debug/netstandard2.0/buildproperties.fs
examples/FSharp.Compiler/artifacts/obj/EmptyAssembly/Debug/net472/EmptyAssembly.AssemblyInfo.fs
examples/FSharp.Compiler/artifacts/obj/FSharp.Build.UnitTests/Debug/net8.0/FSharp.Build.UnitTests.AssemblyInfo.fs
examples/FSharp.Compiler/artifacts/obj/fscAnyCpu/Debug/net472/.NETFramework,Version=v4.7.2.AssemblyAttributes.fs
examples/FSharp.Compiler/tests/fsharpqa/comparer.fsx
examples/FSharp.Compiler/artifacts/obj/EmptyAssembly/Debug/net472/buildproperties.fs
examples/FSharp.Compiler/artifacts/obj/FSharp.VS.FSI/Debug/net472/Properties.fs
examples/FSharp.Compiler/artifacts/obj/EmptyAssembly/Debug/net472/.NETFramework,Version=v4.7.2.AssemblyAttributes.fs
examples/FSharp.Compiler/artifacts/obj/FSharp.Build.UnitTests/Debug/net8.0/buildproperties.fs
examples/FSharp.Compiler/artifacts/obj/fscAnyCpu/Debug/net472/fscAnyCpu.AssemblyInfo.fs
examples/FSharp.Compiler/vsintegration/src/FSharp.Editor/CodeFixes/ConvertToNotEqualsEqualityExpression.fs
examples/FSharp.Compiler/artifacts/obj/FSharp.VS.FSI/Debug/net472/buildproperties.fs
examples/FSharp.Compiler/artifacts/obj/FSharp.Build.UnitTests/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.fs
examples/FSharp.Compiler/tests/FSharp.Core.UnitTests/FSharp.Core/Microsoft.FSharp.Control/MailboxProcessorType.fs
examples/FSharp.Compiler/artifacts/obj/fsiArm64/Debug/net472/buildproperties.fs
examples/FSharp.Compiler/artifacts/obj/FSharp.VS.FSI/Debug/net472/FSharp.VS.FSI.AssemblyInfo.fs
examples/FSharp.Compiler/vsintegration/src/FSharp.Editor/CodeFixes/MissingReference.fs
examples/FSharp.Compiler/tests/FSharp.Compiler.Service.Tests/InteractiveCheckerTests.fs
examples/FSharp.Compiler/artifacts/obj/FSharpSuite.Tests/Debug/net8.0/buildproperties.fs
examples/FSharp.Compiler/tests/fsharpqa/testenv/bin/KnownFailRewriter.fsx
examples/FSharp.Compiler/artifacts/obj/FSharp.VS.FSI/Debug/net472/.NETFramework,Version=v4.7.2.AssemblyAttributes.fs
examples/FSharp.Compiler/artifacts/obj/fsiArm64/Debug/net472/.NETFramework,Version=v4.7.2.AssemblyAttributes.fs
examples/FSharp.Compiler/vsintegration/src/FSharp.Editor/CodeFixes/AddOpenCodeFixProvider.fs
examples/FSharp.Compiler/tests/FSharp.Compiler.Service.Tests/ParserTests.fs
examples/FSharp.Compiler/tests/FSharp.Core.UnitTests/FSharp.Core/Microsoft.FSharp.Control/AsyncType.fs
examples/FSharp.Compiler/artifacts/obj/FSharpSuite.Tests/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.fs
examples/FSharp.Compiler/artifacts/obj/fsiArm64/Debug/net472/fsiArm64.AssemblyInfo.fs
examples/FSharp.Compiler/artifacts/obj/FSharp.Compiler.ComponentTests/Debug/net8.0/buildproperties.fs
examples/FSharp.Compiler/tests/FSharp.Compiler.Service.Tests/SurfaceArea.fs
examples/FSharp.Compiler/tests/fsharpqa/testenv/bin/elevate.fsx
examples/FSharp.Compiler/tests/FSharp.Compiler.Service.Tests/BlockTests.fs
examples/FSharp.Compiler/tests/FSharp.Core.UnitTests/FSharp.Core/Microsoft.FSharp.Control/NestedTaskFailures.fs
examples/FSharp.Compiler/artifacts/obj/FSharp.Compiler.ComponentTests/Debug/net8.0/FSharp.Compiler.ComponentTests.AssemblyInfo.fs
examples/FSharp.Compiler/artifacts/obj/FSharpSuite.Tests/Debug/net8.0/FSharpSuite.Tests.AssemblyInfo.fs
examples/FSharp.Compiler/tests/FSharp.Compiler.Service.Tests/ModuleReaderCancellationTests.fs
examples/FSharp.Compiler/tests/FSharp.Compiler.Service.Tests/StructureTests.fs
examples/FSharp.Compiler/tests/fsharpqa/run.fsharpqa.test.fsx
examples/FSharp.Compiler/vsintegration/src/FSharp.Editor/CodeFixes/UseMutationWhenValueIsMutable.fs
examples/FSharp.Compiler/tests/FSharp.Compiler.Service.Tests/SuggestionBuffer.fs
examples/FSharp.Compiler/artifacts/obj/FSharp.Compiler.ComponentTests/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.fs
examples/FSharp.Compiler/tests/FSharp.Compiler.Service.Tests/CompletionTests.fs
examples/FSharp.Compiler/tests/FSharp.Compiler.Service.Tests/PrettyNaming.fs
examples/FSharp.Compiler/vsintegration/tests/MockTypeProviders/EmptyAssembly/EmptyAssembly.fs
examples/FSharp.Compiler/tests/FSharp.Compiler.Service.Tests/AssemblySigningAttributes.fs
examples/FSharp.Compiler/vsintegration/src/FSharp.Editor/CodeFixes/AddNewKeywordToDisposableConstructorInvocation.fs
examples/FSharp.Compiler/tests/FSharp.Compiler.Service.Tests/ByteMemoryTests.fs
examples/FSharp.Compiler/tests/FSharp.Compiler.Service.Tests/TooltipTests.fs
examples/FSharp.Compiler/vsintegration/src/FSharp.Editor/CodeFixes/ReplaceWithSuggestion.fs
examples/FSharp.Compiler/tests/FSharp.Compiler.Service.Tests/TreeVisitorTests.fs
examples/FSharp.Compiler/tests/FSharp.Compiler.Service.Tests/PostInferenceChecksTests.fs
examples/FSharp.Compiler/src/Compiler/Driver/BinaryResourceFormats.fs
examples/FSharp.Compiler/vsintegration/ItemTemplates/ScriptFile/Template/File.fsx
examples/FSharp.Compiler/artifacts/obj/FSharp.Compiler.Service/Debug/netstandard2.0/FSharp.Compiler.Service.AssemblyInfo.fs
examples/FSharp.Compiler/tests/FSharp.Core.UnitTests/FSharp.Core/OperatorsModule1.fs
examples/FSharp.Compiler/vsintegration/src/FSharp.Editor/CodeFixes/FixIndexerAccessLegacy.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Conformance/ImplementationFilesAndSignatureFiles/NamespacesFragmentsAndImplementationFiles/global/AsPrefix.fsx
examples/FSharp.Compiler/tests/FSharp.Compiler.Service.Tests/TokenizerTests.fs
examples/FSharp.Compiler/artifacts/obj/FSharp.Compiler.Service/Debug/netstandard2.0/.NETStandard,Version=v2.0.AssemblyAttributes.fs
examples/FSharp.Compiler/vsintegration/src/FSharp.Editor/CodeFixes/SimplifyName.fs
examples/FSharp.Compiler/tests/FSharp.Compiler.Service.Tests/FsiHelpTests.fs
examples/FSharp.Compiler/tests/FSharp.Compiler.Service.Tests/SynPatTests.fs
examples/FSharp.Compiler/tests/FSharp.Compiler.Service.Tests/XmlDocTests - Units of Measure.fs
examples/FSharp.Compiler/tests/FSharp.Compiler.Service.Tests/AssemblyReaderShim.fs
examples/FSharp.Compiler/tests/FSharp.Compiler.Service.Tests/ManglingNameOfProvidedTypes.fs
examples/FSharp.Compiler/tests/FSharp.Compiler.Service.Tests/TestDoubles.fs
examples/FSharp.Compiler/vsintegration/src/FSharp.Editor/CodeFixes/FixIndexerAccess.fs
examples/FSharp.Compiler/tests/FSharp.Compiler.Service.Tests/SourceTextTests.fs
examples/FSharp.Compiler/tests/FSharp.Core.UnitTests/FSharp.Core/PrimTypes.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Conformance/ImplementationFilesAndSignatureFiles/NamespacesFragmentsAndImplementationFiles/global/FSharpImportCSharp.fs
examples/FSharp.Compiler/tests/EndToEndBuildTests/BasicProvider/BasicProvider.Tests/BasicProvider.Tests.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Conformance/ImplementationFilesAndSignatureFiles/NamespacesFragmentsAndImplementationFiles/global/InNamespaceByItself.fsx
examples/FSharp.Compiler/vsintegration/src/FSharp.Editor/Build/SetGlobalPropertiesForSdkProjects.fs
examples/FSharp.Compiler/vsintegration/ItemTemplates/CodeFile/Template/File.fs
examples/FSharp.Compiler/tests/FSharp.Core.UnitTests/FSharp.Core/OperatorsModuleChecked.fs
examples/FSharp.Compiler/tests/FSharp.Compiler.Service.Tests/ConsoleOnlyOptionsTests.fs
examples/FSharp.Compiler/tests/FSharp.Compiler.Service.Tests/ParsedInputModuleTests.VeryBigArrayExprTest.fs
examples/FSharp.Compiler/tests/EndToEndBuildTests/BasicProvider/BasicProvider.Tests/Program.fs
examples/FSharp.Compiler/vsintegration/src/FSharp.Editor/Telemetry/TelemetryReporter.fs
examples/FSharp.Compiler/tests/FSharp.Compiler.Service.Tests/PerfTests.fs
examples/FSharp.Compiler/tests/FSharp.Compiler.Service.Tests/AssemblyContentProviderTests.fs
examples/FSharp.Compiler/tests/FSharp.Compiler.Service.Tests/SynExprTests.fs
examples/FSharp.Compiler/tests/FSharp.Compiler.Service.Tests/VisualStudioVersusConsoleContextTests.fs
examples/FSharp.Compiler/tests/FSharp.Compiler.Service.Tests/CompilerTestHelpers.fs
examples/FSharp.Compiler/vsintegration/ProjectTemplates/LibraryProject/Template/Script.fsx
examples/FSharp.Compiler/vsintegration/ProjectTemplates/LibraryProject/Template/Library1.fs
examples/FSharp.Compiler/tests/EndToEndBuildTests/BasicProvider/BasicProvider.DesignTime/BasicProvider.Provider.fs
examples/FSharp.Compiler/tests/FSharp.Compiler.Service.Tests/ParsedInputModuleTests.fs
examples/FSharp.Compiler/vsintegration/ProjectTemplates/TutorialProject/Template/Tutorial.fsx
examples/FSharp.Compiler/tests/FSharp.Compiler.Service.Tests/ProductVersion.fs
examples/FSharp.Compiler/tests/FSharp.Compiler.Service.Tests/AssemblyInfo.fs
examples/FSharp.Compiler/vsintegration/ProjectTemplates/ConsoleProject/Template/Program.fs
examples/FSharp.Compiler/tests/FSharp.Compiler.Service.Tests/FSharpExprPatternsTests.fs
examples/FSharp.Compiler/tests/FSharp.Compiler.Service.Tests/EditDistance.fs
examples/FSharp.Compiler/tests/FSharp.Compiler.Service.Tests/RangeTests.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Conformance/DeclarationElements/P-invokeDeclarations/MarshalStruct01.fs
examples/FSharp.Compiler/tests/EndToEndBuildTests/BasicProvider/BasicProvider/BasicProvider.Runtime.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Conformance/DeclarationElements/P-invokeDeclarations/MarshalStruct01_Records.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Conformance/LexicalAnalysis/StringsAndCharacters/TripleQuoteString02.fs
examples/FSharp.Compiler/vsintegration/src/FSharp.Editor/Navigation/NavigateToSearchService.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Conformance/DeclarationElements/P-invokeDeclarations/ComVisible01.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Conformance/DeclarationElements/P-invokeDeclarations/SanityCheck01.fs
examples/FSharp.Compiler/tests/EndToEndBuildTests/ComboProvider/ComboProvider/ComboProvider.fs
examples/FSharp.Compiler/setup/resources/NewFileDialog/Script/Script.fsx
examples/FSharp.Compiler/tests/fsharpqa/Source/Conformance/LexicalAnalysis/StringsAndCharacters/UnicodeString02.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Conformance/DeclarationElements/P-invokeDeclarations/EntryPoint.fs
examples/FSharp.Compiler/setup/resources/NewFileDialog/General/Script.fsx
examples/FSharp.Compiler/vsintegration/src/FSharp.Editor/Navigation/NavigationBarItemService.fs
examples/FSharp.Compiler/vsintegration/src/FSharp.Editor/Commands/HelpContextService.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Conformance/DeclarationElements/P-invokeDeclarations/CallingConventions01_Records.fs
examples/FSharp.Compiler/setup/resources/NewFileDialog/General/File.fs
examples/FSharp.Compiler/tests/FSharp.Core.UnitTests/FSharp.Core/OperatorsModuleDynamic.fs
examples/FSharp.Compiler/tests/EndToEndBuildTests/ComboProvider/ComboProvider.Tests/Program.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Conformance/LexicalAnalysis/StringsAndCharacters/UnicodeString03.fs
examples/FSharp.Compiler/tests/FSharp.Core.UnitTests/FSharp.Core/RefStructs.fs
examples/FSharp.Compiler/vsintegration/src/FSharp.Editor/Navigation/NavigableSymbolsService.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Conformance/DeclarationElements/P-invokeDeclarations/CallingConventions01.fs
examples/FSharp.Compiler/vsintegration/src/FSharp.Editor/Diagnostics/UnnecessaryParenthesesDiagnosticAnalyzer.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Conformance/DeclarationElements/ObjectConstructors/ChainingCtors.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Conformance/ImplementationFilesAndSignatureFiles/NamespacesFragmentsAndImplementationFiles/basic/hashdirectives02.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Conformance/LexicalAnalysis/StringsAndCharacters/EscapeSequences02.fs
examples/FSharp.Compiler/tests/EndToEndBuildTests/ComboProvider/ComboProvider.Tests/ComboProvider.Tests.fs
examples/FSharp.Compiler/tests/FSharp.Core.UnitTests/FSharp.Core/Microsoft.FSharp.Core/IntConversionsTestGenerator.fsx
examples/FSharp.Compiler/vsintegration/src/FSharp.Editor/Diagnostics/UnusedDeclarationsAnalyzer.fs
examples/FSharp.Compiler/tests/FSharp.Core.UnitTests/FSharp.Core/Microsoft.FSharp.Core/PrintfTests.fs
examples/FSharp.Compiler/vsintegration/src/FSharp.Editor/Navigation/FindDefinitionService.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Conformance/DeclarationElements/ObjectConstructors/ValOKWithoutImplicitCtor.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/MultiTargeting/E_MissingReferenceToFSharpCore20.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Conformance/LexicalAnalysis/StringsAndCharacters/ByteString01.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Conformance/DeclarationElements/ObjectConstructors/ExplicitCtors01.fs
examples/FSharp.Compiler/vsintegration/src/FSharp.Editor/Diagnostics/UnusedOpensDiagnosticAnalyzer.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Conformance/DeclarationElements/ObjectConstructors/SanityCheck02.fs
examples/FSharp.Compiler/vsintegration/src/FSharp.Editor/Navigation/GoToDefinitionService.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Conformance/DeclarationElements/ObjectConstructors/SanityCheck01.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/CompilerOptions/fsi/help/dummy.fsx
examples/FSharp.Compiler/tests/fsharpqa/Source/Conformance/DeclarationElements/ObjectConstructors/ObjCtorParamsToBaseclass.fs
examples/FSharp.Compiler/tests/FSharp.Core.UnitTests/FSharp.Core/Microsoft.FSharp.Core/IntConversions.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Conformance/LexicalAnalysis/StringsAndCharacters/TripleQuote.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/CompilerOptions/fsi/nologo/nologo02.fsx
examples/FSharp.Compiler/tests/FSharp.Core.UnitTests/FSharp.Core/Microsoft.FSharp.Core/ExtraTopLevelOperatorsTests.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/CompilerOptions/fsi/nologo/nologo01.fsx
examples/FSharp.Compiler/vsintegration/src/FSharp.Editor/Diagnostics/SimplifyNameDiagnosticAnalyzer.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Conformance/DeclarationElements/ObjectConstructors/AlternateGenericTypeSyntax01.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Conformance/ImplementationFilesAndSignatureFiles/NamespacesFragmentsAndImplementationFiles/basic/LastFileExeCanBeAnonb.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Conformance/DeclarationElements/ObjectConstructors/MutuallyRecursive01.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Conformance/LexicalAnalysis/StringsAndCharacters/Backslash02.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Conformance/ImplementationFilesAndSignatureFiles/NamespacesFragmentsAndImplementationFiles/basic/hashdirectives01.fs
examples/FSharp.Compiler/vsintegration/src/FSharp.Editor/Navigation/GoToDefinition.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Conformance/DeclarationElements/ObjectConstructors/WarningforLessGenericthanIndicated.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/CompilerOptions/fsi/langversion/comparer.fsx
examples/FSharp.Compiler/tests/fsharpqa/Source/Conformance/DeclarationElements/ObjectConstructors/GenericTypesInObjCtor.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Conformance/LexicalAnalysis/StringsAndCharacters/ByteChars02.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Conformance/DeclarationElements/ObjectConstructors/ImplicitCtorsCallingBaseclassPassingSelf.fs
examples/FSharp.Compiler/vsintegration/src/FSharp.Editor/Formatting/IndentationService.fs
examples/FSharp.Compiler/vsintegration/src/FSharp.Editor/Navigation/FindUsagesService.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Conformance/ImplementationFilesAndSignatureFiles/NamespacesFragmentsAndImplementationFiles/basic/NoWarningWithModNS01b.fs
examples/FSharp.Compiler/tests/FSharp.Core.UnitTests/FSharp.Core/Microsoft.FSharp.Core/OptionModule.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Conformance/LexicalAnalysis/StringsAndCharacters/CharLiterals01.fs
examples/FSharp.Compiler/vsintegration/src/FSharp.Editor/Debugging/BreakpointResolutionService.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Conformance/LexicalAnalysis/IdentifierReplacements/Line02.fs
examples/FSharp.Compiler/vsintegration/src/FSharp.Editor/Debugging/LanguageDebugInfoService.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/CompilerOptions/fsi/langversion/dummy.fsx
examples/FSharp.Compiler/tests/fsharpqa/Source/Conformance/ImplementationFilesAndSignatureFiles/NamespacesFragmentsAndImplementationFiles/basic/E_LastFileDllCantBeAnonb.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Conformance/LexicalAnalysis/IdentifierReplacements/SourceFile01.fs
examples/FSharp.Compiler/vsintegration/src/FSharp.Editor/AutomaticCompletion/BraceCompletionSessionProvider.fs
examples/FSharp.Compiler/vsintegration/src/FSharp.Editor/Formatting/EditorFormattingService.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Conformance/LexicalAnalysis/IdentifierReplacements/Line01.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Conformance/TypesAndTypeConstraints/TypeParameterDefinitions/MultipleConstraints01.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Conformance/LexicalAnalysis/StringsAndCharacters/TripleQuoteStringInFSI01.fsx
examples/FSharp.Compiler/src/Compiler/Optimize/LowerLocalMutables.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Conformance/LexicalAnalysis/ConditionalCompilation/InStringLiteral03.fs
examples/FSharp.Compiler/vsintegration/src/FSharp.Editor/Formatting/BraceMatchingService.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Conformance/ImplementationFilesAndSignatureFiles/NamespacesFragmentsAndImplementationFiles/basic/HashDirectives03.fs
examples/FSharp.Compiler/vsintegration/src/FSharp.Editor/QuickInfo/QuickInfoProvider.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Diagnostics/ParsingAtEOF/type_id_equal02.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Conformance/ImplementationFilesAndSignatureFiles/NamespacesFragmentsAndImplementationFiles/basic/E_NamespaceAndModule02.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Conformance/LexicalAnalysis/StringsAndCharacters/VerbatimString01.fs
examples/FSharp.Compiler/vsintegration/src/FSharp.Editor/QuickInfo/Views.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/CompilerOptions/fsc/pdb/pdb01.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Conformance/ImplementationFilesAndSignatureFiles/NamespacesFragmentsAndImplementationFiles/basic/E_NoNamespaceModuleDec01b.fs
examples/FSharp.Compiler/vsintegration/src/FSharp.Editor/QuickInfo/WpfFactories.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Conformance/TypesAndTypeConstraints/TypeParameterDefinitions/BasicTypeParam01.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Conformance/ImplementationFilesAndSignatureFiles/NamespacesFragmentsAndImplementationFiles/basic/LastFileExeCanBeAnona.fs
examples/FSharp.Compiler/vsintegration/src/FSharp.Editor/DocumentHighlights/DocumentHighlightsService.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Conformance/ImplementationFilesAndSignatureFiles/NamespacesFragmentsAndImplementationFiles/basic/E_NoNamespaceModuleDec02b.fs
examples/FSharp.Compiler/vsintegration/src/FSharp.Editor/InlineRename/InlineRenameService.fs
examples/FSharp.Compiler/vsintegration/src/FSharp.Editor/Common/CodeAnalysisExtensions.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/CompilerOptions/fsc/tokenize/tokenize01.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Conformance/LexicalAnalysis/ConditionalCompilation/ExtendedIfGrammar.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Conformance/ImplementationFilesAndSignatureFiles/NamespacesFragmentsAndImplementationFiles/basic/NoWarningWithModNS01a.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/CompilerOptions/fsc/tokenize/tokenize02.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Conformance/LexicalAnalysis/ConditionalCompilation/InStringLiteral02.fs
examples/FSharp.Compiler/vsintegration/src/FSharp.Editor/Options/EditorOptions.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Conformance/LexicalAnalysis/StringsAndCharacters/TripleQuoteStringInFSI02.fsx
examples/FSharp.Compiler/tests/FSharp.Core.UnitTests/FSharp.Core/Microsoft.FSharp.Core/IntConversionsGenerated.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/CompilerOptions/fsc/nologo/dummy.fsx
examples/FSharp.Compiler/vsintegration/src/FSharp.Editor/Options/UIHelpers.fs
examples/FSharp.Compiler/vsintegration/src/FSharp.Editor/Common/Logging.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Conformance/ImplementationFilesAndSignatureFiles/NamespacesFragmentsAndImplementationFiles/basic/AnonModule01Main.fs
examples/FSharp.Compiler/vsintegration/src/FSharp.Editor/Options/SettingsStore.fs
examples/FSharp.Compiler/src/Compiler/Optimize/LowerStateMachines.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Conformance/LexicalAnalysis/ConditionalCompilation/FSharp01.fs
examples/FSharp.Compiler/vsintegration/src/FSharp.Editor/Common/Logger.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Conformance/LexicalAnalysis/ConditionalCompilation/ConditionalCompilation01.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Conformance/TypesAndTypeConstraints/TypeParameterDefinitions/UnitSpecialization.fs
examples/FSharp.Compiler/vsintegration/src/FSharp.Editor/Classification/ClassificationDefinitions.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Conformance/TypesAndTypeConstraints/TypeParameterDefinitions/ValueTypesWithConstraints01.fs
examples/FSharp.Compiler/vsintegration/src/FSharp.Editor/Classification/ClassificationService.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Conformance/ImplementationFilesAndSignatureFiles/NamespacesFragmentsAndImplementationFiles/basic/NoWarningForOneCompiland.fs
examples/FSharp.Compiler/vsintegration/src/FSharp.Editor/Common/AssemblyInfo.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/CompilerOptions/fsc/gccerrors/gccerrors01.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Conformance/LexicalAnalysis/StringsAndCharacters/CharLiterals03.fs
examples/FSharp.Compiler/tests/FSharp.Core.UnitTests/FSharp.Core/Microsoft.FSharp.Collections/SeqModule.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Conformance/ImplementationFilesAndSignatureFiles/CheckingOfImplementationFiles/PublicPrivateInternal01.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Conformance/LexicalAnalysis/ConditionalCompilation/FSharp02.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Conformance/LexicalAnalysis/ConditionalCompilation/OCaml01.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Conformance/LexicalAnalysis/ConditionalCompilation/InStringLiteral01.fs
examples/FSharp.Compiler/tests/FSharp.Core.UnitTests/FSharp.Core/Microsoft.FSharp.Collections/ObsoleteSeqFunctions.fs
examples/FSharp.Compiler/vsintegration/src/FSharp.Editor/Common/Pervasive.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Conformance/ImplementationFilesAndSignatureFiles/CheckingOfImplementationFiles/E_GenericTypeConstraint02.fs
examples/FSharp.Compiler/src/Compiler/Optimize/LowerCalls.fs
examples/FSharp.Compiler/vsintegration/src/FSharp.Editor/Common/DocumentCache.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Conformance/LexicalAnalysis/StringsAndCharacters/Backslash01.fs
examples/FSharp.Compiler/vsintegration/src/FSharp.Editor/Common/Constants.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Conformance/ImplementationFilesAndSignatureFiles/CheckingOfImplementationFiles/E_AnonSignatureFile.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Conformance/ImplementationFilesAndSignatureFiles/CheckingOfImplementationFiles/properties02.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Conformance/LexicalAnalysis/StringsAndCharacters/ByteChars01.fs
examples/FSharp.Compiler/src/Compiler/DependencyManager/NativeDllResolveHandler.fs
examples/FSharp.Compiler/vsintegration/src/FSharp.Editor/TaskList/TaskListService.fs
examples/FSharp.Compiler/tests/FSharp.Core.UnitTests/FSharp.Core/Microsoft.FSharp.Collections/Utils.fs
examples/FSharp.Compiler/vsintegration/src/FSharp.Editor/Common/FSharpCodeAnalysisExtensions.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Conformance/LexicalAnalysis/StringsAndCharacters/CharLiterals02.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Conformance/ImplementationFilesAndSignatureFiles/CheckingOfImplementationFiles/Interfaces01.fs
examples/FSharp.Compiler/tests/FSharp.Core.UnitTests/FSharp.Core/Microsoft.FSharp.Collections/Array3Module.fs
examples/FSharp.Compiler/vsintegration/src/FSharp.Editor/FSharp.Editor.Attributes.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Conformance/ImplementationFilesAndSignatureFiles/CheckingOfImplementationFiles/E_MemberNotImplemented01.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Conformance/LexicalAnalysis/ConditionalCompilation/InComment01.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Conformance/LexicalAnalysis/StringsAndCharacters/EscapeSequences01.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Conformance/ImplementationFilesAndSignatureFiles/CheckingOfImplementationFiles/AbstractSlot01.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Conformance/LexicalAnalysis/StringsAndCharacters/ByteString02.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Conformance/LexicalAnalysis/SymbolicOperators/QMarkAssignSimple.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Conformance/LexicalAnalysis/StringsAndCharacters/ByteString03.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Conformance/ImplementationFilesAndSignatureFiles/CheckingOfImplementationFiles/E_GenericTypeConstraint01.fs
examples/FSharp.Compiler/tests/FSharp.Core.UnitTests/FSharp.Core/Microsoft.FSharp.Collections/MapModule.fs
examples/FSharp.Compiler/vsintegration/src/FSharp.Editor/LanguageService/FSharpAnalysisSaveFileCommandHandler.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Conformance/LexicalAnalysis/StringsAndCharacters/TripleQuoteString01.fs
examples/FSharp.Compiler/tests/FSharp.Core.UnitTests/FSharp.Core/Microsoft.FSharp.Collections/ListType.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Conformance/ImplementationFilesAndSignatureFiles/CheckingOfImplementationFiles/E_MatchOnProperCtor.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/CompilerOptions/fsc/lib/W_notfound.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Conformance/LexicalAnalysis/StringsAndCharacters/UnicodeString01.fs
examples/FSharp.Compiler/vsintegration/src/FSharp.Editor/Common/CancellableTasks.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Conformance/LexicalAnalysis/SymbolicOperators/LessThanDotOpenParen001.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Conformance/ImplementationFilesAndSignatureFiles/CheckingOfImplementationFiles/NullAsTrueUnion01.fs
examples/FSharp.Compiler/src/Compiler/DependencyManager/AssemblyResolveHandler.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Conformance/LexicalAnalysis/SymbolicOperators/QMarkPrecedenceMethodCall.fs
examples/FSharp.Compiler/tests/FSharp.Core.UnitTests/FSharp.Core/Microsoft.FSharp.Collections/Array2Module.fs
examples/FSharp.Compiler/vsintegration/src/FSharp.Editor/LanguageService/LegacyProjectWorkspaceMap.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Conformance/ImplementationFilesAndSignatureFiles/CheckingOfImplementationFiles/Properties01.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Conformance/LexicalAnalysis/SymbolicOperators/QMarkArguments.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Conformance/LexicalAnalysis/SymbolicOperators/QMarkPrecedenceCurrying.fs
examples/FSharp.Compiler/tests/FSharp.Core.UnitTests/FSharp.Core/Microsoft.FSharp.Collections/SetType.fs
examples/FSharp.Compiler/vsintegration/src/FSharp.Editor/LanguageService/MetadataAsSource.fs
examples/FSharp.Compiler/tests/FSharp.Core.UnitTests/FSharp.Core/Microsoft.FSharp.Collections/CollectionModulesConsistency.fs
examples/FSharp.Compiler/vsintegration/src/FSharp.Editor/Common/Extensions.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Conformance/LexicalAnalysis/SymbolicOperators/QMarkExpressionAsArgument.fs
examples/FSharp.Compiler/tests/FSharp.Core.UnitTests/FSharp.Core/Microsoft.FSharp.Collections/ArrayProperties.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Conformance/LexicalAnalysis/SymbolicOperators/QMarkPrecedenceMethodCallSpace.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Conformance/TypesAndTypeConstraints/CheckingSyntacticTypes/UnmanagedConstraint01.fs
examples/FSharp.Compiler/vsintegration/src/FSharp.Editor/LanguageService/ProvideFSharpVersionRegistrationAttribute.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Conformance/LexicalAnalysis/SymbolicOperators/QMarkExpressionAsArgument2.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/CompilerOptions/fsc/lib/order01.fs
examples/FSharp.Compiler/vsintegration/src/FSharp.Editor/Common/Vs.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/CompilerOptions/fsc/lib/Folder1/dll1.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Conformance/TypesAndTypeConstraints/CheckingSyntacticTypes/NativePtrArrayElementUsage.fs
examples/FSharp.Compiler/tests/FSharp.Core.UnitTests/FSharp.Core/RecordTypes.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Conformance/LexicalAnalysis/SymbolicOperators/GreaterThanDotParen01.fs
examples/FSharp.Compiler/tests/FSharp.Core.UnitTests/FSharp.Core/Microsoft.FSharp.Collections/SetModule.fs
examples/FSharp.Compiler/vsintegration/src/FSharp.Editor/LanguageService/AssemblyContentProvider.fs
examples/FSharp.Compiler/tests/FSharp.Core.UnitTests/FSharp.Core/Microsoft.FSharp.Collections/ObsoleteListFunctions.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/CompilerOptions/fsc/lib/multiple.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/CompilerOptions/fsc/Removed/deprecated_ml-keywords01.fs
examples/FSharp.Compiler/tests/FSharp.Core.UnitTests/FSharp.Core/Microsoft.FSharp.Collections/HashIdentityModule.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/CompilerOptions/fsc/lib/Folder3/Folder3a/dll1.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/CompilerOptions/fsc/Removed/sscli01.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/CompilerOptions/fsc/Removed/deprecated_no-string-interning01.fs
examples/FSharp.Compiler/tests/FSharp.Core.UnitTests/FSharp.Core/Microsoft.FSharp.Collections/StringModule.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/CompilerOptions/fsc/lib/Folder2/dll1.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Conformance/TypesAndTypeConstraints/CheckingSyntacticTypes/ConstraintCall1.fs
examples/FSharp.Compiler/vsintegration/src/FSharp.Editor/LanguageService/TextViewCreationListener.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Conformance/TypesAndTypeConstraints/CheckingSyntacticTypes/StructConstraint01.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/CompilerOptions/fsc/Removed/deprecated_debug-file01.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Conformance/LexicalAnalysis/SymbolicOperators/QMarkPrecedenceInArrays.fs
examples/FSharp.Compiler/tests/FSharp.Core.UnitTests/FSharp.Core/Microsoft.FSharp.Collections/ComparisonIdentityModule.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/CompilerOptions/fsc/lib/order02.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/CompilerOptions/fsc/subsystemversion/dummy.fs
examples/FSharp.Compiler/tests/FSharp.Core.UnitTests/FSharp.Core/Microsoft.FSharp.Collections/Array4Module.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Conformance/TypesAndTypeConstraints/CheckingSyntacticTypes/NullnessConstraint01.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Conformance/LexicalAnalysis/SymbolicOperators/GreaterThanColon001.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/CompilerOptions/fsc/lib/dummy.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Conformance/LexicalAnalysis/SymbolicOperators/QMarkSimple.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/CompilerOptions/fsc/Removed/deprecated_statistics01.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/CompilerOptions/fsc/optimize/optimize01.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Conformance/LexicalAnalysis/SymbolicOperators/QMarkPrecedenceArray.fs
examples/FSharp.Compiler/vsintegration/src/FSharp.Editor/LanguageService/WorkspaceExtensions.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Conformance/LexicalAnalysis/SymbolicOperators/QMarkNested.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/CompilerOptions/fsc/Removed/deprecated_generate-filter-blocks01.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Conformance/LexicalAnalysis/SymbolicOperators/QMarkPrecedenceSpace.fs
examples/FSharp.Compiler/tests/FSharp.Core.UnitTests/FSharp.Core/Microsoft.FSharp.Collections/ListModule.fs
examples/FSharp.Compiler/vsintegration/src/FSharp.Editor/LanguageService/FSharpEditorFactory.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/CompilerOptions/fsc/tailcalls/tailcalls01.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Conformance/LexicalAnalysis/Whitespace/WhiteSpace01.fs
examples/FSharp.Compiler/tests/FSharp.Test.Utilities/Assert.fs
examples/FSharp.Compiler/tests/FSharp.Core.UnitTests/FSharp.Core/Microsoft.FSharp.Collections/SeqMultipleIteration.fs
examples/FSharp.Compiler/vsintegration/src/FSharp.Editor/LanguageService/ProvideBraceCompletionAttribute.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Conformance/TypesAndTypeConstraints/CheckingSyntacticTypes/ExplicitMemberConstraints2.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/CompilerOptions/fsc/responsefile/responsefile02.fs
examples/FSharp.Compiler/tests/FSharp.Core.UnitTests/FSharp.Core/Microsoft.FSharp.Collections/SeqProperties.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/CompilerOptions/fsc/responsefile/responsefile01.fs
examples/FSharp.Compiler/tests/FSharp.Core.UnitTests/FSharp.Core/Microsoft.FSharp.Collections/MapType.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/CompilerOptions/fsc/platform/bitnesscheck.fsx
examples/FSharp.Compiler/vsintegration/src/FSharp.Editor/LanguageService/SymbolHelpers.fs
examples/FSharp.Compiler/tests/FSharp.Core.UnitTests/FSharp.Core/Microsoft.FSharp.Collections/ListProperties.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/CompilerOptions/fsc/noframework/noframework01.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/CompilerOptions/fsc/noframework/noframework01.fsx
examples/FSharp.Compiler/vsintegration/src/FSharp.Editor/LanguageService/Symbols.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Libraries/Portable/provider.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Libraries/Portable/parse_tests.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Libraries/Core/PartialTrust/PartialTrust01.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/InteractiveSession/Misc/ReflectionBugOnMono6320.fsx
examples/FSharp.Compiler/tests/fsharpqa/Source/InteractiveSession/Misc/lib.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/InteractiveSession/Misc/DontShowCompilerGenNames01.fsx
examples/FSharp.Compiler/tests/fsharpqa/Source/InteractiveSession/Misc/NativeIntSuffix01.fs
examples/FSharp.Compiler/vsintegration/src/FSharp.Editor/LanguageService/IFSharpWorkspaceService.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Diagnostics/General/W_FailwithfRedundantArgs.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Libraries/Core/NativeInterop/stackalloc/negativesize01.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/InteractiveSession/Misc/ScriptTest/LoadScriptResolution01.fsx
examples/FSharp.Compiler/tests/fsharpqa/Source/Conformance/LexicalAnalysis/IdentifiersAndKeywords/backtickmoduleandtypenames.fsx
examples/FSharp.Compiler/tests/fsharpqa/Source/InteractiveSession/Misc/ScriptTest/script1.fsx
examples/FSharp.Compiler/tests/FSharp.Test.Utilities/ReflectionHelper.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/InteractiveSession/Misc/LoadFile02.fsx
examples/FSharp.Compiler/tests/fsharpqa/Source/Diagnostics/General/W_InvalidArgRedundantArgs.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Conformance/TypesAndTypeConstraints/CheckingSyntacticTypes/ComparisonConstraint01.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/InteractiveSession/Misc/CommandLineArgs02.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/CompilerOptions/fsc/platform/platf_01.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Diagnostics/General/E_MemberConstraintsWithSpecialStatus01.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/InteractiveSession/Misc/ToStringNull.fsx
examples/FSharp.Compiler/tests/fsharpqa/Source/Conformance/LexicalAnalysis/IdentifiersAndKeywords/E_ReservedIdentKeywords.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/InteractiveSession/Misc/ccc/RelativeHashRResolution02_1.fsx
examples/FSharp.Compiler/tests/fsharpqa/Source/InteractiveSession/Misc/LoadFile01.fsx
examples/FSharp.Compiler/tests/fsharpqa/Source/Conformance/LexicalAnalysis/IdentifiersAndKeywords/ValidIdentifier02.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/InteractiveSession/Misc/ccc/RelativeHashRResolution03_1.fsx
examples/FSharp.Compiler/tests/fsharpqa/Source/InteractiveSession/Misc/ccc/RelativeHashRResolution01_1.fsx
examples/FSharp.Compiler/tests/fsharpqa/Source/InteractiveSession/Misc/Regressions02.fs
examples/FSharp.Compiler/vsintegration/src/FSharp.Editor/LanguageService/Tokenizer.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/InteractiveSession/Misc/FieldName_struct.fsx
examples/FSharp.Compiler/tests/fsharpqa/Source/Conformance/LexicalAnalysis/IdentifiersAndKeywords/ValidIdentifier01.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/InteractiveSession/Misc/UNativeIntSuffix01.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/InteractiveSession/Misc/InterfaceCrossConstrained02.fsx
examples/FSharp.Compiler/tests/fsharpqa/Source/InteractiveSession/Misc/CommandLineArgs01b.fs
examples/FSharp.Compiler/vsintegration/src/FSharp.Editor/Completion/CompletionProvider.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/InteractiveSession/Misc/References40.fsx
examples/FSharp.Compiler/tests/fsharpqa/Source/InteractiveSession/Misc/LoadOrderOfExecution3.fsx
examples/FSharp.Compiler/tests/fsharpqa/Source/InteractiveSession/Misc/LoadingFsx.fsx
examples/FSharp.Compiler/tests/fsharpqa/Source/InteractiveSession/Misc/NoExpansionOfAbbrevUoMInFSI.fsx
examples/FSharp.Compiler/tests/fsharpqa/Source/Diagnostics/NONTERM/quoteExpr01.fs
examples/FSharp.Compiler/tests/FSharp.Test.Utilities/SurfaceArea.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/InteractiveSession/Misc/UnitConstInput_6323.fsx
examples/FSharp.Compiler/tests/fsharpqa/Source/Diagnostics/General/W_InvalidOpRedundantArgs.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/InteractiveSession/Misc/LoadMultipleFiles.fsx
examples/FSharp.Compiler/vsintegration/src/FSharp.Editor/Completion/CompletionUtils.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/InteractiveSession/Misc/DeclareEvent.fsx
examples/FSharp.Compiler/tests/fsharpqa/Source/InteractiveSession/Misc/PipingWithDirectives.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/InteractiveSession/Misc/PublicField.fsx
examples/FSharp.Compiler/tests/fsharpqa/Source/InteractiveSession/Misc/DefinesInteractive.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/InteractiveSession/Misc/E_InterfaceCrossConstrained02.fsx
examples/FSharp.Compiler/tests/fsharpqa/Source/InteractiveSession/Misc/ReferenceFullPathGenTest.fsx
examples/FSharp.Compiler/tests/fsharpqa/Source/InteractiveSession/Misc/InterfaceCrossConstrained01.fsx
examples/FSharp.Compiler/tests/fsharpqa/Source/InteractiveSession/Misc/LoadOrderOfExecution2.fsx
examples/FSharp.Compiler/tests/fsharpqa/Source/Diagnostics/NONTERM/fileModuleImpl03b.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/InteractiveSession/Misc/ReflectionTypeNameMangling01.fsx
examples/FSharp.Compiler/tests/fsharpqa/Source/CompilerOptions/fsc/out/notexist.fsx
examples/FSharp.Compiler/tests/fsharpqa/Source/InteractiveSession/Misc/CommandLineArgs01.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Diagnostics/General/W_NullArgRedundantArgs.fs
examples/FSharp.Compiler/vsintegration/src/FSharp.Editor/Completion/PathCompletionUtilities.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Conformance/LexicalAnalysis/IdentifiersAndKeywords/W_ReservedWord01.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/InteractiveSession/Misc/DefinesCompiled.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/InteractiveSession/Misc/Array2D1.fsx
examples/FSharp.Compiler/tests/fsharpqa/Source/InteractiveSession/Misc/LoadOrderOfExecution3a.fsx
examples/FSharp.Compiler/tests/fsharpqa/Source/InteractiveSession/Misc/SubtypeArgInterfaceWithAbstractMember.fsx
examples/FSharp.Compiler/tests/fsharpqa/Source/InteractiveSession/Misc/LoadOrderOfExecution1.fsx
examples/FSharp.Compiler/tests/fsharpqa/Source/InteractiveSession/Misc/UnitConstInput_6323b.fsx
examples/FSharp.Compiler/tests/fsharpqa/Source/InteractiveSession/Misc/FieldName_record.fsx
examples/FSharp.Compiler/tests/fsharpqa/Source/Diagnostics/General/W_InstantiationOfGenericTypeMissing01.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/InteractiveSession/Misc/References35.fsx
examples/FSharp.Compiler/vsintegration/src/FSharp.Editor/Completion/HashDirectiveCompletionProvider.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/InteractiveSession/Misc/DoSingleValue01.fsx
examples/FSharp.Compiler/tests/fsharpqa/Source/Conformance/LexicalAnalysis/NumericLiterals/BigIntConversion02b.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Misc/AsyncOperations.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/CompilerOptions/fsc/out/exist.fsx
examples/FSharp.Compiler/tests/fsharpqa/Source/Diagnostics/General/W_redefineOperator10.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/InteractiveSession/Misc/EmptyList.fsx
examples/FSharp.Compiler/tests/fsharpqa/Source/Conformance/LexicalAnalysis/NumericLiterals/enumNegativeLiterals001.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Diagnostics/NONTERM/quoteExpr01b.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/InteractiveSession/Misc/LoadOrderOfExecution4.fsx
examples/FSharp.Compiler/tests/fsharpqa/Source/InteractiveSession/Misc/ReflectionBugOnMono6433.fsx
examples/FSharp.Compiler/tests/fsharpqa/Source/CompilerOptions/fsc/out/dummy.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/InteractiveSession/Misc/UnknownDependencyManager/script1.fsx
examples/FSharp.Compiler/tests/fsharpqa/Source/InteractiveSession/Misc/Array2D01.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Diagnostics/General/W_redefineOperator04.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Misc/productioncoverage02.fs
examples/FSharp.Compiler/vsintegration/src/FSharp.Editor/Completion/SignatureHelp.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Diagnostics/General/W_CreateIDisposable.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/InteractiveSession/Misc/References.fsx
examples/FSharp.Compiler/tests/fsharpqa/Source/InteractiveSession/Misc/DefaultReferences.fsx
examples/FSharp.Compiler/tests/fsharpqa/Source/InteractiveSession/Misc/VerbatimIdentifier01.fsx
examples/FSharp.Compiler/tests/fsharpqa/Source/Diagnostics/General/W_redefineOperator05.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Misc/AssemblyResolve01.fsx
examples/FSharp.Compiler/vsintegration/src/FSharp.Editor/Completion/CompletionService.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Diagnostics/General/W_redefineOperator03.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/CompilerOptions/fsc/standalone/E_MayNotIncludeEXERef.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Misc/Parsing01.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/InteractiveSession/Misc/aaa/RelativeHashRResolution02_2.fsx
examples/FSharp.Compiler/tests/fsharpqa/Source/InteractiveSession/Misc/Regressions01.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Diagnostics/General/W_LowercaseLiteralNotIgnored.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Conformance/TypesAndTypeConstraints/CheckingSyntacticTypes/MemberConstraint01.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Misc/StaticMethodValueTypeMain.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Diagnostics/General/W_LowercaseLiteralIgnored.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Diagnostics/General/W_InstantiationOfGenericTypeMissing02.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Conformance/TypesAndTypeConstraints/CheckingSyntacticTypes/ConstraintCall2.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Misc/FileWithSameNameDiffExt.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Conformance/LexicalAnalysis/NumericLiterals/BigNums01.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Diagnostics/General/W_OverrideImplementationInAugmentation03b.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Diagnostics/General/X-DontWarnOnImplicitModule01.fsx
examples/FSharp.Compiler/tests/fsharpqa/Source/Misc/Parsing02.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Misc/Global01.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/InteractiveSession/Misc/FieldName_class.fsx
examples/FSharp.Compiler/tests/fsharpqa/Source/Conformance/TypesAndTypeConstraints/CheckingSyntacticTypes/StructConstraint02.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Misc/UseStatementCallDisposeOnNullValue01.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/InteractiveSession/Misc/aaa/bbb/RelativeHashRResolution04_2.fsx
examples/FSharp.Compiler/tests/fsharpqa/Source/Diagnostics/General/W_redefineOperator09.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Diagnostics/General/W_IndexedPropertySetter01.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Misc/AssemblyResolve01.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Diagnostics/General/W_redefineOperator08.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/InteractiveSession/Misc/aaa/bbb/RelativeHashRResolution04_1.fsx
examples/FSharp.Compiler/tests/fsharpqa/Source/Diagnostics/General/W_RaiseRedundantArgs.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Conformance/LexicalAnalysis/NumericLiterals/casingIEEE-lf-LF02.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Diagnostics/General/W_GenericTypeProvideATypeInstantiation01.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Misc/6448.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/InteractiveSession/Misc/aaa/bbb/RelativeHashRResolution01_2.fsx
examples/FSharp.Compiler/tests/fsharpqa/Source/Diagnostics/General/W_redefineOperator07.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Diagnostics/General/E_StructMustHaveAtLeastOneField.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Misc/DefaultManifest_dll.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Diagnostics/General/W_redefineOperator01.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/InteractiveSession/Misc/aaa/bbb/RelativeHashRResolution05_1.fsx
examples/FSharp.Compiler/tests/fsharpqa/Source/Misc/WhetherEmbededManifest.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/InteractiveSession/Misc/aaa/RelativeHashRResolution03_2.fsx
examples/FSharp.Compiler/tests/fsharpqa/Source/InteractiveSession/Misc/aaa/RelativeHashRResolution05_2.fsx
examples/FSharp.Compiler/tests/fsharpqa/Source/Misc/ConstraintSolverRecursion01.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Diagnostics/General/W_PassingResxToCompilerIsDeprecated01.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Diagnostics/General/E_ConsiderAddingSealedAttribute01.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Diagnostics/General/W_FailwithRedundantArgs.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Diagnostics/General/E_ObjectConstructorAndTry01.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Diagnostics/General/E_ObjectConstructorAndTry02.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Misc/SerializableClosure01.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Diagnostics/General/W_redefineOperator02.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Conformance/LexicalAnalysis/NumericLiterals/NumericaLiterals01.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Misc/FileWithSameNameDiffExt.fsx
examples/FSharp.Compiler/tests/fsharpqa/Source/Diagnostics/General/W_OverrideImplementationInAugmentation03a.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Conformance/LexicalAnalysis/NumericLiterals/BigIntConversion02.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Diagnostics/General/W_OverrideImplementationInAugmentation01a.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Conformance/LexicalAnalysis/NumericLiterals/casingOct.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Conformance/TypesAndTypeConstraints/CheckingSyntacticTypes/ExplicitMemberConstraints1.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Diagnostics/General/W_redefineOperator06.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Misc/DefaultManifest.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Conformance/TypesAndTypeConstraints/CheckingSyntacticTypes/W_LessGenericThanAnnotated01.fs
examples/FSharp.Compiler/tests/fsharpqa/Source/Stress/SeqExprCapacity.fsx
examples/FSharp.Compiler/tests/fsharpqa/Source/Conformance/LexicalAnalysis/Directives/multiple_nowarn_many.fs