Dániel Szoboszlay
Dániel Szoboszlay
Go to definition/find references does not work from attributes referencing functions or via macros
**Describe the bug** Consider the following module: ```erlang -module(test). -export([foo/0, bar/0, baz/0]). -deprecated([foo/0]). -define(MYSELF, test). foo() -> ?MODULE:bar(). bar() -> ?MYSELF:baz(). baz() -> ok. ``` I would expect go to...
**Is your feature request related to a problem? Please describe.** Concuerror already supports treating timeouts in `receive/after` statements as `infinity` above some threshold with the `--after-timeout` option. However, this option...
I encountered an issue where a group subscriber stopped making any progress. These are the logs from the incident, before it went silent: ``` 2021-03-02T10:10:11.139033+00:00 notice: Group member (mysubscribergroup,coor=,cb=,generation=141): assignments...
This is a fix for #286. The gen_tcp case is not modified, because this seems to be specific to ssl (and the way some internal ssl processes relay the messages...
`epgsql_sock` assumes that if a send operation fails and the connection gets closed, it would still receive an `ssl_error` or `tcp_error` message and therefore doesn't always check the return value...
The query creating new table partitions in `system_monitor_pg` may crash with `duplicate_table` error in case multiple nodes are using the same DB: https://github.com/klarna/system_monitor/blob/1978c2b165514a7be4108f5778a92abf0eff5bc4/src/system_monitor_pg.erl#L180 This was surprising to me, because I...
### Describe the bug When typing a new expression, ELP provides auto complete suggestions for e.g. local functions, variables or modules. But it doesn't suggest auto-imported BIFs or explicitly imported...
### Describe the bug After typing the name of a function and an opening parenthesis, ELP provides some help on argument names and types in a tooltip:  However, this...
### Describe the bug A fully qualified function call to the current module incorrectly triggers a W0017 (function is undefined) warning. Furthermore, the [doc page](https://whatsapp.github.io/erlang-language-platform/docs/erlang-error-index/w/W0017/) of the warning has an...
This is an EEP accompanying erlang/otp#8625 that proposes the addition of a new, *non-skipping* variant of all existing generators (list, bit string and map). Currently existing generators are *skipping*: they...