Fixing method call issue in parser.

This commit is contained in:
Eric Holk 2012-05-24 15:19:10 -07:00
parent 8b12892ca2
commit 433e4ca5f1

View file

@ -1676,11 +1676,9 @@ class parser {
let ident = self.parse_ident();
if self.eat(token::COLON) {
while self.token != token::COMMA && self.token != token::GT {
if self.eat_keyword(self, "send") { bounds += [bound_send]; }
else if self.eat_keyword(self, "copy")
{ bounds += [bound_copy]; }
else if self.eat_keyword(self, "const")
{ bounds += [bound_const]; }
if self.eat_keyword("send") { bounds += [bound_send]; }
else if self.eat_keyword("copy") { bounds += [bound_copy]; }
else if self.eat_keyword("const") { bounds += [bound_const]; }
else { bounds += [bound_iface(self.parse_ty(false))]; }
}
}