Alexander Wood
Alexander Wood
Surely this will cause a failure if Kotlin isn't on the classpath - i.e. if the plugin isn't using it?
The current plan for this seems to be: - Shade and relocate Lucko's jar-relocator + ASM into every plugin using PDM (should only add about 150-200KB), also relocating the PDM...
I don't really like the idea of needing a separate module for each platform. As I've mentioned before, PDM is already designed in a way that it should work on...
Yes, modules may be a good idea for the more obscure platforms, but with the current design they kinda seem like overkill. Looking at the relocation PR might not be...
Sounds like a good idea -- I'm reluctant to commit too much time to the docs though, as no feature is guaranteed / confirmed yet, we are still making a...
What I meant was, I don't want to spend a lot of time writing documentation at all, when we haven't even finalized some very important parts of the language
Indeed -- let me see what I can do
I wrote my own combinator ```hs sepEndBy' :: Parser a -> Parser sep -> Parser [a] sepEndBy' p sep = do x p)) pure (x : xs) ``` and it...
That explanation makes sense, thanks for your response. How could I make it commit? `declaration` currently looks like this: ```hs declaration :: ModuleName -> Parser (Declaration Frontend) declaration = liftA2...
@mitchellwrosen I had a look at that package, seems to solve my problem! But I agree that there should be an easier way of doing this which doesn't require external...