@@ -5,22 +5,20 @@ resolveWith: aDictionary
55 aDictionary at: each ifAbsent: [
66 " if Foo-Pharo-Bar fails try Foo-Pharo20-Bar and Foo-Pharo30-Bar"
77 (each indexOfSubCollection: ' -Pharo-' startingAt: 1 ) ~= 0 ifTrue: [
8- " try -Pharo20-"
9- aDictionary at: (each copyReplaceAll: ' -Pharo-' with: ' -Pharo20-' ) ifAbsent: [
10- " try -Pharo30-"
11- aDictionary at: (each copyReplaceAll: ' -Pharo-' with: ' -Pharo30-' ) ifAbsent: [
12- " try -Pharo40-"
13- aDictionary at: (each copyReplaceAll: ' -Pharo-' with: ' -Pharo40-' ) ifAbsent: [
14- " try -Pharo50-"
15- aDictionary at: (each copyReplaceAll: ' -Pharo-' with: ' -Pharo50-' ) ifAbsent: [
16- " try -Pharo60-"
17- aDictionary at: (each copyReplaceAll: ' -Pharo-' with: ' -Pharo60-' ) ifAbsent: [
18- " try -Pharo70-"
19- aDictionary at: (each copyReplaceAll: ' -Pharo-' with: ' -Pharo70-' ) ifAbsent: [
20- " try -Squeak-"
21- aDictionary at: (each copyReplaceAll: ' -Pharo-' with: ' -Squeak-' ) ifAbsent: [
22- " try -Squeak5-"
23- aDictionary at: (each copyReplaceAll: ' -Pharo-' with: ' -Squeak5-' ) ifAbsent: [
24- " try -Squeak6-"
25- aDictionary at: (each copyReplaceAll: ' -Pharo-' with: ' -Squeak6-' ) ifAbsent: [
26- self error: self name printString , ' depends on unknown package ' , each printString ] ] ] ] ] ] ] ] ] ] ] ]
8+ " try -Pharo40-"
9+ aDictionary at: (each copyReplaceAll: ' -Pharo-' with: ' -Pharo40-' ) ifAbsent: [
10+ " try -Pharo50-"
11+ aDictionary at: (each copyReplaceAll: ' -Pharo-' with: ' -Pharo50-' ) ifAbsent: [
12+ " try -Pharo60-"
13+ aDictionary at: (each copyReplaceAll: ' -Pharo-' with: ' -Pharo60-' ) ifAbsent: [
14+ " try -Pharo70-"
15+ aDictionary at: (each copyReplaceAll: ' -Pharo-' with: ' -Pharo70-' ) ifAbsent: [
16+ " try -Pharo90-"
17+ aDictionary at: (each copyReplaceAll: ' -Pharo-' with: ' -Pharo90-' ) ifAbsent: [
18+ " try -Squeak-"
19+ aDictionary at: (each copyReplaceAll: ' -Pharo-' with: ' -Squeak-' ) ifAbsent: [
20+ " try -Squeak5-"
21+ aDictionary at: (each copyReplaceAll: ' -Pharo-' with: ' -Squeak5-' ) ifAbsent: [
22+ " try -Squeak6-"
23+ aDictionary at: (each copyReplaceAll: ' -Pharo-' with: ' -Squeak6-' ) ifAbsent: [
24+ self error: self name printString , ' depends on unknown package ' , each printString ] ] ] ] ] ] ] ] ] ] ]
0 commit comments