constructor

SourceFile.constructor(file_name)

ソース

constructor(file_name) {
    this.comment = null;
    this.fileName = file_name;

    this.classes = [];
    this.functions = [];
}