AL icon indicating copy to clipboard operation
AL copied to clipboard

Some operators (e.g., and, or, xor, is) are missing from autocomplete within the conditions of an if-statement

Open dannoe opened this issue 1 year ago • 0 comments

1. Describe the bug If you type a if-statement and want to combine multiple conditions, autocomplete does not provide these operators:

  • and
  • or
  • xor
  • is (Preview feature)
  • maybe more, which I didn't consider grafik

2. To Reproduce see screenshot

procedure Foo(): Text
var
    Bool: Boolean;
    Bool2: Boolean;
begin
   if Bool and Bool2 then
     exit('');
end;

3. Expected behavior I expect that the autocomplete provides these operators.

4. Actual behavior Autocomplete does not provide these operators.

5. Versions:

  • AL Language: v14.0.1055126 (pre-release)
  • Visual Studio Code: 1.90.2

dannoe avatar Jun 24 '24 07:06 dannoe