MSIR.0790 Non-readOnly property cannot be called THIS: Difference between revisions

From m204wiki
Jump to navigation Jump to search
(Automatically generated page update)
mNo edit summary
Line 1: Line 1:
A non-readOnly property has a Set method. In the Set method, the name of the input value is the same as the name of the property. If a non-readOnly property is called this, it means that the input value to the Set method would be referred to with the variable <tt>%this</tt>. But <tt>%this</tt> is always defined to reference the method object. This means that a non-readOnly property would produce an ambiguity in the meaning of <tt>%this</tt> inside the Set method, so it is not allowed.  
A non-readOnly property has a <var>Set</var> method. In the <var>Set</var> method, the name of the input value is the same as the name of the property. If a non-readOnly property is called this, it means that the input value to the <var>Set</var> method would be referred to with the variable <var>%this</var>. But <var>%this</var> is always defined to reference the method object. This means that a non-readOnly property would produce an ambiguity in the meaning of <var>%this</var> inside the <var>Set</var> method, so it is not allowed.  


Use another name for the property.
Use another name for the property.


[[Category:Sirius Mods messages]]
[[Category:Sirius Mods messages]]

Revision as of 19:03, 23 April 2014

A non-readOnly property has a Set method. In the Set method, the name of the input value is the same as the name of the property. If a non-readOnly property is called this, it means that the input value to the Set method would be referred to with the variable %this. But %this is always defined to reference the method object. This means that a non-readOnly property would produce an ambiguity in the meaning of %this inside the Set method, so it is not allowed.

Use another name for the property.