Exemplo n.º 1
0
 public IfStatement(SourceSpan span, Expression predicate, BlockStatement body, ElseStatement elseStatement)
     : base(span)
 {
     Predicate     = predicate;
     Body          = body;
     ElseStatement = elseStatement;
 }
Exemplo n.º 2
0
 protected abstract void VisitElse(ElseStatement statement);