clutz
clutz copied to clipboard
gents doesn't convert static fields
/**
* @constructor
*/
function A() {};
A.b = {};
is converted to
class A {}
A.b = {};
It should be converted to
class A {
static b = {};
}