diff options
| author | Dan Robertson <dan@dlrobertson.com> | 2019-07-14 01:05:52 +0000 |
|---|---|---|
| committer | Dan Robertson <dan@dlrobertson.com> | 2019-08-17 15:55:40 +0000 |
| commit | 1870537f2701e5aa47080a879b63a4d6b391553b (patch) | |
| tree | c8d3e59938a5dc0aefca4de9ee95ab753099cd81 /src/libsyntax_pos | |
| parent | 1713ac4bf5c992f40d667c929c1e1ce9c3a51204 (diff) | |
| download | rust-1870537f2701e5aa47080a879b63a4d6b391553b.tar.gz rust-1870537f2701e5aa47080a879b63a4d6b391553b.zip | |
initial implementation of or-pattern parsing
Initial implementation of parsing or-patterns e.g., `Some(Foo | Bar)`. This is a partial implementation of RFC 2535.
Diffstat (limited to 'src/libsyntax_pos')
| -rw-r--r-- | src/libsyntax_pos/symbol.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libsyntax_pos/symbol.rs b/src/libsyntax_pos/symbol.rs index 27fc66d3b09..361e01781b1 100644 --- a/src/libsyntax_pos/symbol.rs +++ b/src/libsyntax_pos/symbol.rs @@ -469,6 +469,7 @@ symbols! { option_env, opt_out_copy, or, + or_patterns, Ord, Ordering, Output, |
