Skip to content
This repository has been archived by the owner on Feb 20, 2024. It is now read-only.

No "returns" tag for named return values #30

Closed
BertDeTemmerman opened this issue Sep 3, 2020 · 1 comment
Closed

No "returns" tag for named return values #30

BertDeTemmerman opened this issue Sep 3, 2020 · 1 comment
Assignees
Labels
bug Something isn't working fix ready released
Milestone

Comments

@BertDeTemmerman
Copy link

Simple example:

    /// <summary>
    /// Description for DoSomething.
    /// </summary>
    /// <param name="Cust">Parameter of type Record Customer.</param>
    /// <returns>Return variable "Decimal".</returns>
    local procedure DoSomething(var Cust: Record Customer): Decimal
    var
        myInt: Integer;
    begin
        exit(Cust.Balance);
    end;
    /// <summary>
    /// Description for DoSomething2.
    /// </summary>
    /// <param name="Cust">Parameter of type Record Customer.</param>
    local procedure DoSomething2(var Cust: Record Customer) Returnvalue: Decimal
    var
        myInt: Integer;
    begin
        Returnvalue := Cust.Balance;
    end;

/// Return variable "Decimal".
is missing.

Love your extension btw! :D

@sirhc101 sirhc101 added the bug Something isn't working label Sep 3, 2020
@sirhc101
Copy link
Collaborator

sirhc101 commented Sep 3, 2020

Thank you for reporting. This is a bug in our signature recognition, we will fix it as soon as possible.

The next version will take some time as we are currently redesigning the extension. We are doing this because of the upcoming release of version BC17 / AL6, which also supports basic documentation functions.

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
bug Something isn't working fix ready released
Projects
None yet
Development

No branches or pull requests

2 participants