John Neumann (JN), Norbert Lindenberg (NL), Allen Wirfs-Brock (AWB), Rick Waldron (RW), Waldemar Horwat (WH), Tim Disney (TD), Eric Ferraiuolo (EF), Sam Tobin-Hochstadt (STH), Erik Arvidsson (EA), Brian Terlson (BT), Luke Hoban (LH), Matt Sweeney (MS), Doug Crockford (DC), Yehuda Katz (YK), Nebojša Ćirić (NC), Brendan Eich (BE)
JN: ...Welcome and introduction, agenda. Discussion of TG/TC procedural changes. Please review and feedback.
...Adoption of the Agenda.
WH: All of the initial agenda items are missing references. Can't figure out what some of them are referring to from just their titles. WH, JN: Please put proposal links (or other references) into agenda items like we did in the past.
AWB: Are there items that need to be discussed that aren't yet on the agenda?
STH: Will provide an update on Modules
AWB: Discussion about Proxy?
STH: A lot of discussion about the interaction of Proxy and Private Names
...Should we wait for Mark Miller?
AWB: Nowhere near consensus on any point of discussion from the mailing list.
LH: (to AWB) did you want to give an update on the spec?
JN: We should have a discussion regarding the list of items that will actually end up in ES6 and determine exact ES6 additions.
RW: Let's set this as an agenda item for the next meeting and try to reduce the number of submitted agenda items. This allows everyone the opportunity to prepare for the large scale discussion.
JN: Will add an agenda item for March.
...Brief discussion about features that may or may not be ready; STH identifies: event loop (dependency of modules, Object.observe)
AWB: Two issues: Semantic completeness of the designs and what does it take to implement these into the language.
WH: Are proxies ready? AWB: Not yet.
Mixed discussion.
JN summarizes as part of 4.16 discussion
(Allen Wirfs-Brock)
AWB: Revisits Nov 22, http://wiki.ecmascript.org/doku.php?id=harmony:specification_drafts
Discussion re: instanceof.
EA: Checks and changes to implementations that use instanceof
STH: Expect slow down from use of instanceof?
AWB/EA: yes.
WH: Concerns, how do you tell if a regex is a regex
YH: Not with instanceof, use Object.prototype.toString
AWB: Shouldn't use instanceof
EA: This hook makes instanceof behave they way you expect it.
AWB: Revisits Dec 21, 2012 Draft changes
Mixed discussion re: keeping up to date with the spec drafts, request for more technical-focused reviews.
__proto__
.LH: Begins with raised points about __proto__
...
Mixed discussion about __proto__
semantics.
AWB: There is an underlying feeling that we don't like this and we need to get over that.
LH/YK: Agree.
DC, WH: Disagree.
YK, DC: Discussion about __proto__
reality.
YK: We need consistency.
DC: We should not standardize and leave as is.
Impasse.
LH: Similar issues with block scoped function declaration incompatibilities.
WH: We should give up on __proto__
in the same way that we gave up on "with"
EA: IE is implementing for web compatibility
AWB: The defacto standard for mobile web uses __proto__
EA: IF we could go back, we would do it differently
YK: We just need compatibility
LH: We need to just suck it up and standardize
Mixed discussion re: user code and __proto__
AWB: (clarifies) Luke is requesting that we pin down the __proto__
details as soon as possible.
WH/DC: (have concerns, against standardizing __proto__
)
YK/BE: Discussion re: interop with current implementations.
BE: (Review of latest changes to __proto__
in Firefox)
EA: Matches Safari
BE: __proto__
is configurable (can be deleted), accessor (getter and setter throw), reflection does not leak.
AWB: Involves magic
BE: Yes, but minimal. (Confirms that latest __proto__
is out in wild, Firefox)
WH: Clarify "poisoning"?
BE: When you call it, it throws.
WH: So how does it know when not to throw? (If it always throws then it won't work.)
EA: Throws if called with object and setter coming from different realms
...Discussion re: MOP semantics with __proto__
BE: Proxy has to stratify the MOP.
AWB: Another issue... Objects that are non-extensible, can you change __proto__
? Specifically, now that we're talking about being able to change __proto__
, what type of objects can be changed?
BE: Wait for Mark?
YK?: Changing __proto__
is a write, not adding a property, so it should not be affected by extensibility.
AWB: Agree.
Hold until Mark Miller is present.
EA: ES5 requires [[Prototype]] to be read only when the object is non extensible.?
(Further discussion)
BE: Let's get back to this with Mark present and come to a conclusion.
(Allen Wirfs-Brock) http://wiki.ecmascript.org/doku.php?id=harmony:egal
AWB: The plan of record on the wiki is that there is an "is" and "isnt" operator. There are various discussions on the mailing list that refer to this, but also to Object.is and Object.isnt. We need a final decision on the operator form.
YK: The discussion was to move the world from ==?
YK: The differences between === and is are significantly small.
BE: On behalf of Dave Herman and Jason Orendorff... Syntax needs to be worth the expense and there options.
General agreement.
WH: (question about new type NaNs)
AWB: No spec provisions, currently...
WH: Hypothetical discussion about new "decimal" type with a "decimal NaN" and the implications of NaN equality. The issue that would arise would be that a decimal NaN would be unequal to itself but would be distinguishable from the regular Number NaN. Therefore the example code for how users could implement is
wouldn't work. However, if is
is a language feature, then an implentation can fix it up to behave correctly when it adds additional primitive types such as Decimal, just as it would fix up the behavior of ==, etc.
Consensus on No operator
Do we want API? Yes.
What is the name? Object.is(x, y) (NOT Object.isnt, ! is sufficient for negation)
If it's "all discriminating", should it discriminate +0/-0? Yes
NaN is not different from NaN (all NaNs are equated).
Every observable value "is" itself and nothing else.
BE: Keep the concerns separate.
AWB: If we have Object.is, we don't actually need Number.isNaN
DC: Object.is is sufficient.
BE: (Whiteboard example)
RW: Punt on Number.isNaN for ES6, defer to ES7 hinging on need based on potential emergent library code.
WH: Number.isNaN is analogous to other Number functions such as Number.isFinite and Number.isInteger. It should stay.
(toInteger was mistakenly changed to toInt, discussion leads to revisiting March 29th 2012 notes where no rationale was recorded. https://mail.mozilla.org/pipermail/es-discuss/2012-March/021919.html)
Given the existence of the other Number.is* functions, several people flip their views.
Overturn the Number.toInteger=>toInt change. Restore as toInteger. (Brendan, can you fill in the rationale for this?)
Number.isNaN remains in ES6
AWB: For ES6, only specify a limited set of comparison operators?
Discussion re: arbitrary comparisons?
Hash Codes?
STH, WH, several others: Need to support strict (is
) equality at a minimum.
YK: If the goal is to avoid whole new design issues, stick to strict equality.
BE: Reminder that adding hash codes now is too late in the game.
YK/AWB: Concerns that maps with strict equality will trip people up.
YK: Typically, Maps have custom equality capabilities.
AWB: (Reminder of hash code pitfalls) But only strict equality will be a disaster, but can't introduce hash codes at this stage.
AWB: [if we support both strict and other kinds of equality] suggest the default: +0/-0 are the same; NaN is a value, that is equal to itself for Map/Set equivalence.
Assuming we have a mechanism to override...
Ideally, we'd want to set this in the constructor, but there is already a single optional initializer argument.
BE: Let's find a champion to work this out over the next two days.
AWB: I can do this.
To revisit, pending proposal from AWB. (See Jan 31 notes)
Must address the minimal requirements on the wiki
Last Update: https://github.com/rwldrn/tc39-notes/blob/master/es6/2012-11/nov-27.md#internationalization-update
NC: Approved to continue work. APIs covered, people assigned to write strawman. Have API changes to be written into the spec, based on use cases that have emerged.
NL: Normalization in the language specification: talked about 2 additional normalization forms.
NL: Chrome 24 shipped with the first implementation of Edition 1, not prefixed any longer
NC: Overrode the old methods String.prototype.localeCompare, Date/Number.prototype.toLocaleString
BE: Good so far?
NC: Have some bugs with performance, but can address.
EA: No issues with actual semantics?
NC: No complaints.
JN: Schedule? On track?
NC/NL: So far, but rely on ES6.
Discussion about overlapping schedule. Current plan for Intl 2 is for approval in June 2014, but ES6 may slip to the same date. NL wondering whether TC 39 can review two specs at the same time; AWB thinks that should be OK.
Notes from NL/NC:
December 12: Ecma GA approves ECMA-402 http://ecma-international.org/publications/standards/Ecma-402.htm
January 10: Google shipped first implementation without prefix in Chrome 24
December 14: Internationalization ad-hoc met
Since then: Strawmen written, but not reviewed yet:
number parsing http://wiki.ecmascript.org/doku.php?id=globalization:numberparsing
text segmentation http://wiki.ecmascript.org/doku.php?id=globalization:text_segmentation
message formatting http://wiki.ecmascript.org/doku.php?id=globalization:messageformatting
Strawmen assigned, but not written yet:
API changes to be written up:
__proto__
and not __define(G|S)etter__
, __lookup(G|S)etter__
?(Based on a recent es-discuss thread)
Why __proto__
normative mandatory in ES6 but no __define/lookup...
is:
__proto__
much more used on the mobile (iOS WebKit-first) web, no equivalent interop pressure for __d/l.__d/l
but nothing for writing to __proto__
.Therefore __proto__
gets standardized, __d/l
do not.
Rationale for not adding Object.setPrototypeOf https://mail.mozilla.org/pipermail/es-discuss/2012-May/022904.html
Consensus that __define(G|S)etter__
, __lookup(G|S)etter__
will not be standardized, nor added to an Appendix.
(Allen Wirfs-Brock)
The Basic Issue:
Why Doesn't this work?
{super...args;}let a = ;let v = ;a5 = v5 = 5;alength; // 6vlength; // 0
Because...
Array uses a special exotic object representation that changes the semancs of [[DefineOwnProperty]].
The object that new Vector creates and passes to the Vector constructor is an ordinary object, not an exotic Array object.
Even with the super call, the Array constructor doesn't transform its this object into an exotic Array
First Solution
Objections
Ollie's Objections:
Allen's Objections:
WH: Jason's Objections:
let d = ;Map;console; // 2013Mapprototypeset;console // January
What do other dynamic OO languages do?
Sounds Good, Let's see if it works for JavaScript
BE, EA, YK, WH, others: Get rid of the fallback implementation and just throw if there is no @@create. It's unnecessary complexity.
new Foo() <=> Foo.call(Foo[@@create]())
TODO: Copy slide text to notes?
Discussion re: class Foo extends ??
semantics discussed in July, https://github.com/rwldrn/tc39-notes/blob/master/es6/2012-07/july-26.md#maxmin-class-semantics
WH: What happens when you do Number[@@create]?
AWB/EA: Creates a new wrapped Number object.
BE: new Number()
<=> Number.call(Number[@@create]())
AWB: Built-in @@create methods are non-writable, non-configurable. Just like built-in "prototype" properties (From slides).
... Back to slides.
@@create Also Useful for Application Classes
Object.mixin( Foo, { $$create { let obj = super(); Object.defineProperty( obj, $fooBrand, { value: true }); return obj; } });
Built-in branding is based on the shape and capabilities of the actual instance object.
ES6: @@create Determines Branding
let v = extends Array {};Array; // true
@@toStringTag
, {}.toString
will report the legacy [[Class]] for built-in subclass instances if they are allocated using a built-in @@create method.WH: If you're call isArray and it returns true, you'd expect to call Array.prototype methods.
AWB: No guarantees about the prototype chain
MM: Even if Array is frozen, the Array.prototype is mutable and I can add my own malicious push, pop, join.
MM, AWB, WH: (Discussion of security concerns)
Agreement that none of this weakens any existing invariants.
No Need for [[Class]] or [[BuiltinBrand]]
File: [[Match]] => [[RegExpMatch]]
Testing the |this| value almost works
(See slides for code example)
Consensus on @@create, allocation and initialization decoupling.
Constructors need to be able to recognize initialized instances
Probably better to formalize initialized state as part of ES object model
Object.call(uninitObj)
and other built-in constructors set initialized this objects to initialized state.Object.isInitialized(obj)
is a new method that only returns false if obj is an object that is in the initialized state.Semantics...
// Decoupling allocation and initialization:// Calling new X()...// 1. X[@@create](), allocation{ // 2. Initializationsuper;thisstate = "ready";}
EA: Worth the additional bit? Is the need common enough to address with new language API surface?
What about @call?
MM: @construct? If one is specified, otherwise ... super call vs. super construct (Mark—Sorry, I had trouble following this—can you fill this in? Thanks!)
MM: Are there any objections to the parallel @construct entry point.
YK: It makes less sense in the ES6 context, since classes are focused around defining a constructor...
MM: I see, then call is the odd-ball. Agree with the objection.
YK: @call makes sense in the class case, @construct makes sense in the function case.
AWB/YK: Need statics to make the @call
Mixed discussion regarding "static"
Yehuda will draft a static strawman for tomorrow.
(Break)
YK: All functions have a call and construct property, I propose to expose them
AWB: All functions are constructible, when a function is "newer", something happens before the function is invoked.
AWB/YK: (Discussion re: existing semantics of function call and construct)
BE: The idea of having state in objects for initialization...
WH: The main point of the discussion was that many are uncomfortable with adding an extra bit of state to objects to define whether they're initialized or not and, worse, that state is not a reliable indicator of whether a function was called via Foo() or new Foo(). Someone could forget to set the initialized bit (in a variety of ways) and disrupt further code at a low level. The consensus seemed to be to get rid of that state and instead use either separate call and construct code or some way to detect whether code was called as a function or as a constructor, although we hadn't decided on the details
[STH: conclusion/resolution: no new bit of state (IOW, I agree with WH)]
Various Oddities/Backward Compat Issues, 1
...Missed first slide...
Various Oddities/Backward Compat Issues, 2
[].concat.apply(Array.prototype, arguments);
(Re: Bullet 1) WH: Concerned about the proliferation of "types of an object"... class, prototype, type... species?
(Re: Bullet 2)
Discussion focuses around built-ins whose prototype property are first-born instances of that object, eg. Array.prototype
is an Array
. The desire was to remove this from ES6, however there a slew of issues that are not specifically edge cases rise to the surface.
Conclusion/Resolution, Bullet 2
Brendan to experiment with changing the prototype properties of Boolean, Number and String away from first born instances into ordinary object ([object Object]).
(Re: Bullet 4) Discussion focuses on what type ("species") of object should be created by these methods when subclassing.
AWB: All of them, "species" is what you want, except in the case of map. For slice, splice and filter, you always want to operate on and return the "species" calling.
?: Want to customize it differently for different methods.
WH: (Doesn't want another "type" thing)
YK: (Doesn't think it's a problem)
AWB: You can always cast your object back into the type of your class with this.constructor
.
Illustrating Bullet 4:
{super...args;}var v m;v = 123 ;m = v;console; // false :(
Various Oddities/Backward Compat Issues, 3
MM: Confirm that any symbols defined only need to be unique, not private?
AWB: Yes.
(Brian Terlson)
Slides (pdf): https://www.ecma-international.org/archive/ecmascript/2013/misc/2013misc16.pdf
1.85% of scripts make use of function hoisting intersection semantics. Almost all of these are due to functions defined inside arms of an if statement. Few examples of defining functions inside loops. No scripts do let[x]. 10% of "use strict" directives are incorrect because they're not in the prologues.
Mixed discussion regarding the actual expectation of these cases.
Can the tests be expanded beyond the top 10k?
BE: w/r to FIB, should we go with strict mode standardization?
YK: Does it always leak the identifier?
MM: In different ways.
Discussion regarding language forking.
LH: (Identifies a dark future that hinges on "use strict")
MM: That should be the future.
... YK: Are there intersections of existing implementations that can be spec'ed?
Mixed discussion.
Table discussion until tomorrow.