/NRefactory/ICSharpCode.NRefactory.VB/Ast/Expressions/ParenthesizedExpression.cs
http://github.com/icsharpcode/ILSpy · C# · 34 lines · 24 code · 5 blank · 5 comment · 1 complexity · 1644fac7669bc43525e47478b519df85 MD5 · raw file
- // 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
- {
- /// <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);
- }
- }
- }