diff options
| author | bors <bors@rust-lang.org> | 2018-05-24 07:14:21 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2018-05-24 07:14:21 +0000 |
| commit | 7426f5ccf7b362785a5abeb365674d3da3d4df2e (patch) | |
| tree | 34352c2086a16c38dff8879a915d7d158f909b20 /src/libsyntax_ext/assert.rs | |
| parent | b4463d788bfd30b622a87a0e6f8e9271b9102e50 (diff) | |
| parent | a137d00ce52e9db78bb803d1384fdf3a4c4e63ea (diff) | |
| download | rust-7426f5ccf7b362785a5abeb365674d3da3d4df2e.tar.gz rust-7426f5ccf7b362785a5abeb365674d3da3d4df2e.zip | |
Auto merge of #50971 - alexcrichton:no-stringify, r=petrochenkov
rustc: Correctly pretty-print macro delimiters This commit updates the `Mac_` AST structure to keep track of the delimiters that it originally had for its invocation. This allows us to faithfully pretty-print macro invocations not using parentheses (e.g. `vec![...]`). This in turn helps procedural macros due to #43081. Closes #50840
Diffstat (limited to 'src/libsyntax_ext/assert.rs')
| -rw-r--r-- | src/libsyntax_ext/assert.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libsyntax_ext/assert.rs b/src/libsyntax_ext/assert.rs index 754f04a26e7..fe4d599d824 100644 --- a/src/libsyntax_ext/assert.rs +++ b/src/libsyntax_ext/assert.rs @@ -53,6 +53,7 @@ pub fn expand_assert<'cx>( ), )).into() }, + delim: MacDelimiter::Parenthesis, }; let if_expr = cx.expr_if( sp, |
