diff options
| author | Brian Anderson <banderson@mozilla.com> | 2012-11-26 20:05:19 -0800 |
|---|---|---|
| committer | Brian Anderson <banderson@mozilla.com> | 2012-11-28 21:50:09 -0800 |
| commit | 5a282ec26fc7587b94e0d86a003abcf1cfd214c1 (patch) | |
| tree | 61bb48bf508ab3f8be705ec907577992b686076d /src/libsyntax/parse | |
| parent | 4a2a375fbfb02abdf51e598660c44dda6032d282 (diff) | |
| download | rust-5a282ec26fc7587b94e0d86a003abcf1cfd214c1.tar.gz rust-5a282ec26fc7587b94e0d86a003abcf1cfd214c1.zip | |
core: Convert some records to structs
Diffstat (limited to 'src/libsyntax/parse')
| -rw-r--r-- | src/libsyntax/parse/parser.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libsyntax/parse/parser.rs b/src/libsyntax/parse/parser.rs index d95f4fb3f75..4ddd7be5272 100644 --- a/src/libsyntax/parse/parser.rs +++ b/src/libsyntax/parse/parser.rs @@ -1773,6 +1773,7 @@ impl Parser { fields.push(self.parse_field(token::COLON)); } self.expect(token::RBRACE); + //self.warn(~"REC"); return expr_rec(fields, base); } |
