summaryrefslogtreecommitdiffstats
path: root/generic
Commit message (Collapse)AuthorAgeFilesLines
* merge main dev branchdkf2012-11-051-1/+1
|\
| * Disable bytecompile of [tailcall] until it gets some repair. As is, itdgp2012-11-051-1/+1
| | | | | | hopelessly bogs down debug-enabled testing, and make many tests fail.
* | merge main dev branchdkf2012-11-0513-256/+790
|\ \ | |/
| * Added bytecode compilation of many Tcl commands, merged from development branch.dkf2012-11-0515-420/+2723
| |\
| | * Added compilation of [array exists], [array set] and [array unset]. Fixed a ↵merge_to_trunkdkf2012-11-058-36/+451
| | | | | | | | | | | | whole bunch of issues with opcode issuing that were causing problems with stack depth calculations.
| | * Added compilation of [string last] and improved the compilation of [string ↵dkf2012-11-039-214/+253
| | | | | | | | | | | | range]. This in turn enables compilation of [namespace qualifiers] and [namespace tail] (also done).
| | * Added compilation of [info object isa object] (i.e., object verification).dkf2012-11-037-4/+56
| | |
| * | TIP #413jan.nijtmans2012-11-053-6/+33
| |\ \
| | * \ merge trunktip_318_updatejan.nijtmans2012-10-234-64/+17
| | |\ \
| | * | | Remove two characters, zero width non-joiner (U+200c) and zero width joiner ↵jan.nijtmans2012-10-161-3/+1
| | | | | | | | | | | | | | | | | | | | | | | | | (U+200d), which were finally left out of TIP #413
| | * | | merge trunkdkf2012-10-169-449/+1706
| | |\ \ \
| | * | | | and remove the two characters from string trim as welljan.nijtmans2012-10-091-2/+0
| | | | | |
| | * | | | merge trunk jan.nijtmans2012-10-094-9/+25
| | |\ \ \ \ | | | | | | | | | | | | | | <p>Dont include U+0082 and U+0083 in the Tcl space set
| | * \ \ \ \ update documentationjan.nijtmans2012-09-261-2/+2
| | |\ \ \ \ \
| | * | | | | | tip 318 updatejan.nijtmans2012-09-233-6/+38
| | | | | | | |
* | | | | | | | reorder to preserve main BC development branch sequence betterdkf2012-11-022-8/+8
| | | | | | | |
* | | | | | | | merge dkf-compile-misc-infodkf2012-11-027-54/+119
|\ \ \ \ \ \ \ \ | | |_|_|_|_|_|/ | |/| | | | | |
| * | | | | | | Added more TclOO introspection bytecodes ([info object class], [info object ↵dkf2012-11-027-54/+119
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | namespace]). Also moved TclOO-in-8.6 to using the main Tcl internal ensemble builder.
* | | | | | | | Working towards a BCCed [next].dkf2012-11-017-14/+108
|/ / / / / / / | | | | | | | | | | | | | | | | | | | | | This version <i>almost</i> works, except for a problem with restoring the context namespace upon return (which produces very strange results!)
* | | | | | | Added compilation of [tailcall]. Not a particularly efficient compilation ↵dkf2012-11-017-16/+117
| | | | | | | | | | | | | | | | | | | | | | | | | | | | though; it does not detect tailcall-of-self as a special case.
* | | | | | | Added compilation of [dict create] and [dict merge].dkf2012-11-017-41/+250
| | | | | | |
* | | | | | | Added [dict exists] compilation; implementation is 95% shared with [dict get].dkf2012-10-307-17/+102
| | | | | | |
* | | | | | | Some corrections and performance tweaksdkf2012-10-301-46/+56
| | | | | | |
* | | | | | | Compilation of [string first] and [string range] (with constant indices).dkf2012-10-307-86/+306
| | | | | | |
* | | | | | | Added compilation of [regsub] (in the simplest, most restricted case).dkf2012-10-303-1/+178
| | | | | | |
* | | | | | | Added compilation of simplest practical case of [string map].dkf2012-10-297-13/+160
| | | | | | |
* | | | | | | Minor: correct a commentdkf2012-10-291-2/+3
| | | | | | |
* | | | | | | Compiler for some of the simpler cases of [format].dkf2012-10-293-1/+223
| | | | | | |
* | | | | | | merge trunkdkf2012-10-291-2/+3
|\ \ \ \ \ \ \ | |/ / / / / /
| * | | | | | make tclTest.c compilable against version 2 filesystemsjan.nijtmans2012-10-241-2/+3
| |\ \ \ \ \ \
| | * \ \ \ \ \ Add dummy 0 parameter (unused flags) to internal Tcl_FSLoadFileProc call, ↵jan.nijtmans2012-10-242-2/+6
| | |\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | for upwards compatibility with version 2 filesystems
| | | * | | | | | Add dummy 0 parameter (unused flags) to internal Tcl_FSLoadFileProc call, ↵jan.nijtmans2012-10-242-2/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | for upwards compatibility with version 2 filesystems
* | | | | | | | | Merge corrected [yield] compilation. Many thanks to Miguel Sofer for help.dkf2012-10-297-22/+120
|\ \ \ \ \ \ \ \ \
| * | | | | | | | | fix INST_YIELD so that it worksdkf_bytecode_8_6_yieldmig2012-10-281-5/+21
| | | | | | | | | |
| * | | | | | | | | Working towards a BCCed [yield]; this doesn't work right now.dkf2012-10-267-22/+104
| | | | | | | | | |
* | | | | | | | | | Compilation of [info commands] in the case of a fully-qualified literal name.dkf2012-10-293-1/+62
| | | | | | | | | |
* | | | | | | | | | Added [self namespace] to bytecoded command set.dkf2012-10-281-5/+34
|/ / / / / / / / /
* | | | | | | | | Compile [namespace which -command]; big performance saving in some contexts.dkf2012-10-267-4/+71
| | | | | | | | |
* | | | | | | | | Added compilation of [namespace code] (except for gnarly edge cases).dkf2012-10-253-1/+54
| | | | | | | | |
* | | | | | | | | merge trunkdkf2012-10-245-61/+78
|\ \ \ \ \ \ \ \ \ | |/ / / / / / / /
| * | | | | | | | Added compilation of [dict unset]; the bytecode needed already existed anyway.dkf2012-10-243-1/+65
| | | | | | | | |
| * | | | | | | | unbreak Mac OSX buildjan.nijtmans2012-10-231-1/+1
| | |_|_|_|_|_|/ | |/| | | | | |
| * | | | | | | Add "flags" parameter from Tcl_LoadFile to to various internal functions, so ↵jan.nijtmans2012-10-233-61/+14
| |\ \ \ \ \ \ \ | | |/ / / / / / | | | | | | | | | | | | | | | | these flags are available through the whole filesystem for (future) internal use
| | * | | | | | Remove unused TclpLoadFile function.jan.nijtmans2012-10-232-49/+0
| | | | | | | |
* | | | | | | | yet another small introspector: [self]dkf2012-10-197-3/+71
| | | | | | | |
* | | | | | | | merge trunkdkf2012-10-191-3/+3
|\ \ \ \ \ \ \ \ | |/ / / / / / /
| * | | | | | | * generic/tclBasic.c (TclNRCoroutineObjCmd): insure that numlevelsmig2012-10-181-3/+3
| | |_|_|_|_|/ | |/| | | | | | | | | | | | are properly set, fix bug discovered by dkf and reported at http://code.activestate.com/lists/tcl-core/12213/
* | | | | | | merge trunkdkf2012-10-1735-1261/+2770
|\ \ \ \ \ \ \ | |/ / / / / /
| * | | | | | merge trunktip_405_impl_tddkf2012-10-165-427/+1193
| |\ \ \ \ \ \
| | * \ \ \ \ \ merge trunktip_400_impldkf2012-10-161-0/+1
| | |\ \ \ \ \ \