Skip to content

Commit

Permalink
[dotnet] try to avoid memory traffic on components enumerations
Browse files Browse the repository at this point in the history
GitOrigin-RevId: 978924c5b7d95b3850eaaf65c2ab63a349562c4b
  • Loading branch information
Nikita Popov authored and auduchinok committed Oct 6, 2024
1 parent 7dda26f commit 74cbe52
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ open System
open System.Collections.Generic
open FSharp.Compiler.Symbols
open FSharp.Compiler.Syntax
open JetBrains.Application.Components
open JetBrains.ReSharper.Plugins.FSharp.ProjectModel
open JetBrains.ReSharper.Plugins.FSharp.Psi
open JetBrains.ReSharper.Plugins.FSharp.Psi.Impl
Expand Down Expand Up @@ -288,7 +289,7 @@ module FSharpNamingService =

[<Language(typeof<FSharpLanguage>)>]
type FSharpNamingService(language: FSharpLanguage) =
inherit ClrNamingLanguageServiceBase(language, EmptyArray.Instance)
inherit ClrNamingLanguageServiceBase(language, EmptyImmutableEnumerableObject.Instance)

let notAllowedInTypes =
// F# 4.1 spec: 3.4 Identifiers and Keywords
Expand Down

0 comments on commit 74cbe52

Please sign in to comment.