block: rm redundant block scope
This commit is contained in:
parent
7fc739cad4
commit
c29b926d16
1 changed files with 26 additions and 28 deletions
|
@ -461,7 +461,6 @@ impl<'s> TreeParser<'s> {
|
||||||
} else {
|
} else {
|
||||||
match kind {
|
match kind {
|
||||||
lex::Kind::Sym(lex::Symbol::Pipe) => {
|
lex::Kind::Sym(lex::Symbol::Pipe) => {
|
||||||
{
|
|
||||||
let span = Span::new(cell_start, pos).trim(self.src);
|
let span = Span::new(cell_start, pos).trim(self.src);
|
||||||
let cell = span.of(self.src);
|
let cell = span.of(self.src);
|
||||||
let separator_cell = match cell.len() {
|
let separator_cell = match cell.len() {
|
||||||
|
@ -489,7 +488,6 @@ impl<'s> TreeParser<'s> {
|
||||||
cell_start = pos + len;
|
cell_start = pos + len;
|
||||||
column_index += 1;
|
column_index += 1;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
lex::Kind::Seq(lex::Sequence::Backtick) => {
|
lex::Kind::Seq(lex::Sequence::Backtick) => {
|
||||||
verbatim = Some(len);
|
verbatim = Some(len);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue