X Tutup
Skip to content

Commit 1247270

Browse files
author
Johan Brichau
authored
Merge pull request SeasideSt#55 from SeasideSt/fix-grdynvar-gs24
Fix grdynvar gs24
2 parents 99e0051 + 7618ff2 commit 1247270

File tree

4 files changed

+33
-56
lines changed

4 files changed

+33
-56
lines changed

.travis.yml

Lines changed: 25 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,33 @@
11
language: smalltalk
22
sudo: false
33
smalltalk:
4+
- Pharo-alpha
5+
- Pharo-6.1
46
- Pharo-6.0
57
- Pharo-5.0
68
- Pharo-4.0
79
- Pharo-3.0
10+
- Squeak-trunk
811
- Squeak-5.1
9-
- GemStone-3.1.0.6
10-
- GemStone-3.2.16
11-
- GemStone-3.3.4
12-
cache:
13-
directories:
14-
- $SMALLTALK_CI_CACHE
15-
#matrix:
16-
# allow_failures:
17-
# - smalltalk: Pharo-6.0
12+
13+
matrix:
14+
allow_failures:
15+
- smalltalk: Pharo-alpha
16+
- smalltalk: Squeak-trunk
17+
include:
18+
- smalltalk: GemStone-2.4.8
19+
cache:
20+
directories:
21+
- $SMALLTALK_CI_CACHE
22+
- smalltalk: GemStone-3.1.0.6
23+
cache:
24+
directories:
25+
- $SMALLTALK_CI_CACHE
26+
- smalltalk: GemStone-3.2.16
27+
cache:
28+
directories:
29+
- $SMALLTALK_CI_CACHE
30+
- smalltalk: GemStone-3.3.4
31+
cache:
32+
directories:
33+
- $SMALLTALK_CI_CACHE
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