如果 // 和 Go 指令之间有空格,将无法识别 Go 指令。
//
该快速修复会移除 Go 指令之前的前导空格。
示例:
// go:embed file.txt var File string
在应用快速修复后:
//go:embed file.txt var File string