constructor ====================== .. js:function:: Class.constructor(source_file, comment, indent, class_name, super_class_name) ソース ^^^^^^ .. code-block:: js constructor(source_file, comment, indent, class_name, super_class_name) { this.sourceFile = source_file; this.comment = comment; this.className = class_name; this.superClassName = super_class_name; this.indent = indent; this.methods = []; console.log("class " + class_name + " " + super_class_name); }