diff options
author | David Lattimore <[email protected]> | 2020-06-18 22:43:19 +0100 |
---|---|---|
committer | David Lattimore <[email protected]> | 2020-06-21 13:28:17 +0100 |
commit | bc99e95d7d954701c36142881302bb70e791bec1 (patch) | |
tree | e2cf8c7c18c0b3b6a1f0936db8195f709bc03a5c /crates/ra_syntax/test_data/parser/fragments/item/ok | |
parent | 902a9c6da7939abec74bb4e4be9d1d16dfb15daa (diff) |
Implement APIs for parsing expressions, types, paths, patterns and items
Diffstat (limited to 'crates/ra_syntax/test_data/parser/fragments/item/ok')
-rw-r--r-- | crates/ra_syntax/test_data/parser/fragments/item/ok/0000_fn.rast | 12 | ||||
-rw-r--r-- | crates/ra_syntax/test_data/parser/fragments/item/ok/0000_fn.rs | 1 |
2 files changed, 13 insertions, 0 deletions
diff --git a/crates/ra_syntax/test_data/parser/fragments/item/ok/0000_fn.rast b/crates/ra_syntax/test_data/parser/fragments/item/ok/0000_fn.rast new file mode 100644 index 000000000..f1e78f388 --- /dev/null +++ b/crates/ra_syntax/test_data/parser/fragments/item/ok/0000_fn.rast | |||
@@ -0,0 +1,12 @@ | |||
1 | [email protected] | ||
2 | [email protected] "fn" | ||
3 | [email protected] " " | ||
4 | [email protected] | ||
5 | [email protected] "foo" | ||
6 | [email protected] | ||
7 | [email protected] "(" | ||
8 | [email protected] ")" | ||
9 | [email protected] " " | ||
10 | [email protected] | ||
11 | [email protected] "{" | ||
12 | [email protected] "}" | ||
diff --git a/crates/ra_syntax/test_data/parser/fragments/item/ok/0000_fn.rs b/crates/ra_syntax/test_data/parser/fragments/item/ok/0000_fn.rs new file mode 100644 index 000000000..8f3b7ef11 --- /dev/null +++ b/crates/ra_syntax/test_data/parser/fragments/item/ok/0000_fn.rs | |||
@@ -0,0 +1 @@ | |||
fn foo() {} | |||