Status: Comment
Owner: [hidden email] New issue 4275 by [hidden email]: Unsent messages http://code.google.com/p/pharo/issues/detail?id=4275 Just for fun, I have run a little script to check "unsent" messages in the system. Here is the script: self systemNavigation allUnSentMessagesWithout: {{}. {} } And the result is 11585 selectors: - testClassCommentedEvent - rDocProc - morphsInFrontOverlapping:do: - stopBitsType: - exampleWindowWithToolbars - outsideClasses - testFindTokensEscapedBy01 - browseVersionsOf: - nextUnsignedIntegerBase:ifFail: - destForm: - testUndo1 - testShortPointArrayWithSmartRefStream2 - contoursCollection - update13107 - statsForDirectoryTree: - diagonal: - CtrlQ - notSupported: - testAssociationAtNonexistantKeyExecutesFailBlock - taskbarSettingOn: - depth: - testInstanceInitialization - dejaVuSansBoldOblique12Data - portNumber:queueLength: - testReduceRightSpecial - errorUnsupported - srcOffset - testMinusADateAndTime - waitFor:maxSeconds: - testLocalHost - uint32: - henryReadme - testFindTokensEscapedBy15 - getMenuTitle: - test10removeFirst - arg - testHenry128 - update13180 - morphFrom:to:at: - testEpoch - deleteDockingBars - testMonthPrintOn - with:encoding: - asByteString - from:withMidPoint:to: - testAtIfPresentIfAbsent - setResourceBits: - testResolveAbnormal5 - argumentsProvider:argumentsSelector: - test0FixtureDictionaryRemovingTest - timeString - annotationTextMorph - convertFontsNamed: - testHenry001 - helpContentFromString: - testCommentWithStyle - paperSizeDSheet - testGetButtonSideEffectFree - sourceClass - getGopherProxy - privateExtension: - update13139 - removeVertex: - paperSizeFanfoldUS - makeStrong - allUnreferencedClassVariables - testKeyForIdentity - writeCollectionContents:separator: - drawWindowDropShadowFor:on: - makeEllipseSegments: - finderMenuOn: - getDriverParameters - extractThenInstall - pragmaLiteral - store15To24HexBitsOn: - test2396ParseHTTP2 - asDigitsToPower:do: - testLocalVariable - assureExistance - testValueWithinNonLocalReturnFixSimply - update13158 - testYearDayHourMinuteSecond - testAddBeforeAndRemove - testSourcesFileAddressRange - insertionPointColor: - testNegated - showDocumentation - testSaveAndLoadImageSegmentToDiskWithGC - testAsNumber - isAScrollbarShowing - testCase - testSubscribeSubclass - defaultEncodingName: - rebuildSimulatedMembers - update13041 - testFinalizeValuesWhenLastChainContinuesAtFront - test0FixtureAsStringCommaAndDelimiterTest - testUnCategorizedMethods - pragmaErrorOccured: - update13104 - test12remove - allAncestorsDo: - testReduceRight2Arguments - documentPath - testByteArrayEmpty - testBitLogic - values: - setTextMorphToSelectAllOnMouseEnter - testIndexOfDuplicate - testTAddIfNotPresentWithElementAlreadyIn - testAtPathPut - basicPosition - when:sendOnce:to:with: - fromUserWithCursor: - widthForRounding - fixLastWithHeight: - testBehaviorLocalyDefined - testTimeZoneEquivalence - simpleResignalAsTestResults - lineBorderColor - testSplitStringOnBlock - loadUseHTTPProxy - testClassFaultOn: - gridVisibleOnOff - keyboardNavigationHandler: - testDefaultDirRoundtrip - newEditableDropListFor:list:getSelected:setSelected:addToList:class:default:ghostText:getEnabled:useIndex:help: - argMap - paperSizeEnvelopeB4 - testGeneralInquiries - floatSideProc - testAutoFitToParagraph - unrotatedLength: - update13042 - parityType: - testPngDecodingColors16 - allCallsOn:localTo: - compressionMethod - loopbackTest - testMatrixTransform2x3WithImageSegment - testButtonInitiallyDisabledSelector - closeExampleDialogs - atRows:to:columns:to:put: - testAddBefore - toPharoOneDotThree - expectedSizeAfterReject - testIsDictionary - identity: - extractMinusParameters - testCharacterBlockAfterReplacingAll - testCharacterBlockAfterReplacingSpace - testStringAsRegexIgnoringCase - testBmp8Bit - exampleColorMap - inspectUntilCount: - testFreeTypeCacheEntry - beWithGrips - testRed8 - setGradientColor: - test13remove - setHeight: - blockers - floatSideZoomProc - fileOutCategory:on: - classCommented: - testHenry040 - testAsNumberWithRadix - fontWidthsFor: - withAllSubdirectoriesCollect: - fadeImageCoarse:at: - scanLongStore: - testCopyAfterLastWithDuplicate - maxX - CtrlS - testAddInstanceVariable - testMatchingSchemesToSubclasses - testHenry060 - removedTextAttributes - primSetBitmapLeft:top: - update13130 - testHenry094 - testAsNumberNegatedWithoutDecimalPoint2 - testSplitOrderedCollectionOnElement - testAsIdentitySetWithEqualsElements - primIdctBlockInt:component: - isDialog: - slantBackslanted - update13153 - interrupt - testIncludesSubstringAnywhere - mostSpecificPackageOfMethod: - addPackagesAsGroup:named: - CtrlY - testWhichSelectorsAccess - testAddAfterIndex - testInitialReferences - buildfontNamed:fromForms:startingAtAscii:ascent:descent:maxWid: - testCompare - testGetList - testIntersectionEmpty - testNoValueSupplierHasArguments - ifNotNilDo: - httpShowChunk: - testCreationFromBytes3 - testMethodCategoryReorganization - printStandardSystemFonts - loadUseLocale - testCompileEmpty - testMultiValues - uncollapseToHand - testRehashPreservesCapacity - testIsNil - testOFixtureReplacementSequencedTest - testHenry057 - update13112 - spyOn:cutoff: - test4Bit - forbidden - testEquals3 - testCapitalizeString - CtrlE - testCharactersExactlyMatching - testPutSingleCharacter - getRealName - t...etc... Maybe some of them could be removed _______________________________________________ Pharo-bugtracker mailing list [hidden email] http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-bugtracker |
Comment #1 on issue 4275 by [hidden email]: Unsent messages http://code.google.com/p/pharo/issues/detail?id=4275 But this contains all test* methods... _______________________________________________ Pharo-bugtracker mailing list [hidden email] http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-bugtracker |
Comment #2 on issue 4275 by [hidden email]: Unsent messages http://code.google.com/p/pharo/issues/detail?id=4275 yep, and the number announced above was wrong, it was 6545 methods. So i have fixed the script: | result | result := self systemNavigation allUnSentMessagesWithout: {{}. {} }. result := result reject: [:each | each beginsWith: 'test' ]. ^ result And you get 3852 selectors (and in some cases, this selector is implemented in different classes) : - rDocProc - morphsInFrontOverlapping:do: - stopBitsType: - exampleWindowWithToolbars - outsideClasses - destForm: - browseVersionsOf: - nextUnsignedIntegerBase:ifFail: - contoursCollection - update13107 - statsForDirectoryTree: - diagonal: - CtrlQ - notSupported: - taskbarSettingOn: - depth: - dejaVuSansBoldOblique12Data - portNumber:queueLength: - errorUnsupported - srcOffset - waitFor:maxSeconds: - uint32: - henryReadme - getMenuTitle: - arg - update13180 - morphFrom:to:at: - deleteDockingBars - with:encoding: - asByteString - from:withMidPoint:to: - setResourceBits: - argumentsProvider:argumentsSelector: - timeString - annotationTextMorph - convertFontsNamed: - helpContentFromString: - paperSizeDSheet - sourceClass - getGopherProxy - privateExtension: - update13139 - removeVertex: - paperSizeFanfoldUS - makeStrong - allUnreferencedClassVariables - writeCollectionContents:separator: - drawWindowDropShadowFor:on: - makeEllipseSegments: - finderMenuOn: - extractThenInstall - pragmaLiteral - asDigitsToPower:do: - getDriverParameters - store15To24HexBitsOn: - assureExistance - update13158 - insertionPointColor: - showDocumentation - isAScrollbarShowing - defaultEncodingName: - rebuildSimulatedMembers - update13041 - pragmaErrorOccured: - update13104 - allAncestorsDo: - documentPath - values: - setTextMorphToSelectAllOnMouseEnter - basicPosition - when:sendOnce:to:with: - fromUserWithCursor: - widthForRounding - fixLastWithHeight: - simpleResignalAsTestResults - lineBorderColor - loadUseHTTPProxy - gridVisibleOnOff - keyboardNavigationHandler: - newEditableDropListFor:list:getSelected:setSelected:addToList:class:default:ghostText:getEnabled:useIndex:help: - argMap - paperSizeEnvelopeB4 - floatSideProc - unrotatedLength: - update13042 - classCommented: - parityType: - loopbackTest - allCallsOn:localTo: - compressionMethod - atRows:to:columns:to:put: - closeExampleDialogs - toPharoOneDotThree - extractMinusParameters - expectedSizeAfterReject - identity: - exampleColorMap - inspectUntilCount: - setGradientColor: - beWithGrips - setHeight: - blockers - fileOutCategory:on: - floatSideZoomProc - fontWidthsFor: - withAllSubdirectoriesCollect: - fadeImageCoarse:at: - scanLongStore: - maxX - CtrlS - removedTextAttributes - primSetBitmapLeft:top: - update13130 - primIdctBlockInt:component: - isDialog: - slantBackslanted - update13153 - interrupt - mostSpecificPackageOfMethod: - addPackagesAsGroup:named: - CtrlY - buildfontNamed:fromForms:startingAtAscii:ascent:descent:maxWid: - ifNotNilDo: - httpShowChunk: - printStandardSystemFonts - loadUseLocale - uncollapseToHand - update13112 - CtrlE - spyOn:cutoff: - forbidden - getRealName - writeSF2FamilyNamed:inDirectory:toChangeSet: - sample - asTangentSegment - parseVersionString: - rangesForRussian - workingCopyListMorph - wantsLineEndConversion - winToMac: - colormapToARGB - Ctrll - setType:argument:hand:stamp: - doubleClick:onItem: - customQuestionIn:text:yesText:noText:title: - invertSelections - loadModule: - smartQuerySymbolFrom: - playSampledSound:rate: - asPowerOfTwo - isCompositeFill - update13098 - zoomNoGrow - outputFlowControlType: - loadSelectionBarColor - methodWithVariousTemps - update13111 - readMacFontHex: - changeTo: - getItemCmd:item: - toggleShowDocumentation - hasSubscriber: - contentUTF8Stream - printStructureOn:indent: - update13208 - possiblyNewerVersions - asBezier2Segments - imageForm:backgroundColor:forRectangle: - activeDisabledNotOverDownFillStyle: - dstOffset - blueMask: - foreColor: - open:label: - dejaVuSansBook7Form - newAutoAcceptTextEntryFor:get:set:class:getEnabled:font:help:entryCompletion: - update13168 - checkBox - registerAsDefaultTestRunner - httpProxy - paleTan - getItemIcon:item: - contentTypeFormData - nodePrintOn:indent: - removeFileNamed: - resistsRemovalString - hasDirectionHandlesString - newFontSizePanel - readFloatString - romanNumber - theItsCompletelyBrokenTest - chooseCodeFont - displayOn:transformation:clippingBox:fixedPoint: - simpleRetryTestResults - newTextColorAttribute: - storeLog - encodeVariable:ifUnknown: - removeRepository - primGetNameInfoHostResult: - baseLength - changeScrollerTableLayout - traitTransformations - update13110 - renameClass: - outTangent - drawGeneralBezier3Shape:color:borderWidth:borderColor: - feedbackColor: - startLoggingFaults - flushObsoletePackageInfos - recognizerArena - setItemStyle:item:style: - chooseValue - asHTMLString - arrayOfRoots: - createPageTestWorkspace - store32To24HexBitsOn: - selectionOneOf: - addDependentToHierachy: - CtrlI - ifOutPointer:thenAllObjectsDo: - checkedAt: - browseMyChanges - supportsVersions - hasPrivateListener - saveSpace - recentLogOn:startingFrom: - primitive:numArgs:numTemps:stackSize:literals:bytecodes:trailer: - classPoolFrom: - lineSegments - backIcon - writeScanOn: - isBreakableAtIndex: - browseMethodsWithLiteral: - floatingWindowClass - stickinessString - update13108 - inspectOnCount: - free - modalWindowClass - imageExtent: - resetUniqueInstance - ...etc... _______________________________________________ Pharo-bugtracker mailing list [hidden email] http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-bugtracker |
Updates:
Status: Invalid Comment #3 on issue 4275 by [hidden email]: Unsent messages http://code.google.com/p/pharo/issues/detail?id=4275 This issue is not actionable. Let's close it and later catch those when we use Slint strategically for the whole system. _______________________________________________ Pharo-bugtracker mailing list [hidden email] http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-bugtracker |
Free forum by Nabble | Edit this page |