mirror of https://github.com/icsharpcode/ILSpy.git
6 changed files with 284 additions and 6 deletions
@ -0,0 +1,169 @@ |
|||||||
|
using System; |
||||||
|
using System.Collections.Generic; |
||||||
|
using System.Text; |
||||||
|
using ICSharpCode.Decompiler.CSharp.Syntax.PatternMatching; |
||||||
|
|
||||||
|
namespace ICSharpCode.Decompiler.CSharp.Syntax |
||||||
|
{ |
||||||
|
public class InterpolatedStringExpression : Expression |
||||||
|
{ |
||||||
|
public AstNodeCollection<InterpolatedStringContent> Content { |
||||||
|
get { return GetChildrenByRole(InterpolatedStringContent.Role); } |
||||||
|
} |
||||||
|
|
||||||
|
public InterpolatedStringExpression() |
||||||
|
{ |
||||||
|
|
||||||
|
} |
||||||
|
|
||||||
|
public override void AcceptVisitor(IAstVisitor visitor) |
||||||
|
{ |
||||||
|
visitor.VisitInterpolatedStringExpression(this); |
||||||
|
} |
||||||
|
|
||||||
|
public override T AcceptVisitor<T>(IAstVisitor<T> visitor) |
||||||
|
{ |
||||||
|
return visitor.VisitInterpolatedStringExpression(this); |
||||||
|
} |
||||||
|
|
||||||
|
public override S AcceptVisitor<T, S>(IAstVisitor<T, S> visitor, T data) |
||||||
|
{ |
||||||
|
return visitor.VisitInterpolatedStringExpression(this, data); |
||||||
|
} |
||||||
|
|
||||||
|
protected internal override bool DoMatch(AstNode other, Match match) |
||||||
|
{ |
||||||
|
InterpolatedStringExpression o = other as InterpolatedStringExpression; |
||||||
|
return o != null && !o.IsNull && this.Content.DoMatch(o.Content, match); |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
public abstract class InterpolatedStringContent : AstNode |
||||||
|
{ |
||||||
|
#region Null
|
||||||
|
public new static readonly InterpolatedStringContent Null = new NullInterpolatedStringContent(); |
||||||
|
|
||||||
|
sealed class NullInterpolatedStringContent : InterpolatedStringContent |
||||||
|
{ |
||||||
|
public override bool IsNull { |
||||||
|
get { |
||||||
|
return true; |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
public override void AcceptVisitor(IAstVisitor visitor) |
||||||
|
{ |
||||||
|
visitor.VisitNullNode(this); |
||||||
|
} |
||||||
|
|
||||||
|
public override T AcceptVisitor<T>(IAstVisitor<T> visitor) |
||||||
|
{ |
||||||
|
return visitor.VisitNullNode(this); |
||||||
|
} |
||||||
|
|
||||||
|
public override S AcceptVisitor<T, S>(IAstVisitor<T, S> visitor, T data) |
||||||
|
{ |
||||||
|
return visitor.VisitNullNode(this, data); |
||||||
|
} |
||||||
|
|
||||||
|
protected internal override bool DoMatch(AstNode other, PatternMatching.Match match) |
||||||
|
{ |
||||||
|
return other == null || other.IsNull; |
||||||
|
} |
||||||
|
} |
||||||
|
#endregion
|
||||||
|
|
||||||
|
public new static readonly Role<InterpolatedStringContent> Role = new Role<InterpolatedStringContent>("InterpolatedStringContent", Syntax.InterpolatedStringContent.Null); |
||||||
|
|
||||||
|
public override NodeType NodeType => NodeType.Unknown; |
||||||
|
} |
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// { Expression }
|
||||||
|
/// </summary>
|
||||||
|
public class Interpolation : InterpolatedStringContent |
||||||
|
{ |
||||||
|
public CSharpTokenNode LBraceToken { |
||||||
|
get { return GetChildByRole(Roles.LBrace); } |
||||||
|
} |
||||||
|
|
||||||
|
public Expression Expression { |
||||||
|
get { return GetChildByRole(Roles.Expression); } |
||||||
|
set { SetChildByRole(Roles.Expression, value); } |
||||||
|
} |
||||||
|
|
||||||
|
public string Suffix { get; } |
||||||
|
|
||||||
|
public CSharpTokenNode RBraceToken { |
||||||
|
get { return GetChildByRole(Roles.RBrace); } |
||||||
|
} |
||||||
|
|
||||||
|
public Interpolation() |
||||||
|
{ |
||||||
|
|
||||||
|
} |
||||||
|
|
||||||
|
public Interpolation(Expression expression, string suffix = null) |
||||||
|
{ |
||||||
|
Expression = expression; |
||||||
|
Suffix = suffix; |
||||||
|
} |
||||||
|
|
||||||
|
public override void AcceptVisitor(IAstVisitor visitor) |
||||||
|
{ |
||||||
|
visitor.VisitInterpolation(this); |
||||||
|
} |
||||||
|
|
||||||
|
public override T AcceptVisitor<T>(IAstVisitor<T> visitor) |
||||||
|
{ |
||||||
|
return visitor.VisitInterpolation(this); |
||||||
|
} |
||||||
|
|
||||||
|
public override S AcceptVisitor<T, S>(IAstVisitor<T, S> visitor, T data) |
||||||
|
{ |
||||||
|
return visitor.VisitInterpolation(this, data); |
||||||
|
} |
||||||
|
|
||||||
|
protected internal override bool DoMatch(AstNode other, Match match) |
||||||
|
{ |
||||||
|
Interpolation o = other as Interpolation; |
||||||
|
return o != null && this.Expression.DoMatch(o.Expression, match); |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
public class InterpolatedStringText : InterpolatedStringContent |
||||||
|
{ |
||||||
|
public string Text { get; set; } |
||||||
|
|
||||||
|
public InterpolatedStringText() |
||||||
|
{ |
||||||
|
|
||||||
|
} |
||||||
|
|
||||||
|
public InterpolatedStringText(string text) |
||||||
|
{ |
||||||
|
Text = text; |
||||||
|
} |
||||||
|
|
||||||
|
public override void AcceptVisitor(IAstVisitor visitor) |
||||||
|
{ |
||||||
|
visitor.VisitInterpolatedStringText(this); |
||||||
|
} |
||||||
|
|
||||||
|
public override T AcceptVisitor<T>(IAstVisitor<T> visitor) |
||||||
|
{ |
||||||
|
return visitor.VisitInterpolatedStringText(this); |
||||||
|
} |
||||||
|
|
||||||
|
public override S AcceptVisitor<T, S>(IAstVisitor<T, S> visitor, T data) |
||||||
|
{ |
||||||
|
return visitor.VisitInterpolatedStringText(this, data); |
||||||
|
} |
||||||
|
|
||||||
|
protected internal override bool DoMatch(AstNode other, Match match) |
||||||
|
{ |
||||||
|
InterpolatedStringText o = other as InterpolatedStringText; |
||||||
|
return o != null && o.Text == this.Text; |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
Loading…
Reference in new issue