We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
In CockroachDB we have some protos in the util package, but the protobufjs generated code trips on this and generates code like this:
util
UnresolvedAddr.decode = function decode(reader, length) { if (!(reader instanceof $Reader)) reader = $Reader.create(reader); let end = length === undefined ? reader.len : reader.pos + length, message = new $root.cockroach.$util.UnresolvedAddr(); while (reader.pos < end) { let tag = reader.uint32(); switch (tag >>> 3) { case 1: message.network_field = reader.string(); break; case 2: message.address_field = reader.string(); break; default: reader.skipType(tag & 7); break; } } return message; };
Note that $root.cockroach.$util should be $root.cockroach.util.
$root.cockroach.$util
$root.cockroach.util
The text was updated successfully, but these errors were encountered:
CLI: Prepare static code with estraverse instead of regular expressio…
2ebb1b7
…ns, see #732
Got a bit lost in espree's AST so please let me know if this fixes your issue(s). Might affect the PR.
Sorry, something went wrong.
Fixes my issue, hurray! Rebased the PR as well.
No branches or pull requests
In CockroachDB we have some protos in the
util
package, but the protobufjs generated code trips on this and generates code like this:Note that
$root.cockroach.$util
should be$root.cockroach.util
.The text was updated successfully, but these errors were encountered: