David "novalis" Turner
David "novalis" Turner
Consider a test file withe the following tests: ``` func test_foo(): assert_true(true) func test_foo_bar(): assert_true(false) ``` When I put the cursor inside test_foo and press the "play" button labeled "test_foo"...
Tools like https://github.com/google/error-prone use this to avoid running on generated code. DKO's generated code fails the error-prone check because it is missing the \@Override annotation for methods that override parent...
**Feature/enhancement description:** I want to have a shader with parameters that I can control from code. In Godot, I can do this by calling `set_shader_param` to set the value of...
**Feature/enhancement description:** It would be great if the documentation mentioned the magic $time variable that's necessary in order to do animation. It was really hard to find! Alternately, a "clock"...
It would be good to have a document -- not just the docstrings, but a separate document -- that explains how Irmin implements Merkle proofs and what the difference between...
Here's a test case [non-idempotent.zip](https://github.com/google/google-java-format/files/1380355/non-idempotent.zip) Bisecting seems to implicate 79a39179f8c "Wrap line comments that exceed the column limit" by @cushon, which makes sense to me as a culprit.
https://github.com/google/google-java-format/issues/19 The style guide says: "A line is never broken adjacent to the arrow in a lambda, except that a break may come immediately after the arrow if the body...
https://google.github.io/styleguide/javaguide.html#s2.3.1-whitespace-characters The 2.3.1 problem is only in the sentence "All other whitespace characters in string and character literals are escaped": google-java-format doesn't replace a literal tab inside a string with...
1. https://github.com/timols/java-gitlab-api/blob/27eb69ba671be2da8e1a5fe75fac6be2bf035e4c/src/main/java/org/gitlab/api/Pagination.java#L15 this calls "append", so if you call setPage twice, you'll get ?page=4&page=5. If one is lucky, gitlab would choose the latter of these, but I have no idea...