-
Notifications
You must be signed in to change notification settings - Fork 260
chore: roll 1.54.0-alpha-2025-07-09 #1817
New issue
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
Conversation
| * @since v1.8 | ||
| */ | ||
| String type(); | ||
| ConsoleMessageType type(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This leads to pretty big diffs, see the diff in TestPageEventConsole.java. Unsure if it's worth it in Java.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah, we can leave it as string for now.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done in 8e6783d.
| * @since v1.8 | ||
| */ | ||
| String type(); | ||
| ConsoleMessageType type(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah, we can leave it as string for now.
| * limitations under the License. | ||
| */ | ||
|
|
||
| // This file is generated by generate_java_rpc.js, do not edit manually. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this not true anymore???
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I couldn't find the generate_java_rpc.js file, so I don't think so :D
| if (newEnum.jsonName == null) { | ||
| throw new RuntimeException("Enum without name: " + jsonObject); | ||
| } | ||
| if ("ConsoleMessageType".equals(newEnum.jsonName)) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The right way to handle this is to land a non-js override upstream in the docs.
Closes #1796