diff options
| author | Vadim Petrochenkov <vadim.petrochenkov@gmail.com> | 2019-07-16 01:42:58 +0300 |
|---|---|---|
| committer | Vadim Petrochenkov <vadim.petrochenkov@gmail.com> | 2019-07-19 12:01:49 +0300 |
| commit | 09703e3843622430276d0b3c672fbc772ce0b862 (patch) | |
| tree | 0dc50e1c9b48fa2d9112783d32d9b15380e9f070 /src/libsyntax/tokenstream.rs | |
| parent | 31e10aec83d68df0f45cf6643cca4e90e9c1fb55 (diff) | |
| download | rust-09703e3843622430276d0b3c672fbc772ce0b862.tar.gz rust-09703e3843622430276d0b3c672fbc772ce0b862.zip | |
Adjust other names after the `Mark` renaming
Diffstat (limited to 'src/libsyntax/tokenstream.rs')
| -rw-r--r-- | src/libsyntax/tokenstream.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libsyntax/tokenstream.rs b/src/libsyntax/tokenstream.rs index 1f05be3a519..88142344d79 100644 --- a/src/libsyntax/tokenstream.rs +++ b/src/libsyntax/tokenstream.rs @@ -545,10 +545,10 @@ impl DelimSpan { self.open.with_hi(self.close.hi()) } - pub fn apply_mark(self, mark: ExpnId) -> Self { + pub fn apply_mark(self, expn_id: ExpnId) -> Self { DelimSpan { - open: self.open.apply_mark(mark), - close: self.close.apply_mark(mark), + open: self.open.apply_mark(expn_id), + close: self.close.apply_mark(expn_id), } } } |
