Skip to content

Commit bb33e27

Browse files
vasily-kirichenkoKevinRansom
authored andcommitted
increase from 100 to 1024 LexResourceManager.string dictionary capacity to reduce resizing (#5089)
1 parent d6cb35d commit bb33e27

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/fsharp/lexhelp.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ type LightSyntaxStatus(initial:bool,warn:bool) =
4343
/// Manage lexer resources (string interning)
4444
[<Sealed>]
4545
type LexResourceManager() =
46-
let strings = new System.Collections.Generic.Dictionary<string, Parser.token>(100)
46+
let strings = new System.Collections.Generic.Dictionary<string, Parser.token>(1024)
4747
member x.InternIdentifierToken(s) =
4848
let mutable res = Unchecked.defaultof<_>
4949
let ok = strings.TryGetValue(s, &res)

0 commit comments

Comments
 (0)