コード例 #1
0
ファイル: SpokeInstruction.cs プロジェクト: dested/Spoke
 public SpokeInstruction(SpokeInstructionType getLocal, int i, int i2, int i3)
     : this(getLocal)
 {
     Index  = i;
     Index2 = i2;
     Index3 = i3;
 }
コード例 #2
0
ファイル: SpokeInstruction.cs プロジェクト: dested/Spoke
 public SpokeInstruction(SpokeInstructionType getLocal, string i)
     : this(getLocal)
 {
     if (getLocal == SpokeInstructionType.Goto)
     {
         gotoGuy = i;
     }
     else
     if (getLocal == SpokeInstructionType.IfTrueContinueElse)
     {
         elseGuy = i;
     }
     else
     if (getLocal == SpokeInstructionType.Label)
     {
         labelGuy = i;
     }
     else
     {
         StringVal = i;
     }
 }
コード例 #3
0
 public SpokeInstruction(SpokeInstructionType createMethod, SpokeObjectMethod spokeObjectMethod)
     : this(createMethod)
 {
     anonMethod = spokeObjectMethod;
 }
コード例 #4
0
 public SpokeInstruction(SpokeInstructionType getLocal, bool i)
     : this(getLocal)
 {
     BoolVal = i;
 }
コード例 #5
0
        public SpokeInstruction(SpokeInstructionType getLocal, string i)
            : this(getLocal)
        {
            if (getLocal == SpokeInstructionType.Goto)
            {
                gotoGuy = i;
            }
            else
                if (getLocal == SpokeInstructionType.IfTrueContinueElse)
                {
                    elseGuy = i;
                }
                else if (getLocal == SpokeInstructionType.IfEqualsContinueAndPopElseGoto)
                {
                    elseGuy = i;
                }
                else
                    if (getLocal == SpokeInstructionType.Label)
                    {
                        labelGuy = i;
                    }
                    else

                        StringVal = i;
        }
コード例 #6
0
 public SpokeInstruction(SpokeInstructionType getLocal, int i, string className)
     : this(getLocal)
 {
     Index = i;
     StringVal = className;
 }
コード例 #7
0
 public SpokeInstruction(SpokeInstructionType getLocal, int i)
     : this(getLocal)
 {
     Index = i;
 }
コード例 #8
0
 public SpokeInstruction(SpokeInstructionType getLocal, int i, int i2, int i3)
     : this(getLocal)
 {
     Index = i;
     Index2 = i2;
     Index3 = i3;
 }
コード例 #9
0
 public SpokeInstruction(SpokeInstructionType getLocal, float i)
     : this(getLocal)
 {
     FloatVal = i;
 }
コード例 #10
0
 public SpokeInstruction(SpokeInstructionType it)
 {
     Type = it;
     ins.Add(this);
 }
コード例 #11
0
ファイル: SpokeInstruction.cs プロジェクト: dested/Spoke
 public SpokeInstruction(SpokeInstructionType getLocal, int i)
     : this(getLocal)
 {
     Index = i;
 }
コード例 #12
0
ファイル: SpokeInstruction.cs プロジェクト: dested/Spoke
 public SpokeInstruction(SpokeInstructionType getLocal, float i)
     : this(getLocal)
 {
     FloatVal = i;
 }
コード例 #13
0
ファイル: SpokeInstruction.cs プロジェクト: dested/Spoke
 public SpokeInstruction(SpokeInstructionType it)
 {
     Type = it;
     ins.Add(this);
 }
コード例 #14
0
ファイル: SpokeInstruction.cs プロジェクト: dested/Spoke
 public SpokeInstruction(SpokeInstructionType createMethod, SpokeObjectMethod spokeObjectMethod)
     : this(createMethod)
 {
     anonMethod = spokeObjectMethod;
 }
コード例 #15
0
ファイル: SpokeInstruction.cs プロジェクト: dested/Spoke
 public SpokeInstruction(SpokeInstructionType getLocal, bool i)
     : this(getLocal)
 {
     BoolVal = i;
 }