help-smalltalk
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Help-smalltalk] [PATCH 2/2] do not include categories in method body


From: Tim Felgentreff
Subject: [Help-smalltalk] [PATCH 2/2] do not include categories in method body
Date: Fri, 11 Sep 2009 09:03:40 +0200

---
 packages/stinst/parser/SqueakExporter.st |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

Hi,
this and th previous patch fix the two remaining problems I had with Squeak 
format converting, namely wrong newlines and inclusion of the Gnu Smalltalk 
style
category in the method body.
Hope just posting them like this is ok.

Regards,
Tim

diff --git a/packages/stinst/parser/SqueakExporter.st 
b/packages/stinst/parser/SqueakExporter.st
index 98a62b3..ab7557f 100644
--- a/packages/stinst/parser/SqueakExporter.st
+++ b/packages/stinst/parser/SqueakExporter.st
@@ -50,8 +50,9 @@ OldSyntaxExporter subclass: SqueakSyntaxExporter [
     fileOutChunk: aString [
         outStream
             nl;
-            nextPutAll: ((aString copyReplaceAll: '!' with: '!!')
-                           replaceAll: Character lf with: Character cr);
+            nextPutAll: (((aString copyReplaceAll: '!' with: '!!')
+                           copyReplacingRegex: '<category: .*>' with: '')
+                               replaceAll: Character lf with: Character cr);
             nextPut: $!
     ]
 

reply via email to

[Prev in Thread] Current Thread [Next in Thread]