Remove properties from types.ts

This commit is contained in:
Ivo Gabe de Wolff
2015-01-19 11:09:27 +01:00
parent 349841e2e3
commit 28b90a2be3

View File

@@ -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 {