Skip to content

Commit

Permalink
minore: improve consistency
Browse files Browse the repository at this point in the history
  • Loading branch information
matklad committed Sep 25, 2021
1 parent f27cda6 commit 929fca5
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions crates/syntax/src/tests/sourcegen_ast.rs
Expand Up @@ -19,22 +19,22 @@ use crate::tests::ast_src::{

#[test]
fn sourcegen_ast() {
let grammar = rust_grammar();
let ast = lower(&grammar);

let syntax_kinds = generate_syntax_kinds(KINDS_SRC);
let syntax_kinds_file =
sourcegen::project_root().join("crates/parser/src/syntax_kind/generated.rs");
let syntax_kinds = generate_syntax_kinds(KINDS_SRC);
sourcegen::ensure_file_contents(syntax_kinds_file.as_path(), &syntax_kinds);

let grammar = rust_grammar();
let ast = lower(&grammar);

let ast_tokens = generate_tokens(&ast);
let ast_tokens_file =
sourcegen::project_root().join("crates/syntax/src/ast/generated/tokens.rs");
let contents = generate_tokens(&ast);
sourcegen::ensure_file_contents(ast_tokens_file.as_path(), &contents);
sourcegen::ensure_file_contents(ast_tokens_file.as_path(), &ast_tokens);

let ast_nodes = generate_nodes(KINDS_SRC, &ast);
let ast_nodes_file = sourcegen::project_root().join("crates/syntax/src/ast/generated/nodes.rs");
let contents = generate_nodes(KINDS_SRC, &ast);
sourcegen::ensure_file_contents(ast_nodes_file.as_path(), &contents);
sourcegen::ensure_file_contents(ast_nodes_file.as_path(), &ast_nodes);
}

fn generate_tokens(grammar: &AstSrc) -> String {
Expand Down

0 comments on commit 929fca5

Please sign in to comment.