X-Git-Url: https://gitweb.factorcode.org/gitweb.cgi?p=factor.git;a=blobdiff_plain;f=basis%2Fmultiline%2Fmultiline.factor;h=c6d5576347a7122ed29eab33f6b27b209e756b57;hp=69389f68c26f2ccdab161cd22614a9c59c3540b8;hb=f2db336221c17d3dafc0faf85371a86a330242f7;hpb=75d6395849a999bd6eef9aadd95d5f027bcbcf8f diff --git a/basis/multiline/multiline.factor b/basis/multiline/multiline.factor index 69389f68c2..c6d5576347 100644 --- a/basis/multiline/multiline.factor +++ b/basis/multiline/multiline.factor @@ -1,11 +1,9 @@ ! Copyright (C) 2007 Daniel Ehrenberg ! See http://factorcode.org/license.txt for BSD license. -USING: accessors combinators kernel lexer locals make math -namespaces parser quotations sequences words ; +USING: accessors kernel lexer make math namespaces parser +quotations sequences strings.parser.private words ; IN: multiline -ERROR: bad-heredoc identifier ; - > :> text lexer still-parsing? [ - end text i start* [| j | + i text end subseq-index-from [| j | i j text subseq % j end length + ] [ - text i short tail % CHAR: \n , + text i index-or-length tail % CHAR: \n , lexer next-line 0 end lexer (scan-multiline-string) ] if* @@ -55,28 +53,12 @@ SYNTAX: STRING: [ lexer [ skip-n-chars + end-text lexer (scan-multiline-string) ] - change-column drop + change-column check-space ] "" make ; : advance-same-line ( lexer text -- ) length [ + ] curry change-column drop ; -:: (parse-til-line-begins) ( begin-text lexer -- ) - lexer still-parsing? [ - lexer line-text>> begin-text sequence= [ - lexer begin-text advance-same-line - ] [ - lexer line-text>> % CHAR: \n , - lexer next-line - begin-text lexer (parse-til-line-begins) - ] if - ] [ - begin-text bad-heredoc - ] if ; - -: parse-til-line-begins ( begin-text lexer -- seq ) - [ (parse-til-line-begins) ] "" make ; - PRIVATE> : parse-multiline-string ( end-text -- str ) @@ -84,13 +66,7 @@ PRIVATE> SYNTAX: /* "*/" parse-multiline-string drop ; -SYNTAX: HEREDOC: - lexer get { - [ skip-blank ] - [ rest-of-line ] - [ next-line ] - [ parse-til-line-begins ] - } cleave suffix! ; +SYNTAX: (( "))" parse-multiline-string drop ; SYNTAX: [[ "]]" parse-multiline-string suffix! ; SYNTAX: [=[ "]=]" parse-multiline-string suffix! ;