17: Method Execution and Operation Escalation
- Understanding method execution
- Many of a class's operations and accompanying methods are inherited from superclasses.
- When an inherited operation is called on an instance of the class, the Telescript engine searches the class and the class's superclasses to find the method to execute.
- The search follows canonical order--determined by the way superclasses are listed in each class definition.
- The first appropriate method yielded by the search is the method executed when the operation is called.
- A LIFO stack carries the arguments used for method execution.
- Escalating an operation
- When a superclass's operation is overridden in a class, the overridden method is not executed in an instance of the class unless the operation is escalated using the "^" symbol.
- When an operation is escalated, the Telescript engine searches the superclasses of the current class to find the next higher method for the same operation.
- The stack carries the operation's arguments to the method that finally executes.
- Alternate arguments may be provided for escalation if they follow the "^" symbol enclosed in square brackets ([]).
- Typical operation escalation is chained: the same operation further up the inheritancy is defined to escalate itself, and so on, so a single escalation may result in hierarchical escalation a la initialization.
TS Ref - 26 JUN 1996
Generated by the sweat of Mike Boom's brow.