Changeset 5930 for lang/smalltalk
- Timestamp:
- 01/31/08 09:48:16 (10 months ago)
- Files:
-
- 1 modified
-
lang/smalltalk/misc/gost.st (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
lang/smalltalk/misc/gost.st
r5926 r5930 97 97 ^(UnicodeString with: self), (o isCharacter ifTrue: [ {o} ] ifFalse: [ o ])! 98 98 + o 99 o isInteger and: [ ^Character codePoint: codePoint + n ]99 o isInteger and: [ ^Character codePoint: codePoint + o ]. 100 100 self doesNotUnderstand: (Message selector: #+ arguments: {o})! 101 101 - o 102 102 o isInteger and: [ ^Character codePoint: codePoint - o ]. 103 o isCharacter and: [ ^codePoint - o codePoint ] 103 o isCharacter and: [ ^codePoint - o codePoint ]. 104 104 self doesNotUnderstand: (Message selector: #- arguments: {o})! 105 * n106 o isInteger and: [ ^UnicodeString new: n withAll: self ]105 * o 106 o isInteger and: [ ^UnicodeString new: o withAll: self ]. 107 107 self doesNotUnderstand: (Message selector: #* arguments: {o})! 108 ~ c108 ~ o 109 109 o isCharacter and: [ ^UnicodeString withAll: 110 ((codePoint to: c codePoint) collect: [:v| Character codePoint: v ]) ]110 ((codePoint to: o codePoint) collect: [:v| Character codePoint: v ]) ]. 111 111 self doesNotUnderstand: (Message selector: #~ arguments: {o})! 112 112 <- o
![(please configure the [header_logo] section in trac.ini)](/share/chrome/site/your_project_logo.png)