-
Notifications
You must be signed in to change notification settings - Fork 856
Expand file tree
/
Copy pathCompilerConfig.fsi
More file actions
951 lines (556 loc) · 25 KB
/
CompilerConfig.fsi
File metadata and controls
951 lines (556 loc) · 25 KB
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
// Copyright (c) Microsoft Corporation. All Rights Reserved. See License.txt in the project root for license information.
/// The configuration of the compiler (TcConfig and TcConfigBuilder)
module internal FSharp.Compiler.CompilerConfig
open System
open FSharp.Compiler.IO
open Internal.Utilities
open Internal.Utilities.Library
open FSharp.Compiler
open FSharp.Compiler.Xml
open FSharp.Compiler.AbstractIL.IL
open FSharp.Compiler.AbstractIL.ILBinaryReader
open FSharp.Compiler.AbstractIL.ILPdbWriter
open FSharp.Compiler.DependencyManager
open FSharp.Compiler.Diagnostics
open FSharp.Compiler.DiagnosticsLogger
open FSharp.Compiler.Features
open FSharp.Compiler.CodeAnalysis
open FSharp.Compiler.Syntax
open FSharp.Compiler.Text
exception FileNameNotResolved of searchedLocations: string * fileName: string * range: range
exception LoadedSourceNotFoundIgnoring of fileName: string * range: range
/// Represents a reference to an F# assembly. May be backed by a real assembly on disk (read by Abstract IL), or a cross-project
/// reference in FSharp.Compiler.Service.
type IRawFSharpAssemblyData =
/// The raw list AutoOpenAttribute attributes in the assembly
abstract GetAutoOpenAttributes: unit -> string list
/// The raw list InternalsVisibleToAttribute attributes in the assembly
abstract GetInternalsVisibleToAttributes: unit -> string list
/// The raw IL module definition in the assembly, if any. This is not present for cross-project references
/// in the language service
abstract TryGetILModuleDef: unit -> ILModuleDef option
/// Indicates if the assembly has any F# signature data attribute
abstract HasAnyFSharpSignatureDataAttribute: bool
/// Indicates if the assembly has an F# signature data attribute suitable for use with this version of F# tooling
abstract HasMatchingFSharpSignatureDataAttribute: bool
/// Get the raw F# signature data in the assembly, if any
abstract GetRawFSharpSignatureData:
m: range * ilShortAssemName: string * fileName: string ->
(string * ((unit -> ReadOnlyByteMemory) * (unit -> ReadOnlyByteMemory) option)) list
/// Get the raw F# optimization data in the assembly, if any
abstract GetRawFSharpOptimizationData:
m: range * ilShortAssemName: string * fileName: string ->
(string * ((unit -> ReadOnlyByteMemory) * (unit -> ReadOnlyByteMemory) option)) list
/// Get the table of type forwarders in the assembly
abstract GetRawTypeForwarders: unit -> ILExportedTypesAndForwarders
/// Get the identity of the assembly
abstract ILScopeRef: ILScopeRef
/// Get the identities of the assemblies referenced by this assembly
abstract ILAssemblyRefs: ILAssemblyRef list
/// Get the short name for this assembly
abstract ShortAssemblyName: string
type TimeStampCache =
new: defaultTimeStamp: DateTime -> TimeStampCache
member GetFileTimeStamp: fileName: string -> DateTime
member GetProjectReferenceTimeStamp: projectReference: IProjectReference -> DateTime
and [<RequireQualifiedAccess>] ProjectAssemblyDataResult =
| Available of IRawFSharpAssemblyData
| Unavailable of useOnDiskInstead: bool
and IProjectReference =
/// The name of the assembly file generated by the project
abstract FileName: string
/// Evaluate raw contents of the assembly file generated by the project.
/// 'None' may be returned if an in-memory view of the contents is, for some reason,
/// not available. In this case the on-disk view of the contents will be preferred.
abstract EvaluateRawContents: unit -> Async<ProjectAssemblyDataResult>
/// Get the logical timestamp that would be the timestamp of the assembly file generated by the project.
///
/// For project references this is maximum of the timestamps of all dependent files.
/// The project is not actually built, nor are any assemblies read, but the timestamps for each dependent file
/// are read via the FileSystem. If the files don't exist, then a default timestamp is used.
///
/// The operation returns None only if it is not possible to create an IncrementalBuilder for the project at all, e.g. if there
/// are fatal errors in the options for the project.
abstract TryGetLogicalTimeStamp: cache: TimeStampCache -> DateTime option
type AssemblyReference =
| AssemblyReference of range: range * text: string * projectReference: IProjectReference option
member Range: range
member Text: string
member ProjectReference: IProjectReference option
member SimpleAssemblyNameIs: string -> bool
type UnresolvedAssemblyReference = UnresolvedAssemblyReference of string * AssemblyReference list
[<RequireQualifiedAccess>]
type CompilerTarget =
| WinExe
| ConsoleExe
| Dll
| Module
member IsExe: bool
[<RequireQualifiedAccess>]
type CopyFSharpCoreFlag =
| Yes
| No
/// Represents the file or string used for the --version flag
type VersionFlag =
| VersionString of string
| VersionFile of string
| VersionNone
member GetVersionInfo: implicitIncludeDir: string -> ILVersionInfo
member GetVersionString: implicitIncludeDir: string -> string
type Directive =
| Resolution
| Include
type LStatus =
| Unprocessed
| Processed
type TokenizeOption =
| AndCompile
| Only
| Debug
| Unfiltered
type PackageManagerLine =
{ Directive: Directive
LineStatus: LStatus
Line: string
Range: range }
static member AddLineWithKey:
packageKey: string ->
directive: Directive ->
line: string ->
m: range ->
packageManagerLines: Map<string, PackageManagerLine list> ->
Map<string, PackageManagerLine list>
static member RemoveUnprocessedLines:
packageKey: string ->
packageManagerLines: Map<string, PackageManagerLine list> ->
Map<string, PackageManagerLine list>
static member SetLinesAsProcessed:
packageKey: string ->
packageManagerLines: Map<string, PackageManagerLine list> ->
Map<string, PackageManagerLine list>
static member StripDependencyManagerKey: packageKey: string -> line: string -> string
[<RequireQualifiedAccess>]
type MetadataAssemblyGeneration =
| None
/// Includes F# signature and optimization metadata as resources in the emitting assembly.
/// Implementation assembly will still be emitted normally, but will emit the reference assembly with the specified output path.
| ReferenceOut of outputPath: string
/// Includes F# signature and optimization metadata as resources in the emitting assembly.
/// Only emits the assembly as a reference assembly.
| ReferenceOnly
[<RequireQualifiedAccess>]
type ParallelReferenceResolution =
| On
| Off
/// Determines the algorithm used for type-checking.
[<RequireQualifiedAccess>]
type TypeCheckingMode =
/// Default mode where all source files are processed sequentially in compilation order.
| Sequential
/// Parallel type-checking that uses automated file-to-file dependency detection to construct a file graph processed in parallel.
| Graph
/// Some of the information dedicated to type-checking.
[<RequireQualifiedAccess>]
type TypeCheckingConfig =
{
Mode: TypeCheckingMode
/// When using TypeCheckingMode.Graph, this flag determines whether the
/// resolved file graph should be serialised as a Mermaid diagram into a file next to the output dll.
DumpGraph: bool
}
[<NoEquality; NoComparison>]
type TcConfigBuilder =
{
mutable primaryAssembly: PrimaryAssembly
mutable noFeedback: bool
mutable stackReserveSize: int32 option
mutable implicitIncludeDir: string
mutable openDebugInformationForLaterStaticLinking: bool
defaultFSharpBinariesDir: string
mutable compilingFSharpCore: bool
mutable useIncrementalBuilder: bool
mutable includes: string list
mutable implicitOpens: string list
mutable useFsiAuxLib: bool
mutable implicitlyReferenceDotNetAssemblies: bool
mutable resolutionEnvironment: LegacyResolutionEnvironment
mutable implicitlyResolveAssemblies: bool
mutable conditionalDefines: string list
/// Sources added into the build with #load
mutable loadedSources: (range * string * string) list
mutable compilerToolPaths: string list
mutable referencedDLLs: AssemblyReference list
mutable packageManagerLines: Map<string, PackageManagerLine list>
mutable projectReferences: IProjectReference list
mutable knownUnresolvedReferences: UnresolvedAssemblyReference list
reduceMemoryUsage: ReduceMemoryFlag
mutable subsystemVersion: int * int
mutable useHighEntropyVA: bool
mutable inputCodePage: int option
mutable clearResultsCache: bool
mutable embedResources: string list
mutable diagnosticsOptions: FSharpDiagnosticOptions
mutable checkNullness: bool
mutable checkOverflow: bool
mutable showReferenceResolutions: bool
mutable outputDir: string option
mutable outputFile: string option
mutable platform: ILPlatform option
mutable prefer32Bit: bool
mutable useSimpleResolution: bool
mutable target: CompilerTarget
mutable debuginfo: bool
mutable testFlagEmitFeeFeeAs100001: bool
mutable dumpDebugInfo: bool
mutable debugSymbolFile: string option
mutable typeCheckOnly: bool
mutable parseOnly: bool
mutable importAllReferencesOnly: bool
mutable simulateException: string option
mutable printAst: bool
mutable tokenize: TokenizeOption
mutable testInteractionParser: bool
mutable reportNumDecls: bool
mutable printSignature: bool
mutable printSignatureFile: string
mutable printAllSignatureFiles: bool
mutable xmlDocOutputFile: string option
mutable stats: bool
mutable generateFilterBlocks: bool
mutable signer: string option
mutable container: string option
mutable delaysign: bool
mutable publicsign: bool
mutable version: VersionFlag
mutable metadataVersion: string option
mutable standalone: bool
mutable extraStaticLinkRoots: string list
mutable compressMetadata: bool
mutable noSignatureData: bool
mutable onlyEssentialOptimizationData: bool
mutable useOptimizationDataFile: bool
mutable jitTracking: bool
mutable portablePDB: bool
mutable embeddedPDB: bool
mutable embedAllSource: bool
mutable embedSourceList: string list
mutable sourceLink: string
mutable internConstantStrings: bool
mutable extraOptimizationIterations: int
mutable win32icon: string
mutable win32res: string
mutable win32manifest: string
mutable includewin32manifest: bool
mutable linkResources: string list
mutable legacyReferenceResolver: LegacyReferenceResolver
mutable showFullPaths: bool
mutable diagnosticStyle: DiagnosticStyle
mutable utf8output: bool
mutable flatErrors: bool
mutable maxErrors: int
mutable abortOnError: bool
mutable baseAddress: int32 option
mutable checksumAlgorithm: HashAlgorithm
#if DEBUG
mutable showOptimizationData: bool
#endif
mutable showTerms: bool
mutable writeTermsToFiles: bool
mutable doDetuple: bool
mutable doTLR: bool
mutable doFinalSimplify: bool
mutable optsOn: bool
mutable optSettings: Optimizer.OptimizationSettings
mutable emitTailcalls: bool
mutable deterministic: bool
mutable parallelParsing: bool
mutable parallelIlxGen: bool
mutable emitMetadataAssembly: MetadataAssemblyGeneration
mutable preferredUiLang: string option
mutable lcid: int option
mutable productNameForBannerText: string
mutable showBanner: bool
mutable showTimes: bool
mutable writeTimesToFile: string option
mutable showLoadedAssemblies: bool
mutable continueAfterParseFailure: bool
#if !NO_TYPEPROVIDERS
mutable showExtensionTypeMessages: bool
#endif
mutable pause: bool
mutable alwaysCallVirt: bool
mutable noDebugAttributes: bool
mutable useReflectionFreeCodeGen: bool
/// If true, indicates all type checking and code generation is in the context of fsi.exe
isInteractive: bool
isInvalidationSupported: bool
mutable emitDebugInfoInQuotations: bool
mutable strictIndentation: bool option
mutable inlineNamedFunctions: bool option
mutable exename: string option
mutable copyFSharpCore: CopyFSharpCoreFlag
mutable shadowCopyReferences: bool
mutable useSdkRefs: bool
mutable fxResolver: FxResolver option
mutable bufferWidth: int option
mutable fsiMultiAssemblyEmit: bool
rangeForErrors: range
sdkDirOverride: string option
/// A function to call to try to get an object that acts as a snapshot of the metadata section of a .NET binary,
/// and from which we can read the metadata. Only used when metadataOnly=true.
mutable tryGetMetadataSnapshot: ILReaderTryGetMetadataSnapshot
/// if true - 'let mutable x = Span.Empty', the value 'x' is a stack referring span. Used for internal testing purposes only until we get true stack spans.
mutable internalTestSpanStackReferring: bool
/// Prevent erasure of conditional attributes and methods so tooling is able analyse them.
mutable noConditionalErasure: bool
/// Take '#line' into account? Defaults to true
mutable applyLineDirectives: bool
mutable pathMap: PathMap
mutable langVersion: LanguageVersion
mutable disabledLanguageFeatures: Set<LanguageFeature>
mutable xmlDocInfoLoader: IXmlDocumentationInfoLoader option
mutable exiter: Exiter
mutable parallelReferenceResolution: ParallelReferenceResolution
mutable captureIdentifiersWhenParsing: bool
mutable typeCheckingConfig: TypeCheckingConfig
mutable dumpSignatureData: bool
mutable realsig: bool
mutable compilationMode: TcGlobals.CompilationMode
}
static member CreateNew:
legacyReferenceResolver: LegacyReferenceResolver *
defaultFSharpBinariesDir: string *
reduceMemoryUsage: ReduceMemoryFlag *
implicitIncludeDir: string *
isInteractive: bool *
isInvalidationSupported: bool *
defaultCopyFSharpCore: CopyFSharpCoreFlag *
tryGetMetadataSnapshot: ILReaderTryGetMetadataSnapshot *
sdkDirOverride: string option *
rangeForErrors: range ->
TcConfigBuilder
member DecideNames: string list -> string * string option * string
member TurnWarningOff: range * string -> unit
member TurnWarningOn: range * string -> unit
member AddIncludePath: range * string * string -> unit
member AddCompilerToolsByPath: string -> unit
member AddReferencedAssemblyByPath: range * string -> unit
member RemoveReferencedAssemblyByPath: range * string -> unit
member AddEmbeddedSourceFile: string -> unit
member AddEmbeddedResource: string -> unit
member AddPathMapping: oldPrefix: string * newPrefix: string -> unit
static member SplitCommandLineResourceInfo: string -> string * string * ILResourceAccess
// Directories to start probing in for native DLLs for FSI dynamic loading
member GetNativeProbingRoots: unit -> seq<string>
member AddReferenceDirective:
dependencyProvider: DependencyProvider * m: range * path: string * directive: Directive -> unit
member AddLoadedSource: m: range * originalPath: string * pathLoadedFrom: string -> unit
member FxResolver: FxResolver
member SetUseSdkRefs: useSdkRefs: bool -> unit
member SetPrimaryAssembly: primaryAssembly: PrimaryAssembly -> unit
/// Immutable TcConfig, modifications are made via a TcConfigBuilder
[<Sealed>]
type TcConfig =
member primaryAssembly: PrimaryAssembly
member noFeedback: bool
member stackReserveSize: int32 option
member implicitIncludeDir: string
member openDebugInformationForLaterStaticLinking: bool
member fsharpBinariesDir: string
member compilingFSharpCore: bool
member useIncrementalBuilder: bool
member includes: string list
member implicitOpens: string list
member useFsiAuxLib: bool
member implicitlyReferenceDotNetAssemblies: bool
member implicitlyResolveAssemblies: bool
member conditionalDefines: string list
member subsystemVersion: int * int
member useHighEntropyVA: bool
member compilerToolPaths: string list
member referencedDLLs: AssemblyReference list
member reduceMemoryUsage: ReduceMemoryFlag
member inputCodePage: int option
member clearResultsCache: bool
member embedResources: string list
member diagnosticsOptions: FSharpDiagnosticOptions
member checkNullness: bool
member checkOverflow: bool
member showReferenceResolutions: bool
member outputDir: string option
member outputFile: string option
member platform: ILPlatform option
member prefer32Bit: bool
member useSimpleResolution: bool
member target: CompilerTarget
member debuginfo: bool
member testFlagEmitFeeFeeAs100001: bool
member dumpDebugInfo: bool
member debugSymbolFile: string option
member typeCheckOnly: bool
member parseOnly: bool
member importAllReferencesOnly: bool
member simulateException: string option
member printAst: bool
member tokenize: TokenizeOption
member testInteractionParser: bool
member reportNumDecls: bool
member printSignature: bool
member printSignatureFile: string
member printAllSignatureFiles: bool
member xmlDocOutputFile: string option
member stats: bool
member generateFilterBlocks: bool
member signer: string option
member container: string option
member delaysign: bool
member publicsign: bool
member version: VersionFlag
member metadataVersion: string option
member standalone: bool
member extraStaticLinkRoots: string list
member compressMetadata: bool
member noSignatureData: bool
member onlyEssentialOptimizationData: bool
member useOptimizationDataFile: bool
member jitTracking: bool
member portablePDB: bool
member embeddedPDB: bool
member embedAllSource: bool
member embedSourceList: string list
member sourceLink: string
member internConstantStrings: bool
member extraOptimizationIterations: int
member win32icon: string
member win32res: string
member win32manifest: string
member includewin32manifest: bool
member linkResources: string list
member showFullPaths: bool
member diagnosticStyle: DiagnosticStyle
member utf8output: bool
member flatErrors: bool
member maxErrors: int
member baseAddress: int32 option
member checksumAlgorithm: HashAlgorithm
#if DEBUG
member showOptimizationData: bool
#endif
member showTerms: bool
member writeTermsToFiles: bool
member doDetuple: bool
member doTLR: bool
member doFinalSimplify: bool
member optSettings: Optimizer.OptimizationSettings
member emitTailcalls: bool
member deterministic: bool
member parallelParsing: bool
member parallelIlxGen: bool
member emitMetadataAssembly: MetadataAssemblyGeneration
member pathMap: PathMap
member preferredUiLang: string option
member optsOn: bool
member productNameForBannerText: string
member showBanner: bool
member showTimes: bool
member writeTimesToFile: string option
member showLoadedAssemblies: bool
member continueAfterParseFailure: bool
#if !NO_TYPEPROVIDERS
member showExtensionTypeMessages: bool
#endif
member pause: bool
member alwaysCallVirt: bool
member noDebugAttributes: bool
member useReflectionFreeCodeGen: bool
/// If true, indicates all type checking and code generation is in the context of fsi.exe
member isInteractive: bool
member isInvalidationSupported: bool
member bufferWidth: int option
/// Indicates if F# Interactive is using single-assembly emit via Reflection.Emit, where internals are available.
member fsiMultiAssemblyEmit: bool
member xmlDocInfoLoader: IXmlDocumentationInfoLoader option
member FxResolver: FxResolver
member strictIndentation: bool option
member inlineNamedFunctions: bool
member GetTargetFrameworkDirectories: unit -> string list
/// Get the loaded sources that exist and issue a warning for the ones that don't
member GetAvailableLoadedSources: unit -> (range * string) list
member ComputeCanContainEntryPoint: sourceFiles: string list -> bool list * bool
/// File system query based on TcConfig settings
member ResolveSourceFile: range * fileName: string * pathLoadedFrom: string -> string
/// File system query based on TcConfig settings
member MakePathAbsolute: string -> string
member resolutionEnvironment: LegacyResolutionEnvironment
member copyFSharpCore: CopyFSharpCoreFlag
member shadowCopyReferences: bool
member useSdkRefs: bool
member sdkDirOverride: string option
member legacyReferenceResolver: LegacyReferenceResolver
member emitDebugInfoInQuotations: bool
member langVersion: LanguageVersion
static member Create: TcConfigBuilder * validate: bool -> TcConfig
member tryGetMetadataSnapshot: ILReaderTryGetMetadataSnapshot
member targetFrameworkVersion: string
member knownUnresolvedReferences: UnresolvedAssemblyReference list
member packageManagerLines: Map<string, PackageManagerLine list>
member loadedSources: (range * string * string) list
/// Prevent erasure of conditional attributes and methods so tooling is able analyse them.
member noConditionalErasure: bool
/// Take '#line' into account? Defaults to true
member applyLineDirectives: bool
/// if true - 'let mutable x = Span.Empty', the value 'x' is a stack referring span. Used for internal testing purposes only until we get true stack spans.
member internalTestSpanStackReferring: bool
member GetSearchPathsForLibraryFiles: unit -> string list
member IsSystemAssembly: string -> bool
member PrimaryAssemblyDllReference: unit -> AssemblyReference
member CoreLibraryDllReference: unit -> AssemblyReference
/// Allow forking and subsequent modification of the TcConfig via a new TcConfigBuilder
member CloneToBuilder: unit -> TcConfigBuilder
/// Indicates if the compilation will result in F# signature data resource in the generated binary
member GenerateSignatureData: bool
/// Indicates if the compilation will result in an F# optimization data resource in the generated binary
member GenerateOptimizationData: bool
/// Check if the primary assembly is mscorlib
member assumeDotNetFramework: bool
member exiter: Exiter
member parallelReferenceResolution: ParallelReferenceResolution
member captureIdentifiersWhenParsing: bool
member typeCheckingConfig: TypeCheckingConfig
member dumpSignatureData: bool
member realsig: bool
member compilationMode: TcGlobals.CompilationMode
/// Represents a computation to return a TcConfig. Normally this is just a constant immutable TcConfig,
/// but for F# Interactive it may be based on an underlying mutable TcConfigBuilder.
[<Sealed>]
type TcConfigProvider =
member Get: CompilationThreadToken -> TcConfig
/// Get a TcConfigProvider which will return only the exact TcConfig.
static member Constant: TcConfig -> TcConfigProvider
/// Get a TcConfigProvider which will continue to respect changes in the underlying
/// TcConfigBuilder rather than delivering snapshots.
static member BasedOnMutableBuilder: TcConfigBuilder -> TcConfigProvider
val TryResolveFileUsingPaths: paths: string seq * m: range * fileName: string -> string option
val ResolveFileUsingPaths: paths: string seq * m: range * fileName: string -> string
[<RequireQualifiedAccess>]
type WarningNumberSource =
| CommandLineOption
| CompilerDirective
[<RequireQualifiedAccess>]
type WarningDescription =
| Int32 of int
| String of string
| Ident of Ident
val GetWarningNumber:
m: range * description: WarningDescription * langVersion: LanguageVersion * source: WarningNumberSource ->
int option
/// Get the name used for FSharp.Core
val GetFSharpCoreLibraryName: unit -> string
/// Signature file suffixes
val FSharpSigFileSuffixes: string list
/// Implementation file suffixes
val FSharpImplFileSuffixes: string list
/// Script file suffixes
val FSharpScriptFileSuffixes: string list
/// Indicates whether experimental features should be enabled automatically
val FSharpExperimentalFeaturesEnabledAutomatically: bool