From 6658d5f3011ee820752807e89486e281aa775569 Mon Sep 17 00:00:00 2001 From: Eugene Auduchinok Date: Tue, 6 Aug 2024 15:06:02 +0200 Subject: [PATCH] Fantomas --- src/Compiler/Service/ServiceInterfaceStubGenerator.fs | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/Compiler/Service/ServiceInterfaceStubGenerator.fs b/src/Compiler/Service/ServiceInterfaceStubGenerator.fs index fce448d27d0b..2d48b46fa009 100644 --- a/src/Compiler/Service/ServiceInterfaceStubGenerator.fs +++ b/src/Compiler/Service/ServiceInterfaceStubGenerator.fs @@ -352,10 +352,11 @@ module InterfaceStubGenerator = | _, true, _, name -> name + parArgs // Ordinary functions or values | false, _, _, name when - v.ApparentEnclosingEntity - |> Option.map _.HasAttribute() - |> Option.defaultValue false - |> not -> + v.ApparentEnclosingEntity + |> Option.map _.HasAttribute() + |> Option.defaultValue false + |> not + -> name + " " + parArgs // Ordinary static members or things (?) that require fully qualified access | _, _, _, name -> name + parArgs