Scott McKinney

Results 281 comments of Scott McKinney

Hi @ghilainm. I'm having trouble reproducing this issue. Can you provide a sample project that exhibits this? Or perhaps just a build file (gradle/maven) that can be used as a...

Yes, after the first major release of Manifold there are plans to provide an "inliner" source-level tool for most of Manifold. For instance, extension features such as extension methods, type-safe...

**Update** #181 (Android and Kotlin support) also provides the compile/runtime API divide necessary to implement this request. #181 is comping in the next release; I'll implement this soon after.

Hi @gochev. I like the general idea. My main reservation here concerns [value types](https://cr.openjdk.java.net/~jrose/values/values-0.html). The feature is still baking and I have seen preliminary examples omitting the `new` keyword to...

I hear you. I'll take a stab at removing 'new' just to see how this plays out. One downside of removing 'new' is that it adds a type/constructor check and...

![image](https://user-images.githubusercontent.com/588843/168405100-05fad7ad-eccb-471d-adc4-d4667946c6c1.png) This should suffice as a “WOW moment” ;) its real type-safe GraphQL inside Java, not a pseudo DSL. This is what I’m talking about. See [fragments](https://github.com/manifold-systems/manifold/tree/master/manifold-core-parent/manifold#embedding-with-fragments-experimental). Anyhow, I’m not...

@Arnaud-Nauwynck There isn't any formal schedule for development, so not sure when/if this feature will be implemented. If you'd like to discuss this, perhaps a better place for that would...

Excellent suggestion. I'll have a look at the VS Code extension API, with any luck it'll provide the necessary hooks. Manifold is currently supported exclusively on IntelliJ IDEA. Other IDEs...

A cursory examination of the VS Code extension API reveals the Java LSP is a retread of the Eclipse JDT running in the background (LOL). I was hoping for a...