Using Tcl8.5, is there a difference between calling $this
inside a method and not calling it? e.g.:
package require Itcl
namespace import itcl::*
class MyCls {
method foo {}
method bar {}
}
body MyCls::bar {} { return "hi" }
body MyCls::foo {} {
puts [$this bar]
# OR
puts [bar]
}