]> git.lizzy.rs Git - rust.git/blob - src/utils.rs
Implement basic enum formatting
[rust.git] / src / utils.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 use syntax::ast::Visibility;
12
13 #[inline]
14 pub fn prev_char(s: &str, mut i: usize) -> usize {
15     if i == 0 { return 0; }
16
17     i -= 1;
18     while !s.is_char_boundary(i) {
19         i -= 1;
20     }
21     i
22 }
23
24 #[inline]
25 pub fn next_char(s: &str, mut i: usize) -> usize {
26     if i >= s.len() { return s.len(); }
27
28     while !s.is_char_boundary(i) {
29         i += 1;
30     }
31     i
32 }
33
34 #[inline]
35 pub fn make_indent(width: usize) -> String {
36     let mut indent = String::with_capacity(width);
37     for _ in 0..width {
38         indent.push(' ')
39     }
40     indent
41 }
42
43 #[inline]
44 pub fn format_visibility(vis: Visibility) -> &'static str {
45     match vis {
46         Visibility::Public => "pub ",
47         Visibility::Inherited => ""
48     }
49 }