| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
There was a problem hiding this comment.
This should probably be
| ProtocolMessage binaryToMessage(std::vector<uint8_t> message) { | |
| ProtocolMessage binaryToMessage(const std::vector<uint8_t>& message) { |
?
Sorry, something went wrong.
There was a problem hiding this comment.
Not really, we are std::move-ing binary messages around. It is likely that we switch to using std::unique_ptr<std::vector> for clarity at some point.
Sorry, something went wrong.
There was a problem hiding this comment.
Does it make sense to UNREACHABLE();? You can drop the return statements in that case.
Sorry, something went wrong.
There was a problem hiding this comment.
Ah, perfect, that's what it is in v8/chromium, I was not sure if node prefers that as well.
Sorry, something went wrong.
There was a problem hiding this comment.
Correction, it was UNIMPLEMENTED in v8/chromium. Anyhow, using UNREACHABLE now
Sorry, something went wrong.
|
Is there a guide/documentation on how to update this dependency? This PR removes more lines than it adds while my try here adds 7k. |
Sorry, something went wrong.
we have scripts doing that in the v8 / chromium lands, let us add another one for Node. |
Sorry, something went wrong.
There was a problem hiding this comment.
RSLGTM
Sorry, something went wrong.
|
@pavelfeldman, thank you for the bump. From Travis: make[1]: *** No rule to make target `../tools/inspector_protocol/code_generator.py', needed by `26acdf201a53d5709754b88c308e871df22184f9.intermediate'. Stop. |
Sorry, something went wrong.
|
Turns out I lost all the added third party files while shuffling them between the repos :/ ... |
Sorry, something went wrong.
|
@pavelfeldman What’s the status of this PR? |
Sorry, something went wrong.
|
I think it's ready? I confirm this PR fixes the canary builds. |
Sorry, something went wrong.
Sorry, something went wrong.
Fixes: nodejs#25808 PR-URL: nodejs#26303 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Refael Ackermann <refack@gmail.com>
Fixes: nodejs#25808 PR-URL: nodejs#26303 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Refael Ackermann <refack@gmail.com>
| Back | FazBrowse Home | New Git URL |
Fixes: #25808