Lars Hvam

Results 648 issues of Lars Hvam

report error if message from message class is not referred statically

new rule

at least zcl_oapi_main should have a reference, ```abap CLASS ltcl_find_prefix DEFINITION DEFERRED. CLASS zcl_oapi_main DEFINITION LOCAL FRIENDS ltcl_find_prefix. ```

```abap SELECT * FROM table INTO TABLE currency_texts WHERE waers = zif_foo~structure-currency_code. ``` split tokens at "~" = #1457

something like this data definition should probably be skipped? as its type definition cannot be referenced with VALUE ```abap FORM bar. DATA lv_text TYPE c LENGTH 200. lv_text = 'foo'....

bug

rule `unused_variable` makes sure that the method parameters are read or written to however, it might be that a parameter might not be supplied from anywhere, or a returning variable...

new rule

https://rules.abaplint.org/unused_variables/ local = FORM or METHOD scope?

prerequsites, its a local variable? ```abap DATA bar TYPE i. CLEAR bar. ```

bug

It shows "abapfs.CreateConnection failed" to the user The real error can be found in the extension log, ![create](https://user-images.githubusercontent.com/5888506/123121459-77a3fd80-d445-11eb-8470-31b78b0c4c15.gif)

Hi, There are multiple parameter settings for the ClientConfig, https://github.com/apache/pulsar-client-node/blob/d2c0d1e374f8e9f25934bd679436da0872b6bc8e/index.d.ts#L25-L33 Is the documentation for these parameters available somewhere? Ideally I'd suggest adding some comments directly in the typescript definition, so...