Skip to content

Commit 31a3d27

Browse files
committed
---
yaml --- r: 10547 b: refs/heads/snap-stage3 c: 5c9f414 h: refs/heads/master i: 10545: baeb525 10543: 8ffa087 v: v3
1 parent 056dec8 commit 31a3d27

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
refs/heads/master: 2898dcc5d97da9427ac367542382b6239d9c0bbf
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4-
refs/heads/snap-stage3: 2b70cbc992fbeca0707a2200f730ea32af7e162e
4+
refs/heads/snap-stage3: 5c9f414a85ae8f3448a27f56274afc861974cffe
55
refs/heads/try: 2898dcc5d97da9427ac367542382b6239d9c0bbf
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105

branches/snap-stage3/src/libsyntax/ast_util.rs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -454,8 +454,9 @@ fn id_visitor(vfn: fn@(node_id)) -> visit::vt<()> {
454454

455455
visit_expr: fn@(e: @expr) {
456456
vfn(e.id);
457-
alt e.node {
458-
expr_unary(*) | expr_binary(*) | expr_index(*) {
457+
alt e.node {
458+
expr_index(*) | expr_assign_op(*) |
459+
expr_unary(*) | expr_binary(*) {
459460
vfn(ast_util::op_expr_callee_id(e));
460461
}
461462
_ { /* fallthrough */ }

0 commit comments

Comments
 (0)