예제 #1
0
 public static ThreadContextState SaveStackAndFrameWith(Frame frame, Cons form)
 {
     // used by compiler generated code
     return(CurrentThreadContext.SaveStackAndFrame(frame, form));
 }
예제 #2
0
 public static object RestoreStackAndFrame(ThreadContextState saved)
 {
     // used by compiler generated code
     CurrentThreadContext.RestoreStackAndFrame(saved);
     return(null);
 }