lib/import/shake_grammar/catcher.rb in tracksperanto-1.6.6 vs lib/import/shake_grammar/catcher.rb in tracksperanto-1.6.7

- old
+ new

@@ -26,10 +26,11 @@ def get_variable_name @stack[-2][1] end def can_handle_meth?(m) - self.class.public_instance_methods(false).include?(m) + @meths ||= self.class.public_instance_methods(false) + @meths.include?(m) end def exec_funcall(methname, args) ruby_args = unwrap_atoms_in_args(args) send(methname, *ruby_args) \ No newline at end of file