diff options
| author | Graydon Hoare <graydon@mozilla.com> | 2012-07-27 19:14:46 -0700 |
|---|---|---|
| committer | Graydon Hoare <graydon@mozilla.com> | 2012-07-27 19:14:46 -0700 |
| commit | e11e90f31cedabec1e84b505bbf64103c3421574 (patch) | |
| tree | 692e73ed8b212c77a3da24cb4366a574fcb31fa0 /src/libsyntax/parse/common.rs | |
| parent | eabd233dcd208bc21ca0f8eea02d87d56e5314eb (diff) | |
| download | rust-e11e90f31cedabec1e84b505bbf64103c3421574.tar.gz rust-e11e90f31cedabec1e84b505bbf64103c3421574.zip | |
Make macro-system type and constructor names more uniform; more comments.
Diffstat (limited to 'src/libsyntax/parse/common.rs')
| -rw-r--r-- | src/libsyntax/parse/common.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsyntax/parse/common.rs b/src/libsyntax/parse/common.rs index e35b762f972..7898cd64890 100644 --- a/src/libsyntax/parse/common.rs +++ b/src/libsyntax/parse/common.rs @@ -86,7 +86,7 @@ impl parser_common of parser_common for parser { fn parse_ident() -> ast::ident { alt copy self.token { token::IDENT(i, _) { self.bump(); ret self.get_str(i); } - token::ACTUALLY(token::w_ident(*)) { self.bug( + token::INTERPOLATED(token::nt_ident(*)) { self.bug( ~"ident interpolation not converted to real token"); } _ { self.fatal(~"expected ident, found `" + token_to_str(self.reader, self.token) |
