mirror of https://github.com/icsharpcode/ILSpy.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
1.5 KiB
44 lines
1.5 KiB
// Copyright (c) AlphaSierraPapa for the SharpDevelop Team (for details please see \doc\copyright.txt) |
|
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt) |
|
|
|
using System; |
|
using System.Collections.Generic; |
|
using System.Linq; |
|
|
|
namespace ICSharpCode.NRefactory.VB.Ast |
|
{ |
|
public class EnumDeclaration : AttributedNode |
|
{ |
|
public readonly static Role<EnumMemberDeclaration> MemberRole = new Role<EnumMemberDeclaration>("Member"); |
|
public readonly static Role<AstType> UnderlyingTypeRole = new Role<AstType>("UnderlyingType", AstType.Null); |
|
|
|
public Identifier Name { |
|
get { return GetChildByRole(Roles.Identifier); } |
|
set { SetChildByRole(Roles.Identifier, value); } |
|
} |
|
|
|
public AstType UnderlyingType { |
|
get { return GetChildByRole(UnderlyingTypeRole); } |
|
set { SetChildByRole(UnderlyingTypeRole, value); } |
|
} |
|
|
|
public AstNodeCollection<EnumMemberDeclaration> Members { |
|
get { return GetChildrenByRole(MemberRole); } |
|
} |
|
|
|
protected internal override bool DoMatch(AstNode other, ICSharpCode.NRefactory.PatternMatching.Match match) |
|
{ |
|
var decl = other as EnumDeclaration; |
|
return decl != null && |
|
MatchAttributesAndModifiers(decl, match) && |
|
Name.DoMatch(decl.Name, match) && |
|
UnderlyingType.DoMatch(decl.UnderlyingType, match) && |
|
Members.DoMatch(decl.Members, match); |
|
} |
|
|
|
public override S AcceptVisitor<T, S>(IAstVisitor<T, S> visitor, T data) |
|
{ |
|
return visitor.VisitEnumDeclaration(this, data); |
|
} |
|
} |
|
}
|
|
|