Bug 1593622 - Test console autocompletion after ?? (nullish coalescing operator). r=Honza.

The nullish coalescing operator was added last week in Spidermonkey.
It looks like there isn't anything to do to support it on the console
side, so we only add a test for the autocompletion after it, to make
sure we don't regress this in the future.

Differential Revision: https://phabricator.services.mozilla.com/D51632

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Nicolas Chevobbe 2019-11-06 09:49:27 +00:00
parent 4a0693bf58
commit de4b3a88c4

View File

@ -508,6 +508,7 @@
"x=true?foob",
"x=false?1:foob",
"!foob",
"false??foob",
];
for (const input of inputs) {