示例#1
0
文件: Utils.cs 项目: th3ptuga/OldRod
 public static VMType GetResultType(this ILStackBehaviour pushBehaviour)
 {
     return(_resultTypes.TryGetValue(pushBehaviour, out var type) ? type : VMType.Unknown);
 }
示例#2
0
文件: Utils.cs 项目: th3ptuga/OldRod
 public static VMType GetArgumentType(this ILStackBehaviour popBehaviour, int argumentIndex)
 {
     return(_argumentTypes[popBehaviour][argumentIndex]);
 }