Ejemplo n.º 1
0
 public override bool Equals(BaseStatement other)
 {
     return(other is If @if &&
            @if.Equals(this));
 }
Ejemplo n.º 2
0
 public override bool Equals(BaseStatement other)
 {
     return(other is ExpressionWrapper exp &&
            exp.Equals(this));
 }
Ejemplo n.º 3
0
 public override bool Equals(BaseStatement other)
 {
     return(other is Goto @goto &&
            @goto.Equals(this));
 }
Ejemplo n.º 4
0
 public override bool Equals(BaseStatement other)
 {
     return(other is CompoundAssignment ass &&
            ass.Equals(this));
 }
Ejemplo n.º 5
0
 public override bool Equals(BaseStatement other)
 {
     return(other is StatementList sl &&
            sl.Equals(this));
 }
Ejemplo n.º 6
0
 public override bool Equals(BaseStatement other)
 {
     return(Equals(other as EmptyStatement));
 }