快速修复会将集合字面量替换为相应的集合工厂函数。
示例:
val list: List<String> = ["a", "b", "c"]
在应用快速修复后:
val list: List<String> = listOf("a", "b", "c")