Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Udate Tcl_ObjectDeleted to reflect recent changes. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | pyk-TclOO |
Files: | files | file ages | folders |
SHA3-256: |
0bae33cd39c2333ea9e792482ce911ea |
User & Date: | pooryorick 2018-01-08 18:21:40 |
Context
2018-02-15
| ||
10:05 | Udate Tcl_ObjectDeleted to reflect recent changes. Closed-Leaf check-in: 5bd9cf6428 user: pooryorick tags: pyk-TclOO | |
2018-01-08
| ||
18:27 | Merge pyk-TclOO branch. See [90657479e8] check-in: edf6105464 user: pooryorick tags: core-8-branch | |
18:21 | Udate Tcl_ObjectDeleted to reflect recent changes. Closed-Leaf check-in: 0bae33cd39 user: pooryorick tags: pyk-TclOO | |
2018-01-03
| ||
15:11 | merge 8.7 check-in: b2b20de662 user: dgp tags: pyk-TclOO | |
Changes
Changes to generic/tclOO.c.
︙ | ︙ | |||
1079 1080 1081 1082 1083 1084 1085 | } /* * Splice the object out of its context. After this, we must *not* call * methods on the object. */ | < | < | 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 | } /* * Splice the object out of its context. After this, we must *not* call * methods on the object. */ /* To do: Should this be protected with a * !IsRoot() condition? */ TclOORemoveFromInstances(oPtr, oPtr->selfCls); FOREACH(mixinPtr, oPtr->mixins) { i -= TclOORemoveFromInstances(oPtr, mixinPtr); } if (i) { ckfree(oPtr->mixins.list); |
︙ | ︙ | |||
2838 2839 2840 2841 2842 2843 2844 | return (Tcl_Class) ((Object *)object)->classPtr; } int Tcl_ObjectDeleted( Tcl_Object object) { | | | 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 | return (Tcl_Class) ((Object *)object)->classPtr; } int Tcl_ObjectDeleted( Tcl_Object object) { return ((Object *)object)->command == NULL; } Tcl_Object Tcl_GetClassAsObject( Tcl_Class clazz) { return (Tcl_Object) ((Class *)clazz)->thisPtr; |
︙ | ︙ |