Open
Description
Currently, we have support for transforming static Methods on prototype from
Controller.staticMethod = function(param) {
var bar = "webpack-cli";
};
to
static staticMethod(param) {
var bar = "webpack-cli";
}
But, we don't have support for transforming literals like this:
Controller.name = "Dhruvdutt";
We need to transform it into:
static name = "Dhruvdutt";