Community
Participate
Working Groups
vjo.ctype('linkage1.T1') //< public .props({ //>public void main(String... args) main : function(args){ var t1 = new this ; var abc = new linkage1.T1 ; } }) .protos({ //> void say(Object what) say: function(what) { vjo.sysout.println("said: " + what) ; }, bigD: Date, //< public type::Date // ***Bug: From a pure-JS perspective this is just a reference to ME bigT1: linkage1.T1, //< public type::T1 // same here bigT1a: this.vj$.T1 //< public type::T1 }) .endType();
Fixed attributed types. There was some confusion in code about JstAttributed types since this is really a type plus property name/ method name. The attributed type should have a jstbinding to be correct. If the binding is not there either the linker didn't link it (which was the case for globals section found in tests) or the method/property that is being referenced does not exist in which case there should be a warning.