extensions.st
changeset 17299 44269d07c040
parent 17267 417b4efdd40c
child 17379 028adf14bc05
child 17415 207171d9b430
--- a/extensions.st	Sat Jan 28 18:01:00 2017 +0100
+++ b/extensions.st	Sat Jan 28 22:05:07 2017 +0100
@@ -591,6 +591,8 @@
     |d|
 
     d := super inspectorExtraAttributes
+        add:'-hex' -> [ self asByteArray hexPrintStringWithSeparator:Character space ];
+        add:'-bytes' -> [ self asByteArray ];
         add:'-utf8String' -> [ self utf8Encoded ];
         add:'-utf8Bytes' -> [ self utf8Encoded asByteArray ];
         add:'-utf8' -> [ self utf8Encoded asByteArray hexPrintStringWithSeparator:Character space ];