Remove stale comment

This commit is contained in:
Greg Shuflin 2021-11-21 02:31:45 -08:00
parent 9adae9c262
commit bf55e6e82a
1 changed files with 0 additions and 1 deletions

View File

@ -282,7 +282,6 @@ fn func_decl(input: Span) -> ParseResult<Declaration> {
map(pair(func_signature, block), |(sig, decl)| Declaration::FuncDecl(sig, decl))(input)
}
//TODO handle operators
fn func_signature(input: Span) -> ParseResult<Signature> {
let normal_fn = context("ordinary-fn", tuple((identifier, formal_params, opt(type_anno))));
let operator_fn = context(