@@ -34,8 +34,9 @@ GtWireEncoderDecoder class >> defaultMapping [
3434 at: Set put: GtWireSetEncoder new ;
3535 at: SmallInteger put: GtWireIntegerEncoder new ;
3636 at: LargeInteger put: GtWireIntegerEncoder new ;
37- at: Float put: GtWireFloatEncoder new ;
38- at: SmallDouble put: GtWireFloatEncoder new ;
37+ at: Float put: GtWireFloatPrintStringEncoder new ;
38+ at: SmallDouble put: GtWireFloatPrintStringEncoder new ;
39+ at: SmallFloat put: GtWireFloatPrintStringEncoder new ;
3940 at: UndefinedObject put: GtWireNilEncoder new ;
4041 at: DateAndTime put: GtWireDateAndTimeEncoder new ;
4142 at: SmallDateAndTime put: GtWireDateAndTimeEncoder new .
@@ -73,7 +74,7 @@ GtWireEncoderDecoder class >> getDefaultMap [
7374 at: ((self lookupClass: #ExecBlock4 ) ifNil: [ self error: ' Unable to find: ExecBlock4' ]) put: GtWireBlockClosureEncoder new ;
7475 at: ((self lookupClass: #ExecBlock5 ) ifNil: [ self error: ' Unable to find: ExecBlock5' ]) put: GtWireBlockClosureEncoder new ;
7576 at: ((self lookupClass: #ExecBlockN ) ifNil: [ self error: ' Unable to find: ExecBlockN' ]) put: GtWireBlockClosureEncoder new ;
76- at: ((self lookupClass: #Float ) ifNil: [ self error: ' Unable to find: Float' ]) put: GtWireFloatEncoder new ;
77+ at: ((self lookupClass: #Float ) ifNil: [ self error: ' Unable to find: Float' ]) put: GtWireFloatPrintStringEncoder new ;
7778 at: ((self lookupClass: #GtRsrEvaluatorFeaturesService ) ifNil: [ self error: ' Unable to find: GtRsrEvaluatorFeaturesService' ]) put: GtWireGemStoneRsrEncoder new ;
7879 at: ((self lookupClass: #GtRsrEvaluatorFeaturesServiceServer ) ifNil: [ self error: ' Unable to find: GtRsrEvaluatorFeaturesServiceServer' ]) put: GtWireGemStoneRsrEncoder new ;
7980 at: ((self lookupClass: #GtRsrEvaluatorService ) ifNil: [ self error: ' Unable to find: GtRsrEvaluatorService' ]) put: GtWireGemStoneRsrEncoder new ;
@@ -97,7 +98,8 @@ GtWireEncoderDecoder class >> getDefaultMap [
9798 at: ((self lookupClass: #RsrService ) ifNil: [ self error: ' Unable to find: RsrService' ]) put: GtWireGemStoneRsrEncoder new ;
9899 at: ((self lookupClass: #Set ) ifNil: [ self error: ' Unable to find: Set' ]) put: GtWireSetEncoder new ;
99100 at: ((self lookupClass: #SmallDateAndTime ) ifNil: [ self error: ' Unable to find: SmallDateAndTime' ]) put: GtWireDateAndTimeEncoder new ;
100- at: ((self lookupClass: #SmallDouble ) ifNil: [ self error: ' Unable to find: SmallDouble' ]) put: GtWireFloatEncoder new ;
101+ at: ((self lookupClass: #SmallDouble ) ifNil: [ self error: ' Unable to find: SmallDouble' ]) put: GtWireFloatPrintStringEncoder new ;
102+ at: ((self lookupClass: #SmallFloat ) ifNil: [ self error: ' Unable to find: SmallFloat' ]) put: GtWireFloatPrintStringEncoder new ;
101103 at: ((self lookupClass: #SmallInteger ) ifNil: [ self error: ' Unable to find: SmallInteger' ]) put: GtWireIntegerEncoder new ;
102104 at: ((self lookupClass: #String ) ifNil: [ self error: ' Unable to find: String' ]) put: GtWireStringEncoder new ;
103105 at: ((self lookupClass: #Symbol ) ifNil: [ self error: ' Unable to find: Symbol' ]) put: GtWireSymbolEncoder new ;
@@ -113,7 +115,7 @@ GtWireEncoderDecoder class >> getDefaultReverseMap [
113115 " Generated by #generateDefaultReverseMapMethodFrom:.
114116 Original source is #defaultMapping, changes should be made there and the code regenerated."
115117
116- ^ (Array new : 28 )
118+ ^ (Array new : 29 )
117119 at: 1 put: GtWireNilEncoder new ;
118120 at: 2 put: GtWireTrueEncoder new ;
119121 at: 3 put: GtWireFalseEncoder new ;
@@ -140,5 +142,6 @@ GtWireEncoderDecoder class >> getDefaultReverseMap [
140142 at: 25 put: GtWireDummyProxyEncoder new ;
141143 at: 27 put: GtWireGemStoneWithRsrEncoder new ;
142144 at: 28 put: GtWireClassEncoder new ;
145+ at: 29 put: GtWireFloatPrintStringEncoder new ;
143146 yourself .
144147]
0 commit comments