X Tutup
Skip to content

Commit 5c1b15b

Browse files
author
Johan Brichau
authored
Merge pull request SeasideSt#54 from SeasideSt/13-for-gs24x
Fix for GRDynamicVariable in Gemstone 2.4
2 parents 6c3bf7a + 59708af commit 5c1b15b

File tree

4 files changed

+12
-47
lines changed

4 files changed

+12
-47
lines changed

.travis.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,10 @@ matrix:
1515
- smalltalk: Pharo-alpha
1616
- smalltalk: Squeak-trunk
1717
include:
18+
- smalltalk: GemStone-2.4.8
19+
cache:
20+
directories:
21+
- $SMALLTALK_CI_CACHE
1822
- smalltalk: GemStone-3.1.0.6
1923
cache:
2024
directories:
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
accessing
2+
value
3+
"Override required for compatibility in GS2.4 where environmentAt:ifAbsent: is flawed because it can still return nil when absent instead of executing the ifAbsent block"
4+
5+
^ Processor activeProcess environment at: self ifAbsent: [ self defaultValue ]

repository/Grease-GemStone-Core.package/GRDynamicVariable.class/methodProperties.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
"class" : {
33
"default" : "JohanBrichau 07/23/2017 09:48",
44
"defaultValue" : "JohanBrichau 07/23/2017 09:47",
5-
"use:during:" : "JB 09/08/2017 00:34" },
5+
"use:during:" : "JB 09/08/2017 00:34",
6+
"value" : "JB 10/04/2017 04:57" },
67
"instance" : {
78
} }

repository/Grease-GemStone-Core.package/monticello.meta/version

Lines changed: 1 addition & 46 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)
X Tutup