'From Pharo8.0.0 of 22 January 2020 [Build information: Pharo-8.0.0+build.1124.sha.0932da82f08175e906b0e2a8052120c823374e9f (64 Bit)] on 13 June 2020 at 10:12:08.905211 pm'! Object subclass: #ValueHolderTestClass instanceVariableNames: 'holder1 holder2 holder3' classVariableNames: '' package: 'Become-Test'! !ValueHolderTestClass methodsFor: 'accessing' stamp: 'SebastianHeidbrink 6/13/2020 20:10'! value2: anObject holder2 value: anObject! ! !ValueHolderTestClass methodsFor: 'accessing' stamp: 'SebastianHeidbrink 6/13/2020 21:33'! value1 ^holder1 value! ! !ValueHolderTestClass methodsFor: 'accessing' stamp: 'SebastianHeidbrink 6/13/2020 20:08'! holder1: anObject holder1 := anObject! ! !ValueHolderTestClass methodsFor: 'accessing' stamp: 'SebastianHeidbrink 6/13/2020 20:10'! value1: anObject holder1 value: anObject! ! !ValueHolderTestClass methodsFor: 'accessing' stamp: 'SebastianHeidbrink 6/13/2020 21:33'! value2 ^holder2 value! ! !ValueHolderTestClass methodsFor: 'accessing' stamp: 'SebastianHeidbrink 6/13/2020 21:33'! value3 ^holder3 value! ! !ValueHolderTestClass methodsFor: 'accessing' stamp: 'SebastianHeidbrink 6/13/2020 20:08'! holder2: anObject holder2 := anObject! ! !ValueHolderTestClass methodsFor: 'accessing' stamp: 'SebastianHeidbrink 6/13/2020 20:08'! holder2 ^ holder2! ! !ValueHolderTestClass methodsFor: 'accessing' stamp: 'SebastianHeidbrink 6/13/2020 20:08'! holder1 ^ holder1! ! !ValueHolderTestClass methodsFor: 'accessing' stamp: 'SebastianHeidbrink 6/13/2020 20:11'! initialize super initialize. holder1 := NewValueHolder new. holder2 := NewValueHolder new. holder3 := NewValueHolder new.! ! !ValueHolderTestClass methodsFor: 'accessing' stamp: 'SebastianHeidbrink 6/13/2020 20:08'! holder3 ^ holder3! ! !ValueHolderTestClass methodsFor: 'accessing' stamp: 'SebastianHeidbrink 6/13/2020 20:08'! holder3: anObject holder3 := anObject! ! !ValueHolderTestClass methodsFor: 'accessing' stamp: 'SebastianHeidbrink 6/13/2020 20:10'! value3: anObject holder3 value: anObject! !