lsif-go icon indicating copy to clipboard operation
lsif-go copied to clipboard

Support multi-field embedded structs

Open efritz opened this issue 4 years ago • 0 comments

For a definition like the following, we should emit multiple monikers for each of the leaf fields:

type Example struct {
    a, b, c struct {
      x int
      y int
      z int
    }
}

We currently emit a.{x,y,z} but none of {b,c}.{x,y,z}.

efritz avatar May 20 '21 13:05 efritz