Skip to content

Commit

Permalink
Update FSharp.Compiler.Service and FSharp.Core to the '9' versions
Browse files Browse the repository at this point in the history
  • Loading branch information
Numpsy committed Nov 13, 2024
1 parent b8aca73 commit d26202d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
</PropertyGroup>
<ItemGroup>
<PackageVersion Include="CliWrap" Version="3.6.4" />
<PackageVersion Include="FSharp.Core" Version="[8.0.400]" />
<PackageVersion Include="FSharp.Compiler.Service" Version="[43.8.400]" />
<PackageVersion Include="FSharp.Core" Version="[9.0.100]" />
<PackageVersion Include="FSharp.Compiler.Service" Version="[43.9.100]" />
<PackageVersion Include="Ionide.KeepAChangelog.Tasks" Version="0.1.8" PrivateAssets="all" />
<PackageVersion Include="McMaster.NETCore.Plugins" Version="1.4.0" />
<PackageVersion Include="Argu" Version="6.1.1" />
Expand Down
3 changes: 3 additions & 0 deletions src/FSharp.Analyzers.SDK/ASTCollecting.fs
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,7 @@ module ASTCollecting =
| SynTypeConstraint.WhereTyparIsReferenceType(t, _)
| SynTypeConstraint.WhereTyparIsUnmanaged(t, _)
| SynTypeConstraint.WhereTyparSupportsNull(t, _)
| SynTypeConstraint.WhereTyparNotSupportsNull(t, _, _)
| SynTypeConstraint.WhereTyparIsComparable(t, _)
| SynTypeConstraint.WhereTyparIsEquatable(t, _) -> walkTypar path t
| SynTypeConstraint.WhereTyparDefaultsToType(t, ty, _)
Expand Down Expand Up @@ -245,6 +246,8 @@ module ASTCollecting =
| SynType.StaticConstant _ -> ()
| SynType.StaticConstantExpr _ -> ()
| SynType.StaticConstantNamed _ -> ()
| SynType.StaticConstantNull _ -> ()
| SynType.WithNull(innerType, _, _, _) -> walkType nextPath innerType
| SynType.Paren(innerType, _) -> walkType nextPath innerType
| SynType.SignatureParameter(usedType = t; range = _) -> walkType nextPath t
| SynType.Or(lhsType = lhs; rhsType = rhs) ->
Expand Down

0 comments on commit d26202d

Please sign in to comment.