I see that there are other 'is not a constructor' topics out here, but they
do not seem related to my problem.

For me the source-all generates correctly and runs well (I've been working
on this for a couple of weeks, so I'm fairly sure source is working
correctly).  For quite some time the build option also seemed to work, but
now when I run build and load index.html I'm getting this error in FireBug
console:

console.Controller is not a constructor

on this section of code in console.js

main:function(){qx.application.Standalone.prototype.main.call(this);
this.__cv=new console.Controller(this);
this.__cv.addListener(q,function(){this.__cs.disableConnect();
},this);
this.__cv.addListener(p,function(x){this.__cu.updateStatus(x.getData());
},this);
var z=new qx.ui.layout.VBox(); 
var B=new qx.ui.container.Composite(A);
this.getRoot().add(B,{edge:0});
this.__cu=new console.view.Header();
B.add(this.__cu,{flex:0}); 

just to be sure I commented out that part and built again:

main:function(){qx.application.Standalone.prototype.main.call(this);
var A=new qx.ui.layout.VBox();
var B=new qx.ui.container.Composite(A);
this.getRoot().add(B,{edge:0});
this.__cu=new console.view.Header();
B.add(this.__cu,{flex:0}); 

Now the error is console.view.Header is not a constructor

Searching through console.js in build/script I can find no code that looks
like it comes from my classes - it is almost as if all my classes, except
for the Application subclass, are missing from the build.

Any suggestions on where to look or what to try?  I have tried both 1.0.1
and 1.1 by the way.

-- 
View this message in context: 
http://qooxdoo.678.n2.nabble.com/build-only-console-Controller-is-not-a-constructor-tp5004991p5004991.html
Sent from the qooxdoo mailing list archive at Nabble.com.

------------------------------------------------------------------------------
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to