// Copyright (c) AlphaSierraPapa for the SharpDevelop Team (for details please see \doc\copyright.txt)
// This code is distributed under MIT X11 license (for details please see \doc\license.txt)
using System;
namespace ICSharpCode.NRefactory.VB.Ast
{
///
/// Description of SimpleNameExpression.
///
public class SimpleNameExpression : Expression
{
public Identifier Identifier { get; set; }
public AstNodeCollection TypeArguments {
get { return GetChildrenByRole(Roles.TypeArgument); }
}
protected internal override bool DoMatch(AstNode other, ICSharpCode.NRefactory.PatternMatching.Match match)
{
var node = other as SimpleNameExpression;
return node != null
&& Identifier.DoMatch(node.Identifier, match)
&& TypeArguments.DoMatch(node.TypeArguments, match);
}
public override S AcceptVisitor(IAstVisitor visitor, T data)
{
return visitor.VisitSimpleNameExpression(this, data);
}
}
}