757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
|
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
|
-
-
+
+
-
|
* call frame's lifetime). */
/*
* If the object namespace (or interpreter) were deleted, we just skip to
* the next thing in the chain.
*/
if (TclOOObjectDestroyed(((CallContext *)context)->oPtr) ||
Tcl_InterpDeleted(interp)
if (TclOOObjectDestroyed(((CallContext *)context)->oPtr)
|| Tcl_InterpDeleted(interp)) {
) {
return TclNRObjectContextInvokeNext(interp, context, objc, objv,
Tcl_ObjectContextSkippedArgs(context));
}
/*
* Allocate the special frame data.
*/
|