summary refs log tree commit diff
path: root/src/libsyntax
diff options
context:
space:
mode:
authorBarosl Lee <vcs@barosl.com>2015-08-04 02:01:15 +0900
committerBarosl Lee <vcs@barosl.com>2016-01-19 06:24:08 +0900
commit1a8cdc0f2f6a9f513cefbed36e5f57c1c45b8039 (patch)
treed0faba669b8dbd46db99af6d15c19db4ef157f28 /src/libsyntax
parent08886499cf0f7fea5de2cc555ea7bfe9ceb0b40f (diff)
downloadrust-1a8cdc0f2f6a9f513cefbed36e5f57c1c45b8039.tar.gz
rust-1a8cdc0f2f6a9f513cefbed36e5f57c1c45b8039.zip
Use different numbers of `#`s when expanding documentation comments
Any documentation comments that contain raw-string-looking sequences may
pretty-print invalid code when expanding them, as the current logic
always uses the `r"literal"` form, without appending any `#`s.

This commit calculates the minimum number of `#`s required to wrap a
comment correctly and appends `#`s appropriately.

Fixes #27489.
Diffstat (limited to 'src/libsyntax')
-rw-r--r--src/libsyntax/ast.rs16
1 files changed, 15 insertions, 1 deletions
diff --git a/src/libsyntax/ast.rs b/src/libsyntax/ast.rs
index e327adfaf89..6ce8e70ecf2 100644
--- a/src/libsyntax/ast.rs
+++ b/src/libsyntax/ast.rs
@@ -1174,6 +1174,20 @@ impl TokenTree {
             }
             (&TokenTree::Token(sp, token::DocComment(name)), _) => {
                 let stripped = strip_doc_comment_decoration(&name.as_str());
+
+                // Searches for the occurrences of `"#*` and returns the minimum number of `#`s
+                // required to wrap the text.
+                let num_of_hashes = stripped.chars().scan(0, |cnt, x| {
+                    *cnt = if x == '"' {
+                        1
+                    } else if *cnt != 0 && x == '#' {
+                        *cnt + 1
+                    } else {
+                        0
+                    };
+                    Some(*cnt)
+                }).max().unwrap_or(0);
+
                 TokenTree::Delimited(sp, Rc::new(Delimited {
                     delim: token::Bracket,
                     open_span: sp,
@@ -1181,7 +1195,7 @@ impl TokenTree {
                                                                 token::Plain)),
                               TokenTree::Token(sp, token::Eq),
                               TokenTree::Token(sp, token::Literal(
-                                  token::StrRaw(token::intern(&stripped), 0), None))],
+                                  token::StrRaw(token::intern(&stripped), num_of_hashes), None))],
                     close_span: sp,
                 }))
             }