swc/crates/jsdoc/tests/fixtures/classwithoutname.js

10 lines
201 B
JavaScript
Raw Normal View History

2020-08-14 12:20:25 +03:00
// JSDoc should not be able to identify the name of this class.
var MyClass = Class.define({
/**
* Create an instance of MyClass.
* @constructs
*/
initialize: function() {}
});