-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #21 from dassi/pharo110
Compatibility for Pharo 11 and 12
- Loading branch information
Showing
69 changed files
with
267 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
{ | ||
"noMethodMetaData" : true, | ||
"separateMethodMetaAndSource" : false, | ||
"useCypressPropertiesFile" : true } | ||
"noMethodMetaData" : true, | ||
"useCypressPropertiesFile" : true | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 0 additions & 6 deletions
6
repository/BaselineOfSIXX.package/BaselineOfSIXX.class/methodProperties.json
This file was deleted.
Oops, something went wrong.
19 changes: 8 additions & 11 deletions
19
repository/BaselineOfSIXX.package/BaselineOfSIXX.class/properties.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,11 @@ | ||
{ | ||
"category" : "BaselineOfSIXX", | ||
"classinstvars" : [ | ||
], | ||
"classvars" : [ | ||
], | ||
"commentStamp" : "", | ||
"instvars" : [ | ||
], | ||
"name" : "BaselineOfSIXX", | ||
"pools" : [ | ||
], | ||
"super" : "BaselineOf", | ||
"type" : "normal" } | ||
"category" : "BaselineOfSIXX", | ||
"classinstvars" : [ ], | ||
"pools" : [ ], | ||
"classvars" : [ ], | ||
"instvars" : [ ], | ||
"name" : "BaselineOfSIXX", | ||
"type" : "normal" | ||
} |
2 changes: 1 addition & 1 deletion
2
repository/BaselineOfSIXX.package/monticello.meta/categories.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
SystemOrganization addCategory: #BaselineOfSIXX! | ||
self packageOrganizer ensurePackage: #BaselineOfSIXX withTags: #()! |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1 @@ | ||
{ | ||
} | ||
{ } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"separateMethodMetaAndSource" : false, | ||
"noMethodMetaData" : true, | ||
"useCypressPropertiesFile" : true | ||
} |
11 changes: 11 additions & 0 deletions
11
...-InOut-Pharo110.package/AbstractFont.extension/class/createInstanceOf.withSixxElement..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
*SIXX-InOut-Pharo110-instance creation | ||
createInstanceOf: aClass withSixxElement: sixxElement | ||
|
||
"For old format" | ||
| stream | | ||
(SixxXmlUtil hasSubElementsFrom: sixxElement ) ifTrue: [ | ||
^super createInstanceOf: aClass withSixxElement: sixxElement | ||
]. | ||
|
||
stream := ReadStream on: (SixxXmlUtil characterDataFrom: sixxElement). | ||
^self readSixxContentStringFrom: stream |
8 changes: 8 additions & 0 deletions
8
...ry/SIXX-InOut-Pharo110.package/AbstractFont.extension/class/readSixxContentStringFrom..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
*SIXX-InOut-Pharo110-instance creation | ||
readSixxContentStringFrom: aStream | ||
| space familyName size emphasisCode | | ||
space := Character space. | ||
familyName := aStream upTo: space. | ||
size := (aStream upTo: space) asInteger. | ||
emphasisCode := (aStream upTo: space) asInteger. | ||
^self sixxFamilyName: familyName size: size emphasized: emphasisCode. |
3 changes: 3 additions & 0 deletions
3
...XX-InOut-Pharo110.package/AbstractFont.extension/class/sixxFamilyName.size.emphasized..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
*SIXX-InOut-Pharo110-instance creation | ||
sixxFamilyName: familyName size: size emphasized: emphasisCode | ||
^self familyName: familyName size: size emphasized: emphasisCode |
3 changes: 3 additions & 0 deletions
3
...X-InOut-Pharo110.package/AbstractFont.extension/instance/sixxContentOn.indent.context..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
*SIXX-InOut-Pharo110-printing | ||
sixxContentOn: aStream indent: level context: dictionary | ||
aStream nextPutAll: self sixxContentString |
4 changes: 4 additions & 0 deletions
4
repository/SIXX-InOut-Pharo110.package/AbstractFont.extension/instance/sixxContentString.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
*SIXX-InOut-Pharo110-printing | ||
sixxContentString | ||
"Squeak Specific" | ||
^self fontNameWithPointSize, ' ', self emphasis asString |
3 changes: 3 additions & 0 deletions
3
repository/SIXX-InOut-Pharo110.package/AbstractFont.extension/properties.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"name" : "AbstractFont" | ||
} |
8 changes: 8 additions & 0 deletions
8
...ory/SIXX-InOut-Pharo110.package/Color.extension/instance/sixxContentOn.indent.context..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
*SIXX-InOut-Pharo110-printing | ||
sixxContentOn: aStream indent: level context: dictionary | ||
aStream | ||
nextPutAll: '(' , self class name; | ||
nextPutAll: ' r: '; print: (self red roundTo: 0.001); | ||
nextPutAll: ' g: '; print: (self green roundTo: 0.001); | ||
nextPutAll: ' b: '; print: (self blue roundTo: 0.001); | ||
nextPutAll: ')'. |
3 changes: 3 additions & 0 deletions
3
repository/SIXX-InOut-Pharo110.package/Color.extension/properties.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"name" : "Color" | ||
} |
4 changes: 4 additions & 0 deletions
4
...-InOut-Pharo110.package/CompiledCode.extension/class/createInstanceOf.withSixxElement..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
*SIXX-InOut-Pharo110 | ||
createInstanceOf: aClass withSixxElement: sixxElement | ||
SixxInvalidDeserialization signal: aClass name element: sixxElement. | ||
^nil |
4 changes: 4 additions & 0 deletions
4
...X-InOut-Pharo110.package/CompiledCode.extension/instance/sixxContentOn.indent.context..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
*SIXX-InOut-Pharo110 | ||
sixxContentOn: aStream indent: level context: dictionary | ||
SixxInvalidSerialization signal: self class name context: dictionary. | ||
SixxXmlUtil writeXmlText: self printString on: aStream |
3 changes: 3 additions & 0 deletions
3
repository/SIXX-InOut-Pharo110.package/CompiledCode.extension/properties.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"name" : "CompiledCode" | ||
} |
4 changes: 4 additions & 0 deletions
4
.../SIXX-InOut-Pharo110.package/Context.extension/class/createInstanceOf.withSixxElement..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
*SIXX-InOut-Pharo110-instance creation | ||
createInstanceOf: aClass withSixxElement: sixxElement | ||
SixxInvalidDeserialization signal: aClass name element: sixxElement. | ||
^nil |
4 changes: 4 additions & 0 deletions
4
...y/SIXX-InOut-Pharo110.package/Context.extension/instance/sixxContentOn.indent.context..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
*SIXX-InOut-Pharo110-printing | ||
sixxContentOn: aStream indent: level context: dictionary | ||
SixxInvalidSerialization signal: self class name context: dictionary. | ||
SixxXmlUtil writeXmlText: self printString on: aStream |
3 changes: 3 additions & 0 deletions
3
repository/SIXX-InOut-Pharo110.package/Context.extension/properties.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"name" : "Context" | ||
} |
4 changes: 4 additions & 0 deletions
4
repository/SIXX-InOut-Pharo110.package/Date.extension/class/readSixxContentStringFrom..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
*SIXX-InOut-Pharo110-private | ||
readSixxContentStringFrom: aStream | ||
"Squeak specific" | ||
^ self readFrom: aStream |
4 changes: 4 additions & 0 deletions
4
repository/SIXX-InOut-Pharo110.package/Date.extension/instance/sixxContentString.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
*SIXX-InOut-Pharo110-private | ||
sixxContentString | ||
"Squeak Specific" | ||
^self printString |
3 changes: 3 additions & 0 deletions
3
repository/SIXX-InOut-Pharo110.package/Date.extension/properties.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"name" : "Date" | ||
} |
9 changes: 9 additions & 0 deletions
9
...X-InOut-Pharo110.package/DateAndTime.extension/class/createInstanceOf.withSixxElement..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
*SIXX-InOut-Pharo110-instance creation | ||
createInstanceOf: aClass withSixxElement: sixxElement | ||
|
||
"For old format" | ||
(SixxXmlUtil hasSubElementsFrom: sixxElement) ifTrue: [ | ||
^super createInstanceOf: aClass withSixxElement: sixxElement | ||
]. | ||
|
||
^ self readSixxContentStringFrom: (ReadStream on: (SixxXmlUtil characterDataFrom: sixxElement)) |
4 changes: 4 additions & 0 deletions
4
...ory/SIXX-InOut-Pharo110.package/DateAndTime.extension/class/readSixxContentStringFrom..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
*SIXX-InOut-Pharo110-private | ||
readSixxContentStringFrom: aStream | ||
"Squeak specific" | ||
^ self readFrom: aStream |
3 changes: 3 additions & 0 deletions
3
...XX-InOut-Pharo110.package/DateAndTime.extension/instance/sixxContentOn.indent.context..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
*SIXX-InOut-Pharo110-printing | ||
sixxContentOn: aStream indent: level context: dictionary | ||
aStream nextPutAll: self sixxContentString |
4 changes: 4 additions & 0 deletions
4
repository/SIXX-InOut-Pharo110.package/DateAndTime.extension/instance/sixxContentString.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
*SIXX-InOut-Pharo110-private | ||
sixxContentString | ||
"Squeak Specific" | ||
^self printString |
5 changes: 5 additions & 0 deletions
5
...itory/SIXX-InOut-Pharo110.package/DateAndTime.extension/instance/sixxInstVarNamed.put..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
*SIXX-InOut-Pharo110-private | ||
sixxInstVarNamed: varName put: childInst | ||
"For old format" | ||
varName = 'jdn' ifTrue: [^ julianDayNumber := childInst ]. | ||
super sixxInstVarNamed: varName put: childInst |
3 changes: 3 additions & 0 deletions
3
repository/SIXX-InOut-Pharo110.package/DateAndTime.extension/properties.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"name" : "DateAndTime" | ||
} |
3 changes: 3 additions & 0 deletions
3
repository/SIXX-InOut-Pharo110.package/FixedFaceFont.extension/instance/emphasis.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
*SIXX-InOut-Pharo110-printing | ||
emphasis | ||
^0 |
3 changes: 3 additions & 0 deletions
3
repository/SIXX-InOut-Pharo110.package/FixedFaceFont.extension/properties.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"name" : "FixedFaceFont" | ||
} |
5 changes: 5 additions & 0 deletions
5
...-InOut-Pharo110.package/Float32Array.extension/class/createInstanceOf.withSixxElement..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
*SIXX-InOut-Pharo110 | ||
createInstanceOf: aClass withSixxElement: sixxElement | ||
| col | | ||
col := Array readFrom: (ReadStream on: (SixxXmlUtil characterDataFrom: sixxElement)). | ||
^ col asFloatArray |
5 changes: 5 additions & 0 deletions
5
...X-InOut-Pharo110.package/Float32Array.extension/instance/sixxContentOn.indent.context..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
*SIXX-InOut-Pharo110 | ||
sixxContentOn: aStream indent: level context: dictionary | ||
aStream nextPutAll: '#( '. | ||
self do:[:each | aStream nextPutAll: each printString; space]. | ||
aStream nextPutAll: ')'. |
3 changes: 3 additions & 0 deletions
3
repository/SIXX-InOut-Pharo110.package/Float32Array.extension/properties.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"name" : "Float32Array" | ||
} |
4 changes: 4 additions & 0 deletions
4
repository/SIXX-InOut-Pharo110.package/Integer.extension/instance/digitLength.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
*SIXX-InOut-Pharo110 | ||
digitLength | ||
"For compatibility with other dialects" | ||
^ self bytesCount |
3 changes: 3 additions & 0 deletions
3
repository/SIXX-InOut-Pharo110.package/Integer.extension/properties.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"name" : "Integer" | ||
} |
5 changes: 5 additions & 0 deletions
5
...-InOut-Pharo110.package/IntegerArray.extension/class/createInstanceOf.withSixxElement..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
*SIXX-InOut-Pharo110-instance creation | ||
createInstanceOf: aClass withSixxElement: sixxElement | ||
| col | | ||
col := Array readFrom: (ReadStream on: (SixxXmlUtil characterDataFrom: sixxElement)). | ||
^ col asIntegerArray |
5 changes: 5 additions & 0 deletions
5
...X-InOut-Pharo110.package/IntegerArray.extension/instance/sixxContentOn.indent.context..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
*SIXX-InOut-Pharo110-printing | ||
sixxContentOn: aStream indent: level context: dictionary | ||
aStream nextPutAll: '#( '. | ||
self do:[:each | aStream nextPutAll: each printString; space]. | ||
aStream nextPutAll: ')'. |
3 changes: 3 additions & 0 deletions
3
repository/SIXX-InOut-Pharo110.package/IntegerArray.extension/properties.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"name" : "IntegerArray" | ||
} |
3 changes: 3 additions & 0 deletions
3
repository/SIXX-InOut-Pharo110.package/Interval.extension/instance/sixxContentString.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
*SIXX-InOut-Pharo110-printing | ||
sixxContentString | ||
^ self printString |
3 changes: 3 additions & 0 deletions
3
repository/SIXX-InOut-Pharo110.package/Interval.extension/properties.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"name" : "Interval" | ||
} |
3 changes: 3 additions & 0 deletions
3
repository/SIXX-InOut-Pharo110.package/Metaclass.extension/instance/sixxMetaclassInstance.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
*SIXX-InOut-Pharo110-private | ||
sixxMetaclassInstance | ||
^ self soleInstance |
3 changes: 3 additions & 0 deletions
3
repository/SIXX-InOut-Pharo110.package/Metaclass.extension/properties.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"name" : "Metaclass" | ||
} |
3 changes: 3 additions & 0 deletions
3
repository/SIXX-InOut-Pharo110.package/Number.extension/class/readSixxContentStringFrom..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
*SIXX-InOut-Pharo110-private | ||
readSixxContentStringFrom: aReadStream | ||
^ Number readFrom: aReadStream |
3 changes: 3 additions & 0 deletions
3
repository/SIXX-InOut-Pharo110.package/Number.extension/properties.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"name" : "Number" | ||
} |
3 changes: 3 additions & 0 deletions
3
repository/SIXX-InOut-Pharo110.package/Object.extension/class/readSixxContentStringFrom..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
*SIXX-InOut-Pharo110-instance creation | ||
readSixxContentStringFrom: aReadStream | ||
^ self readFrom: aReadStream |
3 changes: 3 additions & 0 deletions
3
repository/SIXX-InOut-Pharo110.package/Object.extension/properties.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"name" : "Object" | ||
} |
5 changes: 5 additions & 0 deletions
5
...SIXX-InOut-Pharo110.package/RunArray.extension/class/createInstanceOf.withSixxElement..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
*SIXX-InOut-Pharo110-instance creation | ||
createInstanceOf: aClass withSixxElement: sixxElement | ||
"squeak specific" | ||
|
||
^aClass basicNew |
14 changes: 14 additions & 0 deletions
14
.../SIXX-InOut-Pharo110.package/RunArray.extension/instance/sixxContentOn.indent.context..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
*SIXX-InOut-Pharo110-printing | ||
sixxContentOn: aStream indent: level context: dictionary | ||
aStream cr. | ||
self runs | ||
sixxOn: aStream | ||
name: 'runs' | ||
indent: level + 1 | ||
context: dictionary. | ||
self values | ||
sixxOn: aStream | ||
name: 'values' | ||
indent: level + 1 | ||
context: dictionary. | ||
aStream tab: level |
3 changes: 3 additions & 0 deletions
3
repository/SIXX-InOut-Pharo110.package/RunArray.extension/properties.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"name" : "RunArray" | ||
} |
5 changes: 5 additions & 0 deletions
5
...t-Pharo110.package/ShortIntegerArray.extension/class/createInstanceOf.withSixxElement..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
*SIXX-InOut-Pharo110-instance creation | ||
createInstanceOf: aClass withSixxElement: sixxElement | ||
| col | | ||
col := Array readFrom: (ReadStream on: (SixxXmlUtil characterDataFrom: sixxElement)). | ||
^self withAll: col |
5 changes: 5 additions & 0 deletions
5
...ut-Pharo110.package/ShortIntegerArray.extension/instance/sixxContentOn.indent.context..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
*SIXX-InOut-Pharo110-printing | ||
sixxContentOn: aStream indent: level context: dictionary | ||
aStream nextPutAll: '#( '. | ||
self do:[:each | aStream nextPutAll: each printString; space]. | ||
aStream nextPutAll: ')'. |
3 changes: 3 additions & 0 deletions
3
repository/SIXX-InOut-Pharo110.package/ShortIntegerArray.extension/properties.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"name" : "ShortIntegerArray" | ||
} |
3 changes: 3 additions & 0 deletions
3
...SIXX-InOut-Pharo110.package/StrikeFont.extension/class/sixxFamilyName.size.emphasized..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
*SIXX-InOut-Pharo110-instance creation | ||
sixxFamilyName: familyName size: size emphasized: emphasisCode | ||
^self familyName: familyName pointSize: size emphasized: emphasisCode |
3 changes: 3 additions & 0 deletions
3
repository/SIXX-InOut-Pharo110.package/StrikeFont.extension/properties.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"name" : "StrikeFont" | ||
} |
4 changes: 4 additions & 0 deletions
4
...tory/SIXX-InOut-Pharo110.package/Text.extension/instance/sixxContentOn.indent.context..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
*SIXX-InOut-Pharo110-printing | ||
sixxContentOn: aStream indent: level context: dictionary | ||
self sixxChildrenContentsOn: aStream indent: level + 1 context: dictionary. | ||
aStream tab: level. |
3 changes: 3 additions & 0 deletions
3
repository/SIXX-InOut-Pharo110.package/Text.extension/properties.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"name" : "Text" | ||
} |
4 changes: 4 additions & 0 deletions
4
repository/SIXX-InOut-Pharo110.package/Time.extension/class/readSixxContentStringFrom..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
*SIXX-InOut-Pharo110-private | ||
readSixxContentStringFrom: aStream | ||
"Squeak specific" | ||
^ self readFrom: aStream |
Oops, something went wrong.