clutz icon indicating copy to clipboard operation
clutz copied to clipboard

gents doesn't convert static fields

Open bowenni opened this issue 7 years ago • 0 comments

/**
 * @constructor
 */
function A() {};
A.b = {};

is converted to

class A {}
A.b = {};

It should be converted to

class A {
  static b = {};
}

bowenni avatar Mar 29 '17 20:03 bowenni