Browse Source

Implement new methods in NotImplementedAstVisitor.

newNRvisualizers
Eusebiu Marcu 15 years ago
parent
commit
af56cbea22
  1. 20
      ICSharpCode.NRefactory/CSharp/Ast/NotImplementedAstVisitor.cs

20
ICSharpCode.NRefactory/CSharp/Ast/NotImplementedAstVisitor.cs

@ -526,5 +526,25 @@ namespace ICSharpCode.NRefactory.CSharp
{ {
throw new NotImplementedException(); 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();
}
} }
} }

Loading…
Cancel
Save