| |
| Recipe 4.11: Accessing an Attribute or Method in the 'Next' Parent Class of a Class or Object |
Last Updated: Sep 8, 2003
Status: Draft
|
|
|
|
How important is this problem to you?
(Login to Vote)
5.00 Rating, 1 Vote
|
|
How acceptable is the proposed solution?
(Login to Vote)
0.00 Rating, 0 Votes
|
|
Problem:
   
Solution:
Use NEXT before the attribute or method name:
method foo {
.NEXT.foo( ... );
}
Discussion:
Issue:
Or just .NEXT( ... )? Or just .NEXT?
|
|