diff options
| author | John Clements <clements@racket-lang.org> | 2014-07-03 14:38:59 -0700 |
|---|---|---|
| committer | John Clements <clements@racket-lang.org> | 2014-07-04 13:20:06 -0700 |
| commit | aa91ef0cf814a35037bc562fa37c51549fcf2984 (patch) | |
| tree | 9eaec0dff2ffc7a3756934c1997a4a1210cf6643 /src/libsyntax/parse | |
| parent | b8cd7f7c6df3581df92c2dc51ca23770f468de40 (diff) | |
| download | rust-aa91ef0cf814a35037bc562fa37c51549fcf2984.tar.gz rust-aa91ef0cf814a35037bc562fa37c51549fcf2984.zip | |
new_mark -> apply_mark, new_rename -> apply_rename
Diffstat (limited to 'src/libsyntax/parse')
| -rw-r--r-- | src/libsyntax/parse/token.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsyntax/parse/token.rs b/src/libsyntax/parse/token.rs index a93e8270d98..dcf37e37ff0 100644 --- a/src/libsyntax/parse/token.rs +++ b/src/libsyntax/parse/token.rs @@ -765,7 +765,7 @@ mod test { use ext::mtwt; fn mark_ident(id : ast::Ident, m : ast::Mrk) -> ast::Ident { - ast::Ident{name:id.name,ctxt:mtwt::new_mark(m,id.ctxt)} + ast::Ident{name:id.name,ctxt:mtwt::apply_mark(m,id.ctxt)} } #[test] fn mtwt_token_eq_test() { |
