-
Notifications
You must be signed in to change notification settings - Fork 26
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
TC39 Meeting on July 2016 #46
Comments
Hi @leobalter. Can you expand or provide a link for "Disregard lastIndex for non-global non-sticky regexps"? |
np, every link can be found at the agenda but I updated the main post to add them. |
If I understood your notes correctly, the last meeting was mostly spent around tail calls. Is there any mechanism to avoid the shared memory topic to eat up all the non-timeboxed time? |
Technically, no. At least the time boxed items will be prioritized. I expected more items to be set as timeboxed, it didn't happen. TC39 is trying to optimize the time management during the meetings. AFAICT, the Shared Memory proposal has a pretty active discussion on it's own repo with active reviewers with lots of questions answered. I believe if we have a +1 from the reviewers at the meeting we'll have a nice chance to get it to stage 3. I'm doing a personal review this week, as I'm interested on how it will get the tests on test262. There's a stage 3 milestone. |
Gotcha, thanks.
Who sets the timeboxes? |
Each champion when they add an item to the agenda. |
(fwiw, Promise#finally was explicitly designed to not conflict with cancelable promises, and I've worked with its champion to ensure that's the case) |
That's great to know, @ljharb, thanks! |
Reviews are welcome! Thanks in advance. |
Where can I find a code example for |
The proposal repo https://github.com/jeffmo/es-class-public-fields/ doesn't have one either - but it's basically class Foo {
foo = bar;
} Instead of class Foo {
constructor() {
this.foo = bar;
}
} |
I see, thanks. Would be nice to add that. I'm also interested in static class properties (much more so then non-static ones). Are those tied together? |
Yes, those are tied together. |
Isn't class Foo {
foo = bar;
} what TypeScript does? |
TypeScript isn't standard JavaScript, so it's not really relevant - but I believe it does have similar syntax, yes. |
Well, clearly isn't relevant in regard of what the group will decide. However, it was relevant/interesting to me, otherwise I wouldn't have asked. |
Jörn, I was actually quite surprised to see that there were no simple (nor Rick On Wed, Aug 10, 2016 at 3:36 PM Aurelio De Rosa [email protected]
|
The meeting is happening next week and you can check the agenda here.
My plans for the meetings consist on:
Object.enumerable{Keys,Values,Entries}
, hopefully moving it from stage 0 to 1I'm also very interested on some other topics already in the agenda:
which might conflict with cancelable promises but it is simple a gets the job done.See: TC39 Meeting on July 2016 #46 (comment)If you have any feedback, question or suggestion from any topic, we can use this issue to discuss.
I'll publish a report after the meeting.
The text was updated successfully, but these errors were encountered: