File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 1
1
---
2
- refs/heads/master: 0743cec0239fb12bc95f2c121253e6d798cbe2c7
2
+ refs/heads/master: e910e601a6857143d90dd23543577f1c318fdf54
3
3
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4
4
refs/heads/snap-stage3: 2f46b763da2c098913884f101b6d71d69af41b49
5
5
refs/heads/try: 3d5418789064fdb463e872a4e651af1c628a3650
Original file line number Diff line number Diff line change @@ -345,11 +345,11 @@ fn load_crate(filename: &Path) -> Option<Crate> {
345
345
}
346
346
}
347
347
348
- type env = @ {
348
+ struct Env {
349
349
mut deps: ~[~str]
350
- };
350
+ }
351
351
352
- fn goto_view_item(ps: syntax::parse::parse_sess, e: env ,
352
+ fn goto_view_item(ps: syntax::parse::parse_sess, e: @Env ,
353
353
i: @ast::view_item) {
354
354
match i.node {
355
355
ast::view_item_use(ident, metas, _) => {
@@ -396,10 +396,10 @@ fn load_crate(filename: &Path) -> Option<Crate> {
396
396
_ => ()
397
397
}
398
398
}
399
- fn goto_item(_e: env , _i: @ast::item) {
399
+ fn goto_item(_e: @Env , _i: @ast::item) {
400
400
}
401
401
402
- let e = @{
402
+ let e = @Env {
403
403
mut deps: ~[]
404
404
};
405
405
let v = visit::mk_simple_visitor(@visit::SimpleVisitor {
You can’t perform that action at this time.
0 commit comments