コード例 #1
0
ファイル: WaitForFrame.cs プロジェクト: heon21st/flashdevelop
		public override void  visit(ActionHandler h)
		{
			if (code == Flash.Swf.ActionConstants.sactionWaitForFrame)
				h.waitForFrame(this);
			else
				h.waitForFrame2(this);
		}
コード例 #2
0
		public override void  visit(ActionHandler h)
		{
			if (code == Flash.Swf.ActionConstants.sactionDefineFunction)
				h.defineFunction(this);
			else
			{
				h.defineFunction2(this);
			}
		}
コード例 #3
0
 public override void  visit(ActionHandler h)
 {
     if (code == Flash.Swf.ActionConstants.sactionDefineFunction)
     {
         h.defineFunction(this);
     }
     else
     {
         h.defineFunction2(this);
     }
 }
コード例 #4
0
 public override void  visit(ActionHandler h)
 {
     if (code == Flash.Swf.ActionConstants.sactionWaitForFrame)
     {
         h.waitForFrame(this);
     }
     else
     {
         h.waitForFrame2(this);
     }
 }
コード例 #5
0
		public virtual void  visit(ActionHandler handler, int startIndex, int endIndex)
		{
			endIndex = (endIndex < 0)?size_Renamed_Field - 1:endIndex;
			for (int j = startIndex; j <= endIndex; j++)
			{
				Action a = actions[j];
				if (a.code != sactionLabel && a.code != sactionLineRecord)
				{
					// don't call this for labels
					if (offsets != null)
						handler.setActionOffset(offsets[j], a);
					else
						handler.setActionOffset(j, a);
				}
				a.visit(handler);
			}
		}
コード例 #6
0
 public virtual void  visit(ActionHandler handler, int startIndex, int endIndex)
 {
     endIndex = (endIndex < 0)?size_Renamed_Field - 1:endIndex;
     for (int j = startIndex; j <= endIndex; j++)
     {
         Action a = actions[j];
         if (a.code != sactionLabel && a.code != sactionLineRecord)
         {
             // don't call this for labels
             if (offsets != null)
             {
                 handler.setActionOffset(offsets[j], a);
             }
             else
             {
                 handler.setActionOffset(j, a);
             }
         }
         a.visit(handler);
     }
 }
コード例 #7
0
 public override void  visit(ActionHandler h)
 {
     h.lineRecord(this);
 }
コード例 #8
0
 public override void  visit(ActionHandler h)
 {
     h.constantPool(this);
 }
コード例 #9
0
ファイル: Try.cs プロジェクト: SlavaRa/flashdevelop-plugins
 public override void  visit(ActionHandler h)
 {
     h.tryAction(this);
 }
コード例 #10
0
		public override void  visit(ActionHandler handler)
		{
			handler.unknown(this);
		}
コード例 #11
0
ファイル: GotoLabel.cs プロジェクト: heon21st/flashdevelop
		public override void  visit(ActionHandler h)
		{
			h.gotoLabel(this);
		}
コード例 #12
0
 public override void  visit(ActionHandler h)
 {
     h.getURL2(this);
 }
コード例 #13
0
ファイル: Label.cs プロジェクト: SlavaRa/flashdevelop-plugins
 public override void  visit(ActionHandler h)
 {
     h.label(this);
 }
コード例 #14
0
 public override void  visit(ActionHandler h)
 {
     h.gotoFrame2(this);
 }
コード例 #15
0
		public override void  visit(ActionHandler h)
		{
			h.lineRecord(this);
		}
コード例 #16
0
ファイル: GetURL.cs プロジェクト: heon21st/flashdevelop
		public override void  visit(ActionHandler h)
		{
			h.getURL(this);
		}
コード例 #17
0
		public virtual void  visitAll(ActionHandler handler)
		{
			visit(handler, 0, size_Renamed_Field - 1);
		}
コード例 #18
0
 public override void  visit(ActionHandler h)
 {
     h.registerRecord(this);
 }
コード例 #19
0
		public override void  visit(ActionHandler h)
		{
			h.Target = this;
		}
コード例 #20
0
 public override void  visit(ActionHandler h)
 {
     h.Target = this;
 }
コード例 #21
0
 public override void  visit(ActionHandler handler)
 {
     handler.unknown(this);
 }
コード例 #22
0
		public override void  visit(ActionHandler h)
		{
			h.gotoFrame2(this);
		}
コード例 #23
0
		public override void  visit(ActionHandler h)
		{
			h.strictMode(this);
		}
コード例 #24
0
ファイル: With.cs プロジェクト: nagyist/mkbiltek.flashdevelop
 public override void  visit(ActionHandler h)
 {
     h.with(this);
 }
コード例 #25
0
		public override void  visit(ActionHandler h)
		{
			h.constantPool(this);
		}
コード例 #26
0
		public override void  visit(ActionHandler h)
		{
			h.storeRegister(this);
		}
コード例 #27
0
		public override void  visit(ActionHandler h)
		{
			h.with(this);
		}
コード例 #28
0
 public override void  visit(ActionHandler h)
 {
     h.strictMode(this);
 }
コード例 #29
0
		public override void  visit(ActionHandler h)
		{
			h.registerRecord(this);
		}
コード例 #30
0
 public virtual void  visitAll(ActionHandler handler)
 {
     visit(handler, 0, size_Renamed_Field - 1);
 }
コード例 #31
0
ファイル: Try.cs プロジェクト: heon21st/flashdevelop
		public override void  visit(ActionHandler h)
		{
			h.tryAction(this);
		}
コード例 #32
0
 public override void  visit(ActionHandler h)
 {
     h.storeRegister(this);
 }