コード例 #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;
 }
コード例 #2
0
        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;
        }
コード例 #3
0
ファイル: Visitor.cs プロジェクト: archfrog/Braceless0
 public virtual object Visit(DelegateStatement that, object value)
 {
     throw new System.NotImplementedException();
 }