Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve the discovery of the doc comment for symbol (or may be a symbol for a doc comment) #1752

Closed
canonic-epicure opened this issue Oct 21, 2021 · 2 comments
Labels
bug Functionality does not match expectation
Milestone

Comments

@canonic-epicure
Copy link
Contributor

canonic-epicure commented Oct 21, 2021

Search terms

Doc comment

Description

I'm using the excludeNotDocumented option to prevent symbols w/o documentation to appear in the docs.
Sometimes I need to document in the inline object type, for example for function arguments:

        elementPointIsReachable (
            target : ActionTarget, 
            options : { offset : ActionTargetOffset, allowChildren : boolean } | ActionTargetOffset, 
            description? : string
        )

The type of options argument appears as {} in the docs (this is expected, because of the excludeNotDocumented):
image

Now, to include them in the docs, I'm trying to provide a documentation for the properties:

        elementPointIsReachable (
            target : ActionTarget, options : { /** include */ offset : ActionTargetOffset, /** include */allowChildren : boolean } | ActionTargetOffset, description? : string
        )

The result, however, is the same:
image

To make it work, the doc comment needs to reside on the separate line, above the symbol:

        elementPointIsReachable (
            target : ActionTarget, options : {
                /** include */
                offset : ActionTargetOffset,
                /** include */
                allowChildren : boolean
            } | ActionTargetOffset, description? : string
        )

This produces:
image

Expected

I'd expect, that the exact location of the doc comment should be not significant. Under "doc comment" I mean a comment with leading double star: /** */. The doc comment should just precede the symbol it documents, whether on the same line, or on the next line.

Environment

  • Typedoc version: 0.22.6
  • TypeScript version: 4.4.0
  • Node.js version: 12.22
  • OS: Ubuntu 18.04
@canonic-epicure canonic-epicure added the bug Functionality does not match expectation label Oct 21, 2021
@canonic-epicure
Copy link
Contributor Author

Side note. In my custom fork, based on TypeDoc 0.17, i was using different heuristic for the excludeNotDocumented option - all properties of object literal types should be included (similar to enums). This is exactly to support the case of documenting the inline object types. Perhaps it should be applied in the current version. If you approve it, I can make a PR for it.

function shouldBeIgnoredAsNotDocumented (node: ts.Declaration, kind: ReflectionKind): boolean {
    // never ignore modules, global, and enum members
    if (kind === ReflectionKind.Module || kind === ReflectionKind.Global || kind === ReflectionKind.EnumMember) {
        return false;
    }

    // do not ignore properties of the object types, that has comment themselves, for example
    //
    // /**
    //  * has docs
    //  */
    //  export SomeType = { prop1 : string }
    //
    // same applies to the inline types for function arguments:
    //
    // function someFunc(arg1 : { prop1 : string, prop2 : number }) {...}
    //
    // The `prop1` from above should be included in the docs, even that it has no documentation
    // Note, that this does not seem to apply to classes and interfaces - for those, even the class/interface
    // has docs, we still want to exclude the undocumented properties
    // Thankfully for object literals the kind of properties seems to be set to ReflectionKind.Variable
    if (kind === ReflectionKind.Variable && hasCommentOnParentAxis(node)) {
        return false;
    }

    const hasComment: boolean = Boolean(getRawComment(node));

    return !hasComment;
}

function hasCommentOnParentAxis (node: ts.Node): boolean {
    let currentNode: ts.Node = node;

    while (currentNode) {
        if (Boolean(getRawComment(currentNode))) { return true; }

        currentNode = currentNode.parent;
    }

    return false;
}

@Gerrit0
Copy link
Collaborator

Gerrit0 commented Oct 22, 2021

That definitely seems more like how it should work to me, I really dislike that reflections are used for object types in the first place, but haven't gotten around to it.

We rely on ts.getLeadingCommentRanges to extract comments, I suspect that's not being returned for some reason... or maybe properties aren't included in the list of syntax kinds to search for that reflection type.

@Gerrit0 Gerrit0 added this to To do in TSDoc - v0.23 via automation Jun 4, 2022
@Gerrit0 Gerrit0 added this to the v0.23 milestone Jun 4, 2022
@Gerrit0 Gerrit0 moved this from To do to Done in TSDoc - v0.23 Jun 4, 2022
@Gerrit0 Gerrit0 mentioned this issue Jun 4, 2022
8 tasks
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Functionality does not match expectation
Projects
No open projects
Development

No branches or pull requests

2 participants