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"); }
public virtual object VisitStopStatement(StopStatement stopStatement, object data) { Debug.Assert((stopStatement != null)); return null; }
void StopStatement(out Statement statement) { Expect(206); statement = new StopStatement(); }