2015-09-14 22:53:30 +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.
|
|
|
|
|
|
|
|
// Format list-like macro invocations. These are invocations whose token trees
|
|
|
|
// can be interpreted as expressions and separated by commas.
|
|
|
|
// Note that these token trees do not actually have to be interpreted as
|
|
|
|
// expressions by the compiler. An example of an invocation we would reformat is
|
|
|
|
// foo!( x, y, z ). The token x may represent an identifier in the code, but we
|
|
|
|
// interpreted as an expression.
|
|
|
|
// Macro uses which are not-list like, such as bar!(key => val), will not be
|
2017-11-01 07:33:55 +01:00
|
|
|
// reformatted.
|
2015-09-14 22:53:30 +02:00
|
|
|
// List-like invocations with parentheses will be formatted as function calls,
|
|
|
|
// and those with brackets will be formatted as array literals.
|
|
|
|
|
|
|
|
use syntax::ast;
|
2017-06-06 06:54:22 +02:00
|
|
|
use syntax::codemap::BytePos;
|
|
|
|
use syntax::parse::new_parser_from_tts;
|
2017-08-30 12:00:10 +09:00
|
|
|
use syntax::parse::parser::Parser;
|
2017-07-13 18:42:14 +09:00
|
|
|
use syntax::parse::token::Token;
|
2016-12-23 11:13:00 -08:00
|
|
|
use syntax::symbol;
|
2017-07-13 18:42:14 +09:00
|
|
|
use syntax::tokenstream::TokenStream;
|
2016-09-16 15:19:18 +12:00
|
|
|
use syntax::util::ThinVec;
|
2015-09-14 22:53:30 +02:00
|
|
|
|
2016-05-25 20:41:26 +02:00
|
|
|
use codemap::SpanUtils;
|
2017-07-13 18:42:14 +09:00
|
|
|
use comment::{contains_comment, FindUncommented};
|
|
|
|
use expr::{rewrite_array, rewrite_call_inner};
|
2016-05-09 20:11:25 +02:00
|
|
|
use rewrite::{Rewrite, RewriteContext};
|
2017-09-17 15:23:25 +09:00
|
|
|
use shape::{Indent, Shape};
|
2017-06-06 06:54:22 +02:00
|
|
|
use utils::mk_sp;
|
2015-10-16 22:54:32 +02:00
|
|
|
|
2017-11-05 14:02:46 +09:00
|
|
|
const FORCED_BRACKET_MACROS: &[&str] = &["vec!"];
|
2015-09-14 22:53:30 +02:00
|
|
|
|
|
|
|
// FIXME: use the enum from libsyntax?
|
2016-01-22 13:40:26 -06:00
|
|
|
#[derive(Clone, Copy, PartialEq, Eq)]
|
2015-09-14 22:53:30 +02:00
|
|
|
enum MacroStyle {
|
|
|
|
Parens,
|
|
|
|
Brackets,
|
|
|
|
Braces,
|
|
|
|
}
|
|
|
|
|
2016-11-21 08:37:35 +13:00
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
|
|
|
|
pub enum MacroPosition {
|
|
|
|
Item,
|
|
|
|
Statement,
|
|
|
|
Expression,
|
|
|
|
}
|
|
|
|
|
2015-10-16 22:54:32 +02:00
|
|
|
impl MacroStyle {
|
|
|
|
fn opener(&self) -> &'static str {
|
|
|
|
match *self {
|
|
|
|
MacroStyle::Parens => "(",
|
|
|
|
MacroStyle::Brackets => "[",
|
|
|
|
MacroStyle::Braces => "{",
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-30 12:00:10 +09:00
|
|
|
pub enum MacroArg {
|
|
|
|
Expr(ast::Expr),
|
|
|
|
Ty(ast::Ty),
|
|
|
|
Pat(ast::Pat),
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Rewrite for MacroArg {
|
|
|
|
fn rewrite(&self, context: &RewriteContext, shape: Shape) -> Option<String> {
|
2017-10-26 16:54:41 +09:00
|
|
|
match *self {
|
|
|
|
MacroArg::Expr(ref expr) => expr.rewrite(context, shape),
|
|
|
|
MacroArg::Ty(ref ty) => ty.rewrite(context, shape),
|
|
|
|
MacroArg::Pat(ref pat) => pat.rewrite(context, shape),
|
2017-08-30 12:00:10 +09:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn parse_macro_arg(parser: &mut Parser) -> Option<MacroArg> {
|
|
|
|
macro_rules! parse_macro_arg {
|
|
|
|
($target:tt, $macro_arg:ident, $parser:ident) => {
|
|
|
|
let mut cloned_parser = (*parser).clone();
|
|
|
|
match cloned_parser.$parser() {
|
|
|
|
Ok($target) => {
|
|
|
|
if parser.sess.span_diagnostic.has_errors() {
|
|
|
|
parser.sess.span_diagnostic.reset_err_count();
|
|
|
|
} else {
|
|
|
|
// Parsing succeeded.
|
|
|
|
*parser = cloned_parser;
|
|
|
|
return Some(MacroArg::$macro_arg((*$target).clone()));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Err(mut e) => {
|
|
|
|
e.cancel();
|
|
|
|
parser.sess.span_diagnostic.reset_err_count();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
parse_macro_arg!(expr, Expr, parse_expr);
|
|
|
|
parse_macro_arg!(ty, Ty, parse_ty);
|
|
|
|
parse_macro_arg!(pat, Pat, parse_pat);
|
|
|
|
|
2017-09-15 17:09:45 +09:00
|
|
|
None
|
2017-08-30 12:00:10 +09:00
|
|
|
}
|
|
|
|
|
2017-06-12 15:58:58 +12:00
|
|
|
pub fn rewrite_macro(
|
|
|
|
mac: &ast::Mac,
|
|
|
|
extra_ident: Option<ast::Ident>,
|
|
|
|
context: &RewriteContext,
|
|
|
|
shape: Shape,
|
|
|
|
position: MacroPosition,
|
|
|
|
) -> Option<String> {
|
2017-08-11 17:54:38 +09:00
|
|
|
let context = &mut context.clone();
|
2017-05-13 18:20:18 +09:00
|
|
|
context.inside_macro = true;
|
2017-05-16 15:47:09 +07:00
|
|
|
if context.config.use_try_shorthand() {
|
2016-05-09 20:11:25 +02:00
|
|
|
if let Some(expr) = convert_try_mac(mac, context) {
|
2017-12-10 21:53:01 +09:00
|
|
|
context.inside_macro = false;
|
2017-01-31 08:28:48 +13:00
|
|
|
return expr.rewrite(context, shape);
|
2016-05-09 20:11:25 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-10-16 22:54:32 +02:00
|
|
|
let original_style = macro_style(mac, context);
|
2016-12-23 11:13:00 -08:00
|
|
|
|
2016-03-27 14:45:55 +02:00
|
|
|
let macro_name = match extra_ident {
|
2016-12-23 11:13:00 -08:00
|
|
|
None => format!("{}!", mac.node.path),
|
2017-08-16 00:48:12 +09:00
|
|
|
Some(ident) => {
|
|
|
|
if ident == symbol::keywords::Invalid.ident() {
|
|
|
|
format!("{}!", mac.node.path)
|
|
|
|
} else {
|
|
|
|
format!("{}! {}", mac.node.path, ident)
|
|
|
|
}
|
|
|
|
}
|
2016-03-27 14:45:55 +02:00
|
|
|
};
|
2016-12-23 11:13:00 -08:00
|
|
|
|
2015-10-16 22:54:32 +02:00
|
|
|
let style = if FORCED_BRACKET_MACROS.contains(&¯o_name[..]) {
|
|
|
|
MacroStyle::Brackets
|
|
|
|
} else {
|
|
|
|
original_style
|
|
|
|
};
|
2015-09-14 22:53:30 +02:00
|
|
|
|
2017-08-30 12:00:10 +09:00
|
|
|
let ts: TokenStream = mac.node.stream();
|
2017-06-06 06:54:22 +02:00
|
|
|
if ts.is_empty() && !contains_comment(&context.snippet(mac.span)) {
|
2016-03-27 13:44:08 +02:00
|
|
|
return match style {
|
2017-05-15 22:55:45 +09:00
|
|
|
MacroStyle::Parens if position == MacroPosition::Item => {
|
|
|
|
Some(format!("{}();", macro_name))
|
|
|
|
}
|
|
|
|
MacroStyle::Parens => Some(format!("{}()", macro_name)),
|
|
|
|
MacroStyle::Brackets => Some(format!("{}[]", macro_name)),
|
|
|
|
MacroStyle::Braces => Some(format!("{}{{}}", macro_name)),
|
|
|
|
};
|
2015-09-14 22:53:30 +02:00
|
|
|
}
|
|
|
|
|
2017-06-06 06:54:22 +02:00
|
|
|
let mut parser = new_parser_from_tts(context.parse_session, ts.trees().collect());
|
2017-08-30 12:00:10 +09:00
|
|
|
let mut arg_vec = Vec::new();
|
2017-05-19 19:25:53 +09:00
|
|
|
let mut vec_with_semi = false;
|
2017-06-23 12:56:57 +09:00
|
|
|
let mut trailing_comma = false;
|
2015-09-14 22:53:30 +02:00
|
|
|
|
2016-01-22 13:40:26 -06:00
|
|
|
if MacroStyle::Braces != style {
|
|
|
|
loop {
|
2017-08-30 12:00:10 +09:00
|
|
|
match parse_macro_arg(&mut parser) {
|
|
|
|
Some(arg) => arg_vec.push(arg),
|
2017-12-08 13:07:42 +09:00
|
|
|
None => return Some(context.snippet(mac.span).to_owned()),
|
2017-08-30 12:00:10 +09:00
|
|
|
}
|
2015-09-14 22:53:30 +02:00
|
|
|
|
2016-01-22 13:40:26 -06:00
|
|
|
match parser.token {
|
|
|
|
Token::Eof => break,
|
|
|
|
Token::Comma => (),
|
2017-05-19 19:25:53 +09:00
|
|
|
Token::Semi => {
|
|
|
|
// Try to parse `vec![expr; expr]`
|
|
|
|
if FORCED_BRACKET_MACROS.contains(&¯o_name[..]) {
|
|
|
|
parser.bump();
|
|
|
|
if parser.token != Token::Eof {
|
2017-08-30 12:00:10 +09:00
|
|
|
match parse_macro_arg(&mut parser) {
|
|
|
|
Some(arg) => {
|
|
|
|
arg_vec.push(arg);
|
2017-05-19 19:25:53 +09:00
|
|
|
parser.bump();
|
2017-08-30 12:00:10 +09:00
|
|
|
if parser.token == Token::Eof && arg_vec.len() == 2 {
|
2017-05-19 19:25:53 +09:00
|
|
|
vec_with_semi = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2017-12-08 13:07:42 +09:00
|
|
|
None => return Some(context.snippet(mac.span).to_owned()),
|
2017-05-19 19:25:53 +09:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-12-08 13:07:42 +09:00
|
|
|
return Some(context.snippet(mac.span).to_owned());
|
2017-05-19 19:25:53 +09:00
|
|
|
}
|
2017-12-08 13:07:42 +09:00
|
|
|
_ => return Some(context.snippet(mac.span).to_owned()),
|
2016-01-22 13:40:26 -06:00
|
|
|
}
|
2015-09-14 22:53:30 +02:00
|
|
|
|
2016-08-23 23:14:45 +09:00
|
|
|
parser.bump();
|
2015-10-08 22:04:17 +02:00
|
|
|
|
2016-01-22 13:40:26 -06:00
|
|
|
if parser.token == Token::Eof {
|
2017-06-23 12:56:57 +09:00
|
|
|
trailing_comma = true;
|
|
|
|
break;
|
2016-01-22 13:40:26 -06:00
|
|
|
}
|
2015-09-14 22:53:30 +02:00
|
|
|
}
|
2015-10-22 14:37:13 -07:00
|
|
|
}
|
2015-09-14 22:53:30 +02:00
|
|
|
|
|
|
|
match style {
|
|
|
|
MacroStyle::Parens => {
|
2017-04-03 17:39:14 -06:00
|
|
|
// Format macro invocation as function call, forcing no trailing
|
|
|
|
// comma because not all macros support them.
|
2017-09-28 16:33:30 +09:00
|
|
|
rewrite_call_inner(
|
2017-06-23 12:56:57 +09:00
|
|
|
context,
|
|
|
|
¯o_name,
|
2017-08-30 12:00:10 +09:00
|
|
|
&arg_vec.iter().map(|e| &*e).collect::<Vec<_>>()[..],
|
2017-06-23 12:56:57 +09:00
|
|
|
mac.span,
|
|
|
|
shape,
|
2017-11-24 20:17:06 +13:00
|
|
|
context.config.width_heuristics().fn_call_width,
|
2017-06-23 12:56:57 +09:00
|
|
|
trailing_comma,
|
2017-09-28 16:33:30 +09:00
|
|
|
).map(|rw| match position {
|
2017-06-23 12:56:57 +09:00
|
|
|
MacroPosition::Item => format!("{};", rw),
|
|
|
|
_ => rw,
|
|
|
|
})
|
2015-09-14 22:53:30 +02:00
|
|
|
}
|
|
|
|
MacroStyle::Brackets => {
|
2017-10-05 20:50:19 +09:00
|
|
|
let mac_shape = shape.offset_left(macro_name.len())?;
|
2017-05-19 19:25:53 +09:00
|
|
|
// Handle special case: `vec![expr; expr]`
|
|
|
|
if vec_with_semi {
|
2017-11-14 23:42:31 +09:00
|
|
|
let (lbr, rbr) = if context.config.spaces_within_parens_and_brackets() {
|
2017-05-19 19:25:53 +09:00
|
|
|
("[ ", " ]")
|
|
|
|
} else {
|
|
|
|
("[", "]")
|
|
|
|
};
|
2017-06-14 20:33:54 +09:00
|
|
|
// 6 = `vec!` + `; `
|
|
|
|
let total_overhead = lbr.len() + rbr.len() + 6;
|
2017-06-16 13:57:37 +09:00
|
|
|
let nested_shape = mac_shape.block_indent(context.config.tab_spaces());
|
2017-10-05 20:50:19 +09:00
|
|
|
let lhs = arg_vec[0].rewrite(context, nested_shape)?;
|
|
|
|
let rhs = arg_vec[1].rewrite(context, nested_shape)?;
|
2017-09-15 12:10:58 +09:00
|
|
|
if !lhs.contains('\n') && !rhs.contains('\n')
|
|
|
|
&& lhs.len() + rhs.len() + total_overhead <= shape.width
|
2017-06-14 20:33:54 +09:00
|
|
|
{
|
|
|
|
Some(format!("{}{}{}; {}{}", macro_name, lbr, lhs, rhs, rbr))
|
|
|
|
} else {
|
|
|
|
Some(format!(
|
|
|
|
"{}{}\n{}{};\n{}{}\n{}{}",
|
|
|
|
macro_name,
|
|
|
|
lbr,
|
2017-06-16 13:57:37 +09:00
|
|
|
nested_shape.indent.to_string(context.config),
|
2017-06-14 20:33:54 +09:00
|
|
|
lhs,
|
2017-06-16 13:57:37 +09:00
|
|
|
nested_shape.indent.to_string(context.config),
|
2017-06-14 20:33:54 +09:00
|
|
|
rhs,
|
|
|
|
shape.indent.to_string(context.config),
|
|
|
|
rbr
|
|
|
|
))
|
|
|
|
}
|
2017-05-19 19:25:53 +09:00
|
|
|
} else {
|
2017-06-23 12:56:57 +09:00
|
|
|
// If we are rewriting `vec!` macro or other special macros,
|
|
|
|
// then we can rewrite this as an usual array literal.
|
|
|
|
// Otherwise, we must preserve the original existence of trailing comma.
|
2017-08-29 22:16:04 +09:00
|
|
|
if FORCED_BRACKET_MACROS.contains(¯o_name.as_str()) {
|
2017-06-23 12:56:57 +09:00
|
|
|
context.inside_macro = false;
|
|
|
|
trailing_comma = false;
|
|
|
|
}
|
2017-08-30 12:00:10 +09:00
|
|
|
// Convert `MacroArg` into `ast::Expr`, as `rewrite_array` only accepts the latter.
|
|
|
|
let sp = mk_sp(
|
|
|
|
context
|
|
|
|
.codemap
|
|
|
|
.span_after(mac.span, original_style.opener()),
|
|
|
|
mac.span.hi() - BytePos(1),
|
|
|
|
);
|
2017-11-30 22:13:28 +09:00
|
|
|
let arg_vec = &arg_vec.iter().map(|e| &*e).collect::<Vec<_>>()[..];
|
|
|
|
let rewrite = rewrite_array(arg_vec, sp, context, mac_shape, trailing_comma)?;
|
2017-05-19 19:25:53 +09:00
|
|
|
|
|
|
|
Some(format!("{}{}", macro_name, rewrite))
|
|
|
|
}
|
2015-09-14 22:53:30 +02:00
|
|
|
}
|
|
|
|
MacroStyle::Braces => {
|
|
|
|
// Skip macro invocations with braces, for now.
|
2017-12-06 22:52:43 +09:00
|
|
|
indent_macro_snippet(context, context.snippet(mac.span), shape.indent)
|
2015-09-14 22:53:30 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-09 20:11:25 +02:00
|
|
|
/// Tries to convert a macro use into a short hand try expression. Returns None
|
|
|
|
/// when the macro is not an instance of try! (or parsing the inner expression
|
|
|
|
/// failed).
|
|
|
|
pub fn convert_try_mac(mac: &ast::Mac, context: &RewriteContext) -> Option<ast::Expr> {
|
|
|
|
if &format!("{}", mac.node.path)[..] == "try" {
|
2017-06-06 06:54:22 +02:00
|
|
|
let ts: TokenStream = mac.node.tts.clone().into();
|
|
|
|
let mut parser = new_parser_from_tts(context.parse_session, ts.trees().collect());
|
2016-05-09 20:11:25 +02:00
|
|
|
|
|
|
|
Some(ast::Expr {
|
2017-06-12 15:58:58 +12:00
|
|
|
id: ast::NodeId::new(0), // dummy value
|
2017-10-05 20:50:19 +09:00
|
|
|
node: ast::ExprKind::Try(parser.parse_expr().ok()?),
|
2017-06-12 15:58:58 +12:00
|
|
|
span: mac.span, // incorrect span, but shouldn't matter too much
|
|
|
|
attrs: ThinVec::new(),
|
|
|
|
})
|
2016-05-09 20:11:25 +02:00
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-14 22:53:30 +02:00
|
|
|
fn macro_style(mac: &ast::Mac, context: &RewriteContext) -> MacroStyle {
|
|
|
|
let snippet = context.snippet(mac.span);
|
2017-04-24 16:50:11 +09:00
|
|
|
let paren_pos = snippet.find_uncommented("(").unwrap_or(usize::max_value());
|
|
|
|
let bracket_pos = snippet.find_uncommented("[").unwrap_or(usize::max_value());
|
|
|
|
let brace_pos = snippet.find_uncommented("{").unwrap_or(usize::max_value());
|
2015-09-14 22:53:30 +02:00
|
|
|
|
|
|
|
if paren_pos < bracket_pos && paren_pos < brace_pos {
|
|
|
|
MacroStyle::Parens
|
|
|
|
} else if bracket_pos < brace_pos {
|
|
|
|
MacroStyle::Brackets
|
|
|
|
} else {
|
|
|
|
MacroStyle::Braces
|
|
|
|
}
|
|
|
|
}
|
2017-08-21 23:19:01 +09:00
|
|
|
|
|
|
|
/// Indent each line according to the specified `indent`.
|
|
|
|
/// e.g.
|
|
|
|
/// ```rust
|
|
|
|
/// foo!{
|
|
|
|
/// x,
|
|
|
|
/// y,
|
|
|
|
/// foo(
|
|
|
|
/// a,
|
|
|
|
/// b,
|
|
|
|
/// c,
|
|
|
|
/// ),
|
|
|
|
/// }
|
|
|
|
/// ```
|
|
|
|
/// will become
|
|
|
|
/// ```rust
|
|
|
|
/// foo!{
|
|
|
|
/// x,
|
|
|
|
/// y,
|
|
|
|
/// foo(
|
|
|
|
/// a,
|
|
|
|
/// b,
|
|
|
|
/// c,
|
|
|
|
// ),
|
|
|
|
/// }
|
|
|
|
/// ```
|
2017-08-27 13:44:49 +09:00
|
|
|
fn indent_macro_snippet(
|
|
|
|
context: &RewriteContext,
|
|
|
|
macro_str: &str,
|
|
|
|
indent: Indent,
|
|
|
|
) -> Option<String> {
|
2017-08-21 23:19:01 +09:00
|
|
|
let mut lines = macro_str.lines();
|
2017-10-05 20:50:19 +09:00
|
|
|
let first_line = lines.next().map(|s| s.trim_right())?;
|
2017-08-25 22:35:22 +09:00
|
|
|
let mut trimmed_lines = Vec::with_capacity(16);
|
|
|
|
|
2017-10-05 20:50:19 +09:00
|
|
|
let min_prefix_space_width = lines
|
|
|
|
.filter_map(|line| {
|
|
|
|
let prefix_space_width = if is_empty_line(line) {
|
|
|
|
None
|
|
|
|
} else {
|
|
|
|
Some(get_prefix_space_width(context, line))
|
|
|
|
};
|
|
|
|
trimmed_lines.push((line.trim(), prefix_space_width));
|
|
|
|
prefix_space_width
|
|
|
|
})
|
|
|
|
.min()?;
|
2017-08-21 23:19:01 +09:00
|
|
|
|
|
|
|
Some(
|
2017-09-15 12:10:58 +09:00
|
|
|
String::from(first_line) + "\n"
|
|
|
|
+ &trimmed_lines
|
2017-08-25 22:35:22 +09:00
|
|
|
.iter()
|
|
|
|
.map(|&(line, prefix_space_width)| match prefix_space_width {
|
|
|
|
Some(original_indent_width) => {
|
2017-09-15 12:10:58 +09:00
|
|
|
let new_indent_width = indent.width()
|
|
|
|
+ original_indent_width
|
2017-08-25 22:35:22 +09:00
|
|
|
.checked_sub(min_prefix_space_width)
|
|
|
|
.unwrap_or(0);
|
2017-08-27 13:44:49 +09:00
|
|
|
let new_indent = Indent::from_width(context.config, new_indent_width);
|
2017-09-15 18:11:24 +09:00
|
|
|
format!("{}{}", new_indent.to_string(context.config), line.trim())
|
2017-08-25 22:35:22 +09:00
|
|
|
}
|
|
|
|
None => String::new(),
|
2017-08-21 23:19:01 +09:00
|
|
|
})
|
|
|
|
.collect::<Vec<_>>()
|
|
|
|
.join("\n"),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2017-08-27 13:44:49 +09:00
|
|
|
fn get_prefix_space_width(context: &RewriteContext, s: &str) -> usize {
|
|
|
|
let mut width = 0;
|
2017-08-29 22:16:04 +09:00
|
|
|
for c in s.chars() {
|
2017-08-27 13:44:49 +09:00
|
|
|
match c {
|
|
|
|
' ' => width += 1,
|
|
|
|
'\t' => width += context.config.tab_spaces(),
|
|
|
|
_ => return width,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
width
|
2017-08-21 23:19:01 +09:00
|
|
|
}
|
2017-08-25 22:35:22 +09:00
|
|
|
|
|
|
|
fn is_empty_line(s: &str) -> bool {
|
|
|
|
s.is_empty() || s.chars().all(char::is_whitespace)
|
|
|
|
}
|