Instead of mapping to FSharpTokenKind.Semicolon, the SEMICOLON token also gets reported via the compiler service as FSharpTokenKind.SemicolonSemicolon
|
| SEMICOLON -> FSharpTokenKind.SemicolonSemicolon |
while the FSharpTokenKind.Semicolon case remains unused.
Fix is trivial.
Instead of mapping to
FSharpTokenKind.Semicolon, theSEMICOLONtoken also gets reported via the compiler service asFSharpTokenKind.SemicolonSemicolonfsharp/src/Compiler/Service/ServiceLexing.fs
Line 1591 in c1b13e3
while the
FSharpTokenKind.Semicoloncase remains unused.Fix is trivial.