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

[JavaScript] Handle type argument in JSDoc documentation #2629

Open
wants to merge 8 commits into
base: master
Choose a base branch
from

Commits on May 12, 2023

  1. [JavaScript] Handle type argument in JSDoc documentation

    Enables parsing of types that can follow some block tags.
    
    The type is scoped with a single scope instead of trying to parse the
    type in a "correct" way (how typescript syntax does for types). This is
    for one due to the fact that I don't know how to do it "properly" but
    even more importantly because typing it properly would make the type
    more noisy visually. The only exception is that the dot is scoped as
    an accessor so that it triggers completions (especially useful when
    using LSP).
    rchl committed May 12, 2023
    Configuration menu
    Copy the full SHA
    f500506 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    89f098d View commit details
    Browse the repository at this point in the history

Commits on May 13, 2023

  1. Configuration menu
    Copy the full SHA
    9fe2f18 View commit details
    Browse the repository at this point in the history

Commits on May 14, 2023

  1. more readable pattern

    Co-authored-by: Keith Hall <[email protected]>
    rchl and keith-hall authored May 14, 2023
    Configuration menu
    Copy the full SHA
    3238a1d View commit details
    Browse the repository at this point in the history
  2. scope order

    Co-authored-by: Keith Hall <[email protected]>
    rchl and keith-hall authored May 14, 2023
    Configuration menu
    Copy the full SHA
    83a86a8 View commit details
    Browse the repository at this point in the history
  3. dot accessor

    rchl committed May 14, 2023
    Configuration menu
    Copy the full SHA
    677a739 View commit details
    Browse the repository at this point in the history
  4. break lines for readability

    rchl committed May 14, 2023
    Configuration menu
    Copy the full SHA
    84884ed View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    071f920 View commit details
    Browse the repository at this point in the history