From 75bf4b5697541b155aaec6e53f7d95d7e0934fcf Mon Sep 17 00:00:00 2001 From: greg Date: Wed, 18 Jul 2018 16:01:59 -0700 Subject: [PATCH] Fill out variants to be reduced --- schala-lang/src/reduced_ast.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/schala-lang/src/reduced_ast.rs b/schala-lang/src/reduced_ast.rs index 5e970b8..ab4af66 100644 --- a/schala-lang/src/reduced_ast.rs +++ b/schala-lang/src/reduced_ast.rs @@ -157,6 +157,9 @@ impl Declaration { } }, TypeDecl { .. } => Stmt::Noop, + TypeAlias(_, _) => Stmt::Noop, + Interface { .. } => Stmt::Noop, + Impl { .. } => Stmt::Expr(Expr::UnimplementedSigilValue), _ => Stmt::Expr(Expr::UnimplementedSigilValue) } }