class testmethod {
public method te
public method tet
public method tee
constructor { args } {
}
}
body testmethod::te {} {
tet
puts "aa"
}
body testmethod::tet {} {
puts "bb"
}
body testmethod::tee {} {
puts "cc"
}
testmethod .aa
.aa tee
.aa te