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

Fix failing on KDoc semicolon after other nodes. #363

Merged

Commits on Mar 30, 2019

  1. Fix failing on KDoc semicolon after other nodes.

    /**
     * x;
     */
    was working fine because the text was processed as "x;" but
    /**
     * [x];
     */
    failed because the left bracket, the identifier, and the right racket were processed as separate nodes, and then the node with the single ";" text was checked and failed.
    Simply opting out of the check for all KDOC_TEXT seems fine.
    NightlyNexus committed Mar 30, 2019
    Configuration menu
    Copy the full SHA
    1e20df8 View commit details
    Browse the repository at this point in the history