commit | 2a54cfb5558714876566ebee9807d0f63456dd0f | [log] [tgz] |
---|---|---|
author | David Tolnay <dtolnay@gmail.com> | Sun Aug 26 18:54:19 2018 -0400 |
committer | David Tolnay <dtolnay@gmail.com> | Sun Aug 26 18:54:19 2018 -0400 |
tree | 9f8b11878e02c57ca6c8298cdbc5dc570943e40b | |
parent | a7d69fc74fe0a5efa68766ec69772fa06b81e090 [diff] [blame] |
Parse operators
diff --git a/src/expr.rs b/src/expr.rs index bb8b469..1f4e1bd 100644 --- a/src/expr.rs +++ b/src/expr.rs
@@ -1152,7 +1152,7 @@ ) | do_parse!( - op: call!(BinOp::parse_assign_op) >> + op: shim!(BinOp::parse_assign_op) >> // Recurse into self to parse right-associative operator. rhs: call!(assign_expr, allow_struct, true) >> ({