2015-04-21 04:01:19 -05: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.
|
|
|
|
|
2018-02-17 10:21:58 -06:00
|
|
|
use syntax::attr::HasAttrs;
|
2017-08-11 08:16:24 -05:00
|
|
|
use syntax::codemap::{self, BytePos, CodeMap, Pos, Span};
|
2015-10-28 01:41:32 -05:00
|
|
|
use syntax::parse::ParseSess;
|
2018-03-14 02:43:01 -05:00
|
|
|
use syntax::{ast, visit};
|
2015-04-21 04:01:19 -05:00
|
|
|
|
2018-02-23 07:30:05 -06:00
|
|
|
use attr::*;
|
2016-03-11 18:19:16 -06:00
|
|
|
use codemap::{LineRangeUtils, SpanUtils};
|
2018-02-23 07:37:10 -06:00
|
|
|
use comment::{CodeCharKind, CommentCodeSlices, FindUncommented};
|
2017-07-20 23:55:15 -05:00
|
|
|
use config::{BraceStyle, Config};
|
2018-04-29 07:22:48 -05:00
|
|
|
use items::{
|
|
|
|
format_impl, format_trait, format_trait_alias, is_mod_decl, is_use_item,
|
|
|
|
rewrite_associated_impl_type, rewrite_associated_type, rewrite_extern_crate,
|
|
|
|
rewrite_type_alias, FnSig, StaticParts, StructParts,
|
|
|
|
};
|
2018-01-01 00:40:51 -06:00
|
|
|
use macros::{rewrite_macro, rewrite_macro_def, MacroPosition};
|
2017-07-13 04:42:14 -05:00
|
|
|
use rewrite::{Rewrite, RewriteContext};
|
2017-09-17 01:23:25 -05:00
|
|
|
use shape::{Indent, Shape};
|
2017-12-23 09:28:58 -06:00
|
|
|
use spanned::Spanned;
|
2018-05-14 01:01:53 -05:00
|
|
|
use utils::{
|
|
|
|
self, contains_skip, count_newlines, inner_attributes, mk_sp, ptr_vec_to_ref_vec,
|
|
|
|
DEPR_SKIP_ANNOTATION,
|
|
|
|
};
|
|
|
|
use {ErrorKind, FormatReport, FormattingError};
|
2015-04-21 04:01:19 -05:00
|
|
|
|
2018-03-07 00:37:44 -06:00
|
|
|
use std::cell::RefCell;
|
|
|
|
|
2017-12-06 07:48:48 -06:00
|
|
|
/// Creates a string slice corresponding to the specified span.
|
2017-12-06 22:51:30 -06:00
|
|
|
pub struct SnippetProvider<'a> {
|
2017-12-06 07:48:48 -06:00
|
|
|
/// A pointer to the content of the file we are formatting.
|
2017-12-07 02:32:19 -06:00
|
|
|
big_snippet: &'a str,
|
2017-12-06 07:48:48 -06:00
|
|
|
/// A position of the start of `big_snippet`, used as an offset.
|
|
|
|
start_pos: usize,
|
|
|
|
}
|
|
|
|
|
2017-12-07 22:07:28 -06:00
|
|
|
impl<'a> SnippetProvider<'a> {
|
|
|
|
pub fn span_to_snippet(&self, span: Span) -> Option<&str> {
|
2017-12-06 07:48:48 -06:00
|
|
|
let start_index = span.lo().to_usize().checked_sub(self.start_pos)?;
|
|
|
|
let end_index = span.hi().to_usize().checked_sub(self.start_pos)?;
|
2017-12-06 22:51:30 -06:00
|
|
|
Some(&self.big_snippet[start_index..end_index])
|
2017-12-06 07:48:48 -06:00
|
|
|
}
|
|
|
|
|
2017-12-07 02:32:19 -06:00
|
|
|
pub fn new(start_pos: BytePos, big_snippet: &'a str) -> Self {
|
2017-12-06 22:51:30 -06:00
|
|
|
let start_pos = start_pos.to_usize();
|
2017-12-06 07:48:48 -06:00
|
|
|
SnippetProvider {
|
|
|
|
big_snippet,
|
|
|
|
start_pos,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-21 04:01:19 -05:00
|
|
|
pub struct FmtVisitor<'a> {
|
2015-10-28 01:41:32 -05:00
|
|
|
pub parse_session: &'a ParseSess,
|
2015-04-21 04:01:19 -05:00
|
|
|
pub codemap: &'a CodeMap,
|
2017-12-10 02:40:51 -06:00
|
|
|
pub buffer: String,
|
2015-04-21 04:01:19 -05:00
|
|
|
pub last_pos: BytePos,
|
2015-11-22 14:20:53 -06:00
|
|
|
// FIXME: use an RAII util or closure for indenting
|
2015-09-06 00:39:28 -05:00
|
|
|
pub block_indent: Indent,
|
2015-06-23 06:26:04 -05:00
|
|
|
pub config: &'a Config,
|
2017-06-01 21:58:19 -05:00
|
|
|
pub is_if_else_block: bool,
|
2017-12-06 22:51:30 -06:00
|
|
|
pub snippet_provider: &'a SnippetProvider<'a>,
|
2017-12-08 01:59:04 -06:00
|
|
|
pub line_number: usize,
|
2017-12-08 02:46:43 -06:00
|
|
|
pub skipped_range: Vec<(usize, usize)>,
|
2018-06-06 22:32:58 -05:00
|
|
|
pub macro_rewrite_failure: bool,
|
2018-05-18 23:44:48 -05:00
|
|
|
pub(crate) report: FormatReport,
|
2015-04-21 04:01:19 -05:00
|
|
|
}
|
|
|
|
|
2017-12-06 22:51:30 -06:00
|
|
|
impl<'b, 'a: 'b> FmtVisitor<'a> {
|
2017-08-30 05:26:45 -05:00
|
|
|
pub fn shape(&self) -> Shape {
|
|
|
|
Shape::indented(self.block_indent, self.config)
|
|
|
|
}
|
|
|
|
|
2015-10-21 15:21:14 -05:00
|
|
|
fn visit_stmt(&mut self, stmt: &ast::Stmt) {
|
2017-06-11 22:58:58 -05:00
|
|
|
debug!(
|
|
|
|
"visit_stmt: {:?} {:?}",
|
2017-08-19 13:47:40 -05:00
|
|
|
self.codemap.lookup_char_pos(stmt.span.lo()),
|
|
|
|
self.codemap.lookup_char_pos(stmt.span.hi())
|
2017-06-11 22:58:58 -05:00
|
|
|
);
|
2016-05-25 13:41:26 -05:00
|
|
|
|
2015-08-21 06:31:09 -05:00
|
|
|
match stmt.node {
|
2016-09-15 22:19:18 -05:00
|
|
|
ast::StmtKind::Item(ref item) => {
|
|
|
|
self.visit_item(item);
|
2015-08-21 06:31:09 -05:00
|
|
|
}
|
2017-09-05 02:50:55 -05:00
|
|
|
ast::StmtKind::Local(..) | ast::StmtKind::Expr(..) | ast::StmtKind::Semi(..) => {
|
2017-12-08 02:46:43 -06:00
|
|
|
if contains_skip(get_attrs_from_stmt(stmt)) {
|
|
|
|
self.push_skipped_with_span(stmt.span());
|
|
|
|
} else {
|
|
|
|
let rewrite = stmt.rewrite(&self.get_context(), self.shape());
|
|
|
|
self.push_rewrite(stmt.span(), rewrite)
|
|
|
|
}
|
2017-06-13 10:08:31 -05:00
|
|
|
}
|
2016-09-15 22:19:18 -05:00
|
|
|
ast::StmtKind::Mac(ref mac) => {
|
2017-07-21 21:18:47 -05:00
|
|
|
let (ref mac, _macro_style, ref attrs) = **mac;
|
2017-08-30 05:27:36 -05:00
|
|
|
if self.visit_attrs(attrs, ast::AttrStyle::Outer) {
|
2017-12-08 02:46:43 -06:00
|
|
|
self.push_skipped_with_span(stmt.span());
|
2017-07-21 21:18:47 -05:00
|
|
|
} else {
|
|
|
|
self.visit_mac(mac, None, MacroPosition::Statement);
|
|
|
|
}
|
2017-08-19 13:47:40 -05:00
|
|
|
self.format_missing(stmt.span.hi());
|
2015-08-21 06:31:09 -05:00
|
|
|
}
|
2015-04-28 22:00:58 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-29 15:12:32 -06:00
|
|
|
pub fn visit_block(
|
|
|
|
&mut self,
|
|
|
|
b: &ast::Block,
|
|
|
|
inner_attrs: Option<&[ast::Attribute]>,
|
2017-11-29 15:40:29 -06:00
|
|
|
has_braces: bool,
|
2017-11-29 15:12:32 -06:00
|
|
|
) {
|
2017-06-11 22:58:58 -05:00
|
|
|
debug!(
|
|
|
|
"visit_block: {:?} {:?}",
|
2017-08-19 13:47:40 -05:00
|
|
|
self.codemap.lookup_char_pos(b.span.lo()),
|
|
|
|
self.codemap.lookup_char_pos(b.span.hi())
|
2017-06-11 22:58:58 -05:00
|
|
|
);
|
2015-04-21 04:01:19 -05:00
|
|
|
|
2015-08-20 16:05:41 -05:00
|
|
|
// Check if this block has braces.
|
2017-11-29 15:40:29 -06:00
|
|
|
let brace_compensation = BytePos(if has_braces { 1 } else { 0 });
|
2015-08-20 16:05:41 -05:00
|
|
|
|
|
|
|
self.last_pos = self.last_pos + brace_compensation;
|
2015-09-18 23:50:44 -05:00
|
|
|
self.block_indent = self.block_indent.block_indent(self.config);
|
2017-12-08 01:59:04 -06:00
|
|
|
self.push_str("{");
|
2015-04-21 04:01:19 -05:00
|
|
|
|
2018-05-17 23:56:55 -05:00
|
|
|
if let Some(first_stmt) = b.stmts.first() {
|
|
|
|
let attr_lo = inner_attrs
|
|
|
|
.and_then(|attrs| inner_attributes(attrs).first().map(|attr| attr.span.lo()))
|
|
|
|
.or_else(|| {
|
|
|
|
// Attributes for an item in a statement position
|
|
|
|
// do not belong to the statement. (rust-lang/rust#34459)
|
|
|
|
if let ast::StmtKind::Item(ref item) = first_stmt.node {
|
|
|
|
item.attrs.first()
|
|
|
|
} else {
|
|
|
|
first_stmt.attrs().first()
|
|
|
|
}.and_then(|attr| {
|
|
|
|
// Some stmts can have embedded attributes.
|
|
|
|
// e.g. `match { #![attr] ... }`
|
|
|
|
let attr_lo = attr.span.lo();
|
|
|
|
if attr_lo < first_stmt.span.lo() {
|
|
|
|
Some(attr_lo)
|
2017-11-02 07:45:00 -05:00
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
2018-05-17 23:56:55 -05:00
|
|
|
})
|
|
|
|
});
|
|
|
|
|
|
|
|
let snippet = self.snippet(mk_sp(
|
|
|
|
self.last_pos,
|
|
|
|
attr_lo.unwrap_or_else(|| first_stmt.span.lo()),
|
|
|
|
));
|
|
|
|
let len = CommentCodeSlices::new(snippet)
|
|
|
|
.nth(0)
|
|
|
|
.and_then(|(kind, _, s)| {
|
|
|
|
if kind == CodeCharKind::Normal {
|
|
|
|
s.rfind('\n')
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
});
|
|
|
|
if let Some(len) = len {
|
|
|
|
self.last_pos = self.last_pos + BytePos::from_usize(len);
|
2017-08-11 02:15:28 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-07-24 10:55:55 -05:00
|
|
|
// Format inner attributes if available.
|
2017-10-20 04:34:12 -05:00
|
|
|
let skip_rewrite = if let Some(attrs) = inner_attrs {
|
|
|
|
self.visit_attrs(attrs, ast::AttrStyle::Inner)
|
|
|
|
} else {
|
|
|
|
false
|
|
|
|
};
|
|
|
|
|
|
|
|
if skip_rewrite {
|
|
|
|
self.push_rewrite(b.span, None);
|
|
|
|
self.close_block(false);
|
|
|
|
self.last_pos = source!(self, b.span).hi();
|
|
|
|
return;
|
2017-07-24 10:55:55 -05:00
|
|
|
}
|
|
|
|
|
2017-09-15 08:31:52 -05:00
|
|
|
self.walk_block_stmts(b);
|
2015-08-01 07:22:31 -05:00
|
|
|
|
2016-09-15 22:19:18 -05:00
|
|
|
if !b.stmts.is_empty() {
|
|
|
|
if let Some(expr) = utils::stmt_expr(&b.stmts[b.stmts.len() - 1]) {
|
2017-07-11 08:41:38 -05:00
|
|
|
if utils::semicolon_for_expr(&self.get_context(), expr) {
|
2017-12-08 01:59:04 -06:00
|
|
|
self.push_str(";");
|
2016-09-15 22:19:18 -05:00
|
|
|
}
|
2015-04-21 04:01:19 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-11 02:15:28 -05:00
|
|
|
let mut remove_len = BytePos(0);
|
2018-05-17 23:56:55 -05:00
|
|
|
if let Some(stmt) = b.stmts.last() {
|
|
|
|
let snippet = self.snippet(mk_sp(
|
|
|
|
stmt.span.hi(),
|
|
|
|
source!(self, b.span).hi() - brace_compensation,
|
|
|
|
));
|
|
|
|
let len = CommentCodeSlices::new(snippet)
|
|
|
|
.last()
|
|
|
|
.and_then(|(kind, _, s)| {
|
|
|
|
if kind == CodeCharKind::Normal && s.trim().is_empty() {
|
|
|
|
Some(s.len())
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
});
|
|
|
|
if let Some(len) = len {
|
|
|
|
remove_len = BytePos::from_usize(len);
|
2017-08-11 02:15:28 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-26 02:55:36 -05:00
|
|
|
let unindent_comment = (self.is_if_else_block && !b.stmts.is_empty()) && {
|
2017-08-30 21:11:52 -05:00
|
|
|
let end_pos = source!(self, b.span).hi() - brace_compensation - remove_len;
|
2017-08-30 05:26:45 -05:00
|
|
|
let snippet = self.snippet(mk_sp(self.last_pos, end_pos));
|
2017-10-26 02:55:36 -05:00
|
|
|
snippet.contains("//") || snippet.contains("/*")
|
|
|
|
};
|
2015-11-22 14:20:53 -06:00
|
|
|
// FIXME: we should compress any newlines here to just one
|
2017-06-01 21:58:19 -05:00
|
|
|
if unindent_comment {
|
|
|
|
self.block_indent = self.block_indent.block_unindent(self.config);
|
|
|
|
}
|
2017-08-19 13:47:40 -05:00
|
|
|
self.format_missing_with_indent(
|
|
|
|
source!(self, b.span).hi() - brace_compensation - remove_len,
|
|
|
|
);
|
2017-06-01 21:58:19 -05:00
|
|
|
if unindent_comment {
|
|
|
|
self.block_indent = self.block_indent.block_indent(self.config);
|
|
|
|
}
|
|
|
|
self.close_block(unindent_comment);
|
2017-08-19 13:47:40 -05:00
|
|
|
self.last_pos = source!(self, b.span).hi();
|
2015-11-20 15:44:15 -06: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.
|
2017-06-01 21:58:19 -05:00
|
|
|
fn close_block(&mut self, unindent_comment: bool) {
|
2017-12-10 02:40:51 -06:00
|
|
|
let total_len = self.buffer.len();
|
2017-06-01 21:58:19 -05:00
|
|
|
let chars_too_many = if unindent_comment {
|
|
|
|
0
|
|
|
|
} else if self.config.hard_tabs() {
|
2015-10-19 14:41:47 -05:00
|
|
|
1
|
|
|
|
} else {
|
2017-05-16 03:47:09 -05:00
|
|
|
self.config.tab_spaces()
|
2015-10-19 14:41:47 -05:00
|
|
|
};
|
2017-03-27 17:25:59 -05:00
|
|
|
self.buffer.truncate(total_len - chars_too_many);
|
2017-12-08 01:59:04 -06:00
|
|
|
self.push_str("}");
|
2015-10-19 14:41:47 -05:00
|
|
|
self.block_indent = self.block_indent.block_unindent(self.config);
|
2015-04-21 04:01:19 -05:00
|
|
|
}
|
|
|
|
|
2015-05-11 08:05:12 -05:00
|
|
|
// Note that this only gets called for function definitions. Required methods
|
2015-04-21 04:01:19 -05:00
|
|
|
// on traits do not get handled here.
|
2017-06-11 22:58:58 -05:00
|
|
|
fn visit_fn(
|
|
|
|
&mut self,
|
|
|
|
fk: visit::FnKind,
|
2017-10-15 12:28:00 -05:00
|
|
|
generics: &ast::Generics,
|
2017-06-11 22:58:58 -05:00
|
|
|
fd: &ast::FnDecl,
|
|
|
|
s: Span,
|
|
|
|
defaultness: ast::Defaultness,
|
2017-07-24 10:55:55 -05:00
|
|
|
inner_attrs: Option<&[ast::Attribute]>,
|
2017-06-11 22:58:58 -05:00
|
|
|
) {
|
2015-04-28 03:56:01 -05:00
|
|
|
let indent = self.block_indent;
|
2016-11-20 13:37:35 -06:00
|
|
|
let block;
|
2015-09-04 11:09:05 -05:00
|
|
|
let rewrite = match fk {
|
2017-10-26 02:53:30 -05:00
|
|
|
visit::FnKind::ItemFn(ident, _, _, _, _, b) | visit::FnKind::Method(ident, _, _, b) => {
|
2016-11-20 13:37:35 -06:00
|
|
|
block = b;
|
2017-06-11 22:58:58 -05:00
|
|
|
self.rewrite_fn(
|
|
|
|
indent,
|
|
|
|
ident,
|
2017-10-15 12:28:00 -05:00
|
|
|
&FnSig::from_fn_kind(&fk, generics, fd, defaultness),
|
2017-08-19 13:47:40 -05:00
|
|
|
mk_sp(s.lo(), b.span.lo()),
|
2017-08-29 08:16:04 -05:00
|
|
|
b,
|
2017-10-21 00:09:45 -05:00
|
|
|
inner_attrs,
|
2017-06-11 22:58:58 -05:00
|
|
|
)
|
2015-04-21 04:01:19 -05:00
|
|
|
}
|
2016-11-20 13:37:35 -06:00
|
|
|
visit::FnKind::Closure(_) => unreachable!(),
|
2015-09-04 11:09:05 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
if let Some(fn_str) = rewrite {
|
2017-08-19 13:47:40 -05:00
|
|
|
self.format_missing_with_indent(source!(self, s).lo());
|
2017-12-08 01:59:04 -06:00
|
|
|
self.push_str(&fn_str);
|
2015-11-19 20:49:24 -06:00
|
|
|
if let Some(c) = fn_str.chars().last() {
|
|
|
|
if c == '}' {
|
2017-08-19 13:47:40 -05:00
|
|
|
self.last_pos = source!(self, block.span).hi();
|
2015-11-19 20:49:24 -06:00
|
|
|
return;
|
|
|
|
}
|
2015-11-19 20:11:32 -06:00
|
|
|
}
|
2015-09-04 11:09:05 -05:00
|
|
|
} else {
|
2017-08-19 13:47:40 -05:00
|
|
|
self.format_missing(source!(self, block.span).lo());
|
2015-04-21 04:01:19 -05:00
|
|
|
}
|
|
|
|
|
2017-08-19 13:47:40 -05:00
|
|
|
self.last_pos = source!(self, block.span).lo();
|
2017-11-29 15:40:29 -06:00
|
|
|
self.visit_block(block, inner_attrs, true)
|
2015-04-21 04:01:19 -05:00
|
|
|
}
|
|
|
|
|
2016-07-26 00:20:01 -05:00
|
|
|
pub fn visit_item(&mut self, item: &ast::Item) {
|
2017-07-28 22:51:45 -05:00
|
|
|
skip_out_of_file_lines_range_visitor!(self, item.span);
|
|
|
|
|
2016-05-18 15:36:59 -05:00
|
|
|
// 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-02 23:22:16 -05:00
|
|
|
// in a separate file and there might be attributes in both files, but
|
2016-05-18 15:36:59 -05:00
|
|
|
// the AST lumps them all together.
|
2017-11-01 01:33:55 -05:00
|
|
|
let filtered_attrs;
|
2017-09-06 05:24:14 -05:00
|
|
|
let mut attrs = &item.attrs;
|
2015-04-28 05:19:25 -05:00
|
|
|
match item.node {
|
2018-05-06 03:01:14 -05:00
|
|
|
// For use items, skip rewriting attributes. Just check for a skip attribute.
|
|
|
|
ast::ItemKind::Use(..) => {
|
|
|
|
if contains_skip(attrs) {
|
|
|
|
self.push_skipped_with_span(item.span());
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2018-01-29 06:59:15 -06:00
|
|
|
// Module is inline, in this case we treat it like any other item.
|
|
|
|
_ if !is_mod_decl(item) => {
|
|
|
|
if self.visit_attrs(&item.attrs, ast::AttrStyle::Outer) {
|
|
|
|
self.push_skipped_with_span(item.span());
|
2015-11-22 14:20:53 -06:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2018-01-29 06:59:15 -06:00
|
|
|
// Module is not inline, but should be skipped.
|
|
|
|
ast::ItemKind::Mod(..) if contains_skip(&item.attrs) => {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// Module is not inline and should not be skipped. We want
|
|
|
|
// to process only the attributes in the current file.
|
|
|
|
ast::ItemKind::Mod(..) => {
|
|
|
|
filtered_attrs = filter_inline_attrs(&item.attrs, item.span());
|
|
|
|
// Assert because if we should skip it should be caught by
|
|
|
|
// the above case.
|
|
|
|
assert!(!self.visit_attrs(&filtered_attrs, ast::AttrStyle::Outer));
|
|
|
|
attrs = &filtered_attrs;
|
|
|
|
}
|
2017-08-15 10:48:12 -05:00
|
|
|
_ => {
|
|
|
|
if self.visit_attrs(&item.attrs, ast::AttrStyle::Outer) {
|
2017-12-08 02:46:43 -06:00
|
|
|
self.push_skipped_with_span(item.span());
|
2017-08-15 10:48:12 -05:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2015-04-22 23:22:48 -05:00
|
|
|
}
|
|
|
|
|
2015-04-21 04:01:19 -05:00
|
|
|
match item.node {
|
2017-11-30 16:55:12 -06:00
|
|
|
ast::ItemKind::Use(ref tree) => self.format_import(item, tree),
|
2016-03-01 16:27:19 -06:00
|
|
|
ast::ItemKind::Impl(..) => {
|
2017-08-30 05:26:45 -05:00
|
|
|
let snippet = self.snippet(item.span);
|
2017-06-17 02:56:54 -05:00
|
|
|
let where_span_end = snippet
|
|
|
|
.find_uncommented("{")
|
2018-04-01 07:35:51 -05:00
|
|
|
.map(|x| BytePos(x as u32) + source!(self, item.span).lo());
|
2017-09-06 05:24:23 -05:00
|
|
|
let rw = format_impl(&self.get_context(), item, self.block_indent, where_span_end);
|
|
|
|
self.push_rewrite(item.span, rw);
|
2015-10-21 15:21:14 -05:00
|
|
|
}
|
2016-03-12 12:09:27 -06:00
|
|
|
ast::ItemKind::Trait(..) => {
|
2017-09-06 05:24:23 -05:00
|
|
|
let rw = format_trait(&self.get_context(), item, self.block_indent);
|
|
|
|
self.push_rewrite(item.span, rw);
|
2015-04-23 01:43:46 -05:00
|
|
|
}
|
2017-12-14 22:47:52 -06:00
|
|
|
ast::ItemKind::TraitAlias(ref generics, ref ty_param_bounds) => {
|
|
|
|
let shape = Shape::indented(self.block_indent, self.config);
|
|
|
|
let rw = format_trait_alias(
|
|
|
|
&self.get_context(),
|
|
|
|
item.ident,
|
|
|
|
generics,
|
|
|
|
ty_param_bounds,
|
|
|
|
shape,
|
|
|
|
);
|
|
|
|
self.push_rewrite(item.span, rw);
|
2017-12-14 19:35:07 -06:00
|
|
|
}
|
2016-03-01 16:27:19 -06:00
|
|
|
ast::ItemKind::ExternCrate(_) => {
|
2017-09-06 04:44:33 -05:00
|
|
|
let rw = rewrite_extern_crate(&self.get_context(), item);
|
|
|
|
self.push_rewrite(item.span, rw);
|
2015-04-28 22:00:58 -05:00
|
|
|
}
|
2017-11-05 05:30:28 -06:00
|
|
|
ast::ItemKind::Struct(..) | ast::ItemKind::Union(..) => {
|
|
|
|
self.visit_struct(&StructParts::from_item(item));
|
2015-05-24 18:03:26 -05:00
|
|
|
}
|
2016-03-01 16:27:19 -06:00
|
|
|
ast::ItemKind::Enum(ref def, ref generics) => {
|
2017-08-19 13:47:40 -05:00
|
|
|
self.format_missing_with_indent(source!(self, item.span).lo());
|
2016-05-01 22:01:46 -05:00
|
|
|
self.visit_enum(item.ident, &item.vis, def, generics, item.span);
|
2017-08-19 13:47:40 -05:00
|
|
|
self.last_pos = source!(self, item.span).hi();
|
2015-05-29 05:41:26 -05:00
|
|
|
}
|
2016-03-01 16:27:19 -06:00
|
|
|
ast::ItemKind::Mod(ref module) => {
|
2018-01-29 06:59:15 -06:00
|
|
|
let is_inline = !is_mod_decl(item);
|
2017-08-19 13:47:40 -05:00
|
|
|
self.format_missing_with_indent(source!(self, item.span).lo());
|
2018-01-29 06:59:15 -06:00
|
|
|
self.format_mod(module, &item.vis, item.span, item.ident, attrs, is_inline);
|
2015-07-01 14:13:10 -05:00
|
|
|
}
|
2016-03-01 16:27:19 -06:00
|
|
|
ast::ItemKind::Mac(ref mac) => {
|
2016-11-20 13:37:35 -06:00
|
|
|
self.visit_mac(mac, Some(item.ident), MacroPosition::Item);
|
2015-09-14 15:53:30 -05:00
|
|
|
}
|
2016-03-01 16:27:19 -06:00
|
|
|
ast::ItemKind::ForeignMod(ref foreign_mod) => {
|
2017-08-19 13:47:40 -05:00
|
|
|
self.format_missing_with_indent(source!(self, item.span).lo());
|
2015-09-21 13:02:45 -05:00
|
|
|
self.format_foreign_mod(foreign_mod, item.span);
|
|
|
|
}
|
2017-11-05 06:59:33 -06:00
|
|
|
ast::ItemKind::Static(..) | ast::ItemKind::Const(..) => {
|
|
|
|
self.visit_static(&StaticParts::from_item(item));
|
2015-10-18 14:25:30 -05:00
|
|
|
}
|
2016-03-01 16:27:19 -06:00
|
|
|
ast::ItemKind::Fn(ref decl, unsafety, constness, abi, ref generics, ref body) => {
|
2017-10-21 00:09:45 -05:00
|
|
|
let inner_attrs = inner_attributes(&item.attrs);
|
2017-06-11 22:58:58 -05:00
|
|
|
self.visit_fn(
|
2017-10-15 12:28:00 -05:00
|
|
|
visit::FnKind::ItemFn(item.ident, unsafety, constness, abi, &item.vis, body),
|
|
|
|
generics,
|
2017-06-11 22:58:58 -05:00
|
|
|
decl,
|
|
|
|
item.span,
|
|
|
|
ast::Defaultness::Final,
|
2017-10-21 00:09:45 -05:00
|
|
|
Some(&inner_attrs),
|
2017-06-11 22:58:58 -05:00
|
|
|
)
|
2015-10-21 15:21:14 -05:00
|
|
|
}
|
2016-03-01 16:27:19 -06:00
|
|
|
ast::ItemKind::Ty(ref ty, ref generics) => {
|
2017-06-11 22:58:58 -05:00
|
|
|
let rewrite = rewrite_type_alias(
|
|
|
|
&self.get_context(),
|
|
|
|
self.block_indent,
|
|
|
|
item.ident,
|
|
|
|
ty,
|
|
|
|
generics,
|
|
|
|
&item.vis,
|
|
|
|
item.span,
|
|
|
|
);
|
2015-11-22 12:21:01 -06:00
|
|
|
self.push_rewrite(item.span, rewrite);
|
2015-04-21 04:01:19 -05:00
|
|
|
}
|
2017-06-05 23:54:22 -05:00
|
|
|
ast::ItemKind::GlobalAsm(..) => {
|
2017-12-07 22:07:42 -06:00
|
|
|
let snippet = Some(self.snippet(item.span).to_owned());
|
2017-05-12 17:28:26 -05:00
|
|
|
self.push_rewrite(item.span, snippet);
|
2017-06-05 23:54:22 -05:00
|
|
|
}
|
2018-01-01 00:40:51 -06:00
|
|
|
ast::ItemKind::MacroDef(ref def) => {
|
|
|
|
let rewrite = rewrite_macro_def(
|
|
|
|
&self.get_context(),
|
2018-01-29 04:15:18 -06:00
|
|
|
self.shape(),
|
2018-01-01 00:40:51 -06:00
|
|
|
self.block_indent,
|
|
|
|
def,
|
|
|
|
item.ident,
|
|
|
|
&item.vis,
|
|
|
|
item.span,
|
|
|
|
);
|
|
|
|
self.push_rewrite(item.span, rewrite);
|
2017-06-05 23:54:22 -05:00
|
|
|
}
|
2015-04-21 04:01:19 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-11 23:32:08 -06:00
|
|
|
pub fn visit_trait_item(&mut self, ti: &ast::TraitItem) {
|
2017-07-28 22:51:45 -05:00
|
|
|
skip_out_of_file_lines_range_visitor!(self, ti.span);
|
|
|
|
|
2017-07-24 10:55:55 -05:00
|
|
|
if self.visit_attrs(&ti.attrs, ast::AttrStyle::Outer) {
|
2017-12-08 02:46:43 -06:00
|
|
|
self.push_skipped_with_span(ti.span());
|
2015-04-22 23:22:48 -05:00
|
|
|
return;
|
|
|
|
}
|
2015-05-03 17:12:39 -05:00
|
|
|
|
2015-10-21 15:21:14 -05:00
|
|
|
match ti.node {
|
2017-11-05 06:59:33 -06:00
|
|
|
ast::TraitItemKind::Const(..) => self.visit_static(&StaticParts::from_trait_item(ti)),
|
2016-03-01 16:27:19 -06:00
|
|
|
ast::TraitItemKind::Method(ref sig, None) => {
|
2015-10-21 15:21:14 -05:00
|
|
|
let indent = self.block_indent;
|
2017-10-15 12:28:00 -05:00
|
|
|
let rewrite =
|
|
|
|
self.rewrite_required_fn(indent, ti.ident, sig, &ti.generics, ti.span);
|
2015-10-21 15:21:14 -05:00
|
|
|
self.push_rewrite(ti.span, rewrite);
|
|
|
|
}
|
2016-03-01 16:27:19 -06:00
|
|
|
ast::TraitItemKind::Method(ref sig, Some(ref body)) => {
|
2017-10-21 00:09:45 -05:00
|
|
|
let inner_attrs = inner_attributes(&ti.attrs);
|
2017-06-11 22:58:58 -05:00
|
|
|
self.visit_fn(
|
|
|
|
visit::FnKind::Method(ti.ident, sig, None, body),
|
2017-10-15 12:28:00 -05:00
|
|
|
&ti.generics,
|
2017-06-11 22:58:58 -05:00
|
|
|
&sig.decl,
|
|
|
|
ti.span,
|
|
|
|
ast::Defaultness::Final,
|
2017-10-21 00:09:45 -05:00
|
|
|
Some(&inner_attrs),
|
2017-06-11 22:58:58 -05:00
|
|
|
);
|
2015-10-21 15:21:14 -05:00
|
|
|
}
|
2017-05-26 03:17:12 -05:00
|
|
|
ast::TraitItemKind::Type(ref type_param_bounds, ref type_default) => {
|
2017-06-11 22:58:58 -05:00
|
|
|
let rewrite = rewrite_associated_type(
|
|
|
|
ti.ident,
|
|
|
|
type_default.as_ref(),
|
|
|
|
Some(type_param_bounds),
|
|
|
|
&self.get_context(),
|
|
|
|
self.block_indent,
|
|
|
|
);
|
2016-03-14 20:52:07 -05:00
|
|
|
self.push_rewrite(ti.span, rewrite);
|
2015-10-21 15:21:14 -05:00
|
|
|
}
|
2017-05-03 11:10:03 -05:00
|
|
|
ast::TraitItemKind::Macro(ref mac) => {
|
|
|
|
self.visit_mac(mac, Some(ti.ident), MacroPosition::Item);
|
2016-09-15 22:19:18 -05:00
|
|
|
}
|
2015-05-03 17:12:39 -05:00
|
|
|
}
|
2015-04-22 23:22:48 -05:00
|
|
|
}
|
|
|
|
|
2015-11-22 17:00:22 -06:00
|
|
|
pub fn visit_impl_item(&mut self, ii: &ast::ImplItem) {
|
2017-07-28 22:51:45 -05:00
|
|
|
skip_out_of_file_lines_range_visitor!(self, ii.span);
|
|
|
|
|
2017-07-24 10:55:55 -05:00
|
|
|
if self.visit_attrs(&ii.attrs, ast::AttrStyle::Outer) {
|
2017-12-08 02:46:43 -06:00
|
|
|
self.push_skipped_with_span(ii.span());
|
2015-04-22 23:22:48 -05:00
|
|
|
return;
|
|
|
|
}
|
2015-10-21 15:21:14 -05:00
|
|
|
|
|
|
|
match ii.node {
|
2015-11-23 12:54:33 -06:00
|
|
|
ast::ImplItemKind::Method(ref sig, ref body) => {
|
2017-10-21 00:09:45 -05:00
|
|
|
let inner_attrs = inner_attributes(&ii.attrs);
|
2017-06-11 22:58:58 -05:00
|
|
|
self.visit_fn(
|
|
|
|
visit::FnKind::Method(ii.ident, sig, Some(&ii.vis), body),
|
2017-10-15 12:28:00 -05:00
|
|
|
&ii.generics,
|
2017-06-11 22:58:58 -05:00
|
|
|
&sig.decl,
|
|
|
|
ii.span,
|
|
|
|
ii.defaultness,
|
2017-10-21 00:09:45 -05:00
|
|
|
Some(&inner_attrs),
|
2017-06-11 22:58:58 -05:00
|
|
|
);
|
2015-10-21 15:21:14 -05:00
|
|
|
}
|
2017-11-05 06:59:33 -06:00
|
|
|
ast::ImplItemKind::Const(..) => self.visit_static(&StaticParts::from_impl_item(ii)),
|
2016-03-14 20:52:07 -05:00
|
|
|
ast::ImplItemKind::Type(ref ty) => {
|
2017-06-11 22:58:58 -05:00
|
|
|
let rewrite = rewrite_associated_impl_type(
|
|
|
|
ii.ident,
|
|
|
|
ii.defaultness,
|
|
|
|
Some(ty),
|
|
|
|
None,
|
|
|
|
&self.get_context(),
|
|
|
|
self.block_indent,
|
|
|
|
);
|
2016-03-14 20:52:07 -05:00
|
|
|
self.push_rewrite(ii.span, rewrite);
|
2015-10-21 15:21:14 -05:00
|
|
|
}
|
2015-11-23 12:54:33 -06:00
|
|
|
ast::ImplItemKind::Macro(ref mac) => {
|
2016-11-20 13:37:35 -06:00
|
|
|
self.visit_mac(mac, Some(ii.ident), MacroPosition::Item);
|
2015-10-21 15:21:14 -05:00
|
|
|
}
|
|
|
|
}
|
2015-04-22 23:22:48 -05:00
|
|
|
}
|
|
|
|
|
2016-11-20 13:37:35 -06:00
|
|
|
fn visit_mac(&mut self, mac: &ast::Mac, ident: Option<ast::Ident>, pos: MacroPosition) {
|
2017-07-28 22:51:45 -05:00
|
|
|
skip_out_of_file_lines_range_visitor!(self, mac.span);
|
|
|
|
|
2015-09-14 15:53:30 -05:00
|
|
|
// 1 = ;
|
2017-08-30 05:26:45 -05:00
|
|
|
let shape = self.shape().sub_width(1).unwrap();
|
2018-06-06 22:32:58 -05:00
|
|
|
let rewrite = self.with_context(|ctx| rewrite_macro(mac, ident, ctx, shape, pos));
|
2016-10-02 23:11:49 -05:00
|
|
|
self.push_rewrite(mac.span, rewrite);
|
2015-04-21 04:01:19 -05:00
|
|
|
}
|
|
|
|
|
2017-12-08 01:59:04 -06:00
|
|
|
pub fn push_str(&mut self, s: &str) {
|
|
|
|
self.line_number += count_newlines(s);
|
|
|
|
self.buffer.push_str(s);
|
|
|
|
}
|
|
|
|
|
2018-02-14 04:05:34 -06:00
|
|
|
#[cfg_attr(feature = "cargo-clippy", allow(needless_pass_by_value))]
|
2017-12-08 02:46:43 -06:00
|
|
|
fn push_rewrite_inner(&mut self, span: Span, rewrite: Option<String>) {
|
2017-12-06 07:52:43 -06:00
|
|
|
if let Some(ref s) = rewrite {
|
2017-12-08 01:59:04 -06:00
|
|
|
self.push_str(s);
|
2017-12-06 07:52:43 -06:00
|
|
|
} else {
|
|
|
|
let snippet = self.snippet(span);
|
2017-12-08 01:59:04 -06:00
|
|
|
self.push_str(snippet);
|
2017-12-06 07:52:43 -06:00
|
|
|
}
|
2017-08-19 13:47:40 -05:00
|
|
|
self.last_pos = source!(self, span).hi();
|
2015-10-18 15:59:39 -05:00
|
|
|
}
|
|
|
|
|
2017-12-08 02:46:43 -06:00
|
|
|
pub fn push_rewrite(&mut self, span: Span, rewrite: Option<String>) {
|
|
|
|
self.format_missing_with_indent(source!(self, span).lo());
|
|
|
|
self.push_rewrite_inner(span, rewrite);
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn push_skipped_with_span(&mut self, span: Span) {
|
|
|
|
self.format_missing_with_indent(source!(self, span).lo());
|
|
|
|
let lo = self.line_number + 1;
|
|
|
|
self.push_rewrite_inner(span, None);
|
|
|
|
let hi = self.line_number + 1;
|
|
|
|
self.skipped_range.push((lo, hi));
|
|
|
|
}
|
|
|
|
|
2017-12-06 22:53:10 -06:00
|
|
|
pub fn from_context(ctx: &'a RewriteContext) -> FmtVisitor<'a> {
|
2018-05-14 01:01:53 -05:00
|
|
|
FmtVisitor::from_codemap(
|
|
|
|
ctx.parse_session,
|
|
|
|
ctx.config,
|
|
|
|
ctx.snippet_provider,
|
|
|
|
ctx.report.clone(),
|
|
|
|
)
|
2017-12-06 22:53:10 -06:00
|
|
|
}
|
|
|
|
|
2018-05-18 23:44:48 -05:00
|
|
|
pub(crate) fn from_codemap(
|
2017-12-06 07:51:52 -06:00
|
|
|
parse_session: &'a ParseSess,
|
|
|
|
config: &'a Config,
|
2017-12-06 22:51:30 -06:00
|
|
|
snippet_provider: &'a SnippetProvider,
|
2018-05-14 01:01:53 -05:00
|
|
|
report: FormatReport,
|
2017-12-06 07:51:52 -06:00
|
|
|
) -> FmtVisitor<'a> {
|
2015-07-15 20:31:20 -05:00
|
|
|
FmtVisitor {
|
2018-01-21 22:05:18 -06:00
|
|
|
parse_session,
|
2015-10-28 01:41:32 -05:00
|
|
|
codemap: parse_session.codemap(),
|
2017-12-10 02:40:51 -06:00
|
|
|
buffer: String::with_capacity(snippet_provider.big_snippet.len() * 2),
|
2015-07-15 20:31:20 -05:00
|
|
|
last_pos: BytePos(0),
|
2017-05-07 17:24:32 -05:00
|
|
|
block_indent: Indent::empty(),
|
2018-01-21 22:05:18 -06:00
|
|
|
config,
|
2017-06-01 21:58:19 -05:00
|
|
|
is_if_else_block: false,
|
2018-01-21 22:05:18 -06:00
|
|
|
snippet_provider,
|
2017-12-08 01:59:04 -06:00
|
|
|
line_number: 0,
|
2017-12-08 02:46:43 -06:00
|
|
|
skipped_range: vec![],
|
2018-06-06 22:32:58 -05:00
|
|
|
macro_rewrite_failure: false,
|
2018-05-14 01:01:53 -05:00
|
|
|
report,
|
2015-07-15 20:31:20 -05:00
|
|
|
}
|
2015-04-21 04:01:19 -05:00
|
|
|
}
|
|
|
|
|
2017-12-06 22:51:30 -06:00
|
|
|
pub fn opt_snippet(&'b self, span: Span) -> Option<&'a str> {
|
|
|
|
self.snippet_provider.span_to_snippet(span)
|
2017-11-10 02:08:57 -06:00
|
|
|
}
|
|
|
|
|
2017-12-06 22:51:30 -06:00
|
|
|
pub fn snippet(&'b self, span: Span) -> &'a str {
|
2017-12-06 07:49:49 -06:00
|
|
|
self.opt_snippet(span).unwrap()
|
2015-04-21 04:01:19 -05:00
|
|
|
}
|
2015-04-28 03:56:01 -05:00
|
|
|
|
|
|
|
// Returns true if we should skip the following item.
|
2017-07-24 10:55:29 -05:00
|
|
|
pub fn visit_attrs(&mut self, attrs: &[ast::Attribute], style: ast::AttrStyle) -> bool {
|
2018-05-14 01:01:53 -05:00
|
|
|
for attr in attrs {
|
|
|
|
if attr.name() == DEPR_SKIP_ANNOTATION {
|
2018-05-20 19:01:31 -05:00
|
|
|
let file_name = self.codemap.span_to_filename(attr.span).into();
|
2018-05-14 01:01:53 -05:00
|
|
|
self.report.append(
|
|
|
|
file_name,
|
|
|
|
vec![FormattingError::from_span(
|
|
|
|
&attr.span,
|
|
|
|
&self.codemap,
|
|
|
|
ErrorKind::DeprecatedAttr,
|
|
|
|
)],
|
|
|
|
);
|
|
|
|
} else if attr.path.segments[0].ident.to_string() == "rustfmt" {
|
|
|
|
if attr.path.segments.len() == 1
|
|
|
|
|| attr.path.segments[1].ident.to_string() != "skip"
|
|
|
|
{
|
2018-05-20 19:01:31 -05:00
|
|
|
let file_name = self.codemap.span_to_filename(attr.span).into();
|
2018-05-14 01:01:53 -05:00
|
|
|
self.report.append(
|
|
|
|
file_name,
|
|
|
|
vec![FormattingError::from_span(
|
|
|
|
&attr.span,
|
|
|
|
&self.codemap,
|
|
|
|
ErrorKind::BadAttr,
|
|
|
|
)],
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-08-30 05:26:45 -05:00
|
|
|
if contains_skip(attrs) {
|
2015-10-07 23:20:19 -05:00
|
|
|
return true;
|
2015-04-28 22:00:58 -05:00
|
|
|
}
|
2015-10-07 23:20:19 -05:00
|
|
|
|
2017-07-24 10:55:29 -05:00
|
|
|
let attrs: Vec<_> = attrs.iter().filter(|a| a.style == style).cloned().collect();
|
|
|
|
if attrs.is_empty() {
|
2015-10-07 23:20:19 -05:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-08-30 05:26:45 -05:00
|
|
|
let rewrite = attrs.rewrite(&self.get_context(), self.shape());
|
2017-08-30 21:11:52 -05:00
|
|
|
let span = mk_sp(attrs[0].span.lo(), attrs[attrs.len() - 1].span.hi());
|
2017-08-15 10:11:20 -05:00
|
|
|
self.push_rewrite(span, rewrite);
|
|
|
|
|
2015-10-07 23:20:19 -05:00
|
|
|
false
|
2015-04-28 22:00:58 -05:00
|
|
|
}
|
|
|
|
|
2017-09-15 08:31:52 -05:00
|
|
|
fn walk_mod_items(&mut self, m: &ast::Mod) {
|
2018-02-17 11:06:29 -06:00
|
|
|
self.visit_items_with_reordering(&ptr_vec_to_ref_vec(&m.items));
|
2017-09-15 08:31:52 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn walk_stmts(&mut self, stmts: &[ast::Stmt]) {
|
|
|
|
fn to_stmt_item(stmt: &ast::Stmt) -> Option<&ast::Item> {
|
|
|
|
match stmt.node {
|
|
|
|
ast::StmtKind::Item(ref item) => Some(&**item),
|
|
|
|
_ => None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if stmts.is_empty() {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Extract leading `use ...;`.
|
|
|
|
let items: Vec<_> = stmts
|
|
|
|
.iter()
|
2017-12-11 22:48:12 -06:00
|
|
|
.take_while(|stmt| to_stmt_item(stmt).map_or(false, is_use_item))
|
2017-09-15 08:31:52 -05:00
|
|
|
.filter_map(|stmt| to_stmt_item(stmt))
|
|
|
|
.collect();
|
|
|
|
|
|
|
|
if items.is_empty() {
|
|
|
|
self.visit_stmt(&stmts[0]);
|
|
|
|
self.walk_stmts(&stmts[1..]);
|
|
|
|
} else {
|
2018-02-17 11:06:29 -06:00
|
|
|
self.visit_items_with_reordering(&items);
|
2017-09-15 08:31:52 -05:00
|
|
|
self.walk_stmts(&stmts[items.len()..]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn walk_block_stmts(&mut self, b: &ast::Block) {
|
|
|
|
self.walk_stmts(&b.stmts)
|
|
|
|
}
|
|
|
|
|
2017-07-24 10:55:55 -05:00
|
|
|
fn format_mod(
|
|
|
|
&mut self,
|
|
|
|
m: &ast::Mod,
|
|
|
|
vis: &ast::Visibility,
|
|
|
|
s: Span,
|
|
|
|
ident: ast::Ident,
|
|
|
|
attrs: &[ast::Attribute],
|
2018-01-29 06:59:15 -06:00
|
|
|
is_internal: bool,
|
2017-07-24 10:55:55 -05:00
|
|
|
) {
|
2017-12-08 01:59:04 -06:00
|
|
|
self.push_str(&*utils::format_visibility(vis));
|
|
|
|
self.push_str("mod ");
|
|
|
|
self.push_str(&ident.to_string());
|
2015-07-24 08:29:04 -05:00
|
|
|
|
|
|
|
if is_internal {
|
2017-11-13 19:47:02 -06:00
|
|
|
match self.config.brace_style() {
|
2017-12-08 01:59:04 -06:00
|
|
|
BraceStyle::AlwaysNextLine => {
|
2018-02-18 21:47:54 -06:00
|
|
|
let indent_str = self.block_indent.to_string_with_newline(self.config);
|
|
|
|
self.push_str(&indent_str);
|
|
|
|
self.push_str("{");
|
2017-12-08 01:59:04 -06:00
|
|
|
}
|
|
|
|
_ => self.push_str(" {"),
|
2017-07-20 23:55:15 -05:00
|
|
|
}
|
2016-01-28 00:53:41 -06:00
|
|
|
// Hackery to account for the closing }.
|
2018-02-18 21:41:43 -06:00
|
|
|
let mod_lo = self.snippet_provider.span_after(source!(self, s), "{");
|
2017-08-19 13:47:40 -05:00
|
|
|
let body_snippet =
|
|
|
|
self.snippet(mk_sp(mod_lo, source!(self, m.inner).hi() - BytePos(1)));
|
2016-01-28 00:53:41 -06:00
|
|
|
let body_snippet = body_snippet.trim();
|
|
|
|
if body_snippet.is_empty() {
|
2017-12-08 01:59:04 -06:00
|
|
|
self.push_str("}");
|
2016-01-28 00:53:41 -06:00
|
|
|
} else {
|
|
|
|
self.last_pos = mod_lo;
|
|
|
|
self.block_indent = self.block_indent.block_indent(self.config);
|
2017-07-24 10:55:55 -05:00
|
|
|
self.visit_attrs(attrs, ast::AttrStyle::Inner);
|
2016-01-28 00:53:41 -06:00
|
|
|
self.walk_mod_items(m);
|
2017-08-19 13:47:40 -05:00
|
|
|
self.format_missing_with_indent(source!(self, m.inner).hi() - BytePos(1));
|
2017-06-01 21:58:19 -05:00
|
|
|
self.close_block(false);
|
2016-01-28 00:53:41 -06:00
|
|
|
}
|
2017-08-19 13:47:40 -05:00
|
|
|
self.last_pos = source!(self, m.inner).hi();
|
2015-11-20 15:44:15 -06:00
|
|
|
} else {
|
2017-12-08 01:59:04 -06:00
|
|
|
self.push_str(";");
|
2017-08-19 13:47:40 -05:00
|
|
|
self.last_pos = source!(self, s).hi();
|
2015-07-01 14:13:10 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-07-24 10:55:55 -05:00
|
|
|
pub fn format_separate_mod(&mut self, m: &ast::Mod, filemap: &codemap::FileMap) {
|
2015-09-18 23:50:44 -05:00
|
|
|
self.block_indent = Indent::empty();
|
2015-10-21 15:21:14 -05:00
|
|
|
self.walk_mod_items(m);
|
2016-08-24 15:32:04 -05:00
|
|
|
self.format_missing_with_indent(filemap.end_pos);
|
2015-07-01 14:13:10 -05:00
|
|
|
}
|
2015-07-20 14:33:23 -05:00
|
|
|
|
2017-11-10 02:09:31 -06:00
|
|
|
pub fn skip_empty_lines(&mut self, end_pos: BytePos) {
|
2018-05-07 16:25:48 -05:00
|
|
|
while let Some(pos) = self
|
|
|
|
.snippet_provider
|
2017-11-10 02:09:31 -06:00
|
|
|
.opt_span_after(mk_sp(self.last_pos, end_pos), "\n")
|
|
|
|
{
|
|
|
|
if let Some(snippet) = self.opt_snippet(mk_sp(self.last_pos, pos)) {
|
|
|
|
if snippet.trim().is_empty() {
|
|
|
|
self.last_pos = pos;
|
|
|
|
} else {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-06-06 22:32:58 -05:00
|
|
|
pub fn with_context<F>(&mut self, f: F) -> Option<String>
|
|
|
|
where
|
|
|
|
F: Fn(&RewriteContext) -> Option<String>,
|
|
|
|
{
|
2018-06-07 01:20:01 -05:00
|
|
|
let result;
|
2018-06-06 22:32:58 -05:00
|
|
|
let macro_rewrite_failure = {
|
|
|
|
let context = self.get_context();
|
|
|
|
result = f(&context);
|
|
|
|
unsafe { *context.macro_rewrite_failure.as_ptr() }
|
|
|
|
};
|
|
|
|
self.macro_rewrite_failure |= macro_rewrite_failure;
|
|
|
|
result
|
|
|
|
}
|
|
|
|
|
2015-08-14 07:09:19 -05:00
|
|
|
pub fn get_context(&self) -> RewriteContext {
|
|
|
|
RewriteContext {
|
2015-10-28 01:41:32 -05:00
|
|
|
parse_session: self.parse_session,
|
2015-08-14 07:09:19 -05:00
|
|
|
codemap: self.codemap,
|
|
|
|
config: self.config,
|
2018-03-25 06:20:50 -05:00
|
|
|
inside_macro: RefCell::new(false),
|
2018-03-07 00:37:44 -06:00
|
|
|
use_block: RefCell::new(false),
|
2018-03-25 06:20:50 -05:00
|
|
|
is_if_else_block: RefCell::new(false),
|
2018-03-07 00:37:44 -06:00
|
|
|
force_one_line_chain: RefCell::new(false),
|
2017-12-11 22:48:12 -06:00
|
|
|
snippet_provider: self.snippet_provider,
|
2018-06-06 22:32:58 -05:00
|
|
|
macro_rewrite_failure: RefCell::new(false),
|
2018-05-14 01:01:53 -05:00
|
|
|
report: self.report.clone(),
|
2015-08-14 07:09:19 -05:00
|
|
|
}
|
|
|
|
}
|
2015-04-22 23:22:48 -05:00
|
|
|
}
|