Dexels / navajo

Navajo Service-oriented Applications
GNU Affero General Public License v3.0
9 stars 5 forks source link

Navascript IDE does not detect fields/methods that are inherited #605

Closed aschoneveld closed 2 years ago

aschoneveld commented 2 years ago

The Navascript IDE does not detect any fields that are from a super class.

This works:

public class Some {

     public String id;

    public String getId() {
      return id;
   }
}

This does not in the sense that id field is not found by navascript IDE.

public class Thing extends Some {

}
aschoneveld commented 2 years ago

Cannot reproduce