#BUGFIX by stefan
authorStefan Vogel <sv@exept.de>
Tue, 06 Dec 2016 12:46:07 +0100
changeset 21095 395754cfc670
parent 21094 e6a4ef61584c
child 21096 b14f363d7d3b
#BUGFIX by stefan class: ProtoObject added: #referencesAny: #referencesObject: Needed for refchain searching
ProtoObject.st
--- a/ProtoObject.st	Tue Dec 06 12:45:11 2016 +0100
+++ b/ProtoObject.st	Tue Dec 06 12:46:07 2016 +0100
@@ -159,6 +159,24 @@
         valueWithReceiver:self
         arguments:{index}
         selector:#instVarAt:
+!
+
+referencesAny:anObject
+    "this method is required to allow inspection of the object"
+
+    ^ (Object compiledMethodAt:#referencesAny:)
+        valueWithReceiver:self
+        arguments:{anObject}
+        selector:#referencesAny
+!
+
+referencesObject:anObject
+    "this method is required to allow inspection of the object"
+
+    ^ (Object compiledMethodAt:#referencesObject:)
+        valueWithReceiver:self
+        arguments:{anObject}
+        selector:#referencesObject
 ! !
 
 !ProtoObject methodsFor:'queries'!