John Skaller

Results 28 issues of John Skaller

Yeah, one of the primary issues I'm having is that my `$HOME\.felix` folder (which is `C:\Users\ari\.felix`) doesn't have a `config` folder, only a `cache` folder, so I'm having to wing...

Felix needs a configuration tool. I keep trying to write one and fail. The main purpose of the tool is to set up new target directories. This involves: 1. Set...

Felix currently has a system where inherited symbols are available when a module (class) is opened, this puts them in the shadow scope of the opener as well as the...

if this works: ``` open X; proc Y { ... } ``` then this should work too: ``` proc Y { open X; ... } ``` but this is not...

in FileSystem there is a function like `regfilesin` that by contract scans all regular files in a directory tree and returns those whose pathname matches a given regexp. Whilst files...

bug

A package Objc.fpc contains cflags -ObjC, a package Foundation Requires it but whilst header files are gathered by transitive closure, it seems cflags are not. Maybe this is intentional but...

bug

At present, after the Felix GC has marked all the reachable objects, possibly using the parallel algorithm, it performs two further phases with a single thread. In the first phase,...

feature request
new stuff
needs triage
Language Design

Easy patch. Note reduction rev (rev x) => x may or may not work with the existing code if you try to invoke it via rev (filter .. x). However...

feature request

When running tests in batch mode under flx, a control-C from the keyboard fails to stop the batch. Instead, it is intercepted by the test case which is running as...

feature request

A way to specify a singleton type would be useful. A singleton type is a type with only one possible value, and therefore all singletons are units. When Felix has...

Language Design