@codeend constructor
Stops a code block.
@codeend
Example:
/**
* @codestart
* /* @signature `Person(name)`
* * @param {String} name A person's name.
* *|
* Person = function(name){
* this.name = name
* Person.count++;
* }
*
* /* @prototype *|
* Person.prototype = {
* /* Returns a formal name
* * @return {String} The name with "Mrs." added.
* *|
* fancyName: function(){
* return "Mrs. " + this.name;
* }
* }
* @codeend
*/