Documentation for Mascara ECMAScript NG
Home
function set name ( param-name [ : type ] ) { implementation }
A setter is a function that is invoked like when setting a variable or property value.
Example:
function set x(val) { alert(val); } x = "hello";
x
Se also getters.