This commit is contained in:
Veetaha 2020-06-12 02:06:28 +03:00
parent 36353bb182
commit 4fefc7d06c
2 changed files with 6 additions and 6 deletions

View File

@ -84,7 +84,7 @@ pub fn spans_multiple_lines(&self) -> bool {
}
pub struct QuoteOffsets {
pub quotes: [TextRange; 2],
pub quotes: (TextRange, TextRange),
pub contents: TextRange,
}
@ -103,7 +103,7 @@ fn new(literal: &str) -> Option<QuoteOffsets> {
let end = TextSize::of(literal);
let res = QuoteOffsets {
quotes: [TextRange::new(start, left_quote), TextRange::new(right_quote, end)],
quotes: (TextRange::new(start, left_quote), TextRange::new(right_quote, end)),
contents: TextRange::new(left_quote, right_quote),
};
Some(res)
@ -116,17 +116,17 @@ fn quote_offsets(&self) -> Option<QuoteOffsets> {
let offsets = QuoteOffsets::new(text)?;
let o = self.syntax().text_range().start();
let offsets = QuoteOffsets {
quotes: [offsets.quotes[0] + o, offsets.quotes[1] + o],
quotes: (offsets.quotes.0 + o, offsets.quotes.1 + o),
contents: offsets.contents + o,
};
Some(offsets)
}
fn open_quote_text_range(&self) -> Option<TextRange> {
self.quote_offsets().map(|it| it.quotes[0])
self.quote_offsets().map(|it| it.quotes.0)
}
fn close_quote_text_range(&self) -> Option<TextRange> {
self.quote_offsets().map(|it| it.quotes[1])
self.quote_offsets().map(|it| it.quotes.1)
}
fn text_range_between_quotes(&self) -> Option<TextRange> {

View File

@ -68,7 +68,7 @@ fn generate_nodes(kinds: KindsSrc<'_>, grammar: AstSrc<'_>) -> Result<String> {
.iter()
.map(|node| {
let name = format_ident!("{}", node.name);
let kind = format_ident!("{}", to_upper_snake_case(&name.to_string()));
let kind = format_ident!("{}", to_upper_snake_case(node.name));
let traits = node.traits.iter().map(|trait_name| {
let trait_name = format_ident!("{}", trait_name);
quote!(impl ast::#trait_name for #name {})