Skip to content

Commit 73b8cbb

Browse files
src/Compiler/TypedTree/TypedTreePickle.fs and refactored. (#18203)
1 parent 6ce0691 commit 73b8cbb

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

docs/release-notes/.FSharp.Compiler.Service/9.0.200.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@
5252
* Better ranges for #nowarn error reporting; bring back #nowarn warnings for --langVersion:80; add warnings under feature flag ([PR #17871](https://github.com/dotnet/fsharp/pull/17871))
5353
* CheckAndThrow can be invoked only from within Cancellable context ([PR #18037](https://github.com/dotnet/fsharp/pull/18037))
5454
* Make ILTypeDef base type calculation lazy. ([PR #18005](https://github.com/dotnet/fsharp/pull/18005))
55+
* "#if" directive around nullness removed from src/Compiler/TypedTree/TypedTreePickle.fs and refactored. ([PR #18203](https://github.com/dotnet/fsharp/pull/18203))
5556

5657
### Breaking Changes
5758

src/Compiler/TypedTree/TypedTreePickle.fs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -67,11 +67,7 @@ type PickledDataWithReferences<'rawData> =
6767
//---------------------------------------------------------------------------
6868

6969
[<NoEquality; NoComparison>]
70-
#if NO_CHECKNULLS
71-
type Table<'T> =
72-
#else
7370
type Table<'T when 'T: not null> =
74-
#endif
7571
{ name: string
7672
tbl: Dictionary<'T, int>
7773
mutable rows: ResizeArray<'T>

0 commit comments

Comments
 (0)