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/pattern/ok | |
parent | 902a9c6da7939abec74bb4e4be9d1d16dfb15daa (diff) |
Implement APIs for parsing expressions, types, paths, patterns and items
Diffstat (limited to 'crates/ra_syntax/test_data/parser/fragments/pattern/ok')
-rw-r--r-- | crates/ra_syntax/test_data/parser/fragments/pattern/ok/0000_enum.rast | 10 | ||||
-rw-r--r-- | crates/ra_syntax/test_data/parser/fragments/pattern/ok/0000_enum.rs | 1 |
2 files changed, 11 insertions, 0 deletions
diff --git a/crates/ra_syntax/test_data/parser/fragments/pattern/ok/0000_enum.rast b/crates/ra_syntax/test_data/parser/fragments/pattern/ok/0000_enum.rast new file mode 100644 index 000000000..15eb7f9c6 --- /dev/null +++ b/crates/ra_syntax/test_data/parser/fragments/pattern/ok/0000_enum.rast | |||
@@ -0,0 +1,10 @@ | |||
1 | [email protected] | ||
2 | [email protected] | ||
3 | [email protected] | ||
4 | [email protected] | ||
5 | [email protected] "Some" | ||
6 | [email protected] "(" | ||
7 | [email protected] | ||
8 | [email protected] | ||
9 | [email protected] "x" | ||
10 | [email protected] ")" | ||
diff --git a/crates/ra_syntax/test_data/parser/fragments/pattern/ok/0000_enum.rs b/crates/ra_syntax/test_data/parser/fragments/pattern/ok/0000_enum.rs new file mode 100644 index 000000000..87114dd78 --- /dev/null +++ b/crates/ra_syntax/test_data/parser/fragments/pattern/ok/0000_enum.rs | |||
@@ -0,0 +1 @@ | |||
Some(x) | |||