Torsten Schmits

Results 12 issues of Torsten Schmits

Not quite sure whether this is an obelisk problem instead, but this code: ```haskell dynText (pure "zero") void $ simpleList (pure ["one"]) (dyn_ . fmap text) void $ listWithKey (pure...

bug

aka type constructors, generic TypeVars Has there already been discussion about those? I do a lot of FP that results in impossible situations because of this. Consider an example: ```python...

topic: feature

This is a tool intended to simplify decoder creation for case classes where some fields need special treatment, especially extracting values from deep json paths. It features a DSL that...

I upgraded from 0.2.9 today and it broke class generation. when trying to instantiate a class, I get the error ``` E117: Unknown function: s:SID E116: Invalid arguments for function...

``` ruby self.foo(1, *args) ``` translates to ``` VimL call call('foo', [1] + a:000, self) ``` which fails with "unknown function 'foo'" (args being the calling method's varargs), while it...

When using this assigment syntax: ``` VimL foo = bar != 0 ``` riml creates ``` VimL if bar !=# 0 let foo = 1 else let foo = 0...

This appears to be similar to https://github.com/ChrisPenner/lens-regex-pcre/issues/7, but since it happens in 1.1.0.0, I thought you might have overlooked something. ```haskell ghci> "aaxxc" & [regex|aax(b)?x(c)|] . group 0 .~ "B"...

``` scala object Foo { def foo { val bar = { item => } wrong } } ``` Looks like this on 7.4.491.

```haskell (v -> _) = undefined v = undefined -- • Variable not in scope: v :: t0 -> t1 -- • Perhaps you meant ‘v’ ``` The suggestion should...

The combination of `-Yinduction-heuristics` and `updateOptions := updateOptions.value.withCachedResolution(true)` results in an error during `compileIncremental`: ``` MissingRequirementError: class scala.annotation.inductive in compiler mirror not found. ``` Steps to reproduce: * clone https://github.com/tek/tls_test...