mirror of
https://github.com/rust-lang/rust-analyzer
synced 2025-01-12 21:28:51 +00:00
Reformat
This commit is contained in:
parent
c119e8fd8b
commit
351107d0b1
5 changed files with 7 additions and 9 deletions
|
@ -1,4 +1,4 @@
|
|||
use {File, FileBuilder, Sink, SyntaxKind, Token, TextUnit};
|
||||
use {File, FileBuilder, Sink, SyntaxKind, TextUnit, Token};
|
||||
use syntax_kinds::TOMBSTONE;
|
||||
use super::is_insignificant;
|
||||
|
||||
|
@ -139,7 +139,7 @@ pub(super) fn to_file(text: String, tokens: &[Token], events: Vec<Event>) -> Fil
|
|||
idx += 1;
|
||||
}
|
||||
builder.leaf(kind, len);
|
||||
},
|
||||
}
|
||||
&Event::Error { ref message } => builder.error().message(message.clone()).emit(),
|
||||
}
|
||||
}
|
||||
|
|
|
@ -122,7 +122,7 @@ fn item(p: &mut Parser) {
|
|||
if !p.at(FN_KW) {
|
||||
item.abandon(p);
|
||||
p.error().message("expected function").emit();
|
||||
return
|
||||
return;
|
||||
}
|
||||
fn_item(p);
|
||||
FN_ITEM
|
||||
|
|
|
@ -46,10 +46,7 @@ impl<'t> ParserInput<'t> {
|
|||
if !(idx < self.tokens.len()) {
|
||||
return "";
|
||||
}
|
||||
let range = TextRange::from_len(
|
||||
self.start_offsets[idx],
|
||||
self.tokens[idx].len
|
||||
);
|
||||
let range = TextRange::from_len(self.start_offsets[idx], self.tokens[idx].len);
|
||||
&self.text[range]
|
||||
}
|
||||
}
|
||||
|
|
|
@ -169,7 +169,6 @@ impl<'t> Parser<'t> {
|
|||
self.nth(0)
|
||||
}
|
||||
|
||||
|
||||
fn event(&mut self, event: Event) {
|
||||
self.events.push(event)
|
||||
}
|
||||
|
|
|
@ -39,7 +39,9 @@ impl Grammar {
|
|||
acc.push_str("use tree::SyntaxInfo;\n");
|
||||
acc.push_str("\n");
|
||||
|
||||
let syntax_kinds: Vec<String> =self.tokens.iter().cloned()
|
||||
let syntax_kinds: Vec<String> = self.tokens
|
||||
.iter()
|
||||
.cloned()
|
||||
.chain(self.keywords.iter().map(|kw| kw_token(kw)))
|
||||
.chain(self.contextual_keywords.iter().map(|kw| kw_token(kw)))
|
||||
.chain(self.nodes.iter().cloned())
|
||||
|
|
Loading…
Reference in a new issue