easyappointments/rsc/scripts/jsdoc/test/fixtures/this-and-objectlit.js
2013-07-02 17:20:39 +00:00

12 lines
197 B
JavaScript

/** @constructor */
function Page(title) {
this.parts = {
title: title,
body: {
/** document me */
heading: '',
main: ''
}
};
}