constructor

Class.constructor(source_file, comment, indent, class_name, super_class_name)

ソース

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);
}