golang/go
x/tools/gopls/internal/analysis: analyzer for slice aliasing mistakes
Aperta
#73.830 aperta il 22 mag 2025
Metriche repository
- Star
- (133.883 stelle)
- Metriche merge PR
- (Metriche PR in attesa)
Descrizione
In a discussion about slice aliasing bugs, @randall77 suggested an analyzer that detects "aliasing of two slice variables, where the capacity of the slice is unknown (due to append starting from nil, say), and then an append on each of the aliased slices". We should prototype a simple analyzer to detect this pattern and see what turns up.