diff --git a/src/compiler/types.ts b/src/compiler/types.ts index 52a95acfc91..60ed8352b9a 100644 --- a/src/compiler/types.ts +++ b/src/compiler/types.ts @@ -692,7 +692,6 @@ module ts { export interface TaggedTemplateExpression extends MemberExpression { tag: LeftHandSideExpression; template: LiteralExpression | TemplateExpression; - tempVariable?: Identifier; // Initialized in emitter.ts } export type CallLikeExpression = CallExpression | NewExpression | TaggedTemplateExpression; @@ -704,7 +703,6 @@ module ts { export interface Statement extends Node, ModuleElement { _statementBrand: any; - downlevelTaggedTemplates?: TaggedTemplateExpression[]; // Initialized in binder.ts } export interface Block extends Statement {