Kill extraneous lines

This commit is contained in:
greg 2017-09-11 23:15:16 -07:00
parent 0755d42112
commit deab74b992
1 changed files with 0 additions and 1 deletions

View File

@ -389,7 +389,6 @@ impl Parser {
}
fn statement(&mut self) -> ParseResult<Statement> {
use self::Kw::*;
//TODO handle error recovery here
match self.peek() {
Keyword(Type) => self.type_declaration().map(|decl| { Statement::Declaration(decl) }),