コード例 #1
0
        public override void SetStackContent(CompilerMethodContext context, ILOperation operation)
        {
            var last = operation.StackContent.Last();

            last.CheckCompatible(context.GetLocalVariableType(VarIndex));
            operation.StackContent.RemoveLast(1);
        }
コード例 #2
0
 public override bool Is16Bit(CompilerMethodContext context, ILOperation operation)
 {
     return(context.GetLocalVariableType((int)operation.OriginalParameter).GetStorageBytes() == 2);
 }
コード例 #3
0
 public override bool Is16Bit(CompilerMethodContext context, ILOperation operation)
 {
     return(context.GetLocalVariableType(VarIndex).GetStorageBytes() == 2);
 }
コード例 #4
0
 public override void SetStackContent(CompilerMethodContext context, ILOperation operation)
 {
     operation.StackContent.Add(context.GetLocalVariableType((int)operation.OriginalParameter));
 }
コード例 #5
0
 public override void SetStackContent(CompilerMethodContext context, ILOperation operation)
 {
     operation.StackContent.Add(context.GetLocalVariableType(VarIndex));
 }