From 4be0095a7c925b3ab4e833ebec1be526849e2f65 Mon Sep 17 00:00:00 2001 From: Ron Buckton Date: Tue, 17 Nov 2015 10:56:02 -0800 Subject: [PATCH] Clean up unnecessary comment annotations --- src/compiler/types.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/compiler/types.ts b/src/compiler/types.ts index b06bf1ba86e..457a3e5ca92 100644 --- a/src/compiler/types.ts +++ b/src/compiler/types.ts @@ -1077,7 +1077,6 @@ namespace ts { export interface DebuggerStatement extends Statement { } // @kind(SyntaxKind.MissingDeclaration) - // @factoryhidden("name", true) export interface MissingDeclaration extends DeclarationStatement, ClassElement, ObjectLiteralElement, TypeElement { name?: Identifier; } @@ -1234,7 +1233,6 @@ namespace ts { export interface TypeElement extends Declaration { _typeElementBrand: any; name?: PropertyName; - // @factoryparam questionToken?: Node; }