I am using latest master ( 316bfc6 )
When trying to parse a broken toml where there is no newline on the last line the unstable.ParserError.Highlight becomes an empty list.
This file without a newline after the last c
Results in this error string:
1| a = '1'
| expected = after a key, but the document ends there
2| b = '2'
3| c
If I add a final newline to the input file the error is something you would expect
1| a = '1'
2| b = '2'
3| c
| ~ expected character =