diff -r 1ec039520653 -r 44269d07c040 extensions.st --- 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 ];