Skip to content

Commit ed54d9f

Browse files
committed
Remove commented out code
1 parent 3af4435 commit ed54d9f

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/harness/fakesHosts.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,6 @@ export class CompilerHost implements ts.CompilerHost {
238238
private _sourceFiles: collections.SortedMap<string, ts.SourceFile>;
239239
private _parseConfigHost: ParseConfigHost | undefined;
240240
private _newLine: string;
241-
// private _skipJSDocParsing: boolean | undefined;
242241

243242
constructor(sys: System | vfs.FileSystem, options = ts.getDefaultCompilerOptions(), setParentNodes = false) {
244243
if (sys instanceof vfs.FileSystem) sys = new System(sys);
@@ -248,7 +247,6 @@ export class CompilerHost implements ts.CompilerHost {
248247
this._sourceFiles = new collections.SortedMap<string, ts.SourceFile>({ comparer: sys.vfs.stringComparer, sort: "insertion" });
249248
this._setParentNodes = setParentNodes;
250249
this._outputsMap = new collections.SortedMap(this.vfs.stringComparer);
251-
// this._skipJSDocParsing = options.skipJSDocParsing;
252250
}
253251

254252
public get vfs() {

0 commit comments

Comments
 (0)