diff options
author | Edwin Cheng <[email protected]> | 2020-03-02 06:05:15 +0000 |
---|---|---|
committer | Edwin Cheng <[email protected]> | 2020-03-03 17:21:14 +0000 |
commit | 1465cc0c4feb52958d3281f066a663e0a52ed67e (patch) | |
tree | 933d006064847260d5ec0d816fef5a381e674f90 /crates/ra_parser/src | |
parent | 0d554540730925c074693b43503e65476eadbd65 (diff) |
Implement concat macro
Diffstat (limited to 'crates/ra_parser/src')
-rw-r--r-- | crates/ra_parser/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_parser/src/lib.rs b/crates/ra_parser/src/lib.rs index 81055746b..652492c1e 100644 --- a/crates/ra_parser/src/lib.rs +++ b/crates/ra_parser/src/lib.rs | |||
@@ -83,7 +83,7 @@ pub fn parse(token_source: &mut dyn TokenSource, tree_sink: &mut dyn TreeSink) { | |||
83 | parse_from_tokens(token_source, tree_sink, grammar::root); | 83 | parse_from_tokens(token_source, tree_sink, grammar::root); |
84 | } | 84 | } |
85 | 85 | ||
86 | #[derive(Clone, Copy)] | 86 | #[derive(Debug, Clone, Copy, Eq, PartialEq, Hash)] |
87 | pub enum FragmentKind { | 87 | pub enum FragmentKind { |
88 | Path, | 88 | Path, |
89 | Expr, | 89 | Expr, |