Esempio n. 1
0
 protected IILStreamAction PushOperation(IILStreamAction streamAction)
 {
     _ilActions.Add(streamAction);
     return(streamAction);
 }
Esempio n. 2
0
 public abstract bool Equals(IILStreamAction other);
Esempio n. 3
0
 private static IILStreamAction?Deoptimize(IILStreamAction action)
 => action switch
 {
Esempio n. 4
0
 public bool Equals(IILStreamAction other)
 => other is Inst iOther && OpCode == iOther.OpCode;