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

class static property don't work #2044

Open
wuXiuSen opened this issue Mar 9, 2023 · 0 comments
Open

class static property don't work #2044

wuXiuSen opened this issue Mar 9, 2023 · 0 comments

Comments

@wuXiuSen
Copy link

wuXiuSen commented Mar 9, 2023

Input code

@static  don't work
/**
 * Test
 */
class Test {
    static dd;
}

and follow is yes
/**
 * Test
 */
class Test {}
/**
 * 
 */
Test.bb = "";


/**
 * Test
 */
class Test {
    static dd() {}
}

JSDoc configuration

{
    "plugins": ["plugins/markdown"],
    "source": {
        "include": ["src"],
        "includePattern": ".js$",
        "excludePattern": "(node_modules/|docs)"
    },
    "sourceType": "module",
    "templates": {
        "cleverLinks": false,
        "monospaceLinks": false
    },
    "opts": {
        "recurse": true,
        "destination": "./docs/",
    }
}

JSDoc debug output

Your debug output here

Expected behavior

Current behavior

Your environment

Software Version
JSDoc 4.0.2
Node.js v14.21.1
npm 6.14.17
Operating system
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant