Remove this TODO; default args are parsed

This commit is contained in:
greg 2019-10-21 10:53:17 -07:00
parent 2f467702e3
commit bb87a87848
1 changed files with 0 additions and 1 deletions

View File

@ -482,7 +482,6 @@ impl Parser {
Ok(delimited!(self, LParen, formal_param, Comma, RParen))
}
//TODO needs to support default values
#[recursive_descent_method]
fn formal_param(&mut self) -> ParseResult<FormalParam> {
let name = self.identifier()?;