diff options
| author | Jeremy Fitzhardinge <jeremy@goop.org> | 2018-02-18 15:05:24 -0800 |
|---|---|---|
| committer | Jeremy Fitzhardinge <jsgf@fb.com> | 2018-02-22 15:13:21 -0800 |
| commit | 56a68285332000c858e9aeba7d66a4ec66ebff91 (patch) | |
| tree | 2eefbd5dddbb4458f91f1ca2eddb9eccb6850928 /src/libsyntax_pos | |
| parent | b1f8e6fb06d7362eeb2065347a7db94e76b1cb2f (diff) | |
| download | rust-56a68285332000c858e9aeba7d66a4ec66ebff91.tar.gz rust-56a68285332000c858e9aeba7d66a4ec66ebff91.zip | |
Implement --remap-path-prefix
Remove experimental -Zremap-path-prefix-from/to, and replace it with the stabilized --remap-path-prefix=from=to variant. This is an implementation for issue of #41555.
Diffstat (limited to 'src/libsyntax_pos')
| -rw-r--r-- | src/libsyntax_pos/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsyntax_pos/lib.rs b/src/libsyntax_pos/lib.rs index 294506625bc..e3f1417456c 100644 --- a/src/libsyntax_pos/lib.rs +++ b/src/libsyntax_pos/lib.rs @@ -664,7 +664,7 @@ pub struct FileMap { /// originate from files has names between angle brackets by convention, /// e.g. `<anon>` pub name: FileName, - /// True if the `name` field above has been modified by -Zremap-path-prefix + /// True if the `name` field above has been modified by --remap-path-prefix pub name_was_remapped: bool, /// The unmapped path of the file that the source came from. /// Set to `None` if the FileMap was imported from an external crate. |
