mirror of
https://github.com/joaotavora/yasnippet.git
synced 2025-10-13 21:13:04 +00:00
10 lines
186 B
Plaintext
10 lines
186 B
Plaintext
#contributor : Julio Carlos Menendez <godinblack@gmail.com>
|
|
#name : _get_foo ... foo=property(...)
|
|
# --
|
|
def _get_${1:foo}(self):
|
|
return self._$1
|
|
|
|
$1 = property(_get_$1)
|
|
|
|
$0
|