Open
Description
π Search Terms
noErrorTruncation
π Version & Regression Information
- This changed between versions 5.8.3 and 5.9 beta
β― Playground Link
π» Code
type T = [
1,2,3,4,5,6,7,8,9,0,
1,2,3,4,5,6,7,8,9,0,
1,2,3,4,5,6,7,8,9,0,
1,2,3,4,5,6,7,8,9,0,
1,2,3,4,5,6,7,8,9,0,
1,2,3,4,5,6,7,8,9,0,
1,2,3,4,5,6,7,8,9,0,
1,2,3,4,5,6,7,8,9,0,
1,2,3,4,5,6,7,8,9,0,
1,2,3,4,5,6,7,8,9,0,
1,2,3,4,5,6,7,8,9,0,
1,2,3,4,5,6,7,8,9,0,
1,2,3,4,5,6,7,8,9,0,
1,2,3,4,5,6,7,8,9,0,
1,2,3,4,5,6,7,8,9,0,
1,2,3,4,5,6,7,8,9,0,
1,2,3,4,5,6,7,8,9,0,
'still good', 'now truncating'
]
// type shows any in hover in place of 'still good' this is where the elision would be without noErrorTruncation
π Actual behavior
type shows any where the elision would have been without noErrorTruncation.
π Expected behavior
full type is shown.
Additional information about the issue
This is only in the display. type checking behaves correctly and indexing to that position shows the correct type.