Renamed syntax::ast::ident -> Ident

This commit is contained in:
Marvin Löbel 2013-09-02 02:50:59 +02:00
parent 1f4aba8cbf
commit 857f867320
56 changed files with 512 additions and 510 deletions

View file

@ -54,14 +54,14 @@ pub fn is_cmd(cmd: &str) -> bool {
struct ListenerFn {
cmds: ~[~str],
span: codemap::Span,
path: ~[ast::ident]
path: ~[ast::Ident]
}
struct ReadyCtx {
sess: session::Session,
crate: @ast::Crate,
ext_cx: @ExtCtxt,
path: ~[ast::ident],
path: ~[ast::Ident],
fns: ~[ListenerFn]
}