Skip to content

Instantly share code, notes, and snippets.

@siratama
Last active August 29, 2015 14:14
Show Gist options
  • Save siratama/23837f073bf9dd28d773 to your computer and use it in GitHub Desktop.
Save siratama/23837f073bf9dd28d773 to your computer and use it in GitHub Desktop.
IntelliJ IDEA LiveTemplates for Haxe Setter
public var $NAME$(null, set):$TYPE$;
public function set_$NAME$($NAME$:$TYPE$):$TYPE$
return this.$NAME$ = $NAME$;
$END$
public var $NAME$(null, set):$TYPE$;
@:allow($END$)
public function set_$NAME$($NAME$:$TYPE$):$TYPE$
return this.$NAME$ = $NAME$;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment