-
Notifications
You must be signed in to change notification settings - Fork 364
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
Optional Chaining Operator #146
Comments
@hzoo, first off, thanks for coming here first. I think the general tendency has been to let y'all do what you want, then ask you to make possible breaking changes to Babylon later, which isn't great. @RReverser @ariya et. al, do y'all have any interest in helping spec this thing at Stage 1 so we have a better shot of avoiding a breaking change later? |
@hzoo, second of all, this one seems straightforward to spec. As a straw man, I propose adding a property named Is that all there is to it? Other bikesheds seem to center around the name of the property: Thoughts? |
@mikesherov Yeah it was at least my intention of doing so here first but I forgot for cc @gisenberg @bmeck |
bikeshed - the name of the proposal is Optional Chaining, and it returns |
@phpnode @hzoo @mikesherov The Stage 1 status does not mean we have a proper spec text. Please wait on meeting notes to do anything. Semantics and grammar are still in hot debate. Claude's proposal will most likely not look like the actual spec. In particular the free grouping and always returning undefined are being debated. Await a revised spec based upon what got it to Stage 1 in a few weeks. Even then, I would caution implementing without talking directly to the champion. |
This is just for the AST node format though, not implementation - that probably won't change? (I didn't make a babel issue for the transform plugin, this is just the parser and ESTree just documents the format) |
@bmeck We put any pre-stage-4 proposals into |
@bmeck we'll wait on meeting notes, but yeah, once those come out, shouldn't we be trying to land this in Babel so folks can try it out? |
@mikesherov the new spec yes, Claude's is the basis but not what was agreed towards stage 1. So, not Claude's. |
aside: @mikesherov I think (if everyone agrees) you can add me / @danez / @loganfsmyth as a member instead of Sebastian since he hasn't been involved in Babel for a while now |
@hzoo PR please for that |
Sorry for dropping in unannounced but I have personal interest at this proposal and I've already contacted @gisenberg on the Babel slack. @bmeck @hzoo Grammar and semantics of the spec aside, having We should maybe leave the |
The proposal name is Optional Chaining instead of Null Propagation now and we landed the parser plugin in babylon babel/babylon#545 with interface MemberExpression <: Expression, Pattern {
type: "MemberExpression";
object: Expression | Super;
property: Expression;
computed: boolean;
+ optional: boolean | null;
}
interface CallExpression <: Expression {
type: "CallExpression";
callee: Expression | Super | Import;
arguments: [ Expression | SpreadElement ];
+ optional: boolean | null;
}
interface NewExpression <: CallExpression {
type: "NewExpression";
+ optional: boolean | null;
} |
How does the a?.b.c // equivalent to `a == null ? void 0 : a.b.c`
(a?.b).c // equivalent to `(a == null ? void 0 : a.b).c` This syntax seems like it could be a significant problem because ESTree represents the MemberExpression |
I was wrong... skip this@not-an-aardvark your parenthesis are still affecting things, just not to any affect in your example.
The above parses to:
But moving the parenthesis around to be
This leads to your question. The |
@bmeck The @not-an-aardvark Babel is currently thinking of exposing this as a new |
oh, I misunderstood the situation. |
Is it necessary to have a distinction between " |
Those two have different runtime behavior once |
Good point, I had forgotten about that distinction. I wonder if there is a better way to semantically represent the distinction -- For example, maybe a {
"type": "MemberExpression",
"object": {
"type": "MemberExpression",
"object": {
"type": "MemberExpression",
"object": {
"type": "Identifier",
"name": "a"
},
"property": {
"type": "Identifier",
"name": "b"
},
"optional": true,
"shortCircuit": false
},
"property": {
"type": "Identifier",
"name": "c"
},
"optional": false,
"shortCircuit": true
},
"property": {
"type": "Identifier",
"name": "d"
},
"optional": false,
"shortCircuit": false
} |
I agree. We had a bit of discussion in babel/babel#7256 (comment) and essentially decided that we didn't want to block the person exploring the implementation. I'm still totally open to choosing a clearer name. Thoughts on |
I'm a bit confused by the discussion. {
"type": "MemberExpression",
"object": {
"type": "OptionalMemberExpression",
"object": {
"type": "OptionalMemberExpression",
"object": {
"type": "Identifier",
"name": "a"
},
"property": {
"type": "Identifier",
"name": "b"
},
"optionalOrShortCircuitBikeShed": true,
},
"property": {
"type": "Identifier",
"name": "c"
},
"optionalOrShortCircuitBikeShed": false,
},
"property": {
"type": "Identifier",
"name": "d"
},
} Once you get a Note that |
Sorry you're totally right, I misstated which node type has the boolean flag. |
Yes, I am open for suggestions for other names, but currently optional seems best choice of the three proposed. |
Summary: D7029173 implemented basic lexer/parser support for optional chaining, based on the [Babylon implementation](babel/babylon#545) linked from the [proposal](https://github.com/tc39/proposal-optional-chaining#related-issues). However, that code is out of sync with the current specification. Babel has since [updated](babel/babel#7256) its code to fix those issues. This diff parallels those changes, which should make their way into [ESTree](estree/estree#146). Notes: * We never prohibited `delete`-ing an optional chain, so there's no need to add this back in. * D7029173 already prohibits combining optional chains with `super`, `new` expressions, and template literals. * Rather than annotating `Member` and `Call` AST nodes with an `optional` property, we have new `OptionalMember` and `OptionalCall` nodes. This makes detecting and tracking optional chains easier, and we can leverage this to track where [parentheses have curtailed short-circuiting](https://github.com/tc39/proposal-optional-chaining#edge-case-grouping). Reviewed By: mroch Differential Revision: D7380919 fbshipit-source-id: bbfaa620936bd14c7f8e06a85ae22d81b144a6d4
Summary: D7029173 implemented basic lexer/parser support for optional chaining, based on the [Babylon implementation](babel/babylon#545) linked from the [proposal](https://github.com/tc39/proposal-optional-chaining#related-issues). However, that code is out of sync with the current specification. Babel has since [updated](babel/babel#7256) its code to fix those issues. This diff parallels those changes, which should make their way into [ESTree](estree/estree#146). Notes: * We never prohibited `delete`-ing an optional chain, so there's no need to add this back in. * D7029173 already prohibits combining optional chains with `super`, `new` expressions, and template literals. * Rather than annotating `Member` and `Call` AST nodes with an `optional` property, we have new `OptionalMember` and `OptionalCall` nodes. This makes detecting and tracking optional chains easier, and we can leverage this to track where [parentheses have curtailed short-circuiting](https://github.com/tc39/proposal-optional-chaining#edge-case-grouping). Reviewed By: mroch Differential Revision: D7380919 fbshipit-source-id: 9a662b37dbac7b36262fdc07681f323f22c75c8f
While implementing optional chaining in engine262 I found that babel's approach, while excellent for generating jump tables (which is what babel does), is not a fantastic representation of the actual structure of an optional chain in terms of associativity. Tentatively I submit this structure, although the names and such are obviously up for bikeshedding: https://github.com/engine262/engine262/blob/e4c6798e1f3f89505f4c23eecc9e5d647af6b00e/src/parse.mjs#L84-L192 |
Stage: 1, Gabriel Isenberg
Spec Repo: https://github.com/claudepache/es-optional-chaining
TC39 Proposals: https://github.com/tc39/proposals
Slides: https://docs.google.com/presentation/d/11O_wIBBbZgE1bMVRJI8kGnmC6dWCBOwutbN9SWOK0fU/edit#slide=id.p
Figured we should discuss ideas earlier before someone tries to implement it in Babylon?
From the repo:
In order to allow
foo?.3:0
to be parsed asfoo ? .3 : 0
rather thanfoo ?. 3 : 0
, a simple lookahead is added at the level of the lexical grammar (the?.
token should not be followed by a decimal digit).We don’t use the
obj?[expr]
andfunc?(...arg)
syntax, because of the difficulty for the parser to distinguish those forms from the conditional operator, e.g.obj?[expr].filter(fun):0
andfunc?(x - 2) + 3 :1
.The text was updated successfully, but these errors were encountered: