swc/ecmascript/jsdoc/tests/fixtures/specialnames.js

15 lines
256 B
JavaScript
Raw Normal View History

2020-08-14 12:20:25 +03:00
/** @namespace */
var constructor = {
/** document me */
toString: function() {}
};
/** @namespace */
var prototype = {
/** document me */
valueOf: function() {}
};
/** document me */
var hasOwnProperty = Object.prototype.hasOwnProperty;