Opened 4 years ago
Closed 4 years ago
#289 closed defect (invalid)
UninterpretedBytes should be variableByteSubclass
Reported by: | Owned by: | ||
---|---|---|---|
Priority: | major | Milestone: | |
Component: | default | Keywords: | |
Cc: | Also affects CVS HEAD (eXept version): | no |
Description
(UninterpretedBytes? new: 8) fails because class is not variable
Indeed, definition is:
ArrayedCollection? subclass:#UninterpretedBytes
instanceVariableNames:
classVariableNames:'IsBigEndian'
poolDictionaries:
category:'Collections-Abstract'
when it should be:
ArrayedCollection? variableByteSubclass:#UninterpretedBytes
instanceVariableNames:
classVariableNames:'IsBigEndian'
poolDictionaries:
category:'Collections-Abstract'
Note: See
TracTickets for help on using
tickets.
Oups, sorry, unlike VW UninterpretedBytes? is abstract...
Forget it