Ejemplo n.º 1
0
 public override object Visit(DelegateStatement that, object value = null)
 {
     throw new System.NotImplementedException("Delegates are not supported yet");
     that.Profile.Visit(this);
     return null;
 }
        public override object Visit(DelegateStatement that, object value = null)
        {
            PrintPrologue(that);
            PrintRoutine(that);
            PrintEpilogue(that);

            that.Name.Visit(this);
            that.Profile.Visit(this);
            that.Block.Visit(this);

            return null;
        }
Ejemplo n.º 3
0
 public virtual object Visit(DelegateStatement that, object value)
 {
     throw new System.NotImplementedException();
 }