File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -616,15 +616,15 @@ type FSharpLineTokenizer(lexbuf: UnicodeLexing.Lexbuf,
616616 | Some mx when rightp.Line > leftp.Line -> mx
617617 | _ -> rightp.Column
618618 let rightc = rightc - 1
619- leftc, rightc
619+ struct ( leftc, rightc)
620620
621621 // Get the token & position - either from a stack or from the lexer
622622 try
623623 if ( tokenStack.Count > 0 ) then true , tokenStack.Pop()
624624 else
625625 // Choose which lexer entry point to call and call it
626626 let token = LexerStateEncoding.callLexCont lexcontInitial lexargs skip lexbuf
627- let leftc , rightc = ColumnsOfCurrentToken()
627+ let struct ( leftc , rightc ) = ColumnsOfCurrentToken()
628628
629629 // Splits tokens like ">." into multiple tokens - this duplicates behavior from the 'lexfilter'
630630 // 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