alan icon indicating copy to clipboard operation
alan copied to clipboard

Autoscalable Programming Language

Results 84 alan issues
Sort by recently updated
recently updated
newest added

While adding something like [CRDTs](https://en.wikipedia.org/wiki/Conflict-free_replicated_data_type) for simultaneously-mutable shared-mutable state is definitely on the table for the future, being able to atomically update any ol' data type is perhaps more useful...

The current http server implementation will probably give rise to potential memory or security issues if an alan program ~calls `send` more than once or if it~ never calls `send`...

Simplifying/unifying the conditional rewrite logic to hopefully solve the issue with return statements within conditionals that are within an array method closure function.

tech debt
10d+

[RFC 012](https://github.com/alantech/alan/blob/main/rfcs/012%20-%20Either%2C%20Option%2C%20and%20Result%20Destructuring.md) outlines a way to automatically unwrap Result/Maybe/Either types within conditionals to eliminate the noise of manual unwrapping that requires a default value if the unwrapping fails. Implementing this...

enhancement
5d

If you try to import a function that uses a custom type internally that is never exposed through the function inputs/output (or itself uses a function that does), it fails...

bug
tech debt
5d

Minor issue, but you can't declare a function that takes no input arguments but returns the interface type in an interface. So basically you can't really define basic constructor-function type...

bug
2d

Currently there's some weird inconsistencies in function return type inference *and* explicitly declared return types between multi-line functions and single-line functions. The standard library currently exploits this to get things...

tech debt
5d

It shouldn't use regex anywhere, as putting `// TODO:` comments in *certain* places in your code can cause compilation issues that are totally unexpected.

bug
tech debt
10d+

If the actual return type of a function doesn't match the return type the user declared, that should be a compiler error.

enhancement
tech debt
2d

Multiple inheritance does feel like potentially the right approach for interface functions, because the calling site may have the definition of a type and usable functions within it that aren't...

tech debt
10d+