Fill out variants to be reduced

This commit is contained in:
greg 2018-07-18 16:01:59 -07:00
parent 35f5a9623a
commit 75bf4b5697
1 changed files with 3 additions and 0 deletions

View File

@ -157,6 +157,9 @@ impl Declaration {
}
},
TypeDecl { .. } => Stmt::Noop,
TypeAlias(_, _) => Stmt::Noop,
Interface { .. } => Stmt::Noop,
Impl { .. } => Stmt::Expr(Expr::UnimplementedSigilValue),
_ => Stmt::Expr(Expr::UnimplementedSigilValue)
}
}