Skip to content

Commit

Permalink
60030
Browse files Browse the repository at this point in the history
18296 DNU on split cascade refactoring
	https://pharo.fogbugz.com/f/cases/18296

18298 duplicate elements in RBClassEnvironments result set
	https://pharo.fogbugz.com/f/cases/18298

18314 wrong or missing metho protokoll name for WindowAnnouncements
	https://pharo.fogbugz.com/f/cases/18314

http://files.pharo.org/image/60/60030.zip
  • Loading branch information
Jenkins Build Server authored and ci committed May 24, 2016
1 parent 7564717 commit eaac18e
Show file tree
Hide file tree
Showing 13 changed files with 26 additions and 32 deletions.
@@ -1,2 +1,2 @@
splitCascadeBetween: anInterval from: aMethod
self performRefactoringFor: #privateSplitCascadeBetween: with: anInterval with: aMethod
self performRefactoringFor: #privateSplitCascadeBetween:from: with: anInterval with: aMethod
@@ -1 +1 @@
I am a refactoring spliting a cascade message send to multiple messages.I AM CURRENTLY BROKEN !
I am a refactoring spliting a cascade message send to multiple messages.You can select an interval containing a cascade expression. The refactoring will split this expression to two message sends to the receiver. My precondition verifies that the selector containing the cascaded message send is defined in this class, and a cascade message can be found.If the receiver of the cascade expression is a literal or the return value of another message send, I will add another temporary variable for the interim result.
Expand Down
Expand Up @@ -2,7 +2,7 @@ allClasses
"Answer all the unique non-metaclasses of all the classes and metaclasses in this environment."

| allClasses |
allClasses := OrderedCollection new: 4096.
allClasses := IdentitySet new: 4096.
self classesDo: [ :each |
allClasses add: each theNonMetaClass].
^ allClasses asArray
@@ -1,4 +1,4 @@
script60029
script60030

^ 'AST-Core-TheIntegrator.421.mcz
AST-FFI-Pharo50Compatibility-TheIntegrator.2.mcz
Expand Down Expand Up @@ -194,7 +194,7 @@ Morphic-Widgets-Tabs-TheIntegrator.20.mcz
Morphic-Widgets-Taskbar-TheIntegrator.23.mcz
Morphic-Widgets-TickList-TheIntegrator.2.mcz
Morphic-Widgets-Tree-TheIntegrator.52.mcz
Morphic-Widgets-Windows-TheIntegrator.97.mcz
Morphic-Widgets-Windows-TheIntegrator.99.mcz
Multilingual-Encodings-TheIntegrator.61.mcz
Multilingual-Languages-TheIntegrator.55.mcz
Multilingual-OtherLanguages-TheIntegrator.22.mcz
Expand All @@ -209,7 +209,7 @@ Nautilus-GroupManagerUI-TheIntegrator.33.mcz
Nautilus-Tests-TheIntegrator.37.mcz
NautilusCommon-TheIntegrator.305.mcz
NautilusGroupAutoBuilder-TheIntegrator.13.mcz
NautilusRefactoring-TheIntegrator.274.mcz
NautilusRefactoring-TheIntegrator.276.mcz
Network-Kernel-TheIntegrator.135.mcz
Network-MIME-MarcusDenker.69.mcz
Network-Mail-TheIntegrator.45.mcz
Expand Down Expand Up @@ -243,9 +243,9 @@ Random-Core-TheIntegrator.4.mcz
Random-Tests-TheIntegrator.4.mcz
RecentSubmissions-TheIntegrator.238.mcz
Refactoring-Changes-TheIntegrator.67.mcz
Refactoring-Core-TheIntegrator.308.mcz
Refactoring-Core-TheIntegrator.310.mcz
Refactoring-Critics-TheIntegrator.264.mcz
Refactoring-Environment-TheIntegrator.78.mcz
Refactoring-Environment-TheIntegrator.82.mcz
Refactoring-Tests-Changes-MarcusDenker.38.mcz
Refactoring-Tests-Core-TheIntegrator.133.mcz
Refactoring-Tests-Critics-TheIntegrator.38.mcz
Expand Down

This file was deleted.

@@ -0,0 +1,12 @@
update60030
"self new update60030"
self withUpdateLog: '18296 DNU on split cascade refactoring
https://pharo.fogbugz.com/f/cases/18296
18298 duplicate elements in RBClassEnvironments result set
https://pharo.fogbugz.com/f/cases/18298
18314 wrong or missing metho protokoll name for WindowAnnouncements
https://pharo.fogbugz.com/f/cases/18314'.
self loadTogether: self script60030 merge: false.
self flushCaches.
@@ -1,12 +1,9 @@
commentForCurrentUpdate
^ '18309 Typo in RBSmalltalkGlobalsRule
https://pharo.fogbugz.com/f/cases/18309
^ '18296 DNU on split cascade refactoring
https://pharo.fogbugz.com/f/cases/18296
18308 "Replaces detect:ifNone: by anySatisfy:" misleading rationale
https://pharo.fogbugz.com/f/cases/18308
18298 duplicate elements in RBClassEnvironments result set
https://pharo.fogbugz.com/f/cases/18298
18247 deprecation warning on #isManifest for metaclasses
https://pharo.fogbugz.com/f/cases/18247
18079 Boolean>>xor
https://pharo.fogbugz.com/f/cases/18079'
18314 wrong or missing metho protokoll name for WindowAnnouncements
https://pharo.fogbugz.com/f/cases/18314'

0 comments on commit eaac18e

Please sign in to comment.