solargraph icon indicating copy to clipboard operation
solargraph copied to clipboard

Nested Yard Types don't work in hovers

Open olbrich opened this issue 5 years ago • 0 comments

When I document a variable like.

  # @type [Array<String>]
  array_of_arrays = [
    [
      'foo',
      'bar'
    ]
  ]

I get a hover like... Screen Shot 2020-10-09 at 1 51 35 PM

If I change it to...

  # @type [Array<Array<String>>]
  array_of_arrays = [
    [
      'foo',
      'bar'
    ]
  ]

Screen Shot 2020-10-09 at 1 54 38 PM

I would expect to get an Array<Array<String>> in the hover

olbrich avatar Oct 09 '20 17:10 olbrich