Adrian Kunz

Results 80 issues of Adrian Kunz

## Description As visible in the screenshot below, cells in the Monitor table have a white background after the data updates that does not play well with the row highlighting...

The tooltip of the "Time on page" column in the session Monitor table is a raw seconds since epoch value, but should be human-readable. ![image](https://user-images.githubusercontent.com/4145923/88198581-2511fe00-cc44-11ea-8e73-51e99024d200.png)

It would help to be able to sort repositories by name. Either using a sort button (ascending, descending?), or just by default. The current sort order appears to be random....

```swift func f(g: -> int) -> int = g() { let i = 0 f(=> i) // ok f(i) // error below } ``` ``` java.lang.VerifyError: Local variable table overflow...

type:Bug
module:Compiler
bug:JVM Error

```swift extension [T] { static func create() -> [T] = java.lang.reflect.Array.newInstance(class T, 0) as [T] } ``` ``` :1.49: error: 'T' could not be resolved to a type [resolve.type] :1.96:...

type:Enhancement
module:Compiler

As the title says. This is related to #507: The expression becomes `Array.apply(...)`, which leaves the `` parameter of `apply` unspecified.

type:Bug

Drop support for control statements that use single statement instead of block syntax. This was deprecated in #468.

module:Compiler
type:Removal

Methods that do not specify an explicit return type should implicitly use `void` as that. ```swift func someVoidMethod() { return } // ok func someNonVoidMethod() { return 1 } //...

type:Enhancement
module:Compiler

The following REPL input causes a compiler error: ``` > throw new RuntimeException dyvilx.tools.compiler.backend.exception.StackUnderflowException at dyvilx.tools.compiler.backend.method.Frame.pop(Frame.java:250) at dyvilx.tools.compiler.backend.method.Frame.visitFieldInsn(Frame.java:745) at dyvilx.tools.compiler.backend.method.MethodWriterImpl.visitFieldInsn(MethodWriterImpl.java:796) at dyvilx.tools.compiler.backend.method.MethodWriter.visitFieldInsn(MethodWriter.java:141) at dyvilx.tools.compiler.ast.field.Field.writeStaticInit(Field.java:607) at dyvilx.tools.repl.context.REPLVariable.writeStaticInit(REPLVariable.java:132) at dyvilx.tools.compiler.ast.classes.ClassBody.writeStaticInit(ClassBody.java:990) at dyvilx.tools.compiler.ast.classes.CodeClass.writeStaticInit(CodeClass.java:636)...

type:Bug
status:Scheduled
bug:Compiler Error