Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/harness/collections.ts
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ namespace collections {
export class Metadata {
private static readonly _undefinedValue = {};
private _parent: Metadata | undefined;
private _map: { [key: string]: any };
private _map!: { [key: string]: any };
private _version = 0;
private _size = -1;
private _parentVersion: number | undefined;
Expand Down
2 changes: 1 addition & 1 deletion src/harness/fakes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ namespace fakes {
*/
export class CompilerHost implements ts.CompilerHost {
public readonly sys: System;
public readonly defaultLibLocation: string;
public readonly defaultLibLocation!: string;
public readonly outputs: documents.TextDocument[] = [];
private readonly _outputsMap: collections.SortedMap<string, number>;
public readonly traces: string[] = [];
Expand Down