Commits
Rintaro Ishizaki committed ed8f901e5b7
[Parse] Improve fix-it for @autoclosure(escaping)
func f(x: @autoclosure(escaping) () -> Int) {}
used to be fixed as:
func f(x: @@autoclosure @escaping () -> Int) {}
Duplicated '@'
Unnecessary space after @escaping