Object.st
changeset 23025 6faff43ba926
parent 23018 b9676c52f715
child 23031 9baa6604dedb
--- a/Object.st	Fri May 25 12:45:56 2018 +0200
+++ b/Object.st	Fri May 25 12:46:21 2018 +0200
@@ -9564,6 +9564,18 @@
     ^ false
 !
 
+isBridgeProxy
+    "answer true, if I am a proxy object for a bridged remote object"
+
+    "do not move this into the bridge-package;
+     it is called by some others, to prevent remote messages from implements/respondsTo, etc.
+     which are called from inspectors and debuggers"
+
+    ^ false
+
+    "Modified (comment): / 25-05-2018 / 12:45:42 / Claus Gittinger"
+!
+
 isByteArray
     "return true if the receiver is some kind of bytearray;
      false is returned here - the method is only redefined in ByteArray."