diff options
| author | bors <bors@rust-lang.org> | 2013-03-06 17:48:39 -0800 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2013-03-06 17:48:39 -0800 |
| commit | b269ce278228918b95f803e1951fa60e3ef48a0a (patch) | |
| tree | 56effed36fd1ba26ae19bcd5f889dcf6582d6466 /src/libsyntax/ext | |
| parent | 95c07479dd9c7a0438a749638987deb15977cd92 (diff) | |
| parent | 8bb537e68daf2a2794bacfe4bd39ac7fad6314fa (diff) | |
| download | rust-b269ce278228918b95f803e1951fa60e3ef48a0a.tar.gz rust-b269ce278228918b95f803e1951fa60e3ef48a0a.zip | |
auto merge of #5255 : jbclements/rust/remove-parse-value-ident, r=graydon
After the removal of the "restricted keyword" feature in 0c82c00dc4f49aeb9b57c92c9a40ae35d8a1ee29 , there's no longer any difference between parse_ident() and parse_value_ident(), and therefore no difference between parse parse_path_without_tps() and parse_value_path(). I've collapsed all of these, removing the redundant functions and eliminating the need for two higher-order arguments.
Diffstat (limited to 'src/libsyntax/ext')
| -rw-r--r-- | src/libsyntax/ext/tt/transcribe.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libsyntax/ext/tt/transcribe.rs b/src/libsyntax/ext/tt/transcribe.rs index 116ecc37d2e..589b7693f9e 100644 --- a/src/libsyntax/ext/tt/transcribe.rs +++ b/src/libsyntax/ext/tt/transcribe.rs @@ -36,6 +36,7 @@ struct TtFrame { pub struct TtReader { sp_diag: span_handler, interner: @ident_interner, + // the unzipped tree: cur: @mut TtFrame, /* for MBE-style macro transcription */ interpolations: std::oldmap::HashMap<ident, @named_match>, |
