links icon indicating copy to clipboard operation
links copied to clipboard

Links: Linking Theory to Practice for the Web

Results 124 links issues
Sort by recently updated
recently updated
newest added

Consider the following program: ``` mutual { fun f1() { () } fun f2() { f1() } } ``` This translates to the following, ill-typed IR: ``` (Ir.Rec [{ Ir.fn_binder...

bug
IR Typing

@jamescheney's comment on #966 prompted me to look into places where we parse, use, and reconstruct database arguments strings. To my surprise it turns out each database driver is equipped...

enhancement
cleanup

Links queries assume a "pure" (2 valued logic, no nulls) semantics, whereas real SQL and databases use 3 valued logic and nulls. Other LINQ systems, such as C# or F#,...

enhancement

During the refactoring of the type structure #637 we collapsed the type structure into a single monolithic data type. This change trades static well-formedness guarantees in favour of making the...

As mentioned in #934 the way supporting javascript libraries get distributed could be improved - the fix to make the MVU files be installed in the right place was characterized...

cleanup

This is an issue to track improving the Links testing structure. Currently Links mainly makes use of an ad hoc test harness which performs the equivalent of a "system test"...

enhancement

Our implementation of union-find was "borrowed" from here: https://yrg.gitlab.io/homepage/static/public/mini/ Francois has recently released an opam package `unionFind` that provides similar functionality as an opam package. Its interface is similar, though...

cleanup

Relatedly to the discussion of `addRoute` in #942, when/if we redesign the way client/server annotations work (for example to statically check locations), we should keep in mind that in Links...

enhancement

Syntax that isn't documented - [ ] unsafe Built-in library functions that aren't listed in @builtins and not documented - [ ] addRoute (currently there is only wiki documentation) -...

documentation