Fix missing bump in RECV lexer case.

This commit is contained in:
Michael Sullivan 2011-05-27 11:45:22 -07:00
parent 9c79200a7f
commit 2119e3b5b9

View File

@ -681,6 +681,7 @@ fn binop(&reader rdr, token::binop op) -> token::token {
ret token::OROR;
}
case ('>') {
rdr.bump();
rdr.bump();
ret token::RECV;
}