I'd really like to be able to say:
if (auto result = v8::JSON::Parse(...)) {
(*result)->Set(...);
}
instead of
if (auto result = v8::JSON::Parse(...); !result.IsEmpty()) {
result.ToLocalChecked()->Set(...);
}
or worse without '17.
Is there a technical or policy reason this hasn't/can't be added? I'd be
happy to submit it.
Thank you.
--Zac
--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
---
You received this message because you are subscribed to the Google Groups
"v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.