예제 #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]);
 }