Itcl - the [incr Tcl] extension

View Ticket
Login
Ticket Hash: d4ee728817f951d0b2aa8e8f9b030ea854e92c9f
Title: Problems on info command from inside itcl code
Status: Closed Type: Code_Defect
Severity: Critical Priority: Immediate
Subsystem: Resolution: Fixed
Last Modified: 2013-11-09 15:25:57
Version Found In: 4.0b5
Description:
Try this code

package require Itcl itcl::class myclass { proc myproc {} { set a something puts "WHY ? [info exist a]" puts "WHY ? [::info exist a]" } public method run {} { myproc } } myclass tryme tryme run


wiede added on 2012-03-25 08:50:02 UTC:
could be fixed with tailcall ::info::exists in the code

User Comments:
wiede added on 2013-11-09 15:25:57:
closed