/** @namespace foo */
def ('foo') ({
/**
* @constructor
*/
__init__: function() {
// WARNING - Property method never defined
this.method();
},
/** @this {foo} */
method: function() {
// WARNING - Bad type annotation. Unknown type namespace
}
});
// WARNING - foo never defined
new foo;
Кто-нибудь знает как размечать такие конструкторы для GCC?