예제 #1
0
 public InstructionNone(InstructionKindEnum aKind, int aIndex)
     : base(aKind, aIndex)
 {
 }
예제 #2
0
 public InstructionLocal(InstructionKindEnum aKind, int aIndex, LocalVariableMeta aLocal)
     : base(aKind, aIndex)
 {
     LocalVariable = aLocal;
 }
예제 #3
0
 protected BaseInstruction(InstructionKindEnum aInstructionKind, int aInstructionIndex)
 {
     mInstructionKind = aInstructionKind;
     InstructionIndex = aInstructionIndex;
 }
예제 #4
0
 public InstructionInt64(InstructionKindEnum aKind, int aIndex, long aValue)
     : base(aKind, aIndex)
 {
     Value = aValue;
 }
예제 #5
0
 public InstructionType(InstructionKindEnum aKind, int aIndex, TypeMeta aType)
     : base(aKind, aIndex)
 {
     Type = aType;
 }
예제 #6
0
 public InstructionSingle(InstructionKindEnum aKind, int aIndex, Single aValue)
     : base(aKind, aIndex)
 {
     Value = aValue;
 }
예제 #7
0
 public InstructionNone(InstructionKindEnum aKind, int aIndex)
     : base(aKind, aIndex)
 {
 }
예제 #8
0
 public InstructionDouble(InstructionKindEnum aKind, int aIndex, Double aValue)
     : base(aKind, aIndex)
 {
     Value = aValue;
 }
 public InstructionArgument(InstructionKindEnum aKind, int aIndex, MethodParameterMeta aArgument):base(aKind, aIndex)
 {
     Argument = aArgument;
 }
예제 #10
0
 public InstructionBranch(InstructionKindEnum aKind, int aIndex)
     : base(aKind, aIndex)
 {
 }
예제 #11
0
 public InstructionBranch(InstructionKindEnum aKind, int aIndex)
     : base(aKind, aIndex)
 {
 }
예제 #12
0
 public InstructionToken(InstructionKindEnum aKind, int aIndex, BaseMeta aToken)
     : base(aKind, aIndex)
 {
     Token = aToken;
 }
예제 #13
0
 public InstructionInt64(InstructionKindEnum aKind, int aIndex, long aValue)
     : base(aKind, aIndex)
 {
     Value = aValue;
 }
예제 #14
0
 public InstructionMethod(InstructionKindEnum aKind, int aIndex, MethodMeta aValue)
     : base(aKind, aIndex)
 {
     Value = aValue;
 }
예제 #15
0
 public InstructionMethod(InstructionKindEnum aKind, int aIndex, MethodMeta aValue)
     : base(aKind, aIndex)
 {
     Value = aValue;
 }
예제 #16
0
 public InstructionString(InstructionKindEnum aKind, int aIndex, string aString)
     : base(aKind, aIndex)
 {
     LiteralString = aString;
 }
예제 #17
0
 public InstructionField(InstructionKindEnum aKind, int aIndex, FieldMeta aField)
     : base(aKind, aIndex)
 {
     Field = aField;
 }
예제 #18
0
 public InstructionType(InstructionKindEnum aKind, int aIndex, TypeMeta aType)
     : base(aKind, aIndex)
 {
     Type = aType;
 }
예제 #19
0
 protected BaseInstruction(InstructionKindEnum aInstructionKind, int aInstructionIndex)
 {
     mInstructionKind = aInstructionKind;
     InstructionIndex = aInstructionIndex;
 }
예제 #20
0
 public InstructionToken(InstructionKindEnum aKind, int aIndex, BaseMeta aToken)
     : base(aKind, aIndex)
 {
     Token = aToken;
 }
예제 #21
0
 public InstructionLocal(InstructionKindEnum aKind, int aIndex, LocalVariableMeta aLocal)
     : base(aKind, aIndex)
 {
     LocalVariable = aLocal;
 }
예제 #22
0
 public InstructionField(InstructionKindEnum aKind, int aIndex, FieldMeta aField)
     : base(aKind, aIndex)
 {
     Field = aField;
 }
예제 #23
0
 public InstructionArgument(InstructionKindEnum aKind, int aIndex, MethodParameterMeta aArgument) : base(aKind, aIndex)
 {
     Argument = aArgument;
 }
예제 #24
0
 public InstructionString(InstructionKindEnum aKind, int aIndex, string aString)
     : base(aKind, aIndex)
 {
     LiteralString = aString;
 }