daveight

Results 7 issues of daveight

Add support for PHP language. the changes must be done in the following files: pylib/testing/framework/ provide implementation for the following APIs: - TypeConverter (input/output) - TemplateGenerator - TestRunner - TestSuiteGenerator...

help wanted

Add support for Kotlin language. the changes must be done in the following files: pylib/testing/framework/ provide implementation for the following APIs: - TypeConverter (input/output) - TemplateGenerator - TestRunner - TestSuiteGenerator...

help wanted

Add support for Go language. the changes must be done in the following files: pylib/testing/framework/ provide implementation for the following APIs: - TypeConverter (input/output) - TemplateGenerator - TestRunner - TestSuiteGenerator...

help wanted

Hi! I noticed the README includes a link to Anki flashcards to practice the algorithmic problems. I'd like to suggest adding a link to my app, AnkiCode (https://github.com/daveight/ankicode) which is...

needs-review

I noticed an issue when processing boolean expressions: `if (!feature.isEnabled(FEATURE_A) && condition != "constant")` Piranha refactors it like this: `if (!condition != "constant")` which is syntactically and logically incorrect I...

```kotlin class Sample { val lambda1 = { val x = featureService.isEnabled(STALE_FLAG) print(x) } val lambda2 = { val x = featureService.isEnabled(STALE_FLAG) print(x) } val lambda3 = { val x...