mirror of
https://github.com/joaotavora/yasnippet.git
synced 2025-10-13 21:13:04 +00:00
9 lines
241 B
Plaintext
9 lines
241 B
Plaintext
# -*- mode: snippet -*-
|
|
# key: pool
|
|
# contributor: Translated from TextMate Snippet
|
|
# name: NSAutoreleasePool
|
|
## condition: "source.objc, source.objc++"
|
|
# --
|
|
NSAutoreleasePool${TM_C_POINTER: *}pool = [NSAutoreleasePool new];
|
|
$0
|
|
[pool drain]; |