Closed Lambdanaut closed 3 years ago
The stats command crashes if the code contains any ..= tokens.
..=
The error in question:
python p8tool stats pico.p8 ../picofile.p8: Expected b'end' at line 1010 char 21 ../picofile.p8: could not load cart
These tokens can be very useful because they can reduce a token count by one.
For instance:
x = x .. string
becomes
x ..= string
Super great, but at the moment we can't use them with this tool.
Fixed in 9dfeb7985fee045ecd4af337f4fa31fea59830af.
The stats command crashes if the code contains any
..=
tokens.The error in question:
These tokens can be very useful because they can reduce a token count by one.
For instance:
becomes
Super great, but at the moment we can't use them with this tool.