rust/src/visitor.rs

638 lines
26 KiB
Rust
Raw Normal View History

2015-04-21 11:01:19 +02:00
// Copyright 2015 The Rust Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution and at
// http://rust-lang.org/COPYRIGHT.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
use syntax::{ast, ptr, visit};
2015-04-29 05:00:58 +02:00
use syntax::codemap::{self, CodeMap, Span, BytePos};
use syntax::parse::ParseSess;
2015-04-21 11:01:19 +02:00
2015-07-26 14:05:43 +02:00
use strings::string_buffer::StringBuffer;
use {Indent, Shape};
use utils;
use codemap::{LineRangeUtils, SpanUtils};
use config::Config;
2015-06-16 17:29:05 +02:00
use rewrite::{Rewrite, RewriteContext};
2015-07-17 23:10:15 +02:00
use comment::rewrite_comment;
use macros::{rewrite_macro, MacroPosition};
use items::{rewrite_static, rewrite_associated_type, rewrite_associated_impl_type,
rewrite_type_alias, format_impl, format_trait};
2015-04-21 11:01:19 +02:00
fn is_use_item(item: &ast::Item) -> bool {
match item.node {
ast::ItemKind::Use(_) => true,
_ => false,
}
}
2015-04-21 11:01:19 +02:00
pub struct FmtVisitor<'a> {
pub parse_session: &'a ParseSess,
2015-04-21 11:01:19 +02:00
pub codemap: &'a CodeMap,
2015-07-26 14:05:43 +02:00
pub buffer: StringBuffer,
2015-04-21 11:01:19 +02:00
pub last_pos: BytePos,
// FIXME: use an RAII util or closure for indenting
pub block_indent: Indent,
pub config: &'a Config,
pub failed: bool,
2015-04-21 11:01:19 +02:00
}
impl<'a> FmtVisitor<'a> {
fn visit_stmt(&mut self, stmt: &ast::Stmt) {
debug!("visit_stmt: {:?} {:?}",
self.codemap.lookup_char_pos(stmt.span.lo),
self.codemap.lookup_char_pos(stmt.span.hi));
// FIXME(#434): Move this check to somewhere more central, eg Rewrite.
2017-03-28 00:14:47 +02:00
if !self.config
.file_lines
.intersects(&self.codemap.lookup_line_range(stmt.span)) {
return;
}
2015-08-21 13:31:09 +02:00
match stmt.node {
ast::StmtKind::Item(ref item) => {
self.visit_item(item);
2015-08-21 13:31:09 +02:00
}
ast::StmtKind::Local(..) |
ast::StmtKind::Expr(..) |
ast::StmtKind::Semi(..) => {
2017-05-08 00:24:12 +02:00
let rewrite =
stmt.rewrite(&self.get_context(),
Shape::indented(self.block_indent, self.config));
self.push_rewrite(stmt.span, rewrite);
2015-04-29 05:00:58 +02:00
}
ast::StmtKind::Mac(ref mac) => {
let (ref mac, _macro_style, _) = **mac;
self.visit_mac(mac, None, MacroPosition::Statement);
self.format_missing(stmt.span.hi);
2015-08-21 13:31:09 +02:00
}
2015-04-29 05:00:58 +02:00
}
}
pub fn visit_block(&mut self, b: &ast::Block) {
2015-04-21 11:01:19 +02:00
debug!("visit_block: {:?} {:?}",
self.codemap.lookup_char_pos(b.span.lo),
self.codemap.lookup_char_pos(b.span.hi));
2015-08-20 23:05:41 +02:00
// Check if this block has braces.
let snippet = self.snippet(b.span);
2016-08-23 16:14:45 +02:00
let has_braces = snippet.starts_with('{') || snippet.starts_with("unsafe");
let brace_compensation = if has_braces { BytePos(1) } else { BytePos(0) };
2015-08-20 23:05:41 +02:00
self.last_pos = self.last_pos + brace_compensation;
self.block_indent = self.block_indent.block_indent(self.config);
2015-08-20 23:05:41 +02:00
self.buffer.push_str("{");
2015-04-21 11:01:19 +02:00
for stmt in &b.stmts {
2016-08-23 16:14:45 +02:00
self.visit_stmt(stmt)
2015-04-21 11:01:19 +02:00
}
2015-08-01 14:22:31 +02:00
if !b.stmts.is_empty() {
if let Some(expr) = utils::stmt_expr(&b.stmts[b.stmts.len() - 1]) {
if utils::semicolon_for_expr(expr) {
self.buffer.push_str(";");
}
2015-04-21 11:01:19 +02:00
}
}
// FIXME: we should compress any newlines here to just one
self.format_missing_with_indent(source!(self, b.span).hi - brace_compensation);
2015-11-20 22:44:15 +01:00
self.close_block();
self.last_pos = source!(self, b.span).hi;
2015-11-20 22:44:15 +01:00
}
// FIXME: this is a terrible hack to indent the comments between the last
// item in the block and the closing brace to the block's level.
// The closing brace itself, however, should be indented at a shallower
// level.
fn close_block(&mut self) {
2015-10-19 21:41:47 +02:00
let total_len = self.buffer.len;
let chars_too_many = if self.config.hard_tabs {
1
} else {
self.config.tab_spaces
};
2017-03-28 00:25:59 +02:00
self.buffer.truncate(total_len - chars_too_many);
2015-07-26 14:05:43 +02:00
self.buffer.push_str("}");
2015-10-19 21:41:47 +02:00
self.block_indent = self.block_indent.block_unindent(self.config);
2015-04-21 11:01:19 +02:00
}
2015-05-11 15:05:12 +02:00
// Note that this only gets called for function definitions. Required methods
2015-04-21 11:01:19 +02:00
// on traits do not get handled here.
fn visit_fn(&mut self,
fk: visit::FnKind,
fd: &ast::FnDecl,
2015-04-21 11:01:19 +02:00
s: Span,
_: ast::NodeId,
defaultness: ast::Defaultness) {
let indent = self.block_indent;
let block;
2015-09-04 18:09:05 +02:00
let rewrite = match fk {
visit::FnKind::ItemFn(ident, generics, unsafety, constness, abi, vis, b) => {
block = b;
2015-09-04 18:09:05 +02:00
self.rewrite_fn(indent,
ident,
fd,
generics,
unsafety,
constness.node,
defaultness,
2015-09-04 18:09:05 +02:00
abi,
vis,
codemap::mk_sp(s.lo, b.span.lo),
&b)
2015-04-21 11:01:19 +02:00
}
visit::FnKind::Method(ident, sig, vis, b) => {
block = b;
2015-09-04 18:09:05 +02:00
self.rewrite_fn(indent,
ident,
fd,
&sig.generics,
2015-09-21 20:02:45 +02:00
sig.unsafety,
sig.constness.node,
defaultness,
2015-09-21 20:02:45 +02:00
sig.abi,
vis.unwrap_or(&ast::Visibility::Inherited),
codemap::mk_sp(s.lo, b.span.lo),
&b)
2015-04-21 11:01:19 +02:00
}
visit::FnKind::Closure(_) => unreachable!(),
2015-09-04 18:09:05 +02:00
};
if let Some(fn_str) = rewrite {
self.format_missing_with_indent(source!(self, s).lo);
self.buffer.push_str(&fn_str);
if let Some(c) = fn_str.chars().last() {
if c == '}' {
self.last_pos = source!(self, block.span).hi;
return;
}
}
2015-09-04 18:09:05 +02:00
} else {
self.format_missing(source!(self, block.span).lo);
2015-04-21 11:01:19 +02:00
}
self.last_pos = source!(self, block.span).lo;
self.visit_block(block)
2015-04-21 11:01:19 +02:00
}
pub fn visit_item(&mut self, item: &ast::Item) {
// This is where we bail out if there is a skip attribute. This is only
// complex in the module case. It is complex because the module could be
2016-11-03 05:22:16 +01:00
// in a separate file and there might be attributes in both files, but
// the AST lumps them all together.
match item.node {
ast::ItemKind::Mod(ref m) => {
2017-03-28 00:25:59 +02:00
let outer_file = self.codemap.lookup_char_pos(item.span.lo).file;
let inner_file = self.codemap.lookup_char_pos(m.inner.lo).file;
if outer_file.name == inner_file.name {
// Module is inline, in this case we treat modules like any
// other item.
if self.visit_attrs(&item.attrs) {
self.push_rewrite(item.span, None);
return;
}
} else if utils::contains_skip(&item.attrs) {
// Module is not inline, but should be skipped.
return;
} else {
// Module is not inline and should not be skipped. We want
// to process only the attributes in the current file.
let attrs = item.attrs
.iter()
.filter_map(|a| {
let attr_file = self.codemap.lookup_char_pos(a.span.lo).file;
if attr_file.name == outer_file.name {
Some(a.clone())
} else {
None
}
})
.collect::<Vec<_>>();
// Assert because if we should skip it should be caught by
// the above case.
assert!(!self.visit_attrs(&attrs));
}
}
_ => {
if self.visit_attrs(&item.attrs) {
self.push_rewrite(item.span, None);
return;
}
}
}
2015-04-21 11:01:19 +02:00
match item.node {
2016-03-01 23:27:19 +01:00
ast::ItemKind::Use(ref vp) => {
self.format_import(&item.vis, vp, item.span);
2015-04-21 11:01:19 +02:00
}
2016-03-01 23:27:19 +01:00
ast::ItemKind::Impl(..) => {
self.format_missing_with_indent(source!(self, item.span).lo);
if let Some(impl_str) = format_impl(&self.get_context(), item, self.block_indent) {
self.buffer.push_str(&impl_str);
self.last_pos = source!(self, item.span).hi;
}
}
2016-03-12 19:09:27 +01:00
ast::ItemKind::Trait(..) => {
2015-10-19 21:41:47 +02:00
self.format_missing_with_indent(item.span.lo);
if let Some(trait_str) = format_trait(&self.get_context(),
item,
self.block_indent) {
self.buffer.push_str(&trait_str);
self.last_pos = source!(self, item.span).hi;
}
}
2016-03-01 23:27:19 +01:00
ast::ItemKind::ExternCrate(_) => {
self.format_missing_with_indent(source!(self, item.span).lo);
2015-04-29 05:00:58 +02:00
let new_str = self.snippet(item.span);
2015-07-26 14:05:43 +02:00
self.buffer.push_str(&new_str);
self.last_pos = source!(self, item.span).hi;
2015-04-29 05:00:58 +02:00
}
2016-03-01 23:27:19 +01:00
ast::ItemKind::Struct(ref def, ref generics) => {
let rewrite = {
let indent = self.block_indent;
let context = self.get_context();
::items::format_struct(&context,
"struct ",
item.ident,
&item.vis,
def,
Some(generics),
item.span,
indent,
None)
2017-02-22 04:20:50 +01:00
.map(|s| match *def {
ast::VariantData::Tuple(..) => s + ";",
_ => s,
})
};
self.push_rewrite(item.span, rewrite);
2015-05-25 01:03:26 +02:00
}
2016-03-01 23:27:19 +01:00
ast::ItemKind::Enum(ref def, ref generics) => {
self.format_missing_with_indent(source!(self, item.span).lo);
self.visit_enum(item.ident, &item.vis, def, generics, item.span);
self.last_pos = source!(self, item.span).hi;
2015-05-29 12:41:26 +02:00
}
2016-03-01 23:27:19 +01:00
ast::ItemKind::Mod(ref module) => {
self.format_missing_with_indent(source!(self, item.span).lo);
self.format_mod(module, &item.vis, item.span, item.ident);
2015-07-01 21:13:10 +02:00
}
2016-03-01 23:27:19 +01:00
ast::ItemKind::Mac(ref mac) => {
self.visit_mac(mac, Some(item.ident), MacroPosition::Item);
2015-09-14 22:53:30 +02:00
}
2016-03-01 23:27:19 +01:00
ast::ItemKind::ForeignMod(ref foreign_mod) => {
self.format_missing_with_indent(source!(self, item.span).lo);
2015-09-21 20:02:45 +02:00
self.format_foreign_mod(foreign_mod, item.span);
}
2016-03-01 23:27:19 +01:00
ast::ItemKind::Static(ref ty, mutability, ref expr) => {
2015-10-18 21:25:30 +02:00
let rewrite = rewrite_static("static",
&item.vis,
2015-10-18 21:25:30 +02:00
item.ident,
ty,
mutability,
Some(expr),
2017-02-21 02:43:43 +01:00
self.block_indent,
2015-10-18 21:25:30 +02:00
&self.get_context());
self.push_rewrite(item.span, rewrite);
2015-10-18 21:25:30 +02:00
}
2016-03-01 23:27:19 +01:00
ast::ItemKind::Const(ref ty, ref expr) => {
2015-10-18 21:25:30 +02:00
let rewrite = rewrite_static("const",
&item.vis,
2015-10-18 21:25:30 +02:00
item.ident,
ty,
2016-03-01 23:27:19 +01:00
ast::Mutability::Immutable,
Some(expr),
2017-02-21 02:43:43 +01:00
self.block_indent,
2015-10-18 21:25:30 +02:00
&self.get_context());
self.push_rewrite(item.span, rewrite);
2015-10-18 21:25:30 +02:00
}
2016-03-01 23:27:19 +01:00
ast::ItemKind::DefaultImpl(..) => {
// FIXME(#78): format impl definitions.
}
2016-03-01 23:27:19 +01:00
ast::ItemKind::Fn(ref decl, unsafety, constness, abi, ref generics, ref body) => {
self.visit_fn(visit::FnKind::ItemFn(item.ident,
generics,
unsafety,
constness,
abi,
&item.vis,
body),
2016-03-01 23:27:19 +01:00
decl,
item.span,
item.id,
ast::Defaultness::Final)
}
2016-03-01 23:27:19 +01:00
ast::ItemKind::Ty(ref ty, ref generics) => {
2015-11-22 19:21:01 +01:00
let rewrite = rewrite_type_alias(&self.get_context(),
self.block_indent,
item.ident,
ty,
generics,
&item.vis,
2015-11-22 19:21:01 +01:00
item.span);
self.push_rewrite(item.span, rewrite);
2015-04-21 11:01:19 +02:00
}
ast::ItemKind::Union(..) => {
// FIXME(#1157): format union definitions.
}
2015-04-21 11:01:19 +02:00
}
}
pub fn visit_trait_item(&mut self, ti: &ast::TraitItem) {
if self.visit_attrs(&ti.attrs) {
2016-09-10 06:08:32 +02:00
self.push_rewrite(ti.span, None);
return;
}
2015-05-04 00:12:39 +02:00
match ti.node {
ast::TraitItemKind::Const(ref ty, ref expr_opt) => {
let rewrite = rewrite_static("const",
&ast::Visibility::Inherited,
ti.ident,
ty,
ast::Mutability::Immutable,
expr_opt.as_ref(),
2017-02-21 02:43:43 +01:00
self.block_indent,
&self.get_context());
self.push_rewrite(ti.span, rewrite);
}
2016-03-01 23:27:19 +01:00
ast::TraitItemKind::Method(ref sig, None) => {
let indent = self.block_indent;
let rewrite = self.rewrite_required_fn(indent, ti.ident, sig, ti.span);
self.push_rewrite(ti.span, rewrite);
}
2016-03-01 23:27:19 +01:00
ast::TraitItemKind::Method(ref sig, Some(ref body)) => {
self.visit_fn(visit::FnKind::Method(ti.ident, sig, None, body),
&sig.decl,
ti.span,
ti.id,
ast::Defaultness::Final);
}
2016-03-12 19:09:27 +01:00
ast::TraitItemKind::Type(ref type_param_bounds, _) => {
let rewrite = rewrite_associated_type(ti.ident,
None,
Some(type_param_bounds),
&self.get_context(),
self.block_indent);
self.push_rewrite(ti.span, rewrite);
}
2017-05-03 18:10:03 +02:00
ast::TraitItemKind::Macro(ref mac) => {
self.visit_mac(mac, Some(ti.ident), MacroPosition::Item);
}
2015-05-04 00:12:39 +02:00
}
}
pub fn visit_impl_item(&mut self, ii: &ast::ImplItem) {
if self.visit_attrs(&ii.attrs) {
2016-09-10 06:08:32 +02:00
self.push_rewrite(ii.span, None);
return;
}
match ii.node {
ast::ImplItemKind::Method(ref sig, ref body) => {
self.visit_fn(visit::FnKind::Method(ii.ident, sig, Some(&ii.vis), body),
&sig.decl,
ii.span,
ii.id,
ii.defaultness);
}
ast::ImplItemKind::Const(ref ty, ref expr) => {
let rewrite = rewrite_static("const",
&ii.vis,
ii.ident,
ty,
ast::Mutability::Immutable,
Some(expr),
2017-02-21 02:43:43 +01:00
self.block_indent,
&self.get_context());
self.push_rewrite(ii.span, rewrite);
}
ast::ImplItemKind::Type(ref ty) => {
let rewrite = rewrite_associated_impl_type(ii.ident,
ii.defaultness,
Some(ty),
None,
&self.get_context(),
self.block_indent);
self.push_rewrite(ii.span, rewrite);
}
ast::ImplItemKind::Macro(ref mac) => {
self.visit_mac(mac, Some(ii.ident), MacroPosition::Item);
}
}
}
fn visit_mac(&mut self, mac: &ast::Mac, ident: Option<ast::Ident>, pos: MacroPosition) {
2015-09-14 22:53:30 +02:00
// 1 = ;
let shape = Shape::indented(self.block_indent, self.config)
.sub_width(1)
.unwrap();
let rewrite = rewrite_macro(mac, ident, &self.get_context(), shape, pos);
self.push_rewrite(mac.span, rewrite);
2015-04-21 11:01:19 +02:00
}
fn push_rewrite(&mut self, span: Span, rewrite: Option<String>) {
self.format_missing_with_indent(source!(self, span).lo);
self.failed = match rewrite {
Some(ref s) if s.rewrite(&self.get_context(),
Shape::indented(self.block_indent, self.config))
.is_none() => true,
None => true,
_ => self.failed,
};
let result = rewrite.unwrap_or_else(|| self.snippet(span));
self.buffer.push_str(&result);
self.last_pos = source!(self, span).hi;
}
pub fn from_codemap(parse_session: &'a ParseSess, config: &'a Config) -> FmtVisitor<'a> {
2015-07-16 03:31:20 +02:00
FmtVisitor {
parse_session: parse_session,
codemap: parse_session.codemap(),
2015-07-26 14:05:43 +02:00
buffer: StringBuffer::new(),
2015-07-16 03:31:20 +02:00
last_pos: BytePos(0),
2017-05-08 00:24:32 +02:00
block_indent: Indent::empty(),
2015-07-16 03:31:20 +02:00
config: config,
failed: false,
2015-07-16 03:31:20 +02:00
}
2015-04-21 11:01:19 +02:00
}
pub fn snippet(&self, span: Span) -> String {
match self.codemap.span_to_snippet(span) {
Ok(s) => s,
Err(_) => {
println!("Couldn't make snippet for span {:?}->{:?}",
self.codemap.lookup_char_pos(span.lo),
self.codemap.lookup_char_pos(span.hi));
"".to_owned()
2015-04-21 11:01:19 +02:00
}
}
}
// Returns true if we should skip the following item.
2015-05-25 01:03:26 +02:00
pub fn visit_attrs(&mut self, attrs: &[ast::Attribute]) -> bool {
2015-06-23 15:58:58 +02:00
if utils::contains_skip(attrs) {
return true;
2015-04-29 05:00:58 +02:00
}
2017-03-27 23:58:41 +02:00
let outers: Vec<_> = attrs
.iter()
.filter(|a| a.style == ast::AttrStyle::Outer)
.cloned()
.collect();
if outers.is_empty() {
return false;
}
let first = &outers[0];
self.format_missing_with_indent(source!(self, first.span).lo);
2017-03-27 23:58:41 +02:00
let rewrite = outers
.rewrite(&self.get_context(),
2017-05-08 00:24:12 +02:00
Shape::indented(self.block_indent, self.config))
.unwrap();
self.buffer.push_str(&rewrite);
let last = outers.last().unwrap();
self.last_pos = source!(self, last.span).hi;
false
2015-04-29 05:00:58 +02:00
}
fn walk_mod_items(&mut self, m: &ast::Mod) {
let mut items_left: &[ptr::P<ast::Item>] = &m.items;
while !items_left.is_empty() {
// If the next item is a `use` declaration, then extract it and any subsequent `use`s
// to be potentially reordered within `format_imports`. Otherwise, just format the
// next item for output.
if self.config.reorder_imports && is_use_item(&*items_left[0]) {
2017-03-28 00:14:47 +02:00
let use_item_length = items_left
.iter()
.take_while(|ppi| is_use_item(&***ppi))
.count();
let (use_items, rest) = items_left.split_at(use_item_length);
self.format_imports(use_items);
items_left = rest;
} else {
// `unwrap()` is safe here because we know `items_left`
// has elements from the loop condition
let (item, rest) = items_left.split_first().unwrap();
2016-08-23 16:14:45 +02:00
self.visit_item(item);
items_left = rest;
}
}
}
fn format_mod(&mut self, m: &ast::Mod, vis: &ast::Visibility, s: Span, ident: ast::Ident) {
2015-07-01 21:13:10 +02:00
// Decide whether this is an inline mod or an external mod.
2015-07-24 15:29:04 +02:00
let local_file_name = self.codemap.span_to_filename(s);
let inner_span = source!(self, m.inner);
let is_internal = !(inner_span.lo.0 == 0 && inner_span.hi.0 == 0) &&
local_file_name == self.codemap.span_to_filename(inner_span);
2015-07-24 15:29:04 +02:00
2017-03-28 00:25:59 +02:00
self.buffer.push_str(&*utils::format_visibility(vis));
2015-11-20 22:44:15 +01:00
self.buffer.push_str("mod ");
self.buffer.push_str(&ident.to_string());
2015-07-24 15:29:04 +02:00
if is_internal {
2015-11-20 22:44:15 +01:00
self.buffer.push_str(" {");
// Hackery to account for the closing }.
let mod_lo = self.codemap.span_after(source!(self, s), "{");
let body_snippet =
self.snippet(codemap::mk_sp(mod_lo, source!(self, m.inner).hi - BytePos(1)));
let body_snippet = body_snippet.trim();
if body_snippet.is_empty() {
self.buffer.push_str("}");
} else {
self.last_pos = mod_lo;
self.block_indent = self.block_indent.block_indent(self.config);
self.walk_mod_items(m);
self.format_missing_with_indent(source!(self, m.inner).hi - BytePos(1));
self.close_block();
}
self.last_pos = source!(self, m.inner).hi;
2015-11-20 22:44:15 +01:00
} else {
self.buffer.push_str(";");
self.last_pos = source!(self, s).hi;
2015-07-01 21:13:10 +02:00
}
}
pub fn format_separate_mod(&mut self, m: &ast::Mod) {
let filemap = self.codemap.lookup_char_pos(m.inner.lo).file;
2015-07-01 21:13:10 +02:00
self.last_pos = filemap.start_pos;
self.block_indent = Indent::empty();
self.walk_mod_items(m);
self.format_missing_with_indent(filemap.end_pos);
2015-07-01 21:13:10 +02:00
}
2015-07-20 21:33:23 +02:00
2015-08-14 14:09:19 +02:00
pub fn get_context(&self) -> RewriteContext {
RewriteContext {
parse_session: self.parse_session,
2015-08-14 14:09:19 +02:00
codemap: self.codemap,
config: self.config,
inside_macro: false,
2015-08-14 14:09:19 +02:00
}
}
}
2015-07-17 23:10:15 +02:00
impl<'a> Rewrite for [ast::Attribute] {
fn rewrite(&self, context: &RewriteContext, shape: Shape) -> Option<String> {
2015-07-17 23:10:15 +02:00
let mut result = String::new();
if self.is_empty() {
return Some(result);
}
let indent = shape.indent.to_string(context.config);
2015-07-17 23:10:15 +02:00
for (i, a) in self.iter().enumerate() {
let mut a_str = context.snippet(a.span);
2015-07-17 23:10:15 +02:00
// Write comments and blank lines between attributes.
2015-07-17 23:10:15 +02:00
if i > 0 {
2015-10-02 11:48:52 +02:00
let comment = context.snippet(codemap::mk_sp(self[i - 1].span.hi, a.span.lo));
2015-07-17 23:10:15 +02:00
// This particular horror show is to preserve line breaks in between doc
// comments. An alternative would be to force such line breaks to start
// with the usual doc comment token.
let multi_line = a_str.starts_with("//") && comment.matches('\n').count() > 1;
let comment = comment.trim();
if !comment.is_empty() {
let comment = try_opt!(rewrite_comment(comment,
false,
Shape::legacy(context.config
.comment_width -
shape.indent.width(),
shape.indent),
context.config));
2015-07-17 23:10:15 +02:00
result.push_str(&indent);
result.push_str(&comment);
result.push('\n');
} else if multi_line {
result.push('\n');
}
result.push_str(&indent);
}
if a_str.starts_with("//") {
a_str = try_opt!(rewrite_comment(&a_str,
false,
Shape::legacy(context.config.comment_width -
shape.indent.width(),
shape.indent),
context.config));
}
// Write the attribute itself.
2015-07-17 23:10:15 +02:00
result.push_str(&a_str);
if i < self.len() - 1 {
result.push('\n');
}
}
Some(result)
}
}