From af56cbea2227f23b0fc9f68eed21a58320b79a2b Mon Sep 17 00:00:00 2001 From: Eusebiu Marcu Date: Sun, 3 Apr 2011 00:47:23 +0300 Subject: [PATCH] Implement new methods in NotImplementedAstVisitor. --- .../CSharp/Ast/NotImplementedAstVisitor.cs | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) 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(); + } } }