diff options
| author | Brian Anderson <banderson@mozilla.com> | 2012-06-24 17:46:12 -0700 |
|---|---|---|
| committer | Brian Anderson <banderson@mozilla.com> | 2012-06-24 17:46:12 -0700 |
| commit | c01f5ef034368f035270f083ad9ba0fe6aa27a1c (patch) | |
| tree | 90ce3de85688100b6c6083a887f55c8378e27599 /src/libsyntax/parse | |
| parent | 20b5ca3d2ffaf7b26a0f13c5490d06a889455f07 (diff) | |
| download | rust-c01f5ef034368f035270f083ad9ba0fe6aa27a1c.tar.gz rust-c01f5ef034368f035270f083ad9ba0fe6aa27a1c.zip | |
Long lines
Diffstat (limited to 'src/libsyntax/parse')
| -rw-r--r-- | src/libsyntax/parse/parser.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/libsyntax/parse/parser.rs b/src/libsyntax/parse/parser.rs index ddd44b1abe6..b05db8cfa6d 100644 --- a/src/libsyntax/parse/parser.rs +++ b/src/libsyntax/parse/parser.rs @@ -1283,7 +1283,8 @@ class parser { } } - fn parse_sugary_call_expr(keyword: str, ctor: fn(+@expr) -> expr_) -> @expr { + fn parse_sugary_call_expr(keyword: str, + ctor: fn(+@expr) -> expr_) -> @expr { let lo = self.last_span; let call = self.parse_expr_res(RESTRICT_STMT_EXPR); alt call.node { |
