Alex

Results 15 issues of Alex

**Do you want to request a _feature_ or report a _bug_?** Closer to a feature request **What is the current behavior?** NodeInstaller is impossible to call from outside of the...

Consider a generator like this: ``` @MyAnnotation(value = "Some default") class MyClassGenerator extends Generator { private MyAnnotation myAnnotation; ... public MyClass generate(SourceOfRandomness random, GenerationStatus status) { MyClassFieldGenerator myClassFieldGenerator = gen().make(MyClassFieldGenerator.class);...

feature

Given a definition like ``` @Value.Modifiable @Value.Style(beanFriendlyModifiables=true) interface Blah extends WithBlah { String getWhatever(); } ``` The generator will produce bad code, interface methods won't be implemented. It would be...

bug
enhancement

I sometimes find that I want to run a post-construction verification using validated. The tools that are currently there are: - `Validated.andThen` which requires you to provide a new success...

when you import: ``` cats.syntax.foldable._ ``` You got two methods which look very similar in terms in what they do: ``` .foldMap[B](f: A => B)(implicit B: Monoid[B]): B .collectFold[B](f: A...

When Clojure snippet contains return type ascription return type is highlighted instead of the method name. ![Screen Shot 2022-03-10 at 18 29 01](https://user-images.githubusercontent.com/1394639/157610983-5464593d-1465-4a60-ba61-b9d527992615.png)

## Reproduction steps Scala version: 2.13.9 ```scala class C { val xml = def some = xml } ``` ## Problem Warning produced on line 2: `unused value of type...

lint

ScalaFmt extension takes the file path into account to get the fileOverride scalafmt.conf section to work correctly.

waiting on PR submitter
pr-archive

Quick question, maybe I'm missing something in the doc. I can summon arbitraries in PBTs and @Provide annotated methods with configuration annotations. Is there a handy way to summon already...

## Testing Problem Getting this error quite frequently. Not sure why. Running tests from SBT, nothing was updated recently except SBT itself. ``` Test com.github.simy4.coregex.jqwik.CoregexArbitraryProviderTest.shouldGenerateAnyString failed: java.util.ConcurrentModificationException: null, took 0.044s...

enhancement