Skip to content

Commit a84e8fa

Browse files
NumpsyTheAngryByrd
authored andcommitted
Update FSharp.Compiler.Service and FSharp.Core to the '9' versions
1 parent e1630a1 commit a84e8fa

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

Directory.Packages.props

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
</PropertyGroup>
66
<ItemGroup>
77
<PackageVersion Include="CliWrap" Version="3.6.4" />
8-
<PackageVersion Include="FSharp.Core" Version="[8.0.400]" />
9-
<PackageVersion Include="FSharp.Compiler.Service" Version="[43.8.400]" />
8+
<PackageVersion Include="FSharp.Core" Version="[9.0.100]" />
9+
<PackageVersion Include="FSharp.Compiler.Service" Version="[43.9.100]" />
1010
<PackageVersion Include="Ionide.KeepAChangelog.Tasks" Version="0.1.8" PrivateAssets="all" />
1111
<PackageVersion Include="McMaster.NETCore.Plugins" Version="1.4.0" />
1212
<PackageVersion Include="Argu" Version="6.1.1" />

src/FSharp.Analyzers.SDK/ASTCollecting.fs

+3
Original file line numberDiff line numberDiff line change
@@ -136,6 +136,7 @@ module ASTCollecting =
136136
| SynTypeConstraint.WhereTyparIsReferenceType(t, _)
137137
| SynTypeConstraint.WhereTyparIsUnmanaged(t, _)
138138
| SynTypeConstraint.WhereTyparSupportsNull(t, _)
139+
| SynTypeConstraint.WhereTyparNotSupportsNull(t, _, _)
139140
| SynTypeConstraint.WhereTyparIsComparable(t, _)
140141
| SynTypeConstraint.WhereTyparIsEquatable(t, _) -> walkTypar path t
141142
| SynTypeConstraint.WhereTyparDefaultsToType(t, ty, _)
@@ -245,6 +246,8 @@ module ASTCollecting =
245246
| SynType.StaticConstant _ -> ()
246247
| SynType.StaticConstantExpr _ -> ()
247248
| SynType.StaticConstantNamed _ -> ()
249+
| SynType.StaticConstantNull _ -> ()
250+
| SynType.WithNull(innerType, _, _, _) -> walkType nextPath innerType
248251
| SynType.Paren(innerType, _) -> walkType nextPath innerType
249252
| SynType.SignatureParameter(usedType = t; range = _) -> walkType nextPath t
250253
| SynType.Or(lhsType = lhs; rhsType = rhs) ->

0 commit comments

Comments
 (0)