< The Science of Programming < SwayPresentations < Objects
Public and Private Components
We overload assignment so that only variables can appear on the left hand side of the assignment operator.
function =($a,b)
{
var assign = shadowed(:=);
if (type($a . code) != :VARIABLE)
{
throw(:restrictedAssignment,
"you are only allowed to assign to simple variables");
}
$a assign b;
}
So, anything like:
x . a = 3;
throws an exception.
Since setters can access the variables directly, they are not affected by this change.
This article is issued from Wikibooks. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.