UNPKG

polymer-analyzer

Version:
50 lines (42 loc) 965 B
class Class { static get customClassGetter() { return 1; } get customInstanceGetter() { return 2; } static customClassFunction() { return 3; } customInstanceFunction() { return 4; } /** * This is the description for customInstanceFunctionWithJSDoc. * @return {Number} - The number 5, always. */ customInstanceFunctionWithJSDoc() { return 5; } customInstanceFunctionWithParams(a, b, c) { return 6; } /** * This is the description for customInstanceFunctionWithParamsAndJSDoc. * @param {Number} a The first argument * @param {Number} b * @param {Number} c The third argument * @returns {Number} - The number 7, always. */ customInstanceFunctionWithParamsAndJSDoc(a, b, c) { return 7; } /** * This is the description for * customInstanceFunctionWithParamsAndPrivateJSDoc. * @private */ customInstanceFunctionWithParamsAndPrivateJSDoc() { return 8; } }