aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_syntax/test_data/parser/inline/ok/0067_crate_path.rast
diff options
context:
space:
mode:
authorveetaha <[email protected]>2020-04-06 12:04:26 +0100
committerveetaha <[email protected]>2020-04-06 12:04:26 +0100
commitda091b130347c4d6d8c75acb8e65c30a17dc1f5e (patch)
treef97939669a700ed80a64086b1f0aefd530bc9bea /crates/ra_syntax/test_data/parser/inline/ok/0067_crate_path.rast
parentec3fb1cdb4f1808a11fb6057550ed721c2aa36a9 (diff)
Migrate tests .txt -> .rast
The sytax tree output files now use .rast extension (rust-analyzer syntax tree or rust abstract syntax tree (whatever)). This format has a editors/code/ra_syntax_tree.tmGrammar.json declaration that supplies nice syntax highlighting for .rast files.
Diffstat (limited to 'crates/ra_syntax/test_data/parser/inline/ok/0067_crate_path.rast')
-rw-r--r--crates/ra_syntax/test_data/parser/inline/ok/0067_crate_path.rast15
1 files changed, 15 insertions, 0 deletions
diff --git a/crates/ra_syntax/test_data/parser/inline/ok/0067_crate_path.rast b/crates/ra_syntax/test_data/parser/inline/ok/0067_crate_path.rast
new file mode 100644
index 000000000..f2ba4e909
--- /dev/null
+++ b/crates/ra_syntax/test_data/parser/inline/ok/0067_crate_path.rast
@@ -0,0 +1,15 @@
1SOURCE_FILE@[0; 16)
2 USE_ITEM@[0; 15)
3 USE_KW@[0; 3) "use"
4 WHITESPACE@[3; 4) " "
5 USE_TREE@[4; 14)
6 PATH@[4; 14)
7 PATH@[4; 9)
8 PATH_SEGMENT@[4; 9)
9 CRATE_KW@[4; 9) "crate"
10 COLONCOLON@[9; 11) "::"
11 PATH_SEGMENT@[11; 14)
12 NAME_REF@[11; 14)
13 IDENT@[11; 14) "foo"
14 SEMI@[14; 15) ";"
15 WHITESPACE@[15; 16) "\n"