public virtual object TrackedVisitStopStatement(StopStatement stopStatement, object data)
 {
     return base.VisitStopStatement(stopStatement, data);
 }
 public override sealed object VisitStopStatement(StopStatement stopStatement, object data)
 {
     this.BeginVisit(stopStatement);
     object result = this.TrackedVisitStopStatement(stopStatement, data);
     this.EndVisit(stopStatement);
     return result;
 }
 public virtual object VisitStopStatement(StopStatement stopStatement, object data)
 {
     throw new global::System.NotImplementedException("StopStatement");
 }
Пример #4
0
 public virtual object VisitStopStatement(StopStatement stopStatement, object data)
 {
     Debug.Assert((stopStatement != null));
     return null;
 }
Пример #5
0
 void StopStatement(out Statement statement)
 {
     Expect(206);
     statement = new StopStatement();
 }