669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
|
* matched by this function (or rather, by the
* call frame's lifetime). */
/*
* Allocate the special frame data.
*/
fdPtr = (PMFrameData *) TclStackAlloc(interp, sizeof(PMFrameData));
pmPtr->refCount++;
/*
* Create a call frame for this method.
*/
result = PushMethodCallFrame(interp, (CallContext *) context, pmPtr,
|
|
|
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
|
* matched by this function (or rather, by the
* call frame's lifetime). */
/*
* Allocate the special frame data.
*/
fdPtr = TclStackAlloc(interp, sizeof(PMFrameData));
pmPtr->refCount++;
/*
* Create a call frame for this method.
*/
result = PushMethodCallFrame(interp, (CallContext *) context, pmPtr,
|