PageRenderTime 63ms CodeModel.GetById 24ms RepoModel.GetById 0ms app.codeStats 1ms

/CSEdit/CSParse/Parser/Statements/Using.cs

https://bitbucket.org/floAr/personal
C# | 18 lines | 16 code | 2 blank | 0 comment | 0 complexity | a84fc7a635091a16982975212d2b5c06 MD5 | raw file
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace CSParse
  6. {
  7. public class UsingStatementNode : StatementNode, IVisitable
  8. {
  9. public Expression Used { get; set; }
  10. public StatementNode Body { get; set; }
  11. void IVisitable.Visit(Visitor visitor)
  12. {
  13. visitor.VisitUsing(this);
  14. }
  15. }
  16. }