elixir
elixir copied to clipboard
Elixir is a dynamic, functional language for building scalable and maintainable applications
Major milestones: * [x] Tracking of variables * [x] Type inference of patterns * [ ] Type inference of guards * [ ] Type inference for function application and function...
### Elixir and Erlang/OTP versions ``` Erlang/OTP 27 [erts-15.2.1] [source] [64-bit] [smp:10:10] [ds:10:10:10] [async-threads:1] [jit] Elixir 1.18.2 (compiled with Erlang/OTP 27) ``` ### Operating system macOS ### Current behavior ```elixir...
When Erlang/OTP 28+ is released: * [x] Deprecate Regex.recompile and related fields When we require Erlang/OTP 28+ (so please do not send PRs for those): * [ ] Remove code...
### Elixir and Erlang/OTP versions Erlang/OTP 27 [erts-15.2] [source] [64-bit] [smp:10:10] [ds:10:10:10] [async-threads:1] [jit] [dtrace] Elixir 1.19.0-dev (compiled with Erlang/OTP 27) (running off main — be17d71e450c71acc461ef9b5b2c0da0333d8c5e) ### Operating system MacOS...
### Elixir and Erlang/OTP versions Erlang/OTP 27 [erts-15.2.5] [source] [64-bit] [smp:12:12] [ds:12:12:10] [async-threads:1] [jit] Elixir 1.18.3 (compiled with Erlang/OTP 27) ### Operating system any ### Current behavior The following code...
### Elixir and Erlang/OTP versions Erlang/OTP 27 [erts-15.1.2] [source] [64-bit] [smp:8:8] [ds:8:8:10] [async-threads:1] [jit:ns] Elixir 1.17.3 (compiled with Erlang/OTP 27) ### Operating system Linux ### Current behavior Hey there :wave:...
This implements AST comments and updates the formatter to look for comments in the AST instead of a separate comments list. This adds a new `:include_comments` to `Code.string_to_quoted/2` and `Code.string_to_quoted!/2`....
This is a list of upcoming deprecations coming to Elixir. Most of those are anti-patterns anyway, which we kept in the language to avoid churn, but the addition of the...
This is an attempt at making the tokenizer produce relative tokens. My intention is to enable building an incremental parsers better suited to LSP use case. With relative tokenization and...