Method: TclTkObject#initialize
- Defined in:
- lib/tcltk.rb
#initialize(ip, exp) ⇒ TclTkObject
initialize(ip, exp):
ip: interpreter(TclTkIp)
exp: tcl/tk representation
188 189 190 191 192 |
# File 'lib/tcltk.rb', line 188 def initialize(ip, exp) fail("type is not TclTkIp") if !ip.kind_of?(TclTkIp) @ip = ip @exp = exp end |