librustc: Remove all legacy pattern bindings from libsyntax and librustc. rs=refactoring
This commit is contained in:
parent
94be145169
commit
56ece46f7d
87 changed files with 937 additions and 923 deletions
|
@ -190,9 +190,9 @@ fn to_str(in: @ident_interner, t: Token) -> ~str {
|
|||
/* Other */
|
||||
DOC_COMMENT(s) => *in.get(s),
|
||||
EOF => ~"<eof>",
|
||||
INTERPOLATED(nt) => {
|
||||
INTERPOLATED(ref nt) => {
|
||||
~"an interpolated " +
|
||||
match nt {
|
||||
match (*nt) {
|
||||
nt_item(*) => ~"item",
|
||||
nt_block(*) => ~"block",
|
||||
nt_stmt(*) => ~"statement",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue