From: timsuth@... (Tim Sutherland) Date: 2004-10-27T12:54:03+09:00 Subject: Re: Auto-completion editor/IDE In article , Tim Sutherland wrote: [...] >There are also some problems when the possible return "types" don't >correspond to any documented classes. e.g. > def method > class << Object.new > def hello > puts('hello' > end > end > end > >Maybe we can live with these being wrong. [...] I meant: def method o = Object.new class << o def hello puts('hello') end end o end