Skip to content

Instantly share code, notes, and snippets.

@siratama
Last active August 29, 2015 14:14
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