Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
431 views
in Technique[技术] by (71.8m points)

javascript - ECMAScript proposal for constructor parameter properties

In TypeScript, there is convenient syntax, constructor parameter properties:

constructor(a, public b, private _c) {}

Which is syntactic sugar for:

constructor(a, b, _c) {
  this.b = b;
  this._c = _c;
}

Considering that there are ECMAScript proposals for other features that previously were specific to TypeScript like class fields and their visibility, it would be reasonable to get parameter properties, too.

Are there proposals or other initiatives for constructor parameter properties in ECMAScript? Are there Babel transforms that support this or similar syntactic sugar?

I weren't able to find any but I assume that different terminology could be used for same functionality.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Are there proposals or other initiatives for constructor parameter properties in ECMAScript?

No.

Are there Babel transforms that support this or similar syntactic sugar?

Use typescript transform with babel : https://babeljs.io/docs/en/next/babel-preset-typescript.html

OR

Just use typescript by itself as that provides the transform ??


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...