diff --git a/ICSharpCode.NRefactory/CSharp/Ast/NotImplementedAstVisitor.cs b/ICSharpCode.NRefactory/CSharp/Ast/NotImplementedAstVisitor.cs index 92ac9a64bd..7058701426 100644 --- a/ICSharpCode.NRefactory/CSharp/Ast/NotImplementedAstVisitor.cs +++ b/ICSharpCode.NRefactory/CSharp/Ast/NotImplementedAstVisitor.cs @@ -526,5 +526,25 @@ namespace ICSharpCode.NRefactory.CSharp { throw new NotImplementedException(); } + + public virtual S VisitEmptyExpression(EmptyExpression emptyExpression, T data) + { + throw new NotImplementedException(); + } + + public virtual S VisitExternAliasDeclaration(ExternAliasDeclaration externAliasDeclaration, T data) + { + throw new NotImplementedException(); + } + + public virtual S VisitFixedFieldDeclaration(FixedFieldDeclaration fixedFieldDeclaration, T data) + { + throw new NotImplementedException(); + } + + public virtual S VisitFixedVariableInitializer(FixedVariableInitializer fixedVariableInitializer, T data) + { + throw new NotImplementedException(); + } } }