diff options
| author | bors <bors@rust-lang.org> | 2019-05-18 02:10:21 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2019-05-18 02:10:21 +0000 |
| commit | 548add7f61bfcbe3bea3f5ccefb53c84da8fefe4 (patch) | |
| tree | c033c6bf9f7e7646613ea8ce0125c511fd2483c9 /src/libsyntax_pos | |
| parent | a614cee22e8d79766c6a6d0f63c28f12eaec63f4 (diff) | |
| parent | 4ab5fe3f97a260f2cb2b3c06a9a841a05a659e57 (diff) | |
| download | rust-548add7f61bfcbe3bea3f5ccefb53c84da8fefe4.tar.gz rust-548add7f61bfcbe3bea3f5ccefb53c84da8fefe4.zip | |
Auto merge of #60910 - nnethercote:avoid-some-unnecessary-interning, r=petrochenkov
Avoid some unnecessary interning r? @petrochenkov
Diffstat (limited to 'src/libsyntax_pos')
| -rw-r--r-- | src/libsyntax_pos/symbol.rs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/libsyntax_pos/symbol.rs b/src/libsyntax_pos/symbol.rs index c2a18c9df83..01b126f48b3 100644 --- a/src/libsyntax_pos/symbol.rs +++ b/src/libsyntax_pos/symbol.rs @@ -214,6 +214,13 @@ symbols! { document_private_items, dotdoteq_in_patterns, dotdot_in_tuple_patterns, + double_braced_crate: "{{crate}}", + double_braced_impl: "{{impl}}", + double_braced_misc: "{{misc}}", + double_braced_closure: "{{closure}}", + double_braced_constructor: "{{constructor}}", + double_braced_constant: "{{constant}}", + double_braced_opaque: "{{opaque}}", dropck_eyepatch, dropck_parametricity, drop_types_in_const, @@ -336,6 +343,7 @@ symbols! { match_default_bindings, may_dangle, message, + meta, min_const_fn, min_const_unsafe_fn, mips_target_feature, @@ -385,6 +393,7 @@ symbols! { option, Option, opt_out_copy, + Output, overlapping_marker_traits, packed, panic_handler, @@ -530,6 +539,7 @@ symbols! { static_nobundle, static_recursion, std, + str, stmt_expr_attributes, stop_after_dataflow, struct_field_attributes, |
