Rename ra_parser -> parser

This commit is contained in:
Aleksey Kladov 2020-08-12 17:06:49 +02:00
parent 6dafc13f5f
commit 50a02eb359
47 changed files with 65 additions and 65 deletions

View file

@ -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) {