ELENA-LANG / elena-lang

ELENA is a general-purpose language with late binding. It is multi-paradigm, combining features of functional and object-oriented programming. Rich set of tools are provided to deal with message dispatching : multi-methods, message qualifying, generic message handlers, run-time interfaces
https://elena-lang.github.io/
MIT License
236 stars 26 forks source link

Incorrect warning message for unhandled function message #514

Closed arakov closed 4 years ago

arakov commented 4 years ago

Describe the bug Incorrect warning message when unhandled function message is sent

To Reproduce

A;

public program()
{
    auto a := new A();

    a(2)
}

Expected behavior

Correct message should be generated : Function message does not handled by the object

arakov commented 4 years ago

done