[lworld] Javac generates duplicate initializer code

XMLWordPrintable

      for code like:

      ```
      value class Test {
          static class Foo {
              int x;
              int getX() { return x; }
          }
          private final Foo data = new Foo();
          Test() {
              data.getX();
              super();
          }
      }
      ```

      javac generates the initialization: `data = new Foo();` twice at the beginning of the constructor. Once by the algo that generates local proxies and another one by the normalization code in Gen.

            Assignee:
            Vicente Arturo Romero Zaldivar
            Reporter:
            Vicente Arturo Romero Zaldivar
            Votes:
            0 Vote for this issue
            Watchers:
            2 Start watching this issue

              Created:
              Updated:
              Resolved: