Skip to content

Commit

Permalink
Rename is_bol -> is_beginning_of_line
Browse files Browse the repository at this point in the history
Also moves it to pp::Printer from PrintState.
  • Loading branch information
Mark-Simulacrum committed Jul 10, 2019
1 parent 39aa9bf commit e91dbc5
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 12 deletions.
4 changes: 2 additions & 2 deletions src/librustc/hir/print.rs
Expand Up @@ -187,13 +187,13 @@ impl<'a> State<'a> {
}

pub fn space_if_not_bol(&mut self) {
if !self.is_bol() {
if !self.s.is_beginning_of_line() {
self.s.space();
}
}

pub fn break_offset_if_not_bol(&mut self, n: usize, off: isize) {
if !self.is_bol() {
if !self.s.is_beginning_of_line() {
self.s.break_offset(n, off)
} else {
if off != 0 && self.s.last_token().is_hardbreak_tok() {
Expand Down
6 changes: 5 additions & 1 deletion src/libsyntax/print/pp.rs
Expand Up @@ -301,7 +301,7 @@ impl Default for BufEntry {
}

impl Printer {
pub fn last_token(&mut self) -> Token {
pub fn last_token(&self) -> Token {
self.buf[self.right].token.clone()
}

Expand Down Expand Up @@ -651,6 +651,10 @@ impl Printer {
self.spaces(SIZE_INFINITY as usize)
}

pub fn is_beginning_of_line(&self) -> bool {
self.last_token().is_eof() || self.last_token().is_hardbreak_tok()
}

pub fn hardbreak_tok_offset(off: isize) -> Token {
Token::Break(BreakToken {offset: off, blank_space: SIZE_INFINITY})
}
Expand Down
13 changes: 4 additions & 9 deletions src/libsyntax/print/pprust.rs
Expand Up @@ -445,13 +445,8 @@ pub trait PrintState<'a> {

fn pclose(&mut self) { self.writer().word(")") }

// is this the beginning of a line?
fn is_bol(&mut self) -> bool {
self.writer().last_token().is_eof() || self.writer().last_token().is_hardbreak_tok()
}

fn hardbreak_if_not_bol(&mut self) {
if !self.is_bol() {
if !self.writer().is_beginning_of_line() {
self.writer().hardbreak()
}
}
Expand Down Expand Up @@ -512,7 +507,7 @@ pub trait PrintState<'a> {
}
}
comments::Trailing => {
if !self.is_bol() {
if !self.writer().is_beginning_of_line() {
self.writer().word(" ");
}
if cmnt.lines.len() == 1 {
Expand Down Expand Up @@ -735,7 +730,7 @@ pub trait PrintState<'a> {
}

fn space_if_not_bol(&mut self) {
if !self.is_bol() { self.writer().space(); }
if !self.writer().is_beginning_of_line() { self.writer().space(); }
}

fn nbsp(&mut self) { self.writer().word(" ") }
Expand Down Expand Up @@ -793,7 +788,7 @@ impl<'a> State<'a> {

crate fn break_offset_if_not_bol(&mut self, n: usize,
off: isize) {
if !self.is_bol() {
if !self.s.is_beginning_of_line() {
self.s.break_offset(n, off)
} else {
if off != 0 && self.s.last_token().is_hardbreak_tok() {
Expand Down

0 comments on commit e91dbc5

Please sign in to comment.