Kyle Wood

Results 22 issues of Kyle Wood

Either by re-engineering the injectors with Psi, or more likely, embedding Mixins in the plugin and running the injectors themselves.

type: enhancement
platform: mixins
status: future

My example is in a Maven project. In a `parser grammar`, I can set `tokenVocab=` to some lexer grammar if I define the `Location of imported grammars` to be `target/generated-sources/antlr4/`...

### Description of the problem / feature request: Javadoc on Java record components are `@param` tags on the record itself. It's also possible to override the accessor methods, but that...

Patch sets would have properties which define how they are applied and what they are etc. Example config in Kotlin I came up with on the fly: ```kotlin patchSets {...

type: feature
hopefully

For simplicity and to just get paperweight working I have dependencies downloading in tasks using a download service that I copied from the download-task plugin. This works fine but isn't...

type: feature
hopefully

I'd like to manually configure which `.editorconfig` file is chosen. I'd like to be able to set it, and I think all that would require is removing the `internal` modifier...

It would be nice to be able to determine where a bytecode instruction in a given method ended up in the VF output source code. A file which maps the...

Type: Enhancement
Subsystem: Writing
Priority: Medium

It would be nice to have an option for something like the following: ```java @RecordInterface public interface SomeInterface extends SomeInterfaceRecordBuilder.With { String thingOne(); String thingTwo(); static SomeInterfaceRecordBuilder builder() { return...

enhancement
PR welcome

The `DirectInvocationOnMock` inspection warns when calling methods on [`MockedStatic`](https://javadoc.io/doc/org.mockito/mockito-core/latest/org/mockito/MockedStatic.html) objects such as `when` or `verify`, if the `MockedStatic` is declared using [`@Mock`](https://javadoc.io/doc/org.mockito/mockito-core/latest/org/mockito/Mock.html). Example: ```java import java.net.http.HttpClient; import org.junit.jupiter.api.BeforeEach; import org.mockito.Mock;...

When using a global `@TestsAdvice` with a named parsers, the injection of the named parser will always fail before `TestWithResourcesExtension` checks for the presence of a `With` member in a...