yasnippet/extras/imported/objc-mode/Accessor Methods For/090 Object Accessors (objacc).yasnippet
2010-03-14 15:30:22 +00:00

17 lines
387 B
Plaintext

# -*- mode: snippet -*-
# key: objacc
# contributor: Translated from TextMate Snippet
# name: Object
## condition: "(source.objc | source.objc++) & meta.scope.implementation.objc - meta.function-with-body"
# --
- (${1:id})${2:thing}
{
return $2;
}
- (void)set${2/./\u$0/}:($1)aValue
{
$0${1/( \*)?$/(?1:$1: )/}old${2/./\u$0/} = $2;
$2 = [aValue retain];
[old${2/./\u$0/} release];
}