对修饰符排序快速修复可用于自动修正代码。
示例:
private inline fun correctOrder(f: () -> Unit) {} // <== 正常 infix private fun Int.wrongOrder(expr: Int) {} // <== 顺序错误,快速修复会将修饰符修正为 "private infix"