uqbar-project / wollok

Wollok Programming Language
GNU General Public License v3.0
60 stars 16 forks source link

Fix "QuickFix create method" for self #854

Closed fdodino closed 8 years ago

fdodino commented 8 years ago

If you code

method costoTotal(ambiente) = self.costoPintura(ambiente) ...

and you don't have costoPintura defined, it would be nice to add QuickFix create method...

fdodino commented 8 years ago

It works for WKO...

if you code

method costoTotal(ambiente) = pintura.costo(...) 

QuickFix works fine. It suggest creating costo method in WKO pintura.

maybe it was just a matter of this/self replacement

javierfernandes commented 8 years ago

Yes. This was impñemented already

El Thursday, July 28, 2016, Fernando Dodino notifications@github.com escribió:

It works for WKO... maybe it was just a matter of this/self replacement

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/uqbar-project/wollok/issues/854#issuecomment-235895242, or mute the thread https://github.com/notifications/unsubscribe-auth/AEORWPT060jTXl9pn7ERnz9xlVKXaBluks5qaK-AgaJpZM4JXNgy .

fdodino commented 8 years ago

@tesonep Grosso!!!