Changeset 1365
- Timestamp:
- 12/06/09 04:12:15 (4 years ago)
- Files:
-
- trunk/docsrc/expression.dd (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/docsrc/expression.dd
r1347 r1365 979 979 $(I Identifier) 980 980 $(B .)$(I Identifier) 981 $( B this)982 $( B super)981 $(LINK2 #this, $(B this)) 982 $(LINK2 #super, $(B super)) 983 983 $(LINK2 #null, $(B null)) 984 984 $(B true) … … 1010 1010 lexically nested scope. 1011 1011 1012 <h3> this</h3>1012 <h3>$(LNAME2 this, this)</h3> 1013 1013 1014 1014 $(P Within a non-static member function, $(B this) resolves to … … 1044 1044 1045 1045 1046 <h3> super</h3>1046 <h3>$(LNAME2 super, super)</h3> 1047 1047 1048 1048 $(P $(B super) is identical to $(B this), except that it is … … 1051 1051 It is an error to use $(B super) within a struct member function. 1052 1052 (Only class $(TT Object) has no base class.) 1053 $(B super) is not allowed in struct member1054 functions.1055 1053 If a member function is called with an explicit reference 1056 1054 to $(B super), a non-virtual call is made.
