We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a254365 commit 032f006Copy full SHA for 032f006
src/FSharpLint.Core/Framework/Ast.fs
@@ -256,6 +256,8 @@ module Ast =
256
add <| Pattern lhs
257
add <| Pattern rhs
258
259
+
260
+ // fsharplint:disable FL0025
261
let inline private expressionChildren (node: SynExpr) (add: AstNode -> unit) =
262
let addMany = List.iter add
263
@@ -381,6 +383,8 @@ module Ast =
381
383
expr2 |> Option.iter (Expression >> add)
382
384
| _ -> ()
385
386
+ // fsharplint:enable
387
388
let inline private typeSimpleRepresentationChildren node add =
389
match node with
390
| SynTypeDefnSimpleRepr.Union(_, unionCases, _) -> List.revIter (UnionCase >> add) unionCases
0 commit comments