/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

  1. // Copyright (c) AlphaSierraPapa for the SharpDevelop Team (for details please see \doc\copyright.txt)
  2. // This code is distributed under MIT X11 license (for details please see \doc\license.txt)
  3. using System;
  4. namespace ICSharpCode.NRefactory.VB.Ast
  5. {
  6. /// <summary>
  7. /// Description of ParenthesizedExpression.
  8. /// </summary>
  9. public class ParenthesizedExpression : Expression
  10. {
  11. public ParenthesizedExpression()
  12. {
  13. }
  14. public Expression Expression {
  15. get { return GetChildByRole(Roles.Expression); }
  16. set { SetChildByRole(Roles.Expression, value); }
  17. }
  18. protected internal override bool DoMatch(AstNode other, ICSharpCode.NRefactory.PatternMatching.Match match)
  19. {
  20. var expr = other as ParenthesizedExpression;
  21. return expr != null &&
  22. Expression.DoMatch(expr.Expression, match);
  23. }
  24. public override S AcceptVisitor<T, S>(IAstVisitor<T, S> visitor, T data)
  25. {
  26. return visitor.VisitParenthesizedExpression(this, data);
  27. }
  28. }
  29. }