mirror of https://github.com/icsharpcode/ILSpy.git
9 changed files with 204 additions and 8 deletions
@ -0,0 +1,31 @@ |
|||||||
|
// 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 AddressOfExpression : Expression |
||||||
|
{ |
||||||
|
public AddressOfExpression() |
||||||
|
{ |
||||||
|
} |
||||||
|
|
||||||
|
public Expression Expression { |
||||||
|
get { return GetChildByRole(Roles.Expression); } |
||||||
|
set { SetChildByRole(Roles.Expression, value); } |
||||||
|
} |
||||||
|
|
||||||
|
protected internal override bool DoMatch(AstNode other, ICSharpCode.NRefactory.PatternMatching.Match match) |
||||||
|
{ |
||||||
|
var expr = other as AddressOfExpression; |
||||||
|
return expr != null && |
||||||
|
Expression.DoMatch(expr.Expression, match); |
||||||
|
} |
||||||
|
|
||||||
|
public override S AcceptVisitor<T, S>(IAstVisitor<T, S> visitor, T data) |
||||||
|
{ |
||||||
|
return visitor.VisitAddressOfExpression(this, data); |
||||||
|
} |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,61 @@ |
|||||||
|
// 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>
|
||||||
|
/// Description of InstanceExpression.
|
||||||
|
/// </summary>
|
||||||
|
public class InstanceExpression : Expression |
||||||
|
{ |
||||||
|
AstLocation location; |
||||||
|
|
||||||
|
public InstanceExpression(InstanceExpressionType type, AstLocation location) |
||||||
|
{ |
||||||
|
this.Type = type; |
||||||
|
this.location = location; |
||||||
|
} |
||||||
|
|
||||||
|
public override AstLocation StartLocation { |
||||||
|
get { return location; } |
||||||
|
} |
||||||
|
|
||||||
|
public override AstLocation EndLocation { |
||||||
|
get { |
||||||
|
switch (Type) { |
||||||
|
case InstanceExpressionType.Me: |
||||||
|
return new AstLocation(location.Line, location.Column + "Me".Length); |
||||||
|
case InstanceExpressionType.MyBase: |
||||||
|
return new AstLocation(location.Line, location.Column + "MyBase".Length); |
||||||
|
case InstanceExpressionType.MyClass: |
||||||
|
return new AstLocation(location.Line, location.Column + "MyClass".Length); |
||||||
|
default: |
||||||
|
throw new Exception("Invalid value for InstanceExpressionType"); |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
public InstanceExpressionType Type { get; set; } |
||||||
|
|
||||||
|
protected internal override bool DoMatch(AstNode other, ICSharpCode.NRefactory.PatternMatching.Match match) |
||||||
|
{ |
||||||
|
var expr = other as InstanceExpression; |
||||||
|
return expr != null && |
||||||
|
Type == expr.Type; |
||||||
|
} |
||||||
|
|
||||||
|
public override S AcceptVisitor<T, S>(IAstVisitor<T, S> visitor, T data) |
||||||
|
{ |
||||||
|
return visitor.VisitInstanceExpression(this, data); |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
public enum InstanceExpressionType |
||||||
|
{ |
||||||
|
Me, |
||||||
|
MyBase, |
||||||
|
MyClass |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,34 @@ |
|||||||
|
// 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>
|
||||||
|
/// Description of ParenthesizedExpression.
|
||||||
|
/// </summary>
|
||||||
|
public class ParenthesizedExpression : Expression |
||||||
|
{ |
||||||
|
public ParenthesizedExpression() |
||||||
|
{ |
||||||
|
} |
||||||
|
|
||||||
|
public Expression Expression { |
||||||
|
get { return GetChildByRole(Roles.Expression); } |
||||||
|
set { SetChildByRole(Roles.Expression, value); } |
||||||
|
} |
||||||
|
|
||||||
|
protected internal override bool DoMatch(AstNode other, ICSharpCode.NRefactory.PatternMatching.Match match) |
||||||
|
{ |
||||||
|
var expr = other as ParenthesizedExpression; |
||||||
|
return expr != null && |
||||||
|
Expression.DoMatch(expr.Expression, match); |
||||||
|
} |
||||||
|
|
||||||
|
public override S AcceptVisitor<T, S>(IAstVisitor<T, S> visitor, T data) |
||||||
|
{ |
||||||
|
return visitor.VisitParenthesizedExpression(this, data); |
||||||
|
} |
||||||
|
} |
||||||
|
} |
Loading…
Reference in new issue