File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -616,15 +616,15 @@ type FSharpLineTokenizer(lexbuf: UnicodeLexing.Lexbuf,
616
616
| Some mx when rightp.Line > leftp.Line -> mx
617
617
| _ -> rightp.Column
618
618
let rightc = rightc - 1
619
- leftc, rightc
619
+ struct ( leftc, rightc)
620
620
621
621
// Get the token & position - either from a stack or from the lexer
622
622
try
623
623
if ( tokenStack.Count > 0 ) then true , tokenStack.Pop()
624
624
else
625
625
// Choose which lexer entry point to call and call it
626
626
let token = LexerStateEncoding.callLexCont lexcontInitial lexargs skip lexbuf
627
- let leftc , rightc = ColumnsOfCurrentToken()
627
+ let struct ( leftc , rightc ) = ColumnsOfCurrentToken()
628
628
629
629
// Splits tokens like ">." into multiple tokens - this duplicates behavior from the 'lexfilter'
630
630
// which cannot be (easily) used from the language service. The rules here are not always valid,
You can’t perform that action at this time.
0 commit comments