ruby-jokes / close_enough

Spelling is hrad. close_enough lets yuo think about code instaed.
http://ruby-jokes.github.com/close_enough
GNU General Public License v3.0
84 stars 10 forks source link

local variables #2

Open canweriotnow opened 11 years ago

canweriotnow commented 11 years ago

Ruby uses the same lookup for methods and for local variables... current implementation will find the closest method (iff exists) instead of closest local var name when method_missing invoked. Ensure local variables get searched separately from method names, if possible... might have to research this.