yasnippet-snippets/snippets/swift-mode/trycatch
2018-01-07 09:47:42 +00:00

11 lines
119 B
Plaintext

# -*- mode: snippet -*-
# name: trycatch
# key: trycatch
# --
do {
try $1
} catch $2 {
$3
} catch $4 {
$5
}