Example #1
0
 internal void EmitCreateDelegate(LightDelegateCreator creator)
 {
     Emit(new CreateDelegateInstruction(creator));
 }
Example #2
0
 internal void EmitCreateDelegate(LightDelegateCreator creator) {
     Emit(new CreateDelegateInstruction(creator));
 }
Example #3
0
 internal CreateDelegateInstruction(LightDelegateCreator delegateCreator)
 {
     _creator = delegateCreator;
 }