// 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 XmlIdentifier. /// public class XmlIdentifier : AstNode { public static readonly new XmlIdentifier Null = new NullXmlIdentifier(); class NullXmlIdentifier : XmlIdentifier { public override bool IsNull { get { return true; } } public override S AcceptVisitor (IAstVisitor visitor, T data) { return default(S); } protected internal override bool DoMatch(AstNode other, PatternMatching.Match match) { return other == null || other.IsNull; } } public string Name { get; set; } TextLocation startLocation; public override TextLocation StartLocation { get { return startLocation; } } TextLocation endLocation; public override TextLocation EndLocation { get { return endLocation; } } private XmlIdentifier() { this.Name = string.Empty; } public XmlIdentifier(string name, TextLocation startLocation, TextLocation endLocation) { this.Name = name; this.startLocation = startLocation; this.endLocation = endLocation; } protected internal override bool DoMatch(AstNode other, ICSharpCode.NRefactory.PatternMatching.Match match) { var ident = other as XmlIdentifier; return ident != null && MatchStringXml(Name, ident.Name) && ident.startLocation == startLocation && ident.endLocation == endLocation; } public override S AcceptVisitor(IAstVisitor visitor, T data) { return visitor.VisitXmlIdentifier(this, data); } } }