Questions tagged [ecmascript-next]

For questions about upcoming ECMAScript features that are not scheduled to be part of a specific version yet (anything that is a stage 3 or lower proposal).

Proposals for new ECMAScript features follow a specific process, where they go through the following stages:

  • Stage 0 (Strawman)
  • Stage 1 (Proposal): The committee expects to devote time to examining the problem space, solutions and cross-cutting concerns
  • Stage 2 (Draft): The committee expects the feature to be developed and eventually included in the standard
  • Stage 3 (Candidate): The solution is complete and no further work is possible without implementation experience, significant usage and external feedback.
  • Stage 4 (Finished): The addition will be included in the soonest practical standard revision

Proposals in stage 4 are definitely added to one of the next releases of the language specification. This tag is for questions about proposals in stage 0 - stage 3.

Important Links:

405 questions
0
votes
1 answer

Babel Decorators: Is it Possible to Create an "@export" Decorator?

I'm new to "ES7" decorators (by which I really mean decorators enabled by the Babel babel-plugin-transform-decorators-legacy plug-in that was originally based on the ES7 decorator proposal), and I'm having a little trouble with how they work. I…
machineghost
  • 33,529
  • 30
  • 159
  • 234
0
votes
0 answers

Importing through a module file gives undefined for first event queue

I've got a React project where I keep all components available through a single file, so instead of doing import Foo from "./Foo.js" import Bar from "./Bar.js" I've got a components.js-file with export Foo from "./Foo.js" export Bar from…
dontexist
  • 5,252
  • 4
  • 27
  • 51
0
votes
0 answers

How can we use javascript await operator in the browser adding just a third party library?

How could we use the javascript await operator in the browser using a external javascript library? For example, if we have the following html code: