Skip to content

Commit

Permalink
src/Compiler/TypedTree/TypedTreePickle.fs and refactored. (#18203)
Browse files Browse the repository at this point in the history
  • Loading branch information
progressive-galib authored Jan 7, 2025
1 parent 6ce0691 commit 73b8cbb
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
1 change: 1 addition & 0 deletions docs/release-notes/.FSharp.Compiler.Service/9.0.200.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@
* 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))
* CheckAndThrow can be invoked only from within Cancellable context ([PR #18037](https://github.com/dotnet/fsharp/pull/18037))
* Make ILTypeDef base type calculation lazy. ([PR #18005](https://github.com/dotnet/fsharp/pull/18005))
* "#if" directive around nullness removed from src/Compiler/TypedTree/TypedTreePickle.fs and refactored. ([PR #18203](https://github.com/dotnet/fsharp/pull/18203))

### Breaking Changes

Expand Down
4 changes: 0 additions & 4 deletions src/Compiler/TypedTree/TypedTreePickle.fs
Original file line number Diff line number Diff line change
Expand Up @@ -67,11 +67,7 @@ type PickledDataWithReferences<'rawData> =
//---------------------------------------------------------------------------

[<NoEquality; NoComparison>]
#if NO_CHECKNULLS
type Table<'T> =
#else
type Table<'T when 'T: not null> =
#endif
{ name: string
tbl: Dictionary<'T, int>
mutable rows: ResizeArray<'T>
Expand Down

0 comments on commit 73b8cbb

Please sign in to comment.