Files
codeql/javascript/ql/src/JSDoc/examples/UndocumentedParameter.js
2018-08-02 17:53:23 +01:00

11 lines
175 B
JavaScript

/**
* A message.
*
* @constructor
*
* @param {string} title The title of the message.
*/
function Message(title, body) {
this.title = title;
this.body = body;
}