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) } }