Exemple #1
0
 /// <summary>
 /// Pops two arguments from the stack, if both are equal branches to the label with the given name.
 /// </summary>
 public Emit BranchIfEqual(string name)
 {
     InnerEmit.BranchIfEqual(name);
     return(this);
 }
Exemple #2
0
 /// <summary>
 /// Pops two arguments from the stack, if both are equal branches to the given label.
 /// </summary>
 public Emit BranchIfEqual(Label label)
 {
     InnerEmit.BranchIfEqual(label);
     return(this);
 }