Data update
This commit is contained in:
parent
5af6d93694
commit
796d366b97
455 changed files with 7413 additions and 1900 deletions
|
|
@ -3,7 +3,7 @@ import system'routines;
|
|||
|
||||
interface IOperable
|
||||
{
|
||||
abstract operate() {}
|
||||
abstract operate();
|
||||
}
|
||||
|
||||
class Operable : IOperable
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@ class Operable
|
|||
|
||||
class Delegator
|
||||
{
|
||||
prop object Delegate;
|
||||
object Delegate : prop;
|
||||
|
||||
constructor()
|
||||
{
|
||||
|
|
@ -20,7 +20,7 @@ class Delegator
|
|||
|
||||
operate()
|
||||
{
|
||||
// if the object does not support "get&operable" message - returns nil
|
||||
// if the object does not support "Operable" message - returns nil
|
||||
var operable := Delegate.Operable \ back:nil;
|
||||
|
||||
if (nil == operable)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue