#FEATURE by exept
authorClaus Gittinger <cg@exept.de>
Fri, 09 Aug 2019 12:19:37 +0200
changeset 24520 55934fccfcca
parent 24519 e39e3ee07aed
child 24521 9e0ae8e51e4b
#FEATURE by exept class: Object added: #isInlineObject
Object.st
--- a/Object.st	Fri Aug 09 12:05:55 2019 +0200
+++ b/Object.st	Fri Aug 09 12:19:37 2019 +0200
@@ -10030,6 +10030,13 @@
     "Modified (comment): / 27-05-2019 / 15:38:38 / Claus Gittinger"
 !
 
+isInlineObject
+    "return true if the receiver is some kind of inline object;
+     false is returned here - the method is only redefined in InlineObject."
+
+    ^ false
+!
+
 isInteger
     "return true if the receiver is some kind of integer number;
      false is returned here - the method is only redefined in Integer."