Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Unused arguments in the OO source code files. | dgp | 2020-03-07 | 1 | -20/+10 |
| | |||||
* | Merge 8.7 | jan.nijtmans | 2019-12-03 | 1 | -15/+29 |
|\ | |||||
| * | merge 8.6 | dgp | 2019-11-15 | 1 | -15/+29 |
| |\ | |||||
| | * | fix compliation warning, resulting from previous commit | jan.nijtmans | 2019-11-15 | 1 | -1/+1 |
| | | | |||||
| | * | Add TclOOObjectDestroyed to make logic more explicit. Renamed Deleted() to | pooryorick | 2019-11-15 | 1 | -15/+29 |
| | | | | | | | | | Destructing(). No functiontional changes. | ||||
* | | | Let's try a real C++ build with Travis on Linux | jan.nijtmans | 2019-08-30 | 1 | -3/+9 |
|\ \ \ | |/ / | |||||
* | | | Merge tip-548 | jan.nijtmans | 2019-08-15 | 1 | -4/+4 |
|\ \ \ | |/ / | |||||
| * | | Eliminate "register" keyword _everywhere_ in Tcl. This keyword is deprecated ↵ | jan.nijtmans | 2019-07-17 | 1 | -6/+6 |
| | | | | | | | | | | | | in C++ (removed in C++17, even), and essentially does nothing with most modern compilers. | ||||
* | | | Merge 8.7, and continue implementation. Almost done | jan.nijtmans | 2019-07-10 | 1 | -35/+35 |
|/ / | |||||
* | | merge 8.6 | dgp | 2019-05-03 | 1 | -43/+46 |
|\ \ | |/ | |||||
| * | Minor code style cleanup. | dkf | 2019-04-23 | 1 | -57/+110 |
| | | |||||
| * | Fixed memory leak in TclOO.c:ObjectNamespaceDeleted, object mixins and | dgp | 2018-11-02 | 1 | -2/+7 |
| | | | | | | object/class mutation. | ||||
* | | Implement TIP 524 | dkf | 2018-11-06 | 1 | -4/+34 |
|\ \ | |||||
| * | | Test cases (and some fixes) | dkf | 2018-10-28 | 1 | -4/+7 |
| | | | |||||
| * | | Definition and introspection commands. | dkf | 2018-10-28 | 1 | -0/+1 |
| | | | |||||
| * | | Core machinery for implementing TIP 524; still needs user-facing access commands | dkf | 2018-10-27 | 1 | -4/+30 |
| | | | |||||
* | | | Fixed memory leak in TclOO.c:ObjectNamespaceDeleted, object mixins and | pooryorick | 2018-11-01 | 1 | -2/+7 |
|/ / | | | | | object/class mutation. | ||||
* | | Missing ',' in documentation (discovered by MacOSX help processing). Some ↵ | jan.nijtmans | 2018-10-22 | 1 | -1/+1 |
| | | | | | | | | whitespacing | ||||
* | | merge core-8-6-branch | dkf | 2018-10-19 | 1 | -33/+63 |
|\ \ | |/ | |||||
| * | Make fundamental mutation work. MAGICAL MAGIC MAGICS MAGIC. Abracadabra. | dkf | 2018-10-18 | 1 | -40/+69 |
| | | |||||
* | | merge core-8-branch | dkf | 2018-09-04 | 1 | -639/+738 |
|\ \ | |||||
| * | | Combine the two bits of scripted code inside TclOO's definition into one. | dkf | 2018-08-05 | 1 | -13/+1 |
| | | | |||||
| * | | Document the [myclass] command; someone might find it useful besides me. | dkf | 2018-07-07 | 1 | -17/+17 |
| | | | |||||
| * | | Create a special command, [ :my:class], (in each instance namespace) that ↵ | dkf | 2018-07-01 | 1 | -0/+58 |
| | | | | | | | | | | | | allows objects to delegate methods to their class. | ||||
| * | | Split scripted parts of TclOO into their own file. | dkf | 2018-06-17 | 1 | -58/+8 |
| | | | |||||
| * | | Private methods seem to be working... | dkf | 2018-05-05 | 1 | -10/+15 |
| | | | |||||
| * | | Duplicate the private variable config when cloning objects. | dkf | 2018-04-13 | 1 | -2/+17 |
| | | | |||||
| * | | Start of private method dispatch machinery. | dkf | 2018-04-05 | 1 | -0/+19 |
| | | | |||||
| * | | merge 8.7 | dgp | 2018-03-30 | 1 | -93/+133 |
| |\ \ | |||||
| | * \ | Rebase the memleak work. | dgp | 2018-03-14 | 1 | -93/+133 |
| | |\ \ | | | |/ | |||||
| | | * | Further work to improve Object reference accounting in order to plug leaks. | pooryorick | 2018-03-14 | 1 | -17/+27 |
| | | | | |||||
| | | * | Audit and correct Object reference counting issues. | pooryorick | 2018-03-13 | 1 | -84/+112 |
| | | | | |||||
| | | * | Prevent leaks of the Object structs of oo::object and oo::class. | dgp | 2018-03-11 | 1 | -0/+9 |
| | | | | |||||
| | | * | Attempt at providing the missing instance squelcher. | dgp | 2018-03-11 | 1 | -0/+16 |
| | | | | |||||
| | | * | Udate Tcl_ObjectDeleted to reflect recent changes. | pooryorick | 2018-02-15 | 1 | -4/+2 |
| | | | | |||||
| | | * | Fix syntax error in previous commit. | pooryorick | 2018-02-15 | 1 | -2/+2 |
| | | | | |||||
| | | * | Add the check for wrong arguments back to TclOO_Object_Destroy, remove | pooryorick | 2018-02-15 | 1 | -1/+3 |
| | | | | | | | | | | | | inadvertant increment of Namespace->refCount. | ||||
| | | * | Streamline TclOO object cleanup routines. | pooryorick | 2018-02-15 | 1 | -374/+245 |
| | | | | |||||
| | | * | Fix for [6bca38d59b], TclOO segmentation fault cleaning up objects that that | pooryorick | 2018-02-15 | 1 | -55/+73 |
| | | | | | | | | | | | | have mixed themselves into themselves. | ||||
| | | * | Fix for issue [6cf568a21b]: Tcl_Eval() causes new segfault (TclOO object | pooryorick | 2018-02-15 | 1 | -27/+33 |
| | | | | | | | | | | | | creation by qualified name). | ||||
| | | * | Minor refactoring of TclOO object reference count booking during object | pooryorick | 2018-02-15 | 1 | -8/+8 |
| | | | | | | | | | | | | creation. | ||||
| | | * | Eliminate some duplicate code in tclOO.c/Tcl_NewObjectInstance(). | pooryorick | 2018-02-15 | 1 | -29/+10 |
| | | | | |||||
| | | * | Streamline TclOO object cleanup routines. | pooryorick | 2018-02-15 | 1 | -280/+204 |
| | | | | |||||
| | | * | Fix segmentation fault in TclOO that was noted in [16fe1b5807]. Update | pooryorick | 2018-02-14 | 1 | -0/+3073 |
| | | | | | | | | | | | | coroutine and TclOO object creation routines to use TclCreateObjCommandInNs. | ||||
| | | * | Lift the restriction on command names names that begin with ":". | pooryorick | 2018-02-14 | 1 | -3074/+0 |
| | | | | |||||
| * | | | This should be the implementation of private variables. | dkf | 2018-03-18 | 1 | -0/+18 |
| | | | | |||||
| * | | | Starting to build the implementation of the private methods and variables. ↵ | dkf | 2018-02-25 | 1 | -0/+2 |
| |/ / | | | | | | | | | | Definition support. | ||||
| * | | Some refactoring and tidying up of comments. | dkf | 2018-01-09 | 1 | -115/+225 |
| | | | |||||
| * | | Udate Tcl_ObjectDeleted to reflect recent changes. | pooryorick | 2018-01-08 | 1 | -4/+2 |
| | | | |||||
| * | | Fix syntax error in previous commit. | pooryorick | 2017-12-13 | 1 | -2/+2 |
| | | |