public void VisitAsync(AsyncStatement a)
        {
            var oldAsync = this.async;

            this.async = true;
            a.Statement.Accept(this);
            this.async = oldAsync;
        }
 // AsyncStatement
 public override bool Walk(AsyncStatement node)
 {
     return(false);
 }
 public override void PostWalk(AsyncStatement node)
 {
 }
 public virtual void PostWalk(AsyncStatement node)
 {
 }
 // AsyncStatement
 public virtual bool Walk(AsyncStatement node)
 {
     return(true);
 }
Esempio n. 6
0
        public DataType VisitAsync(AsyncStatement a)
        {
            var dt = VisitFunctionDef((FunctionDef)a.Statement, true);

            return(dt);
        }
Esempio n. 7
0
 public SymbolTable VisitAsync(AsyncStatement a)
 {
     throw new NotImplementedException();
 }
Esempio n. 8
0
 public DataType VisitAsync(AsyncStatement a)
 {
     throw new NotImplementedException();
 }