mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-10-02 22:54:58 +00:00
Rename ra_parser -> parser
This commit is contained in:
parent
6dafc13f5f
commit
50a02eb359
47 changed files with 65 additions and 65 deletions
|
@ -1,6 +1,6 @@
|
|||
use std::fmt::Write;
|
||||
|
||||
use ra_parser::FragmentKind;
|
||||
use ::parser::FragmentKind;
|
||||
use ra_syntax::{ast, AstNode, NodeOrToken, SyntaxKind::IDENT, SyntaxNode, WalkEvent, T};
|
||||
use test_utils::assert_eq_text;
|
||||
|
||||
|
@ -9,9 +9,10 @@ use super::*;
|
|||
mod rule_parsing {
|
||||
use ra_syntax::{ast, AstNode};
|
||||
|
||||
use super::*;
|
||||
use crate::ast_to_token_tree;
|
||||
|
||||
use super::*;
|
||||
|
||||
#[test]
|
||||
fn test_valid_arms() {
|
||||
fn check(macro_body: &str) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue