Closed brandonspark closed 2 years ago
Added support for parsing opt chaining in object accesses especially.
This will let us do matching where we differentiate the difference between x.y and x?.y.
x.y
x?.y
Added a Boolean signifying an optional chain to the JS AST.
Can we merge this?
@aryx I posted in #team-pa-devs about this, I can't merge this for the same reason as Emma (merging is blocked).
What:
Added support for parsing opt chaining in object accesses especially.
Why:
This will let us do matching where we differentiate the difference between
x.y
andx?.y
.How:
Added a Boolean signifying an optional chain to the JS AST.
Security