Closed JSAbrahams closed 2 years ago
The following produces what we expect: 0 ..= 2 A Int, RangeIncl, and Int token.
Int
RangeIncl
Whereas the following: 0..=2 when there are no spaces, produces Int, Range, Equals, and Int token. (Not verified in test, but something like this).
Range
Equals
Unit test this to make sure tokenizer deals with this situation.
The former.
Issue was solved in #257
The following produces what we expect: 0 ..= 2 A
Int
,RangeIncl
, andInt
token.Whereas the following: 0..=2 when there are no spaces, produces
Int
,Range
,Equals
, andInt
token. (Not verified in test, but something like this).Unit test this to make sure tokenizer deals with this situation.
Expected behavior
The former.