Skip to content

Commit

Permalink
Merge pull request #7888 from olekscode/6391-fileouting-a-setter-save…
Browse files Browse the repository at this point in the history
…-the-same-file-than-a-getter-in-calypso

Fixed #6391. Filed out methods are now saved into files that have colons in their names
  • Loading branch information
Ducasse committed Dec 15, 2020
2 parents f2370fa + 154f48a commit a7101f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/CodeExport/ClassDescription.extension.st
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ ClassDescription >> fileOutMethod: selector [
| internalStream |
internalStream := (String new: 1000) writeStream.
self fileOutMethod: selector on: internalStream.
CodeExporter writeSourceCodeFrom: internalStream baseName: (self name , '-' , (selector copyReplaceAll: ':' with: '')) isSt: true.
CodeExporter writeSourceCodeFrom: internalStream baseName: (self name , '-' , (selector copyReplaceAll: ':' with: '..')) isSt: true.
]

{ #category : #'*CodeExport' }
Expand Down

0 comments on commit a7101f7

Please sign in to comment.