Beispiel #1
0
 public bool VisitCompoundAssignment(AbsynCompoundAssignment compound)
 {
     return(false);
 }
 public void VisitCompoundAssignment(AbsynCompoundAssignment compound)
 {
     stms.Add(compound);
 }
Beispiel #3
0
 /// <summary>
 /// //$REVIEW: naturally for non-C++ like languages, this needs to be
 /// done differently.
 /// </summary>
 /// <param name="compound"></param>
 public void VisitCompoundAssignment(AbsynCompoundAssignment compound)
 {
     writer.Indent();
     WriteCompoundAssignment(compound);
     writer.Terminate(";");
 }
Beispiel #4
0
 /// <summary>
 /// //$REVIEW: naturally for non-C++ like languages, this needs to be
 /// done differently.
 /// </summary>
 /// <param name="compound"></param>
 public void VisitCompoundAssignment(AbsynCompoundAssignment compound)
 {
     InnerFormatter.Indent();
     WriteCompoundAssignment(compound);
     InnerFormatter.Terminate(";");
 }