Opened 9 years ago
#53 new defect
Protocol shows invalid method counts when switching to Show Inherited Methods Except Object's
Reported by: | Jan Vrany | Owned by: | |
---|---|---|---|
Priority: | major | Milestone: | |
Component: | default | Keywords: | browser |
Cc: | Also affects CVS HEAD (eXept version): | yes |
Description
Steps to reproduce:
1) Open browser
2) Select class LinkedList
3) Select protocol accessing
4) Select menu View → Selector → Show Inherited Method's exept Object's
The protocol accessing shows invalid method count, check if the number shown is the same as
| cls count | cls := LinkedList. count := 0. [ cls ~~ Object ] whileTrue:[ cls methodDictionary keysAndValuesDo:[:sel :m| m category = 'accessing' ifTrue:[ count := count + 1. ] ]. cls := cls superclass ]. count
Note: See
TracTickets for help on using
tickets.