swc/crates/jsdoc/tests/fixtures/specialnames.js
2021-11-10 16:39:01 +09:00

15 lines
256 B
JavaScript

/** @namespace */
var constructor = {
/** document me */
toString: function() {}
};
/** @namespace */
var prototype = {
/** document me */
valueOf: function() {}
};
/** document me */
var hasOwnProperty = Object.prototype.hasOwnProperty;