Skip to content

Commit

Permalink
Core: remove "rec" keyword from isNested fn
Browse files Browse the repository at this point in the history
This commit resolves red CI on the "Run FSharpLint on itself"
step by removing the "rec" keyword from "isNested" function.
  • Loading branch information
Mersho committed Dec 27, 2023
1 parent 9eba4aa commit 4759778
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -369,7 +369,7 @@ let rec identFromSimplePat = function
| SynSimplePat.Typed(p, _, _) -> identFromSimplePat p
| SynSimplePat.Attrib(_) -> None

let rec isNested args nodeIndex =
let isNested args nodeIndex =
let parent = args.SyntaxArray.[nodeIndex].ParentIndex
let actual = args.SyntaxArray.[parent].Actual

Expand Down

0 comments on commit 4759778

Please sign in to comment.