Skip to content

Static literals on prototype #1

Open
@dhruvdutt

Description

@dhruvdutt

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";

Metadata

Metadata

Assignees

No one assigned

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions