#DOCUMENTATION by cg
authorClaus Gittinger <cg@exept.de>
Fri, 28 Jul 2017 10:34:28 +0200
changeset 4173 33b6dd806e42
parent 4172 e30dfcd9a372
child 4174 69d1587aa226
#DOCUMENTATION by cg class: Scanner comment/format in: #skipComment
Scanner.st
--- a/Scanner.st	Tue Jul 25 17:11:28 2017 +0200
+++ b/Scanner.st	Fri Jul 28 10:34:28 2017 +0200
@@ -3580,7 +3580,8 @@
 skipComment
     "skip over a comment; 
      handles ST/X eol comments (quote-slash)
-     and multiline-delimiter comment (quote-less-less)."
+     and multiline-delimiter comment (quote-less-less).
+     Multiline-delimiter comments start with ''<<TOKEN and end in a line which starts with TOKEN (quote-quote being a double quote here)"
 
     |commentStream commentType commentText startPos endPos stillInComment anyNonBlank
      delimiter line|
@@ -3752,7 +3753,9 @@
             ].
         ].
     ].
+
     "Modified: / 30-07-2013 / 20:56:33 / cg"
+    "Modified (comment): / 28-07-2017 / 10:34:17 / cg"
 !
 
 skipToEndOfLineRememberingIn:commentStreamOrNil