]> git.lizzy.rs Git - rust.git/blob - src/rewrite.rs
Refactor indent and width into Shape struct
[rust.git] / src / rewrite.rs
1 // Copyright 2015 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 // A generic trait to abstract the rewriting of an element (of the AST).
12
13 use syntax::codemap::{CodeMap, Span};
14 use syntax::parse::ParseSess;
15
16 use {Indent, Shape};
17 use config::Config;
18
19 pub trait Rewrite {
20     /// Rewrite self into shape.
21     fn rewrite(&self, context: &RewriteContext, shape: Shape) -> Option<String>;
22 }
23
24 #[derive(Clone)]
25 pub struct RewriteContext<'a> {
26     pub parse_session: &'a ParseSess,
27     pub codemap: &'a CodeMap,
28     pub config: &'a Config,
29     // Indentation due to nesting of blocks.
30     pub block_indent: Indent,
31 }
32
33 impl<'a> RewriteContext<'a> {
34     pub fn nested_context(&self) -> RewriteContext<'a> {
35         RewriteContext {
36             parse_session: self.parse_session,
37             codemap: self.codemap,
38             config: self.config,
39             block_indent: self.block_indent.block_indent(self.config),
40         }
41     }
42
43     pub fn snippet(&self, span: Span) -> String {
44         self.codemap.span_to_snippet(span).unwrap()
45     }
46 }