mirror of https://github.com/icsharpcode/ILSpy.git
11 changed files with 497 additions and 96 deletions
@ -0,0 +1,49 @@ |
|||||||
|
// 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; |
||||||
|
|
||||||
|
namespace ICSharpCode.NRefactory.VB.Ast |
||||||
|
{ |
||||||
|
/// <summary>
|
||||||
|
/// Get/Set/AddHandler/RemoveHandler/RaiseEvent
|
||||||
|
/// </summary>
|
||||||
|
public class Accessor : AttributedNode |
||||||
|
{ |
||||||
|
public static readonly new Accessor Null = new NullAccessor (); |
||||||
|
sealed class NullAccessor : Accessor |
||||||
|
{ |
||||||
|
public override bool IsNull { |
||||||
|
get { |
||||||
|
return true; |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
public override S AcceptVisitor<T, S> (IAstVisitor<T, S> visitor, T data) |
||||||
|
{ |
||||||
|
return default (S); |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
public BlockStatement Body { |
||||||
|
get { return GetChildByRole (Roles.Body); } |
||||||
|
set { SetChildByRole (Roles.Body, value); } |
||||||
|
} |
||||||
|
|
||||||
|
public AstNodeCollection<ParameterDeclaration> Parameters { |
||||||
|
get { return GetChildrenByRole(Roles.Parameter); } |
||||||
|
} |
||||||
|
|
||||||
|
public override S AcceptVisitor<T, S>(IAstVisitor<T, S> visitor, T data) |
||||||
|
{ |
||||||
|
return visitor.VisitAccessor(this, data); |
||||||
|
} |
||||||
|
|
||||||
|
protected internal override bool DoMatch(AstNode other, PatternMatching.Match match) |
||||||
|
{ |
||||||
|
Accessor o = other as Accessor; |
||||||
|
return o != null && !o.IsNull && this.MatchAttributesAndModifiers(o, match) && |
||||||
|
this.Body.DoMatch(o.Body, match) && Parameters.DoMatch(o.Parameters, match); |
||||||
|
} |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,89 @@ |
|||||||
|
// 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; |
||||||
|
|
||||||
|
namespace ICSharpCode.NRefactory.VB.Ast |
||||||
|
{ |
||||||
|
/// <remarks>
|
||||||
|
/// Attributes? VariableModifier+ VariableDeclarators StatementTerminator
|
||||||
|
/// </remarks>
|
||||||
|
public class FieldDeclaration : MemberDeclaration |
||||||
|
{ |
||||||
|
public AstNodeCollection<VariableDeclarator> Variables { |
||||||
|
get { return GetChildrenByRole(VariableDeclarator.VariableDeclaratorRole); } |
||||||
|
} |
||||||
|
|
||||||
|
protected internal override bool DoMatch(AstNode other, ICSharpCode.NRefactory.PatternMatching.Match match) |
||||||
|
{ |
||||||
|
throw new NotImplementedException(); |
||||||
|
} |
||||||
|
|
||||||
|
public override S AcceptVisitor<T, S>(IAstVisitor<T, S> visitor, T data) |
||||||
|
{ |
||||||
|
return visitor.VisitFieldDeclaration(this, data); |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
/// <remarks>
|
||||||
|
/// VariableIdentifiers As ObjectCreationExpression <br />
|
||||||
|
/// VariableIdentifiers ( As TypeName )? ( Equals Expression )?
|
||||||
|
/// </remarks>
|
||||||
|
public class VariableDeclarator : AstNode |
||||||
|
{ |
||||||
|
public static readonly Role<VariableDeclarator> VariableDeclaratorRole = new Role<VariableDeclarator>("VariableDeclarator"); |
||||||
|
|
||||||
|
public AstNodeCollection<VariableIdentifier> Identifiers { |
||||||
|
get { return GetChildrenByRole(VariableIdentifier.VariableIdentifierRole); } |
||||||
|
} |
||||||
|
|
||||||
|
public AstType Type { |
||||||
|
get { return GetChildByRole(Roles.Type); } |
||||||
|
set { SetChildByRole(Roles.Type, value); } |
||||||
|
} |
||||||
|
|
||||||
|
public Expression Initializer { |
||||||
|
get { return GetChildByRole(Roles.Expression); } |
||||||
|
set { SetChildByRole(Roles.Expression, value); } |
||||||
|
} |
||||||
|
|
||||||
|
protected internal override bool DoMatch(AstNode other, ICSharpCode.NRefactory.PatternMatching.Match match) |
||||||
|
{ |
||||||
|
throw new NotImplementedException(); |
||||||
|
} |
||||||
|
|
||||||
|
public override S AcceptVisitor<T, S>(IAstVisitor<T, S> visitor, T data) |
||||||
|
{ |
||||||
|
return visitor.VisitVariableDeclarator(this, data); |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
/// <remarks>
|
||||||
|
/// Identifier IdentifierModifiers
|
||||||
|
/// </remarks>
|
||||||
|
public class VariableIdentifier : AstNode |
||||||
|
{ |
||||||
|
public static readonly Role<VariableIdentifier> VariableIdentifierRole = new Role<VariableIdentifier>("VariableIdentifier"); |
||||||
|
|
||||||
|
public Identifier Name { |
||||||
|
get { return GetChildByRole(Roles.Identifier); } |
||||||
|
set { SetChildByRole(Roles.Identifier, value); } |
||||||
|
} |
||||||
|
|
||||||
|
public bool HasNullableSpecifier { get; set; } |
||||||
|
|
||||||
|
public AstNodeCollection<ArraySpecifier> ArraySpecifiers { |
||||||
|
get { return GetChildrenByRole(ComposedType.ArraySpecifierRole); } |
||||||
|
} |
||||||
|
|
||||||
|
protected internal override bool DoMatch(AstNode other, ICSharpCode.NRefactory.PatternMatching.Match match) |
||||||
|
{ |
||||||
|
throw new NotImplementedException(); |
||||||
|
} |
||||||
|
|
||||||
|
public override S AcceptVisitor<T, S>(IAstVisitor<T, S> visitor, T data) |
||||||
|
{ |
||||||
|
return visitor.VisitVariableIdentifier(this, data); |
||||||
|
} |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,57 @@ |
|||||||
|
// 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; |
||||||
|
|
||||||
|
namespace ICSharpCode.NRefactory.VB.Ast |
||||||
|
{ |
||||||
|
public class PropertyDeclaration : MemberDeclaration |
||||||
|
{ |
||||||
|
// TODO : support automatic properties
|
||||||
|
|
||||||
|
public static readonly Role<Accessor> GetterRole = new Role<Accessor>("Getter", Accessor.Null); |
||||||
|
public static readonly Role<Accessor> SetterRole = new Role<Accessor>("Setter", Accessor.Null); |
||||||
|
|
||||||
|
public Identifier Name { |
||||||
|
get { return GetChildByRole(Roles.Identifier); } |
||||||
|
set { SetChildByRole(Roles.Identifier, value); } |
||||||
|
} |
||||||
|
|
||||||
|
public AstNodeCollection<ParameterDeclaration> Parameters { |
||||||
|
get { return GetChildrenByRole(Roles.Parameter); } |
||||||
|
} |
||||||
|
|
||||||
|
public AstNodeCollection<AttributeBlock> ReturnTypeAttributes { |
||||||
|
get { return GetChildrenByRole(AttributeBlock.ReturnTypeAttributeBlockRole); } |
||||||
|
} |
||||||
|
|
||||||
|
public AstType ReturnType { |
||||||
|
get { return GetChildByRole(Roles.Type); } |
||||||
|
set { SetChildByRole(Roles.Type, value); } |
||||||
|
} |
||||||
|
|
||||||
|
public AstNodeCollection<InterfaceMemberSpecifier> ImplementsClause { |
||||||
|
get { return GetChildrenByRole(InterfaceMemberSpecifier.InterfaceMemberSpecifierRole); } |
||||||
|
} |
||||||
|
|
||||||
|
public Accessor Getter { |
||||||
|
get { return GetChildByRole(GetterRole); } |
||||||
|
set { SetChildByRole(GetterRole, value); } |
||||||
|
} |
||||||
|
|
||||||
|
public Accessor Setter { |
||||||
|
get { return GetChildByRole(SetterRole); } |
||||||
|
set { SetChildByRole(SetterRole, value); } |
||||||
|
} |
||||||
|
|
||||||
|
protected internal override bool DoMatch(AstNode other, ICSharpCode.NRefactory.PatternMatching.Match match) |
||||||
|
{ |
||||||
|
throw new NotImplementedException(); |
||||||
|
} |
||||||
|
|
||||||
|
public override S AcceptVisitor<T, S>(IAstVisitor<T, S> visitor, T data) |
||||||
|
{ |
||||||
|
return visitor.VisitPropertyDeclaration(this, data); |
||||||
|
} |
||||||
|
} |
||||||
|
} |
Loading…
Reference in new issue