(file)
| 905 | this.line("; sourceTree = \"<group>\"; };"); |
| 906 | } |
| 907 | generatePBXGroup(file) { |
| 908 | this.write("\t\t\t\t"); |
| 909 | this.writeID(file.fileReferenceID); |
| 910 | this.write(" /* "); |
| 911 | this.write(file.name); |
| 912 | this.write(file.extension); |
| 913 | this.line(" */,"); |
| 914 | } |
| 915 | writeID(id) { |
| 916 | id = id.toString(); |
| 917 | this.write("000000000000000000000000".slice(0, -id.length) + id); |