added flag as argument to checkTypeRelatedTo

This commit is contained in:
Arthur Ozga
2015-06-29 14:02:01 -07:00
parent 52e8b6cbbc
commit a183ba9020
2 changed files with 56 additions and 31 deletions
+6
View File
@@ -403,6 +403,12 @@ namespace ts {
FailedAndReported = 3
}
/* @internal */
export const enum RelationComparisonFlags {
None = 0,
ExtendingClass = 0x00000001
}
export interface Node extends TextRange {
kind: SyntaxKind;
flags: NodeFlags;