mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
* [IDE] Refactoring: conversion from “force try” do error handled version * Removed unnecessary empty line * Changed name of the refactor * Review fixes * Fixed recognizing try_! location by CursorResolver * Review fixes
9 lines
87 B
Plaintext
9 lines
87 B
Plaintext
func throwingFunc() throws {
|
|
return
|
|
}
|
|
do {
|
|
try throwingFunc()
|
|
} catch {
|
|
<#code#>
|
|
}
|