Skip to content

Commit 952c492

Browse files
committed
removed unused variables
1 parent bdc69ca commit 952c492

File tree

1 file changed

+0
-10
lines changed

1 file changed

+0
-10
lines changed

src/compiler/checker.ts

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -536,8 +536,6 @@ namespace ts {
536536
let deferredGlobalTemplateStringsArrayType: ObjectType;
537537
let deferredGlobalImportMetaType: ObjectType;
538538
let deferredGlobalExtractSymbol: Symbol;
539-
let deferredGlobalExcludeSymbol: Symbol;
540-
let deferredGlobalPickSymbol: Symbol;
541539
let deferredGlobalOmitSymbol: Symbol;
542540
let deferredGlobalBigIntType: ObjectType;
543541

@@ -9274,14 +9272,6 @@ namespace ts {
92749272
return deferredGlobalExtractSymbol || (deferredGlobalExtractSymbol = getGlobalSymbol("Extract" as __String, SymbolFlags.TypeAlias, Diagnostics.Cannot_find_global_type_0)!); // TODO: GH#18217
92759273
}
92769274

9277-
function getGlobalExcludeSymbol(): Symbol {
9278-
return deferredGlobalExcludeSymbol || (deferredGlobalExcludeSymbol = getGlobalSymbol("Exclude" as __String, SymbolFlags.TypeAlias, Diagnostics.Cannot_find_global_type_0)!); // TODO: GH#18217
9279-
}
9280-
9281-
function getGlobalPickSymbol(): Symbol {
9282-
return deferredGlobalPickSymbol || (deferredGlobalPickSymbol = getGlobalSymbol("Pick" as __String, SymbolFlags.TypeAlias, Diagnostics.Cannot_find_global_type_0)!); // TODO: GH#18217
9283-
}
9284-
92859275
function getGlobalOmitSymbol(): Symbol {
92869276
return deferredGlobalOmitSymbol || (deferredGlobalOmitSymbol = getGlobalSymbol("Omit" as __String, SymbolFlags.TypeAlias, Diagnostics.Cannot_find_global_type_0)!); // TODO: GH#18217
92879277
}

0 commit comments

Comments
 (0)