Null parameter not appearing in generated code

Issue #414 resolved
Céline Bensoussan created an issue

When creating a message call through the message views with a null parameter, the code generator ignores the null.

Looking at the message view attached, here is the generated code:

public void main() {
        B b;
        b = new B();
        b.test();
        b.anotherTest(this,);
        b.anotherTest(, this);
    }

Comments (7)

  1. Log in to comment